/* ──────────────────────────────────────────────────────────
   GLOBAL CAPSTONE — Design system rooted in GW brand
   Colors:  GW Blue, GW Buff, Navy Yard, Potomac, Parchment,
            Row House (red), Blossom, Patina, Blue Fog
   Type:    Oswald (Gazzetta sub), DM Sans (Avenir Next sub),
            Source Serif 4 (italic emphasis)
   Motifs:  chevrons (forward motion), step accents (rising),
            waving-flag stripes
   ────────────────────────────────────────────────────── */

:root {
  /* Core */
  --gw-blue:        #033C5A;
  --gw-blue-2:      #0A4868;
  --gw-buff:        #D6BF91;
  --gw-buff-soft:   #E8DDC6;
  --gw-buff-pale:   #F6F1E8;
  --navy:           #00223E;
  --potomac:        #0075C8;
  --potomac-light:  #3391D3;
  --parchment:      #F6F1E8;
  --paper:          #FBF8F1;

  /* Secondary accents */
  --row-house:      #EF4343;
  --blossom:        #D1A0B9;
  --patina:         #ADCAB8;
  --blue-fog:       #52C9E8;
  --warm-yellow:    #FFEFAE;

  /* Neutrals */
  --ink:            #00223E;
  --slate:          #475569;
  --slate-soft:     #6B7280;
  --hairline:       rgba(0, 34, 62, 0.12);
  --hairline-soft:  rgba(0, 34, 62, 0.06);
  --hairline-on-blue: rgba(214, 191, 145, 0.22);

  /* Type */
  --display: "Oswald", "Gazzetta", Impact, sans-serif;
  --sans:    "DM Sans", "Avenir Next", -apple-system, system-ui, sans-serif;
  --serif:   "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Density */
  --density: 1;
  --section-pad-y: calc(112px * var(--density));
  --container-pad-x: clamp(24px, 5vw, 88px);
  --gw-gutter: 32px;

  /* Motion */
  --motion: 1;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gw-buff); color: var(--gw-blue); }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--potomac);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--potomac);
}
.on-blue .eyebrow { color: var(--gw-buff); }
.on-blue .eyebrow::before { background: var(--gw-buff); }

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.92;
  font-size: clamp(56px, 9vw, 156px);
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gw-buff);
  text-transform: none;
  letter-spacing: -0.02em;
}
.on-blue .display { color: var(--gw-buff-pale); }
.on-blue .display em { color: var(--gw-buff); }

.headline {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  font-size: clamp(40px, 5.4vw, 84px);
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  text-transform: none; color: var(--potomac);
  letter-spacing: -0.02em;
}
.on-blue .headline em { color: var(--gw-buff); }

.subhead {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
  text-wrap: pretty;
  font-weight: 400;
}
.on-blue .lede { color: rgba(246, 241, 232, 0.78); }

.body-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 64ch;
  text-wrap: pretty;
}

/* ── Layout primitives ──────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--container-pad-x);
  padding-right: var(--container-pad-x);
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
}

.section.on-blue { background: var(--gw-blue); color: var(--gw-buff-pale); }
.section.on-blue .body-text { color: rgba(246, 241, 232, 0.72); }
.section.on-navy { background: var(--navy); color: var(--gw-buff-pale); }
.section.on-buff { background: var(--gw-buff-pale); }

.hairline { width: 100%; height: 1px; background: var(--hairline); }
.on-blue .hairline { background: var(--hairline-on-blue); }

/* ── Chevron motif (forward motion) ─────────────────────── */
.chevron-bg {
  --c1: var(--gw-buff);
  --c2: transparent;
  background-image:
    linear-gradient(135deg, var(--c1) 25%, var(--c2) 25%, var(--c2) 50%, var(--c1) 50%, var(--c1) 75%, var(--c2) 75%, var(--c2));
  background-size: 24px 24px;
}
.chevron-ribbon {
  height: 14px;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--gw-buff) 0,
    var(--gw-buff) 10px,
    transparent 10px,
    transparent 20px
  );
}
.chevron-ribbon.thick { height: 22px; }
.chevron-ribbon.on-buff-bg {
  background-image: repeating-linear-gradient(
    -55deg,
    var(--gw-blue) 0,
    var(--gw-blue) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* Step accents — solid steps rising right */
.step-accent {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}
.step-accent span {
  background: var(--gw-buff);
  width: 36px;
}
.step-accent span:nth-child(1) { height: 30%; }
.step-accent span:nth-child(2) { height: 55%; }
.step-accent span:nth-child(3) { height: 80%; }
.step-accent span:nth-child(4) { height: 100%; background: var(--potomac); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 0;
  border: 2px solid var(--gw-blue);
  background: var(--gw-blue);
  color: var(--gw-buff-pale);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.btn:hover { background: var(--navy); border-color: var(--navy); }
.btn .chev { transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .chev { transform: translateX(6px); }

.btn.buff { background: var(--gw-buff); border-color: var(--gw-buff); color: var(--gw-blue); }
.btn.buff:hover { background: var(--gw-blue); color: var(--gw-buff); border-color: var(--gw-blue); }

.btn.ghost {
  background: transparent;
  color: var(--gw-blue);
  border-color: var(--gw-blue);
}
.btn.ghost:hover { background: var(--gw-blue); color: var(--gw-buff-pale); }

.on-blue .btn { background: var(--gw-buff); border-color: var(--gw-buff); color: var(--gw-blue); }
.on-blue .btn:hover { background: var(--gw-buff-pale); border-color: var(--gw-buff-pale); }
.on-blue .btn.ghost { background: transparent; color: var(--gw-buff-pale); border-color: var(--gw-buff-pale); }
.on-blue .btn.ghost:hover { background: var(--gw-buff); color: var(--gw-blue); border-color: var(--gw-buff); }

/* ── Nav ────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--container-pad-x);
  max-width: 1440px; margin: 0 auto;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 16px;
}
/* Original wordmark (NOT the GW logo) */
.brand-mark {
  width: 38px; height: 38px;
  background: var(--gw-blue);
  display: grid; place-items: center;
  position: relative;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1.5px solid var(--gw-buff);
  border-bottom: none; border-left: none;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 14px; height: 14px;
  top: 12px; left: 11px;
}
.brand-name {
  display: flex; flex-direction: column;
}
.brand-name .t1 {
  font-family: var(--display); font-weight: 700;
  font-size: 16px; text-transform: uppercase;
  letter-spacing: 0.05em; line-height: 1; color: var(--gw-blue);
}
.brand-name .t2 {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-soft); margin-top: 4px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; padding: 6px 0;
  color: var(--gw-blue);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gw-buff);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-apply {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 18px;
  background: var(--gw-blue); color: var(--gw-buff);
  border: 2px solid var(--gw-blue);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.25s var(--ease);
  cursor: pointer;
}
.nav-apply:hover { background: var(--navy); border-color: var(--navy); }

@media (max-width: 980px) {
  .nav-links, .brand-name .t2 { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
  min-height: 84vh;
  padding-bottom: 64px;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; } }

.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-soft); margin-bottom: 48px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: "▸"; color: var(--gw-buff); font-size: 14px; }

/* Hero eyebrow — connects the band to the headline */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gw-blue);
  margin-bottom: 28px;
}
.hero-eyebrow .chev-ticks {
  display: inline-block;
  width: 40px; height: 12px;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--gw-blue) 0, var(--gw-blue) 7px,
    transparent 7px, transparent 14px
  );
}

.hero h1 { margin: 0 0 32px; }
.hero h1 .num-row {
  display: inline-flex; align-items: baseline; gap: 18px;
}
.hero h1 .num-tag {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.18em; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--potomac);
  border: 2px solid var(--potomac);
  padding: 6px 12px;
  vertical-align: middle;
  line-height: 1;
}
.hero .lede { margin-bottom: 36px; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stamp {
  position: absolute;
  top: 130px; right: var(--container-pad-x);
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-soft);
  text-align: right;
  line-height: 1.8;
  border-left: 2px solid var(--gw-buff);
  padding-left: 14px;
}
.hero-stamp b { color: var(--gw-blue); font-weight: 700; }

/* Globe */
.globe-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.globe-cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.gc-active {
  display: flex; align-items: center; gap: 11px;
  min-height: 22px;
}
.gc-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--potomac);
  box-shadow: 0 0 0 4px rgba(0, 117, 200, 0.18);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.gc-name {
  font-family: var(--display); font-weight: 600;
  font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--gw-blue);
}
.gc-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-soft);
}
.gc-reach {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate);
}
.gc-reach b {
  font-family: var(--display); font-size: 20px; font-weight: 700;
  color: var(--gw-blue); margin-right: 5px; letter-spacing: 0;
}
.globe-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}
.globe-svg { width: 100%; height: 100%; }
.globe-label {
  position: absolute;
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-blue);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.globe-label.show { opacity: 1; transform: translateY(0); }
.globe-label::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--potomac);
  margin-right: 8px; vertical-align: middle;
}
.globe-label .country { color: var(--slate-soft); margin-left: 8px; font-weight: 500; }

/* ── Marquee strip ──────────────────────────────────────── */
.marquee {
  border-top: 2px solid var(--gw-blue);
  border-bottom: 2px solid var(--gw-blue);
  overflow: hidden;
  background: var(--gw-buff);
  padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee calc(80s / var(--motion, 1)) linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gw-blue);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 32px; }
.marquee-track span::after {
  content: "▸"; color: var(--potomac); margin-left: 56px; font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Metrics ────────────────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-on-blue);
}
.metric {
  padding: 56px 32px;
  border-right: 1px solid var(--hairline-on-blue);
  position: relative;
}
.metric:last-child { border-right: none; }
.metric::before {
  content: ""; position: absolute; left: 32px; top: 32px;
  width: 32px; height: 4px; background: var(--gw-buff);
}
.metric-num {
  font-family: var(--display);
  font-size: clamp(64px, 7.5vw, 124px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--gw-buff);
}
.metric-num .suffix {
  font-size: 0.42em;
  color: var(--potomac-light);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.metric-label {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gw-buff-pale);
}
.metric-detail {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(246, 241, 232, 0.62);
  line-height: 1.55;
  max-width: 26ch;
}
@media (max-width: 900px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-on-blue); }
}

/* ── Overview / Pillars ─────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: start;
}
@media (max-width: 980px) { .overview-grid { grid-template-columns: 1fr; gap: 32px; } }
.overview-pillars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline);
}
.pillar {
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: baseline;
  cursor: pointer;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
.pillar:hover { padding-left: 16px; }
.pillar-num {
  font-family: var(--display); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--potomac);
}
.pillar-title {
  font-family: var(--display);
  font-size: 28px; font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gw-blue);
}
.pillar-body {
  grid-column: 2 / 3;
  font-size: 14.5px; line-height: 1.6; color: var(--slate);
  max-width: 60ch;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), margin-top 0.45s var(--ease);
}
.pillar.open .pillar-body { max-height: 220px; margin-top: 14px; }
.pillar-toggle {
  font-family: var(--display); font-size: 22px;
  color: var(--gw-blue); transition: transform 0.35s var(--ease);
  font-weight: 600;
}
.pillar.open .pillar-toggle { transform: rotate(45deg); }

/* ── Section heads ──────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin: 0; }
.section-head .head-meta {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-soft); text-align: right;
  line-height: 1.7;
}
.on-blue .section-head .head-meta { color: rgba(246, 241, 232, 0.6); }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .head-meta { text-align: left; }
}

/* ── Interactive map ────────────────────────────────────── */
.map-stage {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) { .map-stage { grid-template-columns: 1fr; } }

.map-stage > * { min-width: 0; }
.world-map {
  background: var(--navy);
  padding: 40px 28px 28px;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 2px solid var(--gw-buff);
  min-width: 0;
}
.world-map svg { width: 100%; height: 100%; }
.world-dot { fill: rgba(214, 191, 145, 0.22); transition: fill 0.3s var(--ease); }
.world-pin { cursor: pointer; transition: transform 0.3s var(--ease); }
.world-pin .ring {
  fill: none; stroke: var(--gw-buff); stroke-width: 1.2;
  transform-origin: center;
  animation: pulse calc(2.4s / var(--motion, 1)) ease-out infinite;
}
.world-pin .dot {
  fill: var(--gw-buff); stroke: var(--gw-blue); stroke-width: 0.8;
  transition: all 0.25s var(--ease);
}
.world-pin:hover .dot, .world-pin.active .dot { fill: var(--paper); }
.world-pin.active .ring { stroke: var(--paper); stroke-width: 1.6; }
@keyframes pulse {
  0%   { r: 4; opacity: 0.9; }
  100% { r: 22; opacity: 0; }
}
.map-tag {
  position: absolute; font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(214, 191, 145, 0.55);
}
.map-tag-tl { top: 14px; left: 24px; }
.map-tag-br { bottom: 14px; right: 24px; }
.map-tag-tr { top: 14px; right: 24px; color: var(--gw-buff); }

.map-info {
  background: var(--gw-blue);
  color: var(--gw-buff-pale);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  border-top: 4px solid var(--gw-buff);
  position: relative;
}
.map-info::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gw-buff);
}
.map-info .country {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gw-buff); margin-bottom: 14px;
  display: flex; justify-content: space-between;
}
.map-info .project {
  font-family: var(--display); font-size: 28px; line-height: 1.05;
  font-weight: 600; letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--gw-buff-pale);
}
.map-info .client-line {
  font-size: 13.5px; color: rgba(246, 241, 232, 0.75);
  margin-bottom: 20px;
}
.map-info .client-line b { color: var(--gw-buff-pale); font-weight: 600; }
.map-info .blurb {
  font-size: 14px; line-height: 1.6;
  color: rgba(246, 241, 232, 0.78);
  margin-bottom: 24px; flex: 1;
}
.map-info .info-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding-top: 20px; border-top: 1px solid var(--hairline-on-blue);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.map-info .info-meta span:first-child {
  color: rgba(246, 241, 232, 0.55); display: block; margin-bottom: 6px;
  font-size: 10px;
}
.map-info .info-meta span:last-child { color: var(--gw-buff); }

.region-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
}
.region-tab {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 16px;
  background: transparent; border: none; cursor: pointer;
  color: var(--slate); white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.region-tab:hover { color: var(--gw-blue); }
.region-tab.active { color: var(--gw-blue); border-bottom-color: var(--gw-buff); }
.region-tab .num {
  display: inline-block; margin-left: 6px; opacity: 0.6; font-size: 10px;
}

/* ── Projects portfolio ─────────────────────────────────── */
.filters {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
}
.filter-row {
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
}
.filter-label {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gw-blue); padding: 9px 12px 9px 0;
  min-width: 64px;
}
.filter-btn {
  background: transparent; border: 1px solid transparent;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer; color: var(--slate);
  transition: all 0.2s var(--ease);
  border-radius: 0;
}
.filter-btn:hover { color: var(--gw-blue); }
.filter-btn.active { background: var(--gw-blue); color: var(--gw-buff); border-color: var(--gw-blue); }
.filter-btn .count {
  margin-left: 6px; opacity: 0.55; font-size: 10px;
  font-weight: 500;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gw-blue);
}
@media (max-width: 980px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--paper);
  padding: 28px 24px 28px;
  display: flex; flex-direction: column;
  cursor: default;
  position: relative;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  min-height: 240px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.project-card:hover {
  background: var(--gw-blue);
  color: var(--gw-buff-pale);
}
.project-card .pj-loc {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--potomac);
  margin-bottom: 20px;
  display: flex; justify-content: space-between; gap: 12px;
}
.project-card:hover .pj-loc { color: var(--gw-buff); }
.project-card .pj-title {
  font-family: var(--display);
  font-size: 24px; line-height: 1.05;
  font-weight: 600; letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-wrap: balance;
}
.project-card .pj-partner {
  font-size: 13.5px; color: var(--slate);
  margin-bottom: auto; line-height: 1.5;
}
.project-card:hover .pj-partner { color: rgba(246, 241, 232, 0.7); }
.project-card .pj-tag {
  margin-top: 22px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-soft);
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.project-card:hover .pj-tag { color: rgba(246, 241, 232, 0.55); border-top-color: var(--hairline-on-blue); }
.project-card .pj-arrow {
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}
.project-card:hover .pj-arrow { transform: translateX(6px); color: var(--gw-buff); }

/* ── Video reel ─────────────────────────────────────────── */
.reel-stage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  min-height: 540px;
}
@media (max-width: 980px) { .reel-stage { grid-template-columns: 1fr; } }

.reel-featured {
  position: relative; aspect-ratio: 16/9;
  background: var(--navy);
  cursor: pointer; overflow: hidden;
  border: 2px solid var(--gw-buff);
}
.reel-featured .ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(214, 191, 145, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 191, 145, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.reel-featured .ph-stripes-overlay {
  position: absolute; inset: 0; opacity: 0.12;
  background: repeating-linear-gradient(
    180deg,
    var(--gw-buff) 0,
    var(--gw-buff) 28px,
    transparent 28px,
    transparent 56px
  );
}
.reel-featured .ph-label {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246, 241, 232, 0.5);
}
.reel-featured .ph-label::before {
  content: "● REC "; color: var(--row-house); font-size: 9px;
  letter-spacing: 0.2em; margin-right: 6px;
}
.reel-featured .ph-tc {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(246, 241, 232, 0.5);
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gw-buff);
  color: var(--gw-blue);
  display: grid; place-items: center;
  border: none; cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.play-btn::before {
  content: ""; width: 0; height: 0;
  border-left: 18px solid var(--gw-blue);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.reel-featured:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--gw-buff-pale); }
.reel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 34, 62, 0.92), transparent);
  color: var(--gw-buff-pale);
}
.reel-caption .ttl {
  font-family: var(--display); font-size: 28px; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 10px; text-wrap: balance;
}
.reel-caption .meta {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gw-buff);
}

.reel-list { display: flex; flex-direction: column; gap: 8px; }
.reel-item {
  background: var(--gw-buff-pale);
  color: var(--gw-blue);
  padding: 14px 16px;
  display: grid; grid-template-columns: 80px 1fr auto; gap: 14px;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  border: 1px solid transparent;
}
.reel-item:hover { background: var(--gw-buff-soft); border-color: var(--gw-buff); }
.reel-item.active { background: var(--gw-blue); color: var(--gw-buff-pale); border-color: var(--gw-blue); }
.reel-item .thumb {
  aspect-ratio: 16/10;
  background: var(--gw-blue); position: relative;
  background-image:
    linear-gradient(rgba(214, 191, 145, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 191, 145, 0.08) 1px, transparent 1px);
  background-size: 10px 10px;
}
.reel-item .thumb::after {
  content: "▶"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--gw-buff); font-size: 10px;
}
.reel-item .info .t {
  font-family: var(--display); font-size: 15px;
  text-transform: uppercase; font-weight: 600;
  line-height: 1.15; margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.reel-item .info .m {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-soft);
}
.reel-item:hover .info .m { color: var(--gw-blue); }
.reel-item.active .info .m { color: var(--gw-buff); }
.reel-item .dur {
  font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--slate);
  letter-spacing: 0.06em;
}
.reel-item.active .dur { color: rgba(246, 241, 232, 0.7); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .testimonial-stage { grid-template-columns: 1fr; gap: 40px; } }

.t-portrait {
  aspect-ratio: 4/5;
  background: var(--gw-buff-soft);
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--gw-blue);
}
.t-portrait .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(3, 60, 90, 0.05),
    rgba(3, 60, 90, 0.05) 12px,
    transparent 12px,
    transparent 24px
  );
}
.t-portrait .ph-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-soft);
}
.t-portrait .ph-name {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--display); font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gw-blue);
}
.t-content { position: relative; }
.t-quote-mark {
  font-family: var(--serif); font-size: 160px;
  line-height: 0.7; color: var(--gw-buff);
  font-style: italic;
  margin-bottom: -30px;
  margin-left: -10px;
  user-select: none;
}
.t-quote {
  font-family: var(--serif); font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3; letter-spacing: -0.015em;
  color: var(--gw-blue); text-wrap: balance;
  margin-bottom: 36px;
}
.t-attr {
  border-top: 2px solid var(--gw-blue);
  padding-top: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
}
.t-attr .name {
  font-family: var(--display); font-size: 18px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--gw-blue);
}
.t-attr .role {
  font-size: 13px; color: var(--slate); margin-top: 4px;
}
.t-attr .country {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--potomac);
  text-align: right;
}
.t-nav {
  display: flex; gap: 10px; margin-top: 32px; align-items: center;
}
.t-nav button {
  width: 52px; height: 52px;
  border: 2px solid var(--gw-blue); background: transparent;
  cursor: pointer; font-size: 14px; color: var(--gw-blue);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  font-family: var(--sans); font-weight: 600;
}
.t-nav button:hover { background: var(--gw-blue); color: var(--gw-buff); }
.t-counter {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; margin-left: 16px;
  color: var(--slate); text-transform: uppercase;
}
.t-counter b { color: var(--gw-blue); font-weight: 700; }

/* Pull-quote (heavy mode addition) */
.pull-quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .pull-quote-row { grid-template-columns: 1fr; } }
.pull-quote {
  background: var(--gw-buff-pale);
  border-top: 4px solid var(--potomac);
  padding: 24px 22px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px; line-height: 1.45;
  color: var(--gw-blue);
}
.pull-quote .pq-attr {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-style: normal;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate);
}
.pull-quote .pq-attr b { color: var(--gw-blue); }

/* ── Advisors carousel ──────────────────────────────────── */
.advisor-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .advisor-stage { grid-template-columns: 1fr; gap: 36px; } }

.advisor-portrait {
  aspect-ratio: 4/5;
  background: var(--gw-buff);
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--gw-buff-pale);
}
.advisor-portrait .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(3, 60, 90, 0.06),
    rgba(3, 60, 90, 0.06) 12px,
    transparent 12px,
    transparent 24px
  );
}
.advisor-portrait .ph-tag {
  position: absolute; top: 20px; left: 20px; right: 20px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gw-blue);
  text-wrap: balance;
}
.advisor-portrait .ph-initials {
  position: absolute; bottom: 18px; left: 24px;
  font-family: var(--display); font-size: 64px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--gw-blue);
  line-height: 0.9;
}
@media (max-width: 880px) { .advisor-portrait { max-width: 320px; } }

.advisor-content { position: relative; }
.advisor-dept {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gw-buff); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.advisor-dept::before {
  content: ""; width: 26px; height: 2px; background: var(--gw-buff);
}
.advisor-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase; letter-spacing: 0.005em;
  line-height: 0.98; color: var(--gw-buff-pale);
  margin-bottom: 10px;
}
.advisor-title {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gw-buff);
  margin-bottom: 22px;
}
.advisor-bio {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: rgba(246, 241, 232, 0.82);
  max-width: 60ch; margin: 0 0 28px;
  text-wrap: pretty;
}
.advisor-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-on-blue);
}
.advisor-years { display: flex; align-items: center; gap: 14px; }
.advisor-years .num {
  font-family: var(--display); font-weight: 700; font-size: 48px;
  color: var(--gw-buff); line-height: 1; letter-spacing: -0.01em;
}
.advisor-years .lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246, 241, 232, 0.6); line-height: 1.4;
}
.advisor-nav { display: flex; align-items: center; gap: 10px; }
.advisor-nav button {
  width: 52px; height: 52px;
  border: 2px solid var(--gw-buff); background: transparent;
  cursor: pointer; font-size: 14px; color: var(--gw-buff-pale);
  font-family: var(--sans); font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.advisor-nav button:hover { background: var(--gw-buff); color: var(--gw-blue); }
.advisor-counter {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; margin-left: 12px;
  color: rgba(246, 241, 232, 0.7); text-transform: uppercase;
}
.advisor-counter b { color: var(--gw-buff-pale); font-weight: 700; }
.advisor-dots { display: flex; gap: 8px; margin-top: 24px; }
.advisor-dot {
  width: 28px; height: 4px; border: none; padding: 0;
  background: var(--hairline-on-blue); cursor: pointer;
  transition: background 0.25s var(--ease);
}
.advisor-dot:hover { background: rgba(214, 191, 145, 0.55); }
.advisor-dot.active { background: var(--gw-buff); }

/* ── Timeline ───────────────────────────────────────────── */
.track-toggle {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.track-label {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gw-buff); margin-right: 8px;
}
.track-btn {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--hairline-on-blue);
  color: rgba(246, 241, 232, 0.7);
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.track-btn:hover { color: var(--gw-buff-pale); border-color: var(--gw-buff); }
.track-btn.active {
  background: var(--gw-buff); border-color: var(--gw-buff); color: var(--gw-blue);
}
.month-long {
  font-size: 22px !important;
  line-height: 1.05 !important;
  max-width: 9ch;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-on-blue);
  position: relative;
}
.timeline-step {
  padding: 36px 24px;
  border-right: 1px solid var(--hairline-on-blue);
  position: relative;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.timeline-step:last-child { border-right: none; }
.timeline-step:hover { background: rgba(214, 191, 145, 0.08); }
.timeline-step .step-marker {
  display: flex; align-items: flex-end; gap: 3px;
  height: 24px; margin-bottom: 20px;
}
.timeline-step .step-marker span {
  width: 8px; background: var(--gw-buff);
}
.timeline-step:nth-child(1) .step-marker span:nth-child(1) { height: 25%; }
.timeline-step:nth-child(1) .step-marker span:nth-child(2) { height: 25%; opacity: 0.2; }
.timeline-step:nth-child(1) .step-marker span:nth-child(3) { height: 25%; opacity: 0.2; }
.timeline-step:nth-child(1) .step-marker span:nth-child(4) { height: 25%; opacity: 0.2; }
.timeline-step:nth-child(2) .step-marker span:nth-child(1) { height: 25%; }
.timeline-step:nth-child(2) .step-marker span:nth-child(2) { height: 50%; }
.timeline-step:nth-child(2) .step-marker span:nth-child(3) { height: 50%; opacity: 0.2; }
.timeline-step:nth-child(2) .step-marker span:nth-child(4) { height: 50%; opacity: 0.2; }
.timeline-step:nth-child(3) .step-marker span:nth-child(1) { height: 25%; }
.timeline-step:nth-child(3) .step-marker span:nth-child(2) { height: 50%; }
.timeline-step:nth-child(3) .step-marker span:nth-child(3) { height: 75%; }
.timeline-step:nth-child(3) .step-marker span:nth-child(4) { height: 75%; opacity: 0.2; }
.timeline-step:nth-child(4) .step-marker span:nth-child(1) { height: 25%; }
.timeline-step:nth-child(4) .step-marker span:nth-child(2) { height: 50%; }
.timeline-step:nth-child(4) .step-marker span:nth-child(3) { height: 75%; }
.timeline-step:nth-child(4) .step-marker span:nth-child(4) { height: 100%; background: var(--potomac); }

.timeline-step .season {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gw-buff);
  margin-bottom: 12px;
}
.timeline-step .month {
  font-family: var(--display); font-size: 36px; font-weight: 700;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--gw-buff-pale); margin-bottom: 12px;
  line-height: 0.95;
}
.timeline-step .step-title {
  font-family: var(--display); font-size: 20px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 1.05; color: var(--gw-buff-pale);
  margin-bottom: 12px;
}
.timeline-step .step-desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(246, 241, 232, 0.65);
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-step:nth-child(2) { border-right: none; }
  .timeline-step:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-on-blue); }
}

/* ── Partners ───────────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
}
@media (max-width: 900px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-grid .partner {
  background: var(--paper);
  padding: 28px 22px;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 180px;
  transition: background 0.3s var(--ease);
  cursor: default;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.partner-grid .partner:hover { background: var(--gw-buff-pale); }
.partner .p-name {
  font-family: var(--display); font-size: 18px; font-weight: 600;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--gw-blue);
  margin-bottom: 10px;
  line-height: 1.1;
}
.partner .p-loc {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--potomac);
  margin-bottom: auto;
}
.partner .p-type {
  font-size: 12px; color: var(--slate);
  border-top: 1px solid var(--hairline);
  padding-top: 12px; margin-top: 12px;
  width: 100%;
  letter-spacing: 0.02em;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--hairline); }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: grid; grid-template-columns: 60px 1fr 40px; gap: 24px;
  align-items: center;
}
.faq-num {
  font-family: var(--display); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--potomac);
}
.faq-text {
  font-family: var(--display); font-size: 22px; font-weight: 600;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--gw-blue);
  text-wrap: balance; line-height: 1.1;
}
.faq-toggle {
  font-family: var(--display); font-size: 24px; font-weight: 600;
  text-align: right; color: var(--gw-blue);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding-left: 84px; padding-right: 64px;
  color: var(--slate); font-size: 15.5px; line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 14px;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-block {
  text-align: center;
  padding: 80px 0 64px;
}
.cta-block .eyebrow { justify-content: center; }
.cta-block h2 { margin: 0 0 24px; }
.cta-block .lede { margin: 0 auto 36px; }
.cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta-meta {
  margin-top: 48px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.cta-meta span::before { content: "▸ "; color: var(--gw-buff); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(246, 241, 232, 0.65);
  padding: 56px 0 28px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gw-buff); margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a:hover { color: var(--gw-buff-pale); }
.footer .signoff {
  font-family: var(--display); font-size: 28px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gw-buff-pale); margin: 0 0 14px;
  line-height: 1;
}
.footer .sub {
  font-size: 13px; color: rgba(246, 241, 232, 0.55);
  max-width: 30ch; line-height: 1.55;
}
.footer-base {
  border-top: 1px solid var(--hairline-on-blue);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246, 241, 232, 0.45);
}

/* ── Scroll reveals ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity calc(0.8s / var(--motion)) var(--ease),
              transform calc(0.8s / var(--motion)) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity calc(0.6s / var(--motion)) var(--ease),
              transform calc(0.6s / var(--motion)) var(--ease);
}
.reveal.stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal.stagger.in > *:nth-child(2) { transition-delay: calc(0.06s / var(--motion)); }
.reveal.stagger.in > *:nth-child(3) { transition-delay: calc(0.12s / var(--motion)); }
.reveal.stagger.in > *:nth-child(4) { transition-delay: calc(0.18s / var(--motion)); }
.reveal.stagger.in > *:nth-child(5) { transition-delay: calc(0.24s / var(--motion)); }
.reveal.stagger.in > *:nth-child(6) { transition-delay: calc(0.30s / var(--motion)); }

/* HEAVY mode extras */
.heavy .project-card { transition-duration: 0.5s; }
.heavy .reveal { transform: translateY(48px); }
.heavy .reveal.in { transform: translateY(0); }

/* Magnetic cursor follower (heavy) */
.magnetic-dot {
  position: fixed; pointer-events: none; z-index: 60;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--potomac); mix-blend-mode: difference;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.18s var(--ease), width 0.25s var(--ease), height 0.25s var(--ease);
  opacity: 0;
}
.heavy .magnetic-dot { opacity: 1; }
.magnetic-dot.expand { width: 56px; height: 56px; background: var(--gw-buff); }

/* Section progress rail (heavy) */
.section-rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; gap: 11px;
  opacity: 0; transition: opacity 0.4s var(--ease);
  background: rgba(251, 248, 241, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 13px 9px;
  box-shadow: 0 4px 18px rgba(0, 34, 62, 0.1);
}
.section-rail.show { opacity: 1; }
.section-rail .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0, 34, 62, 0.28); cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  position: relative;
}
.section-rail .dot:hover { background: rgba(0, 34, 62, 0.55); }
.section-rail .dot.active { background: var(--gw-blue); transform: scale(1.4); }
.section-rail .dot::after {
  content: attr(data-label);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gw-buff-pale); background: var(--gw-blue);
  padding: 4px 9px; border-radius: 3px;
  white-space: nowrap;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.section-rail .dot:hover::after, .section-rail .dot.active::after { opacity: 1; }
/* Only show the rail when the viewport is wide enough to have gutter space
   beyond the content container — otherwise it overlaps the right column. */
@media (max-width: 1620px) { .section-rail { display: none !important; } }

#root { isolation: isolate; }

/* ──────────────────────────────────────────────────────────
   GW FOOTER — full-width, matches the live Elliott School footer
   ────────────────────────────────────────────────────── */
.gwf { width: 100%; font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif; }

.gwf-top { background: #fff; padding: 56px 0 64px; }
.gwf-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 0;
}
.gwf-col { padding: 0 40px; }
.gwf-col:first-child { padding-left: 0; }
.gwf-contact, .gwf-links, .gwf-actions {
  border-left: 2px dotted var(--potomac);
}
.gwf-brand {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--gw-blue);
}
.gwf-contact {
  font-size: 17px; line-height: 1.5; color: #333;
}
.gwf-bold { font-weight: 700; color: var(--gw-blue); margin-top: 20px; }
.gwf-link {
  color: var(--potomac);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gwf-link:hover { color: var(--gw-blue); }
.gwf-links { display: flex; flex-direction: column; gap: 12px; }
.gwf-links .gwf-link { font-size: 17px; }

.gwf-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.gwf-btn {
  display: block; text-align: center;
  font-size: 16px; font-weight: 500;
  padding: 13px 20px; border-radius: 4px;
  transition: opacity 0.2s, background 0.2s;
}
.gwf-btn.blue { background: var(--potomac); color: #fff; }
.gwf-btn.blue:hover { background: #005a9e; }
.gwf-btn.navy { background: var(--gw-blue); color: #fff; }
.gwf-btn.navy:hover { background: var(--navy); }
.gwf-social { display: flex; gap: 14px; margin-top: 6px; }
.gwf-soc {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--potomac);
  transition: color 0.2s, transform 0.2s;
}
.gwf-soc:hover { color: var(--gw-blue); transform: translateY(-2px); }

.gwf-bottom { background: var(--navy); padding: 40px 0; }
.gwf-bottom-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px;
}
.gwf-gw { display: flex; flex-direction: column; align-items: flex-start; }
.gwf-gw-rule { width: 200px; height: 1px; background: var(--gw-buff); margin: 6px 0; }
.gwf-gw-name {
  font-weight: 700; font-size: 19px; line-height: 1.15;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
}
.gwf-gw-loc {
  font-weight: 400; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #fff; margin-top: 4px;
}
.gwf-policy { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; padding-top: 8px; }
.gwf-policy-row { display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-end; }
.gwf-policy a {
  color: #fff; font-size: 15px;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
}
.gwf-policy a:hover { text-decoration-color: #fff; }

@media (max-width: 980px) {
  .gwf-inner { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .gwf-col { padding: 0 24px; }
  .gwf-col:nth-child(odd) { padding-left: 0; }
  .gwf-col:nth-child(3) { border-left: none; padding-left: 0; }
  .gwf-bottom-inner { flex-direction: column; gap: 28px; }
  .gwf-policy { align-items: flex-start; }
  .gwf-policy-row { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .gwf-inner { grid-template-columns: 1fr; }
  .gwf-col { border-left: none !important; padding-left: 0 !important; }
}

/* ──────────────────────────────────────────────────────────
   GW PAGE CHROME — top bar, secondary nav, breadcrumb, sidebar
   ────────────────────────────────────────────────────── */

.gw-page { background: #fff; min-height: 100vh; }

/* Top bar (logo + Apply) */
.gw-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 32px;
}
.gw-topbar-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.gw-logo {
  display: flex; align-items: stretch; gap: 18px;
  text-decoration: none; color: inherit;
}
.gw-logo-mark {
  display: flex; flex-direction: column; align-items: stretch;
  width: 76px;
}
.gw-logo-mark .bar {
  height: 6px; background: var(--gw-buff); margin-bottom: 4px;
}
.gw-logo-mark .letters {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--gw-blue);
  line-height: 1;
  padding-top: 4px;
}
.gw-school-name {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--gw-blue);
  line-height: 1.15;
  align-self: center;
}
.gw-apply-btn {
  background: var(--potomac);
  color: #fff;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px; font-weight: 500;
  padding: 14px 38px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}
.gw-apply-btn:hover { background: #005a9e; }

/* Secondary nav (navy bg, white links, search icon) */
.gw-nav-secondary {
  background: var(--gw-blue);
  padding: 0 32px;
}
.gw-nav-secondary-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-end; gap: 0;
  min-height: 56px;
}
.gw-nav-secondary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center;
}
.gw-nav-secondary li {
  display: flex; align-items: center;
}
.gw-nav-secondary li + li::before {
  content: "|";
  color: rgba(255, 255, 255, 0.35);
  margin: 0 4px;
}
.gw-nav-secondary a {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  padding: 18px 18px;
  display: inline-block;
  transition: color 0.2s var(--ease);
}
.gw-nav-secondary a:hover { color: var(--gw-buff); }
.gw-nav-search {
  margin-left: 14px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  cursor: pointer; color: #fff;
}

/* Breadcrumb */
.gw-breadcrumb {
  max-width: 1440px; margin: 0 auto;
  padding: 22px 32px 0;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--slate);
}
.gw-breadcrumb a {
  color: var(--potomac);
  text-decoration: none;
}
.gw-breadcrumb a:hover { text-decoration: underline; }
.gw-breadcrumb .sep {
  display: inline-block;
  margin: 0 8px;
  color: var(--potomac);
}
.gw-breadcrumb .current { color: #333; }

/* Two-col layout */
.gw-main {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 28px var(--gw-gutter) 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .gw-main { grid-template-columns: 1fr; }
  .gw-sidebar { display: none; }
}

/* Sidebar */
.gw-sidebar {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  position: sticky;
  top: 16px;
  align-self: start;
}
.gw-side-section {
  border-bottom: 1px solid var(--gw-buff-soft);
  padding: 14px 0;
}
.gw-side-section:first-of-type { padding-top: 0; }
.gw-side-section > .title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--gw-blue);
  padding: 6px 4px 14px;
  border-bottom: 1px solid var(--gw-buff-soft);
  margin-bottom: 8px;
}
.gw-side-section ul {
  list-style: none; margin: 0; padding: 0;
}
.gw-side-section li {
  padding: 0;
}
.gw-side-link {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--gw-blue);
  padding: 10px 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--gw-buff-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1.3;
}
.gw-side-link:last-child { border-bottom: none; }
.gw-side-link:hover { color: var(--potomac); background: rgba(214, 191, 145, 0.08); }
.gw-side-link.active {
  background: var(--gw-buff-soft);
  font-weight: 700;
  color: var(--gw-blue);
}
.gw-side-link.nested { padding-left: 28px; }

/* Main content column */
.gw-content {
  min-width: 0;
  container-type: inline-size;
}

/* The page H1 above the prototype */
.gw-page-title {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--gw-blue);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding: 0;
  line-height: 1.05;
}

/* Embedded prototype overrides — scale things to fit the narrower column */
.gw-content .container {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}
.gw-content .section {
  padding-top: calc(72px * var(--density));
  padding-bottom: calc(72px * var(--density));
  margin-left: calc(-1 * var(--gw-gutter));
  margin-right: calc(-1 * var(--gw-gutter));
  padding-left: var(--gw-gutter);
  padding-right: var(--gw-gutter);
}
.gw-content .section:first-child {
  padding-top: 0;
}
.gw-content .hero {
  padding: 56px 40px 40px;
  margin: 8px 0 0;
  background: var(--gw-buff-pale);
  border-top: 4px solid var(--gw-blue);
  position: relative;
  overflow: hidden;
}
/* brass chevron seam at the bottom edge so the band reads as a designed block */
.gw-content .hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 8px;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--gw-buff) 0, var(--gw-buff) 8px,
    transparent 8px, transparent 16px
  );
  opacity: 0.7;
}
@media (max-width: 600px) {
  .gw-content .hero { padding: 36px 22px 28px; }
}
.gw-content .hero-grid {
  min-height: 0;
  padding-bottom: 32px;
  gap: 40px;
}
.gw-content .display {
  font-size: clamp(40px, 8cqi, 92px);
}
.gw-content .headline {
  font-size: clamp(32px, 5.5cqi, 64px);
}
.gw-content .hero-stamp { display: none; }
.gw-content .hero-meta { margin-bottom: 28px; }
.gw-content .marquee {
  margin-left: calc(-1 * var(--gw-gutter)); margin-right: calc(-1 * var(--gw-gutter));
}
.gw-content .metric { padding: 40px 24px; }
.gw-content .metric-num { font-size: clamp(48px, 7cqi, 92px); }
.gw-content .section-head { margin-bottom: 36px; }
.gw-content .reveal { transition-duration: 0.6s; }
.gw-content .map-stage { grid-template-columns: 1fr 320px; gap: 20px; }
@media (max-width: 1100px) {
  .gw-content .map-stage { grid-template-columns: 1fr; }
}
.gw-content .reel-stage { grid-template-columns: 1.6fr 1fr; gap: 20px; }
.gw-content .testimonial-stage { grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.gw-content .footer { margin-left: calc(-1 * var(--gw-gutter)); margin-right: calc(-1 * var(--gw-gutter)); }
.gw-content .nav-wrap { display: none !important; }
.gw-content .section-rail { right: 12px; }

/* A subtle intro paragraph under page title (like the original CMS lede) */
.gw-content .page-intro {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 36px;
  max-width: 68ch;
}

/* Make embedded heavy-mode magnetic dot less invasive */
.gw-page.heavy .magnetic-dot { mix-blend-mode: multiply; opacity: 0.7; }

/* ──────────────────────────────────────────────────────────
   MOBILE — tablet & phone hardening
   ────────────────────────────────────────────────────── */

/* Secondary nav: let it scroll horizontally instead of overflowing */
@media (max-width: 880px) {
  /* embedded .gw-content overrides out-specify the base mobile rules — collapse here */
  .gw-content .reel-stage,
  .gw-content .testimonial-stage { grid-template-columns: 1fr; }
  .gw-content .testimonial-stage { gap: 32px; }
  .gw-content .reel-stage { gap: 16px; }

  .gw-nav-secondary { padding: 0; }
  .gw-nav-secondary-inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px;
    min-height: 48px;
    scrollbar-width: none;
  }
  .gw-nav-secondary-inner::-webkit-scrollbar { display: none; }
  .gw-nav-secondary a { font-size: 14px; padding: 14px 12px; white-space: nowrap; }
  .gw-nav-search { display: none; }
}

/* Tablet ≤ 760px */
@media (max-width: 760px) {
  .gw-page-title { font-size: clamp(38px, 11vw, 52px); }
  .gw-content .page-intro { font-size: 16px; }
  .gw-topbar { padding: 14px 18px; }
  .gw-breadcrumb { padding: 16px 18px 0; font-size: 14px; flex-wrap: wrap; }
  .gw-logo-mark { width: 58px; }
  .gw-logo-mark .letters { font-size: 34px; }
  .gw-logo { gap: 12px; }
  .gw-school-name { font-size: 17px; }
  .gw-apply-btn { font-size: 15px; padding: 11px 22px; }
  .gw-content .section { padding-top: calc(56px * var(--density)); padding-bottom: calc(56px * var(--density)); }
}

/* Phone ≤ 600px */
@media (max-width: 600px) {
  :root { --gw-gutter: 18px; }
  .gw-main { padding: 18px 18px 48px; }

  /* metrics: single column reads better than cramped pairs */
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none !important; border-bottom: 1px solid var(--hairline-on-blue); padding: 30px 6px; }
  .metric:last-child { border-bottom: none; }
  .metric::before { top: 24px; left: 6px; }
  .gw-content .metric-num { font-size: clamp(56px, 18vw, 88px); }

  /* timeline: single column */
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none !important; border-bottom: 1px solid var(--hairline-on-blue); }
  .timeline-step:last-child { border-bottom: none; }

  /* partners: 2 wide stays, tighten */
  .partner-grid .partner { min-height: 150px; padding: 22px 16px; }

  /* faq: tighter indents */
  .faq-q { grid-template-columns: 34px 1fr 28px; gap: 14px; }
  .faq-a { padding-left: 48px; padding-right: 8px; }

  /* testimonials: smaller decorative mark */
  .t-quote-mark { font-size: 100px; margin-bottom: -18px; }

  /* CTA stat row spacing */
  .cta-meta { gap: 14px 20px; }
  .cta-block { padding: 56px 0 40px; }

  /* footer top breathing room */
  .gwf-top { padding: 40px 0 44px; }
  .gwf-inner { padding: 0 18px; }
  .gwf-bottom { padding: 32px 0; }
  .gwf-bottom-inner { padding: 0 18px; }
  .gwf-brand { font-size: 26px; }

  /* section heads stack cleanly */
  .section-head .head-meta { margin-top: 4px; }

  /* region/theme tabs + filters scroll rather than wrap into tall stacks */
  .region-tabs { gap: 0; }
}

/* Small phone ≤ 400px */
@media (max-width: 400px) {
  :root { --gw-gutter: 14px; }
  .gw-main { padding: 16px 14px 40px; }
  .gw-page-title { font-size: 34px; }
  .gw-logo-mark { width: 50px; }
  .gw-logo-mark .letters { font-size: 30px; }
  .gw-school-name { font-size: 15px; }
  .gw-apply-btn { font-size: 14px; padding: 10px 16px; }
  .marquee-track { font-size: 18px; }
}

