/* Home page — brand statement, current-project teaser, more-strip, team & contact CTA. */

.brand-statement-section { padding: 54px 0; border-bottom: 1px solid var(--line); }
.brand-statement {
  max-width: 900px;
  margin: 0;
  font-family: var(--editorial-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -.02em;
  color: #dfe2e8;
}

.current-project-section { background: #08090c; }
.current-project-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.current-project-copy h2 {
  margin: 16px 0 18px;
  font-family: var(--editorial-display);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.current-project-copy p { max-width: 520px; margin: 0 0 28px; color: var(--muted); font-size: 1.04rem; line-height: 1.65; }
.current-project-media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
}
.current-project-media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

.more-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
  background: var(--line);
}
.more-strip-item {
  position: relative;
  display: block;
  padding: 26px 24px 30px;
  background: var(--bg);
  transition: background .2s ease;
}
.more-strip-item:hover { background: rgba(255,255,255,.02); }
.more-strip-item strong {
  display: block;
  margin: 14px 0 10px;
  font-family: var(--editorial-display);
  font-size: 1.3rem;
  letter-spacing: -.02em;
}
.more-strip-arrow {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--muted-2);
}
.teaser-strip-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.teaser-strip-list li {
  color: var(--muted);
  font-size: .9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.teaser-empty { margin: 0; color: var(--muted-2); font-size: .88rem; }

.team-section { padding: 84px 0; background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,.025)); }
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: start;
}
.team-grid .section-heading { margin-bottom: 0; }
.team-copy { display: grid; gap: 18px; }
.team-copy p { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.team-copy a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.contact-cta-section { background: #08090c; }
.contact-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-cta-grid h2 {
  margin: 14px 0 14px;
  font-family: var(--editorial-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -.04em;
}
.contact-cta-grid p { margin: 0; max-width: 520px; color: var(--muted); }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 1100px) {
  .current-project-grid { grid-template-columns: 1fr; }
  .more-strip { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .contact-cta-grid { grid-template-columns: 1fr; text-align: left; padding: 30px; }
}
