/* =========================================================================
   The Marsden Rooms — bespoke design system
   Palette: cocoa + cream + sage duotone, gold accent
   Type: EB Garamond (display) · Instrument Sans (body) · Fragment Mono (labels)
   ========================================================================= */

:root {
  /* duotone — cocoa & sage on cream */
  --cocoa-900: #211712;
  --cocoa-800: #2c2018;
  --cocoa-700: #3d2c20;
  --cocoa-600: #5a4334;
  --cocoa-500: #76594450;
  --cream:     #f4ece0;
  --cream-2:   #efe4d4;
  --cream-3:   #e7d9c4;
  --paper:     #fbf6ee;
  --sage-700:  #4a5a48;
  --sage-600:  #5f7159;
  --sage-500:  #7d9072;
  --sage-300:  #b6c3ac;
  --sage-100:  #dde4d4;
  --gold:      #c08a3e;
  --gold-soft: #e3b573;
  --gold-deep: #9c6c2a;

  --ink:        #241910;
  --body:       #4a3b2e;
  --muted:      #7a6856;
  --line:       #ddcdb6;
  --line-soft:  #e8ddca;

  --bg:        var(--paper);
  --surface:   #ffffff;

  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Fragment Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(33,23,18,.05), 0 4px 14px rgba(33,23,18,.05);
  --shadow-md: 0 18px 48px -22px rgba(33,23,18,.35);
  --shadow-lg: 0 40px 90px -40px rgba(33,23,18,.45);
  --ease: cubic-bezier(.21,.7,.25,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 500; color: var(--ink); line-height: 1.04; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }

::selection { background: var(--gold-soft); color: var(--cocoa-900); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
section { position: relative; }

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 200;
  background: var(--cocoa-900); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .03em;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: 2.5px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7;
}
.eyebrow--center { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  --c: var(--cream);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--cocoa-900); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--cocoa-700); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--cocoa-900); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { background: transparent; color: var(--cocoa-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--cocoa-700); background: rgba(255,255,255,.5); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

/* magnetic targets */
.magnetic { display: inline-flex; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em; line-height: 1;
  display: flex; align-items: baseline; gap: .5rem;
}
.brand .mark {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
  display: inline-block; align-self: center;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--cocoa-700);
  position: relative; padding: .35rem 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; color: var(--ink); }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 1.4rem;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper); padding: 1.8rem var(--gutter) 2.4rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { font-size: 1.15rem; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(120% 90% at 12% 0%, var(--cream-2) 0%, transparent 55%),
    radial-gradient(95% 80% at 92% 8%, var(--sage-100) 0%, transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 80% 70%, color-mix(in srgb,var(--gold) 16%, transparent) 0%, transparent 60%),
    radial-gradient(50% 60% at 8% 90%, color-mix(in srgb,var(--sage-500) 20%, transparent) 0%, transparent 60%);
  opacity: .8;
  animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.9rem);
  line-height: .98; letter-spacing: -.02em; font-weight: 500;
  margin: 0 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lede {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  color: var(--cocoa-700); max-width: 30em; margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-meta {
  margin-top: 2.6rem; display: flex; gap: 2.2rem; flex-wrap: wrap;
  padding-top: 1.7rem; border-top: 1px solid var(--line);
}
.hero-meta .stat .n {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 600;
  color: var(--ink); line-height: 1; display: block;
}
.hero-meta .stat .l {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-top: .5rem; display: block;
}

/* hero visual collage */
.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-visual .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, color-mix(in srgb,var(--cocoa-900) 42%, transparent) 100%);
  mix-blend-mode: multiply;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 3;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.05rem 1.25rem;
  box-shadow: var(--shadow-md); max-width: 232px;
}
.hero-badge .who { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.hero-badge p { margin: .45rem 0 0; font-size: .92rem; line-height: 1.45; color: var(--cocoa-700); }
.hero-chip {
  position: absolute; right: -14px; top: 26px; z-index: 3;
  background: var(--sage-700); color: var(--cream);
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .55rem .9rem; border-radius: 999px; box-shadow: var(--shadow-md);
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
}

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--cocoa-900);
  color: var(--cream);
  padding: 1.05rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 1.3rem; padding-inline: 1.3rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem;
  white-space: nowrap; color: color-mix(in srgb, var(--cream) 88%, transparent);
}
.marquee__item::after { content: "•"; color: var(--gold-soft); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   SECTION HEADERS / GENERIC
   ========================================================================= */
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--cream { background: linear-gradient(180deg, var(--paper), var(--cream-2)); }
.section--cocoa { background: var(--cocoa-900); color: var(--cream-2); }
.section--cocoa h2, .section--cocoa h3 { color: var(--cream); }
.section--sage { background: linear-gradient(170deg, var(--sage-100), var(--cream)); }

.shead { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.6rem); }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.02; font-weight: 500;
  letter-spacing: -.018em;
}
.shead h2 em { font-style: italic; color: var(--gold-deep); }
.shead .sub { margin-top: 1.1rem; font-size: 1.12rem; color: var(--cocoa-600); line-height: 1.6; }
.section--cocoa .shead .sub { color: color-mix(in srgb,var(--cream) 78%, transparent); }
.section--cocoa .eyebrow { color: var(--gold-soft); }

/* =========================================================================
   INTRO / TRUST
   ========================================================================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.intro-figure { position: relative; }
.intro-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.intro-figure .tag {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--paper); border-radius: 12px; padding: .8rem 1rem;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cocoa-700); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.intro-body p.big {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.3; color: var(--ink); font-weight: 500; margin-bottom: 1.3rem;
}
.intro-body p.big em { font-style: italic; color: var(--gold-deep); }
.signature { margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem; }
.signature .nm { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--ink); }
.signature .rl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px){ .intro-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   SERVICES / APPROACH CARDS
   ========================================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem 2.1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--sage-500));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card:hover::before { transform: scaleX(1); }
.card .num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; color: var(--gold-deep); }
.card h3 { font-size: 1.5rem; margin: 1rem 0 .7rem; }
.card p { font-size: .98rem; color: var(--cocoa-600); margin-bottom: 1.1rem; }
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream-2); border: 1px solid var(--line); color: var(--sage-700); margin-bottom: .2rem;
}
.card ul { list-style: none; padding: 0; margin: 0; }
.card ul li {
  font-size: .9rem; color: var(--cocoa-600); padding: .45rem 0; border-top: 1px solid var(--line-soft);
  display: flex; gap: .6rem; align-items: baseline;
}
.card ul li::before { content: "—"; color: var(--gold); }
@media (max-width: 900px){ .cards { grid-template-columns: 1fr; } }

/* =========================================================================
   STEPS / METHOD
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.step {
  padding: 1.8rem 1.4rem; border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--cream) 60%, transparent);
  border: 1px solid var(--line-soft);
}
.section--cocoa .step { background: color-mix(in srgb,#fff 5%, transparent); border-color: color-mix(in srgb,#fff 12%, transparent); }
.step .k { font-family: var(--font-mono); font-size: 2rem; color: var(--gold); line-height: 1; }
.step h4 { font-size: 1.25rem; margin: .9rem 0 .5rem; }
.step p { font-size: .92rem; color: var(--cocoa-600); margin: 0; }
.section--cocoa .step p { color: color-mix(in srgb,var(--cream) 72%, transparent); }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* =========================================================================
   STATS BAND
   ========================================================================= */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stats-band .cell { background: var(--paper); padding: 2rem 1.5rem; text-align: center; }
.stats-band .n { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3.2rem); font-weight: 600; color: var(--ink); line-height: 1; }
.stats-band .n .u { color: var(--gold-deep); }
.stats-band .l { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .7rem; }
@media (max-width: 760px){ .stats-band { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.quote {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.2rem;
}
.quote .stars { color: var(--gold); letter-spacing: .15em; font-size: .9rem; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); }
.quote .by { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.quote .by .av { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-300); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--cocoa-800); }
.quote .by .nm { font-weight: 600; font-size: .92rem; color: var(--ink); }
.quote .by .rl { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px){ .quotes { grid-template-columns: 1fr; } }

/* =========================================================================
   INSIGHTS / POSTS
   ========================================================================= */
.insights { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.4rem; }
.post-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card .ph { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-3); }
.post-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .ph img { transform: scale(1.05); }
.post-card .bd { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card .pmeta { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .8rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.post-card h3 { font-size: 1.4rem; line-height: 1.12; margin-bottom: .7rem; }
.post-card.feat h3 { font-size: 1.9rem; }
.post-card p { font-size: .94rem; color: var(--cocoa-600); margin-bottom: 1.1rem; }
.post-card .more { margin-top: auto; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: .5rem; align-items: center; }
.post-card .more .arr { transition: transform .3s var(--ease); }
.post-card:hover .more .arr { transform: translateX(4px); }
.insights .feat { grid-row: span 2; }
.insights .feat .ph { aspect-ratio: 4/3; }
@media (max-width: 980px){ .insights { grid-template-columns: 1fr 1fr; } .insights .feat { grid-column: span 2; grid-row: auto; } }
@media (max-width: 680px){ .insights { grid-template-columns: 1fr; } .insights .feat { grid-column: auto; } }

/* =========================================================================
   RESOURCES / BLOGROLL
   ========================================================================= */
.resources { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.reslist { display: grid; gap: 0; }
.reslist a {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.3rem .4rem; border-top: 1px solid var(--line);
  transition: padding-left .3s var(--ease), color .25s var(--ease);
}
.reslist a:last-child { border-bottom: 1px solid var(--line); }
.reslist a:hover { padding-left: 1rem; color: var(--gold-deep); }
.reslist a .rt { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); transition: color .25s var(--ease); }
.reslist a:hover .rt { color: var(--gold-deep); }
.reslist a .rd { font-size: .85rem; color: var(--muted); max-width: 26em; }
.reslist a .ra { font-family: var(--font-mono); font-size: 1.1rem; color: var(--gold); }
@media (max-width: 820px){ .resources { grid-template-columns: 1fr; } .reslist a .rd { display: none; } }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  position: relative; overflow: hidden; border-radius: 26px;
  background:
    radial-gradient(80% 120% at 0% 0%, var(--cocoa-700) 0%, transparent 60%),
    radial-gradient(90% 120% at 100% 100%, var(--sage-700) 0%, transparent 55%),
    var(--cocoa-900);
  color: var(--cream); padding: clamp(2.6rem, 6vw, 4.6rem);
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 120%, color-mix(in srgb,var(--gold) 28%, transparent), transparent 70%);
}
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3.4rem); position: relative; z-index: 2; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { position: relative; z-index: 2; max-width: 40em; margin: 1.2rem auto 2rem; color: color-mix(in srgb,var(--cream) 82%, transparent); font-size: 1.1rem; }
.cta-band .hero-actions { position: relative; z-index: 2; justify-content: center; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--cocoa-900); color: color-mix(in srgb,var(--cream) 72%, transparent); padding: clamp(3rem,6vw,5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid color-mix(in srgb,#fff 12%, transparent); }
.foot-brand .brand { color: var(--cream); font-size: 1.7rem; margin-bottom: 1rem; }
.foot-brand p { max-width: 28em; font-size: .95rem; line-height: 1.6; }
.foot-col h4 { color: var(--cream); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; margin-bottom: 1.2rem; }
.foot-col a, .foot-col p { display: block; font-size: .92rem; color: color-mix(in srgb,var(--cream) 70%, transparent); padding: .35rem 0; transition: color .25s var(--ease); margin: 0; }
.foot-col a:hover { color: var(--gold-soft); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: color-mix(in srgb,var(--cream) 55%, transparent); }
@media (max-width: 820px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   PAGE HERO (interior)
   ========================================================================= */
.page-hero { padding: clamp(3rem,7vw,6rem) 0 clamp(2rem,4vw,3.5rem); background: radial-gradient(100% 100% at 80% 0%, var(--cream-2), transparent 60%), linear-gradient(180deg, var(--paper), var(--cream)); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; letter-spacing: -.02em; max-width: 14ch; }
.page-hero h1 em { font-style: italic; color: var(--gold-deep); }
.page-hero .lede { font-size: clamp(1.1rem,1.7vw,1.3rem); color: var(--cocoa-700); max-width: 34em; margin-top: 1.3rem; }
.crumbs { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.crumbs a:hover { color: var(--gold-deep); }

/* =========================================================================
   ABOUT
   ========================================================================= */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.member { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.member .ph { aspect-ratio: 1/1; background: linear-gradient(160deg,var(--sage-300),var(--cream-3)); display: grid; place-items: center; }
.member .ph span { font-family: var(--font-display); font-size: 3rem; color: var(--cocoa-700); font-weight: 600; }
.member .bd { padding: 1.4rem 1.5rem 1.7rem; }
.member h3 { font-size: 1.4rem; }
.member .role { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin: .4rem 0 .8rem; }
.member p { font-size: .92rem; color: var(--cocoa-600); margin: 0; }
@media (max-width: 860px){ .team { grid-template-columns: 1fr; } }

.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.value { padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: var(--surface); }
.value h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.value h3 .vn { font-family: var(--font-mono); font-size: .8rem; color: var(--gold-deep); margin-right: .6rem; }
.value p { font-size: .96rem; color: var(--cocoa-600); margin: 0; }
@media (max-width: 700px){ .values { grid-template-columns: 1fr; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info .item { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.contact-info .item:first-of-type { border-top: 0; }
.contact-info .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .4rem; }
.contact-info .v { font-size: 1.15rem; color: var(--ink); }
.contact-info .v a:hover { color: var(--gold-deep); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem,4vw,2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cocoa-700); margin-bottom: .55rem; }
.field input, .field textarea {
  width: 100%; padding: .9rem 1rem; font: inherit; font-size: 1rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-card button { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; text-align: center; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   ARTICLE
   ========================================================================= */
.article-hero { padding: clamp(2.5rem,6vw,4.5rem) 0 2rem; }
.article-hero .crumbs { margin-bottom: 1.4rem; }
.article-hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 500; letter-spacing: -.02em; max-width: 20ch; }
.article-meta { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.5rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.article-meta .pill { color: var(--gold-deep); }
.article-figure { margin: clamp(2rem,4vw,3rem) 0 0; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 16/8; object-fit: cover; }

.prose { font-size: 1.085rem; line-height: 1.78; color: var(--body); }
.prose > * { margin-bottom: 1.25em; }
.prose h2 { font-size: clamp(1.7rem,3vw,2.3rem); font-weight: 500; margin: 2.2em 0 .6em; letter-spacing: -.012em; line-height: 1.1; }
.prose h2::before { content: ""; display: block; width: 42px; height: 2px; background: var(--gold); margin-bottom: .7rem; }
.prose h3 { font-size: 1.4rem; font-weight: 500; margin: 1.8em 0 .5em; color: var(--cocoa-800); }
.prose h4 { font-size: 1.12rem; margin: 1.5em 0 .4em; font-family: var(--font-body); font-weight: 700; color: var(--cocoa-800); }
.prose p { margin-bottom: 1.25em; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-decoration-color: var(--gold-soft); text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color .2s var(--ease); }
.prose a:hover { color: var(--cocoa-900); text-decoration-color: var(--gold); }
.prose strong, .prose b { color: var(--cocoa-800); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin: 1.8em 0; }
.prose section h2 { margin-top: 2em; }
.prose [itemprop="mainEntity"] { border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: .9rem; background: color-mix(in srgb,var(--cream) 45%, transparent); }
.prose [itemprop="mainEntity"] h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; margin: 0 0 .5rem; color: var(--ink); }
.prose [itemprop="acceptedAnswer"] div { font-size: 1rem; }
.prose [itemprop="acceptedAnswer"] { margin: 0; }

.article-layout { display: grid; grid-template-columns: 1fr; gap: 0; }
.article-aside { margin-top: 3rem; padding: 1.8rem; border-radius: var(--radius-lg); background: var(--cream-2); border: 1px solid var(--line); }
.article-aside .eyebrow { margin-bottom: .8rem; }
.article-aside h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.article-aside p { font-size: .96rem; color: var(--cocoa-600); margin-bottom: 1.2rem; }

.related { margin-top: 1rem; }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* load stagger for hero */
.load-up { opacity: 0; transform: translateY(20px); }
.is-ready .load-up { animation: loadUp .9s var(--ease) forwards; }
.is-ready .load-up[data-d="1"] { animation-delay: .1s; }
.is-ready .load-up[data-d="2"] { animation-delay: .22s; }
.is-ready .load-up[data-d="3"] { animation-delay: .34s; }
.is-ready .load-up[data-d="4"] { animation-delay: .46s; }
.is-ready .load-up[data-d="5"] { animation-delay: .58s; }
.is-ready .load-up[data-d="6"] { animation-delay: .70s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .load-up { opacity: 1 !important; transform: none !important; }
  .hero::before, .marquee__track { animation: none !important; }
  .marquee__track { transform: none; }
}
