/* ============================================================
   Coach Nash TnT — refined editorial redesign
   Brand palette preserved from the live site.
   ============================================================ */

:root {
  /* brand colors — kept from original */
  --teal:        #2F757F;
  --teal-deep:   #0F2E39;
  --ink:         #12252B;
  --gold:        #C8A54C;
  --gold-soft:   #d9bd72;
  --paper:       #FAFAFA;
  --wash:        #F1F7F9;
  --slate:       #52707A;

  --teal-tint:   rgba(47,117,127,0.08);
  --gold-tint:   rgba(200,165,76,0.16);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 20px;
  --shadow-sm: 0 2px 14px rgba(15,46,57,0.06);
  --shadow-md: 0 18px 50px -20px rgba(15,46,57,0.30);
  --shadow-lg: 0 40px 90px -30px rgba(15,46,57,0.45);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* film grain overlay for warmth/texture */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- shared type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; font-optical-sizing: auto; }
em { font-style: italic; }

.kicker {
  font-family: var(--font-body);
  font-weight: 600; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.kicker--light { color: var(--gold-soft); }

.section { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); position: relative; }
.section__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem,5vw,4rem); }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 1rem 0 1.1rem; max-width: 16ch; }
.section__head--center { text-align: center; }
.section__head--center .kicker { justify-content: center; }
.section__head--center h2 { margin-inline: auto; }
.section__lede { color: var(--slate); font-size: 1.08rem; max-width: 52ch; }
.section__head--center .section__lede { margin-inline: auto; }
.section__head--split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: end; }
.section__head--split h2 { font-size: clamp(2rem,4vw,3rem); margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--solid { background: var(--teal); color: var(--paper); box-shadow: var(--shadow-md); }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -18px rgba(47,117,127,.6); background: #2a6a73; }
.btn--gold { background: var(--gold); color: var(--teal-deep); box-shadow: 0 18px 44px -18px rgba(200,165,76,.7); }
.btn--gold:hover { transform: translateY(-3px); background: var(--gold-soft); box-shadow: 0 26px 56px -18px rgba(200,165,76,.85); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.28); color: var(--paper); }
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .4s var(--ease); }
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav--scrolled { background: rgba(250,250,250,.82); backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 1px 0 rgba(15,46,57,.07); }
.nav--scrolled .nav__inner { padding-block: .7rem; }

/* transparent over the dark hero — light text until scrolled */
.nav:not(.nav--scrolled) .brand__name { color: var(--paper); }
.nav:not(.nav--scrolled) .brand__tnt { color: var(--gold-soft); }
.nav:not(.nav--scrolled) .brand__mark { box-shadow: inset 0 0 0 1px rgba(200,165,76,.4); }
.nav:not(.nav--scrolled) .nav__links a { color: rgba(250,250,250,.82); }
.nav:not(.nav--scrolled) .nav__links a:hover { color: #fff; }
.nav:not(.nav--scrolled) .link-call { color: var(--gold-soft); }
.nav:not(.nav--scrolled) .btn--solid { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); backdrop-filter: blur(4px); box-shadow: none; }
.nav:not(.nav--scrolled) .btn--solid:hover { background: var(--gold); color: var(--teal-deep); border-color: transparent; }
.nav:not(.nav--scrolled) .nav__burger span { background: var(--paper); }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--teal-deep);
  color: var(--gold); display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; letter-spacing: .02em;
  box-shadow: var(--shadow-sm); flex: none;
}
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__tnt { color: var(--teal); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-weight: 500; font-size: .96rem; color: var(--slate); position: relative; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--teal); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 1.1rem; }
.link-call { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .95rem; color: var(--teal); }
.link-call:hover { color: var(--teal-deep); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 9rem var(--pad) 4rem; overflow: hidden;
  background: linear-gradient(160deg, var(--teal-deep) 0%, #123842 45%, #0c2832 100%);
  color: var(--paper);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb--1 { width: 540px; height: 540px; background: radial-gradient(circle, var(--teal) 0%, transparent 70%); top: -140px; right: -100px; animation: float1 14s ease-in-out infinite; }
.orb--2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); bottom: -160px; left: -80px; opacity: .35; animation: float2 18s ease-in-out infinite; }
.orb--3 { width: 600px; height: 600px; background: radial-gradient(circle, var(--teal) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .25; }
.hero__lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 64px; mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
@keyframes float1 { 50% { transform: translate(-30px, 40px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(40px, -30px) scale(1.12); } }

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }

/* portrait — top-aligned with the headline so her head lines up with the hero text */
.hero__portrait { position: relative; align-self: start; display: flex; align-items: flex-start; justify-content: center; }
.hero__content { display: flex; flex-direction: column; }
.hero__portrait-glow {
  position: absolute; z-index: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 118%; aspect-ratio: 1; max-width: 640px;
  background: radial-gradient(circle at center 60%, rgba(200,165,76,.28) 0%, rgba(47,117,127,.22) 38%, transparent 68%);
  filter: blur(6px);
}
.hero__portrait img {
  position: relative; z-index: 1; width: 100%; max-width: 520px; height: auto;
  object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  animation: portraitRise 1.1s var(--ease) both .3s;
}
@keyframes portraitRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero__badge {
  position: absolute; z-index: 2; left: clamp(0px, 2vw, 18px); bottom: 8%;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(15,46,57,.72); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,165,76,.35); border-radius: 14px; padding: .7rem .95rem;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.6); animation: portraitRise 1.1s var(--ease) both .7s;
}
.hero__badge-mark { width: 38px; height: 38px; border-radius: 9px; background: var(--teal-deep); color: var(--gold); display: grid; place-items: center; font-family: var(--font-body); font-weight: 700; font-size: .9rem; flex: none; box-shadow: inset 0 0 0 1px rgba(200,165,76,.4); }
.hero__badge span { display: flex; flex-direction: column; line-height: 1.25; font-size: .8rem; color: rgba(250,250,250,.8); }
.hero__badge strong { color: var(--paper); font-size: .92rem; font-weight: 600; font-family: var(--font-display); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  padding: .5rem 1rem; border: 1px solid rgba(200,165,76,.4); border-radius: 999px;
  background: rgba(200,165,76,.08); color: var(--gold-soft); margin-bottom: 1.8rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,165,76,.25); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(200,165,76,0); } }

.hero__title { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 400; max-width: 16ch; }
.hero__title span { display: block; }
.hero__title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero__lede { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: rgba(250,250,250,.82); max-width: 50ch; margin: 1.8rem 0 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__quote { margin-top: 3.2rem; max-width: 46ch; padding-left: 1.4rem; border-left: 2px solid rgba(200,165,76,.5); }
.hero__quote .stars { color: var(--gold); letter-spacing: .15em; font-size: .9rem; margin-bottom: .6rem; }
.hero__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.18rem; color: rgba(250,250,250,.92); line-height: 1.5; }
.hero__quote footer { margin-top: .7rem; font-size: .92rem; color: rgba(250,250,250,.65); }
.hero__quote strong { color: var(--paper); font-weight: 600; }

.hero__stats {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 4.5rem auto 0; width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 2.2rem; gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat__num, .stat__plus { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 500; color: var(--gold); line-height: 1; }
.stat__plus { display: inline; }
.stat:has(.stat__num) { position: relative; }
.stat__label { margin-top: .5rem; color: rgba(250,250,250,.7); font-size: .92rem; letter-spacing: .02em; }
.stat { gap: 0; }
.stat__num + .stat__plus { margin-left: -2px; }

/* keep number + plus on one line */
.stat { flex-direction: row; flex-wrap: wrap; align-items: baseline; }
.stat .stat__label { flex-basis: 100%; }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes { background: var(--paper); }
.outcomes__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.outcome {
  background: var(--wash); border: 1px solid rgba(47,117,127,.1); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.outcome:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(200,165,76,.5); background: #fff; }
.outcome__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); font-size: 1.35rem; margin-bottom: 1.1rem; }
.outcome h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.outcome p { color: var(--slate); font-size: .95rem; line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--wash); }
.services__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.service {
  position: relative; background: #fff; border: 1px solid rgba(47,117,127,.12); border-radius: var(--radius);
  padding: 2.4rem 2.2rem; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--teal), var(--gold)); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleY(1); }
.service__no { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; color: rgba(47,117,127,.2); display: block; line-height: 1; margin-bottom: .8rem; }
.service h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.service p { color: var(--slate); margin-bottom: 1.4rem; max-width: 42ch; }
.service__link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--teal); font-size: .96rem; }
.service__link svg { transition: transform .3s var(--ease); }
.service:hover .service__link { color: var(--teal-deep); }
.service:hover .service__link svg { transform: translateX(4px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--teal-deep); color: var(--paper); overflow: hidden; }
.process__bg { position: absolute; inset: 0; z-index: 0; }
.process > * { position: relative; z-index: 1; }
.process__steps { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; padding: 2.2rem 1.9rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s var(--ease), background .3s;
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); }
.step__no { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--teal-deep); background: var(--gold); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1.3rem; }
.step h3 { font-size: 1.4rem; margin-bottom: .6rem; color: var(--paper); }
.step p { color: rgba(250,250,250,.72); font-size: .98rem; }
/* connector line on desktop */
.process__steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 2.2rem; right: -.95rem; width: 1.9rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 11px);
  transform: translateX(50%); opacity: .6;
}
.process__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials { background: var(--paper); }
.creds__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cred {
  text-align: center; padding: 2rem 1.4rem; border-radius: var(--radius);
  background: var(--wash); border: 1px solid rgba(47,117,127,.1); position: relative;
  transition: transform .4s var(--ease), box-shadow .3s;
}
.cred::before { content: "✦"; display: block; color: var(--gold); font-size: 1.2rem; margin-bottom: .9rem; }
.cred:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cred strong { display: block; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.cred span { color: var(--slate); font-size: .9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--wash); }
.quotes { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote {
  position: relative; background: #fff; border-radius: var(--radius); padding: 2.6rem 2rem 2rem;
  border: 1px solid rgba(47,117,127,.1); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote__mark { font-family: var(--font-display); font-size: 4.5rem; line-height: .6; color: var(--gold); opacity: .35; height: 2rem; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; margin-bottom: 1.5rem; }
.quote figcaption strong { display: block; font-family: var(--font-display); font-size: 1.08rem; color: var(--teal-deep); }
.quote figcaption span { color: var(--slate); font-size: .88rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--paper); }
.cta__card {
  position: relative; max-width: var(--maxw); margin: 0 auto; text-align: center; overflow: hidden;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: 32px; padding: clamp(3rem, 6vw, 5.5rem) var(--pad); color: var(--paper);
  box-shadow: var(--shadow-lg);
}
.cta__card > * { position: relative; z-index: 1; }
/* glow selector is more specific than `.cta__card > *` so it stays absolute (out of flow) */
.cta__card > .cta__glow { position: absolute; z-index: 0; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); opacity: .22; top: -180px; right: -100px; filter: blur(40px); }
.cta__card .kicker { justify-content: center; }
.cta__card h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 1rem 0 1.2rem; color: var(--paper); }
.cta__lede { color: rgba(250,250,250,.85); font-size: 1.12rem; max-width: 48ch; margin: 0 auto 2.2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__fine { margin-top: 1.6rem; font-size: .9rem; color: rgba(250,250,250,.6); letter-spacing: .02em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(250,250,250,.72); padding: clamp(3rem,6vw,5rem) var(--pad) 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.brand--footer .brand__name { color: var(--paper); }
.footer__brand p { margin-top: 1.1rem; max-width: 36ch; font-size: .95rem; line-height: 1.6; }
.footer__col h4 { font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; }
.footer__col a, .footer__loc { display: block; font-size: .94rem; color: rgba(250,250,250,.7); padding: .28rem 0; transition: color .25s; }
.footer__col a:hover { color: var(--gold); }
.footer__social { color: var(--gold-soft) !important; font-weight: 600; }
.footer__bar { max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .86rem; color: rgba(250,250,250,.5); }
.footer__bar a { padding: 0 .7rem; transition: color .25s; }
.footer__bar a:hover { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s 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; }
.reveal[data-d="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .outcomes__grid { grid-template-columns: repeat(3, 1fr); }
  .creds__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 640px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta .link-call, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  /* left slide-out drawer */
  .mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 90;
    width: min(80vw, 330px); max-height: none; overflow-y: auto;
    display: flex; flex-direction: column; gap: .15rem;
    background: var(--paper); backdrop-filter: none;
    padding: 5.75rem var(--pad) 2rem;
    transform: translateX(-100%); transition: transform .42s var(--ease);
    box-shadow: 22px 0 60px -22px rgba(15,46,57,.5);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { padding: .9rem 0; font-weight: 500; font-size: 1.06rem; color: var(--ink); border-bottom: 1px solid rgba(47,117,127,.1); }
  .mobile-menu .btn { display: inline-flex; justify-content: center; margin-top: 1.3rem; border-bottom: 0; }
  /* keep the drawer CTA solid (override the over-hero translucent nav button) */
  .nav:not(.nav--scrolled) .mobile-menu .btn--solid {
    background: var(--teal); color: var(--paper); border-color: transparent;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }

  /* dimmed backdrop behind the drawer (created by site.js) */
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 85; background: rgba(15,46,57,.5);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  /* no backdrop-filter on mobile nav: it would create a containing block and
     trap the fixed slide-out drawer inside the header. Use a solid bar instead. */
  .nav--scrolled, .nav { background: rgba(250,250,250,.96); -webkit-backdrop-filter: none; backdrop-filter: none; }

  /* mobile nav always sits on a light bar — keep brand + burger dark/legible */
  .nav:not(.nav--scrolled) .brand__name { color: var(--ink); }
  .nav:not(.nav--scrolled) .brand__tnt { color: var(--teal); }
  .nav:not(.nav--scrolled) .nav__burger span { background: var(--ink); }

  .section__head--split { grid-template-columns: 1fr; align-items: start; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process__steps .step::after { display: none; }
  .hero__stats { gap: 1.5rem 1rem; }

  /* stack hero: text first, portrait below */
  .hero { min-height: auto; padding-top: 8rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__title, .hero__lede { max-width: 32ch; }
  .hero__quote { text-align: left; }
  .hero__portrait { order: 2; min-height: 0; }
  .hero__portrait img { max-width: 360px; }
}

@media (max-width: 600px) {
  .outcomes__grid { grid-template-columns: 1fr 1fr; }
  .creds__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 1.4rem; border-top: 0; }
  .stat { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .hero { min-height: auto; }
  .hero__portrait img { max-width: 300px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -4%; }
}

/* ============================================================
   INTERIOR PAGES — shared sub-hero banner
   ============================================================ */
.subhero {
  position: relative; overflow: hidden; color: var(--paper);
  background: linear-gradient(160deg, var(--teal-deep) 0%, #123842 55%, #0c2832 100%);
  padding: 10rem var(--pad) 5rem;
}
.subhero__bg { position: absolute; inset: 0; z-index: 0; }
.subhero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.subhero .kicker { color: var(--gold-soft); }
.subhero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; margin: 1.1rem 0 0; max-width: 18ch; line-height: 1.04; }
.subhero h1 em { color: var(--gold); }
.subhero__lede { margin-top: 1.4rem; max-width: 56ch; font-size: clamp(1.05rem,1.6vw,1.28rem); color: rgba(250,250,250,.82); }
.subhero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.subhero .btn--solid { background: var(--gold); color: var(--teal-deep); }
.subhero .btn--solid:hover { background: var(--gold-soft); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro { background: var(--paper); }
.about-intro__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.55fr .85fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.about-intro__lead { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.85rem); line-height: 1.4; color: var(--ink); font-weight: 400; margin-bottom: 1.6rem; }
.about-intro__lead em { color: var(--teal); font-style: italic; }
.about-intro p + p { margin-top: 1.1rem; }
.about-intro__body p { color: var(--slate); font-size: 1.05rem; }
.about-card {
  position: sticky; top: 110px; background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--paper); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); overflow: hidden;
}
.about-card .brand__mark { width: 56px; height: 56px; font-size: 1.4rem; border-radius: 14px; margin-bottom: 1.3rem; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(200,165,76,.4); }
.about-card h3 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--paper); }
.about-card p { color: rgba(250,250,250,.8); font-size: .98rem; margin-bottom: 1.5rem; }
.about-card .btn { width: 100%; }
.about-card .btn + .btn { margin-top: .7rem; }

/* numbered stages (about approach) */
.stages { background: var(--wash); }
.stages__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.stage { position: relative; background: #fff; border: 1px solid rgba(47,117,127,.12); border-radius: var(--radius); padding: 2rem 1.6rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.stage:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stage__no { font-family: var(--font-display); font-size: 3.2rem; font-weight: 300; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--gold); display: block; margin-bottom: .8rem; }
.stage h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.stage p { color: var(--slate); font-size: .96rem; }

/* core values */
.values { background: var(--paper); }
.values__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.value { display: flex; gap: 1.2rem; padding: 1.8rem; border-radius: var(--radius); background: var(--wash); border: 1px solid rgba(47,117,127,.1); transition: border-color .3s, transform .4s var(--ease); }
.value:hover { border-color: rgba(200,165,76,.5); transform: translateY(-4px); }
.value__ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; font-size: 1.3rem; }
.value h3 { font-size: 1.22rem; margin-bottom: .4rem; }
.value p { color: var(--slate); font-size: .97rem; }

/* who I work with */
.audience { background: var(--teal-deep); color: var(--paper); overflow: hidden; position: relative; }
.audience__bg { position: absolute; inset: 0; z-index: 0; }
.audience > * { position: relative; z-index: 1; }
.audience .section__head h2 { color: var(--paper); }
.audience__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.aud { display: flex; align-items: center; gap: .9rem; padding: 1.3rem 1.4rem; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); font-weight: 500; transition: background .3s, transform .35s var(--ease); }
.aud:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.aud::before { content: "✦"; color: var(--gold); flex: none; }

/* mini-creds strip reused via .creds__grid; add link wrapper */
.creds-strip { background: var(--paper); }
.creds-strip .section__head { margin-bottom: 2rem; }

/* ============================================================
   SERVICES (detailed)
   ============================================================ */
.svc-list { background: var(--wash); }
.svc-list__wrap { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: 1.6rem; }
.svc {
  scroll-margin-top: 110px; background: #fff; border: 1px solid rgba(47,117,127,.12); border-radius: 24px;
  padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease);
}
.svc:hover { box-shadow: var(--shadow-md); }
.svc__head { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(47,117,127,.12); margin-bottom: 1.8rem; }
.svc__no { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.svc__title-wrap { }
.svc__cat { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.svc h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin: .3rem 0 .2rem; }
.svc__sub { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--slate); margin-bottom: 1rem; }
.svc__desc { color: var(--slate); font-size: 1.05rem; max-width: 70ch; }
.svc__meta { display: inline-block; margin-top: 1.1rem; font-size: .88rem; font-weight: 500; color: var(--teal); background: var(--teal-tint); padding: .5rem 1rem; border-radius: 999px; }
.svc__proposal { margin-top: 1.2rem; }
.svc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.svc__col h4 { font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.svc__col h4::before { content: ""; width: 18px; height: 2px; background: var(--gold); }
.svc__col ul { display: flex; flex-direction: column; gap: .7rem; }
.svc__col li { display: flex; gap: .7rem; color: var(--slate); font-size: .98rem; line-height: 1.45; }
.svc__col li::before { content: "→"; color: var(--teal); flex: none; font-weight: 700; }
.svc__col--out li::before { content: "✓"; color: var(--gold); }

/* ============================================================
   CREDENTIALS PAGE
   ============================================================ */
.creds-page { background: var(--paper); }
.creds-group { max-width: var(--maxw); margin: 0 auto 3rem; }
.creds-group__label { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 500; margin-bottom: 1.3rem; display: flex; align-items: center; gap: .8rem; }
.creds-group__label::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.creds-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
.cert {
  background: var(--wash); border: 1px solid rgba(47,117,127,.12); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.cert:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200,165,76,.4); background:#fff; }

/* clickable thumbnail */
.cert__thumb { position: relative; display: block; aspect-ratio: 7 / 5; overflow: hidden; background: #fff; cursor: zoom-in; border-bottom: 1px solid rgba(47,117,127,.1); }
.cert__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s var(--ease); }
.cert__thumb:hover img { transform: scale(1.06); }
.cert__zoom {
  position: absolute; right: .7rem; bottom: .7rem; width: 36px; height: 36px; border-radius: 9px;
  background: rgba(15,46,57,.78); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--gold); display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cert__thumb:hover .cert__zoom, .cert__thumb:focus-visible .cert__zoom { opacity: 1; transform: none; }

.cert__body { padding: 1.5rem 1.7rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.cert__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .6rem; }
.cert__year { flex: none; font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--teal-deep); background: var(--gold-tint); padding: .3rem .7rem; border-radius: 999px; }
.cert h3 { font-size: 1.18rem; line-height: 1.25; }
.cert__inst { color: var(--teal); font-weight: 600; font-size: .95rem; margin-bottom: .6rem; }
.cert p { color: var(--slate); font-size: .95rem; margin-bottom: 1rem; }
.cert__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; color: var(--teal); cursor: zoom-in; margin-top: auto; }
.cert__link:hover { color: var(--teal-deep); }
.cert__link svg { transition: transform .3s var(--ease); }
.cert:hover .cert__link svg { transform: translate(2px,-2px); }

.featured-cred { background: var(--teal-deep); color: var(--paper); position: relative; overflow: hidden; }
.featured-cred__bg { position: absolute; inset: 0; z-index: 0; }
.featured-cred__card { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.featured-cred__text { text-align: left; }
.featured-cred .kicker { color: var(--gold-soft); }
.featured-cred h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin: 1rem 0 .6rem; color: var(--paper); }
.featured-cred__org { color: var(--gold-soft); font-weight: 600; margin-bottom: 1.4rem; }
.featured-cred p { color: rgba(250,250,250,.82); font-size: 1.06rem; }
.featured-cred__seal { width: 64px; height: 64px; border-radius: 50%; background: rgba(200,165,76,.15); border: 2px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 1.3rem; }
.featured-cred__thumb {
  position: relative; display: block; border-radius: 14px; overflow: hidden; cursor: zoom-in;
  border: 1px solid rgba(200,165,76,.4); box-shadow: 0 24px 60px -24px rgba(0,0,0,.65); background: #fff;
  transition: transform .4s var(--ease);
}
.featured-cred__thumb:hover { transform: translateY(-5px); }
.featured-cred__thumb img { display: block; width: 100%; height: auto; }
.featured-cred__thumb .cert__zoom { opacity: 0; }
.featured-cred__thumb:hover .cert__zoom { opacity: 1; transform: none; }

/* ============================================================
   LIGHTBOX (certificate viewer)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: clamp(1.2rem, 4vw, 3.5rem); background: rgba(8,24,30,.9);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__fig { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; max-width: 1040px; transform: scale(.95); transition: transform .35s var(--ease); }
.lightbox.open .lightbox__fig { transform: scale(1); }
.lightbox__img { max-width: 100%; max-height: 80vh; border-radius: 8px; background: #fff; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.lightbox__cap { color: rgba(250,250,250,.88); font-size: .96rem; text-align: center; max-width: 64ch; line-height: 1.5; }
.lightbox__close {
  position: absolute; top: clamp(1rem,3vw,1.6rem); right: clamp(1rem,3vw,1.8rem);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .25s var(--ease), transform .35s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }

.affiliations { background: var(--wash); }
.affil__grid { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.affil { background: #fff; border: 1px solid rgba(47,117,127,.12); border-radius: var(--radius); padding: 1.8rem; text-align: center; }
.affil strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: .3rem; }
.affil span { color: var(--teal); font-weight: 600; font-size: .92rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: var(--paper); }
.contact__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(1.6rem,4vw,3.2rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__intro h2 { font-size: 1.6rem; margin-bottom: .6rem; }
.contact-info__intro p { color: var(--slate); margin-bottom: 1rem; }
.cinfo { display: flex; gap: 1rem; padding: 1.3rem 1.4rem; background: var(--wash); border: 1px solid rgba(47,117,127,.1); border-radius: 16px; transition: border-color .3s; }
.cinfo:hover { border-color: rgba(200,165,76,.4); }
.cinfo__ico { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; }
.cinfo h4 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); font-weight: 700; margin-bottom: .25rem; }
.cinfo a, .cinfo span { color: var(--ink); font-weight: 500; font-size: 1rem; word-break: break-word; }
.cinfo a:hover { color: var(--teal); }
.cinfo small { display: block; color: var(--slate); font-weight: 400; font-size: .88rem; margin-top: .15rem; }

.cform { background: #fff; border: 1px solid rgba(47,117,127,.12); border-radius: 24px; padding: clamp(1.8rem,3vw,2.6rem); box-shadow: var(--shadow-md); }
.cform__head h2 { font-size: 1.7rem; margin-bottom: .4rem; }
.cform__head p { color: var(--slate); margin-bottom: 1.6rem; }
.cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  padding: .8rem 1rem; border: 1px solid rgba(47,117,127,.25); border-radius: 11px; background: var(--paper);
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: 1.3rem 0; font-size: .9rem; color: var(--slate); }
.consent input { margin-top: .25rem; accent-color: var(--teal); flex: none; }
.consent a { color: var(--teal); font-weight: 600; }
.cform .btn { width: 100%; }
.cform__note { text-align: center; margin-top: 1rem; font-size: .85rem; color: var(--slate); }

/* honeypot — visually hidden from users, still in the DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* submit status message */
.cform__status { margin-top: 1rem; padding: .85rem 1.1rem; border-radius: 12px; font-size: .95rem; font-weight: 500; text-align: center; }
.cform__status--pending { background: var(--teal-tint); color: var(--teal); }
.cform__status--success { background: rgba(47,117,127,.12); color: var(--teal-deep); border: 1px solid rgba(47,117,127,.3); }
.cform__status--error   { background: rgba(200,80,60,.1); color: #9a3b29; border: 1px solid rgba(200,80,60,.3); }

/* ============================================================
   LEGAL (privacy / terms)
   ============================================================ */
.legal { background: var(--paper); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal__updated { color: var(--slate); font-size: .95rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(47,117,127,.12); }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--slate); font-size: 1.05rem; line-height: 1.7; }
.legal a { color: var(--teal); font-weight: 600; }

/* responsive for interior pages */
@media (max-width: 1024px) {
  .stages__grid { grid-template-columns: repeat(2,1fr); }
  .audience__grid { grid-template-columns: repeat(2,1fr); }
  .about-intro__grid { grid-template-columns: 1fr; }
  .about-card { position: static; max-width: 420px; }
}
@media (max-width: 860px) {
  .values__grid, .creds-cards, .affil__grid, .contact__grid, .cform__grid { grid-template-columns: 1fr; }
  .svc__cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .audience__grid { grid-template-columns: 1fr; }
  .about-card { max-width: none; }
  .featured-cred__card { grid-template-columns: 1fr; text-align: center; }
  .featured-cred__text { text-align: center; }
  .featured-cred__seal { margin-inline: auto; }
  .featured-cred p { margin-inline: auto; }
  .featured-cred__thumb { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .stages__grid { grid-template-columns: 1fr; }
  .svc__head { grid-template-columns: 1fr; gap: .5rem; }
}
