/* ===========================================================================
   GoodKnight Consulting — Repositioning Site
   Palette & fonts carried over from the existing brand.
   Direction: Pacific Northwest, uplifting, hopeful, premium.
   =========================================================================== */

:root {
  /* Brand palette (from existing site) */
  --evergreen:      #1D353F;   /* primary dark — forests + water */
  --evergreen-800:  #16282F;
  --evergreen-700:  #284752;
  --evergreen-600:  #375a66;
  --cream:          #E9E6E1;   /* main light background */
  --cream-light:    #F4F2EE;
  --cream-lighter:  #FAF8F5;
  --sage:           #798481;
  --sage-light:     #AEB6AB;
  --taupe:          #D5D2C3;
  --terracotta:     #D0AA97;   /* warm accent — sunrise */
  --terracotta-deep:#C0876B;
  --gold:           #A0814B;   /* accent / CTA */
  --gold-light:     #C2A368;
  --slate:          #4B5C60;
  --ink:            #212121;
  --white:          #ffffff;

  /* Semantic */
  --bg:             var(--cream-lighter);
  --text:           #2B3A3F;
  --text-soft:      #5C6B6F;
  --heading:        var(--evergreen);

  /* Type */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --maxw-narrow: 820px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(29,53,63,.06);
  --shadow:    0 14px 40px rgba(29,53,63,.10);
  --shadow-lg: 0 30px 70px rgba(29,53,63,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--heading); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { color: var(--text); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--maxw-narrow); }
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; }
.bg-cream  { background: var(--cream); }
.bg-creaml { background: var(--cream-light); }
.bg-white  { background: var(--white); }
.bg-evergreen { background: var(--evergreen); color: var(--cream); }
.bg-evergreen h1, .bg-evergreen h2, .bg-evergreen h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap; letter-spacing: .01em;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  color: var(--evergreen-800);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--terracotta) 55%, var(--terracotta-deep) 100%);
  box-shadow: 0 10px 26px rgba(192,135,107,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(192,135,107,.45); }

.btn-ghost { color: var(--evergreen); border-color: rgba(29,53,63,.22); background: transparent; }
.btn-ghost:hover { border-color: var(--evergreen); background: rgba(29,53,63,.04); transform: translateY(-2px); }

.btn-ghost-light { color: var(--cream); border-color: rgba(233,230,225,.4); }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(233,230,225,.08); transform: translateY(-2px); }

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(250,248,245,.85);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(29,53,63,.08);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--evergreen); letter-spacing: -.01em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-family: var(--sans); font-weight: 500; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
/* real logo image lockups */
.brand .logo { height: 42px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.scrolled .brand .logo { height: 36px; }
.brand .logo-light { display: none; }   /* gold, for dark backgrounds */
.brand .logo-dark  { display: block; }   /* evergreen, for light backgrounds */
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 600; color: var(--evergreen); position: relative; padding: 4px 0; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 6px; flex: none; }
.nav-links .nav-cta .btn { flex: none; }

/* Hero nav over dark */
.nav.on-dark .brand, .nav.on-dark .nav-links a { color: var(--cream); }
/* readability scrim + brighter, bolder links while over the hero (before scroll) */
.nav.on-dark:not(.scrolled) { background: linear-gradient(180deg, rgba(22,40,47,.6) 0%, rgba(22,40,47,.2) 62%, transparent 100%); }
.nav.on-dark:not(.scrolled) .nav-links a { color: #fff; font-weight: 600; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.nav.on-dark .brand small { color: var(--terracotta); }
.nav.on-dark.scrolled .brand, .nav.on-dark.scrolled .nav-links a { color: var(--evergreen); }
.nav.on-dark.scrolled .brand small { color: var(--gold); }
/* logo swap: on-dark shows gold; once scrolled (light bar) shows evergreen */
.nav.on-dark .brand .logo-light { display: block; }
.nav.on-dark .brand .logo-dark  { display: none; }
.nav.on-dark.scrolled .brand .logo-light { display: none; }
.nav.on-dark.scrolled .brand .logo-dark  { display: block; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: .3s; }
.nav.on-dark .nav-toggle { color: var(--cream); }
.nav.on-dark.scrolled .nav-toggle { color: var(--evergreen); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--evergreen-700) 0%, var(--evergreen) 55%, var(--evergreen-800) 100%);
  color: var(--cream);
  padding: clamp(120px, 18vh, 200px) 0 0;
}
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(208,170,151,.42) 0%, rgba(208,170,151,.12) 35%, transparent 65%);
  filter: blur(8px);
}
.hero-inner { position: relative; z-index: 3; max-width: 880px; }
.hero h1 { color: var(--white); margin-bottom: 26px; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; }
.hero .lead { color: rgba(233,230,225,.86); max-width: 660px; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 26px; color: rgba(233,230,225,.7); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

/* layered PNW mountains */
.hero-scape { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; pointer-events: none; line-height: 0; }
.hero-scape svg { width: 100%; height: auto; }
.hero-mist { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(233,230,225,.06) 60%, rgba(244,242,238,.0)); }

.scroll-cue { position: relative; z-index: 3; display: flex; justify-content: center; padding: 46px 0 30px; }
.scroll-cue span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(233,230,225,.55);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .dot { width: 22px; height: 34px; border: 1.5px solid rgba(233,230,225,.4); border-radius: 12px; position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; left: 50%; top: 7px; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: var(--terracotta); animation: scrolly 1.8s infinite; }
@keyframes scrolly { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 70%{opacity:1} 100%{opacity:0; transform:translate(-50%,10px)} }

/* ---------- Word cycler ---------- */
.cycler { display: inline-block; position: relative; color: var(--terracotta-deep); font-style: italic; }

/* ---------- Problem / Symptom cards ---------- */
.symptom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.symptom {
  background: var(--white); border: 1px solid rgba(29,53,63,.07); border-radius: var(--radius-sm);
  padding: 26px 26px 26px 28px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.symptom:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.symptom .ico { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream), var(--taupe)); color: var(--gold); }
.symptom p { font-weight: 500; color: var(--evergreen); margin: 0; padding-top: 7px; }

/* "Everything comes through you" hub diagram */
.hub { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hub-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hub-tags .tag { background: var(--cream); border: 1px solid rgba(160,129,75,.3); color: var(--evergreen);
  padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: .92rem; }
.hub-visual { position: relative; aspect-ratio: 1; max-width: 420px; margin: 0 auto; width: 100%; }

/* ---------- Framework stepper ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; top: 33px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold-light), var(--terracotta), var(--gold));
  background-size: 200% 100%; opacity: .5; animation: shimmer 8s linear infinite; }
.step { text-align: center; padding: 0 14px; position: relative; }
.step .num { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--gold); color: var(--gold); font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600; position: relative; z-index: 2; box-shadow: var(--shadow-sm); transition: .4s var(--ease); }
.step:hover .num { background: var(--gold); color: var(--white); transform: translateY(-4px); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--text-soft); }

/* Detailed framework stages (framework page) */
.stage { display: grid; grid-template-columns: 120px 1fr; gap: 36px; align-items: start;
  padding: 44px 0; border-top: 1px solid rgba(29,53,63,.1); }
.stage:first-of-type { border-top: 0; }
.stage .stage-no { font-family: var(--serif); font-size: clamp(3rem,6vw,4.6rem); color: var(--terracotta); line-height: .9; }
.stage h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }
.stage ul { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 20px; }
.stage ul li {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 1.02rem; font-weight: 600; color: var(--evergreen);
  opacity: 0; transform: translateY(16px) scale(.9);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.stage ul li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: inline-grid; place-items: center; font-size: .76rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--gold-light), var(--terracotta));
  box-shadow: 0 3px 8px rgba(192,135,107,.35); }
.stage ul li:hover { color: var(--gold); transform: translateY(-2px); }
/* Stage 1 = identifying pain points, not results — magnifying glass, no checkmark */
.stage:first-of-type ul li::before {
  content: ""; border: none; border-radius: 0; box-shadow: none;
  width: 23px; height: 23px; background: var(--terracotta-deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='10' r='6.4'/><line x1='14.9' y1='14.9' x2='21' y2='21'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='10' r='6.4'/><line x1='14.9' y1='14.9' x2='21' y2='21'/></svg>") center / contain no-repeat;
}
.stage:first-of-type ul li { color: var(--slate); }
/* per-stage icons — Align: handshake, Transfer: arrows, Develop: wrench (gold). Sustain keeps the check badge. */
.stage:nth-of-type(2) ul li::before,
.stage:nth-of-type(3) ul li::before,
.stage:nth-of-type(4) ul li::before {
  content: ""; border-radius: 0; box-shadow: none; width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta-deep));
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.stage:nth-of-type(2) ul li::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m11 17 2 2a1 1 0 1 0 3-3'/><path d='m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/><path d='m21 3 1 11h-2'/><path d='M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3'/><path d='M3 4h8'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m11 17 2 2a1 1 0 1 0 3-3'/><path d='m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/><path d='m21 3 1 11h-2'/><path d='M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3'/><path d='M3 4h8'/></svg>");
}
.stage:nth-of-type(3) ul li::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m16 3 4 4-4 4'/><path d='M20 7H4'/><path d='m8 21-4-4 4-4'/><path d='M4 17h16'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m16 3 4 4-4 4'/><path d='M20 7H4'/><path d='m8 21-4-4 4-4'/><path d='M4 17h16'/></svg>");
}
.stage:nth-of-type(4) ul li::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/></svg>");
}
/* staggered pop-in as each stage scrolls into view */
.stage.in ul li { animation: chipPop .55s var(--ease) forwards; }
.stage.in ul li:nth-child(1) { animation-delay: .06s; }
.stage.in ul li:nth-child(2) { animation-delay: .14s; }
.stage.in ul li:nth-child(3) { animation-delay: .22s; }
.stage.in ul li:nth-child(4) { animation-delay: .30s; }
@keyframes chipPop { 0% { opacity: 0; transform: translateY(16px) scale(.9); }
  60% { opacity: 1; transform: translateY(-3px) scale(1.03); }
  100% { opacity: 1; transform: none; } }

/* ---------- Offer cards ---------- */
.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; align-items: stretch; }
.offer {
  background: var(--white); border: 1px solid rgba(29,53,63,.08); border-radius: var(--radius);
  padding: 38px 34px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; overflow: hidden;
}
.offer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--terracotta)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(160,129,75,.3); }
.offer:hover::before { transform: scaleX(1); }
.offer.featured { background: var(--evergreen); border-color: var(--evergreen); }
.offer.featured::before { transform: scaleX(1); }
.offer.featured h3, .offer.featured .offer-price { color: var(--white); }
.offer.featured p, .offer.featured .offer-row span { color: rgba(233,230,225,.82); }
.offer.featured .offer-row strong { color: var(--terracotta); }
.offer .badge { position: absolute; top: 20px; right: 20px; background: var(--terracotta); color: var(--evergreen-800);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.offer h3 { margin-bottom: 6px; }
.offer .offer-tag { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.offer.featured .offer-tag { color: var(--terracotta); }
.offer > p { color: var(--text-soft); margin-bottom: 22px; }
.offer-rows { margin: 0 0 26px; display: grid; gap: 12px; }
.offer-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: baseline; font-size: .94rem; }
.offer-row span { color: var(--text-soft); font-weight: 600; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.offer-row strong { color: var(--evergreen); font-weight: 600; }
.offer-price { font-family: var(--serif); font-size: 1.5rem; color: var(--evergreen); margin-bottom: 24px; }
.offer .btn { margin-top: auto; justify-content: center; }

/* ---------- Proof / stats ---------- */
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .big { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.4rem); color: var(--terracotta); line-height: 1; margin-bottom: 10px; }
.bg-evergreen .stat .big { color: var(--terracotta); }
.stat .lbl { font-size: .92rem; color: var(--text-soft); }
.bg-evergreen .stat .lbl { color: rgba(233,230,225,.78); }

/* feature/credibility list */
.cred-list { list-style: none; display: grid; gap: 14px; }
.cred-list li { display: flex; gap: 14px; align-items: flex-start; }
.cred-list .check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--terracotta));
  display: grid; place-items: center; color: var(--white); margin-top: 2px; }

/* ---------- Split media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.portrait { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4/5;
  background: linear-gradient(165deg, var(--evergreen-600), var(--evergreen-800)); }
.portrait-ph { width: 100%; height: 100%; display: grid; place-items: center; text-align: center;
  background: linear-gradient(160deg, var(--evergreen-700), var(--evergreen-800)); color: rgba(233,230,225,.5); padding: 30px; }
.portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.portrait .glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 120%; height: 70%;
  background: radial-gradient(circle, rgba(208,170,151,.35), transparent 60%); pointer-events: none; z-index: 0; }
.portrait .portrait-img { position: relative; z-index: 1; }
/* bare floating cutout (no card) — sits directly on the section background */
.portrait-float { position: relative; max-width: 420px; margin: 0 auto; }
.portrait-float img { position: relative; z-index: 1; width: 100%; height: auto; display: block;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,.5)); }
.portrait-float .glow { position: absolute; left: 50%; top: 6%; transform: translateX(-50%);
  width: 116%; height: 82%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(208,170,151,.4), transparent 62%);
  animation: float-y 7s ease-in-out infinite; }

/* ---------- Topic chips (speaking) ---------- */
.topics { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.topic { background: var(--white); border: 1px solid rgba(29,53,63,.08); border-radius: var(--radius-sm); padding: 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.topic:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.topic .t-no { font-family: var(--serif); color: var(--terracotta); font-size: 1.1rem; }
.topic h3 { font-size: 1.2rem; margin: 8px 0 8px; }
.topic p { font-size: .94rem; color: var(--text-soft); }

/* ---------- Resource tiles (hub) ---------- */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.res-tile { background: var(--white); border: 1px solid rgba(29,53,63,.08); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.res-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(160,129,75,.3); }
.res-tile .res-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cream), var(--taupe)); color: var(--gold); }
.res-tile h3 { font-size: 1.3rem; margin-bottom: 10px; }
.res-tile p { font-size: .95rem; color: var(--text-soft); margin-bottom: 20px; }
.res-tile .res-link { margin-top: auto; font-weight: 600; color: var(--evergreen); font-size: .94rem;
  display: inline-flex; align-items: center; gap: 7px; transition: gap .3s var(--ease), color .25s; }
.res-tile:hover .res-link { color: var(--gold); gap: 11px; }
.res-tile .soon { margin-top: auto; font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); }

/* ---------- Resources / blog cards ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.post { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .post-img { aspect-ratio: 16/10; background: linear-gradient(160deg, var(--terracotta), var(--gold)); position: relative; }
.post .post-img.alt { background: linear-gradient(160deg, var(--sage), var(--evergreen-600)); }
.post .post-img.alt2 { background: linear-gradient(160deg, var(--taupe), var(--terracotta-deep)); }
.post .post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post .cat { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.post h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post p { font-size: .94rem; color: var(--text-soft); margin-bottom: 18px; }
.post .read { margin-top: auto; font-weight: 600; color: var(--evergreen); font-size: .92rem; display: inline-flex; gap: 6px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--evergreen); color: var(--cream); text-align: center; }
.cta-band .hero-glow { top: 50%; transform: translate(-50%,-50%); opacity: .7; }
.cta-band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(233,230,225,.82); margin-bottom: 34px; font-size: 1.12rem; }

/* quiz / scorecard callout */
.quiz-callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--cream), var(--taupe)); border: 1px solid rgba(160,129,75,.28);
  border-radius: var(--radius); padding: 38px clamp(28px,4vw,52px); }
.quiz-callout .qc-text { max-width: 640px; }
.quiz-callout h3 { font-size: clamp(1.4rem,2.4vw,1.9rem); margin: 8px 0 8px; }
.quiz-callout p { color: var(--text-soft); margin: 0; }
.quiz-callout .btn { flex: none; }

/* in-post CTA block */
.post-cta { background: linear-gradient(135deg, var(--cream), var(--taupe)); border-radius: var(--radius);
  padding: 44px clamp(28px,5vw,56px); text-align: center; border: 1px solid rgba(160,129,75,.25); }
.post-cta h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin-bottom: 14px; }
.post-cta p { max-width: 560px; margin: 0 auto 26px; color: var(--text-soft); }

/* ---------- Form ---------- */
.form { background: var(--white); border-radius: var(--radius); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--evergreen); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(29,53,63,.15); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: var(--cream-lighter); transition: border-color .25s, background .25s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(180deg, var(--evergreen-700), var(--evergreen)); color: var(--cream);
  padding: clamp(130px, 16vh, 180px) 0 clamp(64px,9vw,96px); position: relative; overflow: hidden; }
.page-hero .hero-glow { width: 700px; height: 700px; opacity: .8; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(233,230,225,.85); }
.page-hero .accent { color: var(--terracotta); font-style: italic; }

/* ---------- Footer ---------- */
.footer { background: var(--evergreen-800); color: rgba(233,230,225,.85); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(233,230,225,.12); }
.footer .brand { color: var(--cream); margin-bottom: 16px; }
.footer .brand small { color: var(--terracotta); }
.footer .brand .logo { height: 46px; }
.footer .brand .logo-light { display: block; }
.footer .brand .logo-dark { display: none; }
.footer-blurb { max-width: 320px; font-size: .94rem; line-height: 1.7; color: rgba(244,242,238,.92); }
.footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: .95rem; transition: color .25s; }
.footer ul a:hover { color: var(--cream); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 28px; font-size: .85rem; color: rgba(233,230,225,.5); }
.footer-bottom .pnw { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Real forest/mountain backgrounds (faded into palette) ---------- */
.has-scape { position: relative; isolation: isolate; overflow: hidden; }
.has-scape > .wrap { position: relative; z-index: 3; }
.scape { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  pointer-events: none; will-change: transform; }
.scape.dark { background-image: url('assets/scape-dark.jpg'); opacity: .26; mix-blend-mode: luminosity; }
.scape.soft { background-image: url('assets/scape-soft.jpg'); opacity: .5; }
/* per-section forest imagery */
.scape.s-hero  { background-image: url('assets/scape-hero.jpg'); }
.scape.s-page  { background-image: url('assets/scape-page.jpg'); }
.scape.s-cta   { background-image: url('assets/scape-cta.jpg'); }
.scape.s-proof { background-image: url('assets/scape-proof.jpg'); opacity: .2; }
/* keep a tall image for parallax travel without revealing edges */
.scape.parallax { top: -12%; height: 124%; }

/* ---------- Animations ---------- */
@keyframes drift { 0%,100% { transform: translate(-50%, 0) scale(1); } 50% { transform: translate(-50%, -22px) scale(1.06); } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }
@keyframes pulse-soft { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .9; } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes flow { to { stroke-dashoffset: -1000; } }

.hero-glow { animation: drift 11s ease-in-out infinite; }
.cta-band .hero-glow, .page-hero .hero-glow { animation: drift 13s ease-in-out infinite; }

/* shimmering primary button */
.btn-primary {
  background-size: 200% 200%;
  background-image: linear-gradient(115deg, var(--gold-light) 0%, var(--terracotta) 40%, var(--terracotta-deep) 60%, var(--gold-light) 100%);
  animation: shimmer 6s linear infinite;
}

/* hero accent gradient shimmer */
.hero h1 .accent, .page-hero .accent {
  background: linear-gradient(100deg, var(--terracotta) 0%, var(--gold-light) 40%, var(--terracotta) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}

/* rotating hub diagram */
.hub-visual .ring { transform-origin: 210px 210px; animation: spin-slow 60s linear infinite; }
.hub-visual .ring2 { transform-origin: 210px 210px; animation: spin-rev 44s linear infinite; }
.hub-visual .core { transform-origin: 210px 210px; animation: pulse-soft 3.4s ease-in-out infinite; }

/* framework connecting line: flowing dash */
.steps .flowline { stroke-dasharray: 10 8; animation: flow 26s linear infinite; }

/* portrait gentle float */
.portrait .glow { animation: float-y 7s ease-in-out infinite; }

/* count-up wrapper keeps layout stable */
.stat .big { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .btn-primary, .hero h1 .accent, .page-hero .accent,
  .hub-visual .ring, .hub-visual .ring2, .hub-visual .core,
  .steps .flowline, .portrait .glow { animation: none !important; }
  .btn-primary { background-position: 0 0; }
  .hero h1 .accent, .page-hero .accent { -webkit-text-fill-color: var(--terracotta); }
  .stage ul li { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hub, .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
/* Nav collapses to a slide-in menu early, so the bar never crowds the CTA pill */
@media (max-width: 1120px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--cream-lighter);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 8px; padding: 104px 34px 34px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); }
  .nav-links.open { transform: none; }
  /* backdrop-filter on a scrolled nav would trap the fixed menu panel (containing block) — use a solid bar instead */
  .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(250,248,245,.97); }
  .nav.on-dark .nav-links a, .nav-links a { color: var(--evergreen) !important; font-size: 1.12rem; font-weight: 600; }
  .nav-links .nav-cta { margin-top: 18px; width: 100%; }
  .nav-links .nav-cta .btn { display: flex; width: 100%; justify-content: center; white-space: normal; font-size: 1rem; }
  .nav-toggle { display: block; z-index: 120; }
}
@media (max-width: 760px) {
  .stage { grid-template-columns: 1fr; gap: 12px; }
  .offer-row { grid-template-columns: 84px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px 18px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}
