/* ═══════════════════════════════════════════════════════════════════
   HOME · Hero · Marquee · Section blocks · Showreel
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 150px var(--gutter) 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.hero::before {
  /* Subtle vignette in the corner */
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 60vw; height: 60vh;
  background: radial-gradient(ellipse at bottom right, rgba(30,58,44,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  margin-bottom: 60px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--moss);
  display: inline-block;
}
.hero-eyebrow .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-left: 14px;
}
.hero-eyebrow .live::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--moss);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 0 0 rgba(30,58,44,0.4); }
  50%      { opacity: 1;   transform: scale(1);    box-shadow: 0 0 0 8px rgba(30,58,44,0); }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(46px, 8.4vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  max-width: 14ch;
  margin-bottom: 0.34em;
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: italic;
  font-weight: 320;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin-top: 6px;
  max-width: 36ch;
  font-variation-settings: "opsz" 36, "SOFT" 80;
  position: relative; z-index: 2;
}

.hero-copy {
  margin-top: 32px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  position: relative; z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 42px;
  position: relative; z-index: 2;
}

.hero-meta {
  position: absolute;
  bottom: 56px;
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 2;
}
.hero-meta .stack {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.hero-meta .stack span:last-child { color: var(--ink); font-size: 11px; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--ink-mute), transparent);
  opacity: 0.5;
  animation: cue 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes cue {
  0%, 100% { transform: translateX(-50%) scaleY(0.6); opacity: 0.2; }
  50%      { transform: translateX(-50%) scaleY(1);   opacity: 0.6; }
}

@media (max-width: 980px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .hero { justify-content: flex-start; padding-top: 150px; }
  .hero-meta { position: static; margin-top: 64px; }
  .scroll-cue { display: none; }
}

/* ── MARQUEE (silent endorsements / capability strip) ──────────────── */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--surface);
  padding: 22px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 60s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-soft);
  font-variation-settings: "opsz" 30, "SOFT" 80;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.marquee-item::before {
  content: "✦";
  margin-right: 64px;
  color: var(--moss);
  font-style: normal;
  font-size: 10px;
  vertical-align: middle;
  opacity: 0.6;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOME · STUDIO PREVIEW ─────────────────────────────────────────── */
.home-studio {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.home-studio .pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.18;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 80;
  letter-spacing: -0.012em;
}
.home-studio .pull em { color: var(--moss); }

.home-studio .body p {
  font-family: var(--sans);
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.4em;
  max-width: 58ch;
}
.home-studio .body .first-letter::first-letter {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 4.6em;
  float: left;
  line-height: 0.92;
  padding: 0.04em 0.12em 0 0;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.home-studio .body .actions { margin-top: 28px; }

@media (max-width: 880px) {
  .home-studio { grid-template-columns: 1fr; }
}

/* ── HOME · SERVICES PREVIEW (3 cols) ────────────────────────────── */
.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.home-services .item {
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px) clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background 0.35s var(--ease);
}
.home-services .item:nth-child(3n) { border-right: none; padding-right: 0; }
.home-services .item:hover { background: var(--surface); }
.home-services .item .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  letter-spacing: 0.05em;
  font-variation-settings: "opsz" 14, "SOFT" 80;
  margin-bottom: 28px;
}
.home-services .item h3 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.home-services .item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.home-services .item .more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.home-services .item .more::after {
  content: ""; width: 14px; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.home-services .item:hover .more::after { width: 22px; }

@media (max-width: 980px) {
  .home-services { grid-template-columns: 1fr 1fr; }
  .home-services .item { border-right: 1px solid var(--hairline); padding-right: clamp(20px, 2.5vw, 36px); }
  .home-services .item:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .home-services { grid-template-columns: 1fr; }
  .home-services .item { border-right: none; padding-right: 0; }
}

/* ── HOME · SHOWREEL (vertical numbered) ──────────────────────────── */
.showreel {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.showreel-side {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showreel-side .label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.showreel-side h3 {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.showreel-side .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-top: 12px;
}

.showreel-list { display: flex; flex-direction: column; gap: 0; }
.showreel-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
  cursor: default;
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease), padding-right 0.3s var(--ease);
}
.showreel-row:last-child { border-bottom: 1px solid var(--hairline); }
.showreel-row:hover { background: var(--surface); padding-left: 14px; padding-right: 14px; }
.showreel-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  letter-spacing: 0.05em;
}
.showreel-row .meta {
  display: flex; flex-direction: column; gap: 6px;
}
.showreel-row .meta .ttl {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
.showreel-row .meta .desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.showreel-row .geo {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 880px) {
  .showreel { grid-template-columns: 1fr; }
  .showreel-side { position: static; }
  .showreel-row { grid-template-columns: 36px 1fr; }
  .showreel-row .geo { grid-column: 2; text-align: left; margin-top: 4px; }
}

/* ── HOME · APPROACH (3 figures) ─────────────────────────────────── */
.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 6vw, 80px);
  padding: 40px 0;
}
.figure {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
  position: relative;
}
.figure .big {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(46px, 6.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 24px;
}
.figure .big em {
  font-style: italic;
  color: var(--moss);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.figure h5 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 24, "SOFT" 40;
}
.figure p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); max-width: 38ch; }

@media (max-width: 760px) {
  .figures { grid-template-columns: 1fr; gap: 32px; }
}

/* ── HOME · CTA banner ───────────────────────────────────────────── */
.home-cta {
  background: var(--moss);
  color: var(--paper);
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='ns'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.86 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ns)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.home-cta-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.home-cta .section-marker .label,
.home-cta .section-marker .num,
.home-cta .eyebrow { color: rgba(241, 235, 221, 0.55); }
.home-cta .section-marker::after { background: rgba(241, 235, 221, 0.25); }
.home-cta .section-marker .num { color: rgba(241, 235, 221, 0.75); }

.home-cta h2 {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(40px, 6.6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 0.4em;
  max-width: 14ch;
}
.home-cta h2 em {
  font-style: italic;
  color: rgba(241, 235, 221, 0.78);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.home-cta .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  color: rgba(241, 235, 221, 0.78);
  font-variation-settings: "opsz" 30, "SOFT" 80;
  margin-top: 16px;
  max-width: 42ch;
}
.home-cta-info { display: flex; flex-direction: column; gap: 32px; }
.home-cta-info .block .label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 235, 221, 0.5);
  margin-bottom: 10px;
}
.home-cta-info .block .value {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--paper);
  line-height: 1.4;
  font-variation-settings: "opsz" 24, "SOFT" 40;
}
.home-cta-info .block .value a {
  border-bottom: 1px solid rgba(241, 235, 221, 0.3);
  transition: border-color 0.3s var(--ease);
}
.home-cta-info .block .value a:hover { border-color: var(--paper); }
.home-cta-info .block .meta {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(241, 235, 221, 0.6);
  line-height: 1.6;
  margin-top: 6px;
}
.home-cta .actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .home-cta-inner { grid-template-columns: 1fr; }
}

/* ── HOME · INSIGHT TEASER ───────────────────────────────────────── */
.insight-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.insight-card {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.3s var(--ease);
}
.insight-card .meta {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.insight-card h4 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.insight-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 4px;
}
.insight-card .read {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.insight-card .read::after {
  content: ""; width: 14px; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.insight-card:hover .read::after { width: 22px; }

@media (max-width: 880px) {
  .insight-teaser { grid-template-columns: 1fr; }
}

/* ── HOME · SECTORS DRY GRID (preview) ────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.sector-cell {
  min-height: 240px;
  padding: clamp(24px, 2.6vw, 36px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.sector-cell:hover { background: var(--moss); color: var(--paper); }
.sector-cell:hover .index { color: rgba(241,235,221,0.7); }
.sector-cell:hover .geo   { color: rgba(241,235,221,0.55); }
.sector-cell .index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--moss);
  margin-bottom: 24px;
  transition: color 0.3s var(--ease);
}
.sector-cell h4 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.15;
  font-variation-settings: "opsz" 30, "SOFT" 50;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.sector-cell .geo {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.3s var(--ease);
}

@media (max-width: 1120px) { .sectors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .sectors-grid { grid-template-columns: 1fr; } }

/* ── HOME · METRIC STRIP (numbers) ────────────────────────────────── */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
  gap: 24px;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 clamp(8px, 1.4vw, 28px);
  border-right: 1px solid var(--hairline);
}
.metric:last-child { border-right: none; }
.metric .v {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
.metric .v em { font-style: italic; color: var(--moss); }
.metric .l {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .metric { border-bottom: 1px solid var(--hairline); padding-bottom: 22px; }
  .metric:nth-child(2n) { border-right: none; }
  .metric:nth-last-child(-n+2) { border-bottom: none; }
}
