/* ============================================================
   Winnacle Site — composition styles for the marketing build
   Loads after colors_and_type.css (the token file)
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-page);
  color: var(--fg1);
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  line-height: var(--lh-base);
  scroll-behavior: smooth;
}

/* ============================================================
   Top nav — sticky to top of viewport
   ============================================================ */

/* Utility bar — slim gold promo strip that sits above the nav.
   Add <a class="util-bar" href="…">…</a> immediately before <nav class="topnav">. */
.util-bar {
  display: block;
  background: var(--ww-gradient-gold);
  color: var(--ww-navy-deep);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-13);
  font-weight: var(--fw-subhead);
  letter-spacing: 0.02em;
  padding: 9px 20px;
  text-decoration: none;
  border: 0;
  transition: filter var(--dur-fast) var(--ease-standard);
}
.util-bar:hover { filter: brightness(1.05); color: var(--ww-navy-deep); border: 0; }
.util-bar b { color: var(--ww-navy-deep); font-weight: var(--fw-strong); }
/* Mobile: drop the bold phrase to its own line and hide the separator */
@media (max-width: 680px) {
  .util-bar .util-bar-sep { display: none; }
  .util-bar b { display: block; }
}

.topnav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,247,238,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.topnav .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex; align-items: center; gap: 36px;
}
.topnav img { height: 48px; width: auto; display: block; }
.topnav .inner > a { border-bottom: 0; }
.topnav .inner > a:hover { border-color: transparent; }
.topnav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 30px; flex: 1;
}
.topnav li a {
  font: 600 14px var(--ff-body);
  color: var(--ww-navy);
  text-decoration: none;
  border: 0;
  transition: color var(--dur-fast) var(--ease-standard);
}
.topnav li a:hover { color: var(--ww-gold); }
.topnav li a.is-current { color: var(--ww-gold); border-bottom: 2px solid var(--ww-gold); padding-bottom: 4px; }
.topnav .nav-cta {
  font: 600 13px var(--ff-body);
  padding: 10px 19px;
  border-radius: var(--radius-md);
  background: var(--ww-navy);
  color: var(--ww-cream);
  text-decoration: none; border: 1px solid transparent;
  transition: all var(--dur-base) var(--ease-standard);
}
.topnav .nav-cta:hover { background: var(--ww-gold); color: var(--ww-navy-deep); border-color: var(--ww-gold); }

/* On dark pages, invert nav lightly */
.page--dark .topnav { background: rgba(15,22,51,0.88); border-bottom-color: rgba(226,200,146,0.14); }
.page--dark .topnav li a { color: var(--ww-cream); }
.page--dark .topnav li a:hover { color: var(--ww-gold); }
.page--dark .topnav li a.is-current { color: var(--__gold-glint); border-color: var(--ww-gold); }
.page--dark .topnav .nav-cta { background: var(--ww-gold); color: var(--ww-navy-deep); }
.page--dark .topnav .nav-cta:hover { background: var(--__gold-glint); color: var(--ww-navy-deep); border-color: var(--ww-navy-deep); }

/* ============================================================
   Section + wrap utilities
   ============================================================ */
section.sec { padding: 96px 48px; }
section.sec.tight { padding: 72px 48px; }
section.sec.band-tint { background: var(--ww-navy-50); }
section.sec.band-gold { background: var(--ww-gold-50); }
/* Bold dark moment: navy gradient for depth + a faint gold glow up top */
section.sec.band-dark {
  background:
    radial-gradient(120% 85% at 78% 0%, rgba(201,168,106,0.12), transparent 58%),
    var(--ww-gradient-navy);
  color: var(--ww-cream);
}
section.sec.band-deep {
  background:
    radial-gradient(120% 85% at 22% 0%, rgba(201,168,106,0.10), transparent 58%),
    var(--ww-navy-deep);
  color: var(--ww-cream);
}
.wrap { max-width: 1240px; margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }

/* ============================================================
   Scroll reveal — subtle fade + rise, staggered per block.
   The `.reveal-sec` class is added by site.js only; with JS off
   (or reduced-motion on) every section renders fully visible.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal-sec > .wrap > *,
  .reveal-sec > .wrap-narrow > * {
    opacity: 0;
    transform: translateY(14px);
    will-change: opacity, transform;
    /* gentle ease-out (easeOutQuint) — smooth deceleration, slow tail */
    transition:
      opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-sec.is-visible > .wrap > *,
  .reveal-sec.is-visible > .wrap-narrow > * {
    opacity: 1;
    transform: none;
  }
  /* small, overlapping stagger so blocks flow in rather than step */
  .reveal-sec.is-visible > .wrap > *:nth-child(2),
  .reveal-sec.is-visible > .wrap-narrow > *:nth-child(2) { transition-delay: 60ms; }
  .reveal-sec.is-visible > .wrap > *:nth-child(3),
  .reveal-sec.is-visible > .wrap-narrow > *:nth-child(3) { transition-delay: 120ms; }
  .reveal-sec.is-visible > .wrap > *:nth-child(4),
  .reveal-sec.is-visible > .wrap-narrow > *:nth-child(4) { transition-delay: 180ms; }
  .reveal-sec.is-visible > .wrap > *:nth-child(5),
  .reveal-sec.is-visible > .wrap-narrow > *:nth-child(5) { transition-delay: 240ms; }
  .reveal-sec.is-visible > .wrap > *:nth-child(n+6),
  .reveal-sec.is-visible > .wrap-narrow > *:nth-child(n+6) { transition-delay: 300ms; }
}

/* ============================================================
   Eyebrow / kicker / rule
   ============================================================ */
.kicker {
  font: 600 13px var(--ff-body);
  letter-spacing: 0.04em;
  color: var(--ww-gold);
  margin: 0 0 16px;
}
.kicker--on-dark { color: var(--__gold-glint); }
.rule-gold {
  height: 2px; width: 96px;
  background: var(--ww-gradient-gold);
  border: 0;
  margin: 24px 0 28px;
}
.rule-gold--sm { width: 64px; }
.rule-soft { height: 1px; border: 0; background: var(--border-soft); margin: 32px 0; }
.rule-on-dark { background: rgba(226,200,146,0.25); }

/* ============================================================
   Display type — overrides for hero scale
   ============================================================ */
h1, .h1 {
  font-family: var(--ff-display);
  font-weight: 400; font-style: normal;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ww-navy);
  margin: 0 0 0.4em;
}
.band-dark h1, .band-deep h1, .page--dark h1 { color: var(--ww-cream); }
.h1-sm { font-size: clamp(34px, 3.6vw, 52px); }

h2, .h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ww-navy);
  margin: 0 0 0.3em;
}
.band-dark h2, .band-deep h2 { color: var(--ww-cream); }

h3, .h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--fs-24);
  line-height: var(--lh-snug);
  color: var(--ww-navy);
  margin: 0 0 0.4em;
}
.band-dark h3, .band-deep h3 { color: var(--ww-cream); }

h4, .h4 {
  font-family: var(--ff-body);
  font-weight: var(--fw-subhead);
  font-size: var(--fs-18);
  line-height: var(--lh-snug);
  color: var(--ww-navy);
  margin: 0 0 0.4em;
  letter-spacing: 0;
}
.band-dark h4, .band-deep h4 { color: var(--ww-cream); }

p { margin: 0 0 14px; }
.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--fg2); max-width: 56ch; }
.band-dark .lede, .band-deep .lede { color: rgba(251,247,238,0.85); }
.body-sm { font-size: var(--fs-14); color: var(--fg2); line-height: 1.55; }
.muted { color: var(--fg2); }
.band-dark .muted, .band-deep .muted { color: rgba(251,247,238,0.75); }

.tm { font-size: 0.5em; vertical-align: super; font-weight: 400; }

.attrib {
  font: 400 14px var(--ff-body);
  color: var(--fg2);
  letter-spacing: 0.02em;
  font-style: normal;
}
.band-dark .attrib, .band-deep .attrib { color: rgba(251,247,238,0.7); }

/* ============================================================
   Text contrast on dark bands
   Generic <p> picks up the near-black --fg1 from the base stylesheet
   unless explicitly overridden — that's the dark-on-dark bug.
   ============================================================ */
.band-dark p, .band-deep p { color: rgba(251,247,238,0.85); }
.band-dark .body-sm, .band-deep .body-sm { color: rgba(251,247,238,0.72); }
.band-dark .meta-line, .band-deep .meta-line { color: rgba(251,247,238,0.7); }
.band-dark ol, .band-deep ol,
.band-dark ul:not([style*="list-style:none"]),
.band-deep ul:not([style*="list-style:none"]) { color: rgba(251,247,238,0.85); }
.band-dark strong, .band-deep strong { color: var(--ww-cream); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 14px var(--ff-body);
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
}
.btn .arrow { transition: transform var(--dur-fast) var(--ease-standard); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--navy { background: var(--ww-navy); color: var(--ww-cream); }
.btn--navy:hover { background: var(--__navy-lift); color: var(--ww-cream); border-color: var(--ww-gold); }
/* On dark bands a navy fill blends into the navy background — give navy buttons
   a visible gold edge by default so they read as buttons before hover. */
.band-dark .btn--navy, .band-deep .btn--navy { border-color: var(--ww-gold); }
/* Equal-height cards whose action buttons bottom-align onto the same line */
.cards-align .card { display: flex; flex-direction: column; }
.cards-align .card > .btn { margin-top: auto; }
.btn--gold { background: var(--ww-gold); color: var(--ww-navy-deep); }
.btn--gold:hover { background: var(--__gold-glint); color: var(--ww-navy-deep); border-color: var(--ww-navy-deep); }
.btn--cream { background: var(--ww-cream); color: var(--ww-navy-deep); }
.btn--cream:hover { background: var(--ww-white); color: var(--ww-navy-deep); border-color: var(--border-strong); }
.btn--ghost {
  background: transparent; color: var(--ww-navy);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--ww-navy-50); color: var(--ww-navy); border-color: var(--ww-navy); }
.btn--ghost-light {
  background: transparent; color: var(--ww-cream);
  border-color: rgba(226,200,146,0.5);
}
.btn--ghost-light:hover { background: rgba(226,200,146,0.1); color: var(--ww-cream); border-color: var(--__gold-glint); }
.btn--full { width: 100%; justify-content: center; }
/* Registration-not-yet-open notice. Class registration goes live 4 weeks
   before each session, so this reads as a status pill, not a button:
   muted fill, dashed gold edge, and no pointer interaction. */
.btn--soon {
  background: var(--ww-gold-50);
  color: var(--fg2);
  border: 1px dashed var(--ww-gold);
  cursor: default;
  pointer-events: none;
  text-align: left;
}
.btn--soon .clock { flex: 0 0 auto; opacity: 0.9; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 14px var(--ff-body);
  color: var(--ww-navy);
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid var(--ww-gold);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-standard);
}
.btn-link:hover { color: var(--ww-gold); }
.band-dark .btn-link, .band-deep .btn-link {
  color: var(--__gold-glint); border-color: var(--ww-gold);
}
.band-dark .btn-link:hover, .band-deep .btn-link:hover { color: var(--ww-cream); }

/* ============================================================
   Grids
   ============================================================ */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.cols-hero { grid-template-columns: 1.3fr 1fr; }
.cols-2-flip { grid-template-columns: 1fr 1.4fr; }

/* ============================================================
   Cards / tiles
   ============================================================ */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
}
.card--flat { /* legacy, no-op */ }
.card--cream { background: var(--ww-cream); }
.card--inset { padding: 24px; }

/* Guide cards with PDF cover previews */
.guide-card { display: flex; flex-direction: column; }
.guide-cover {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ww-navy-50);
  border: 1px solid rgba(28, 42, 94, 0.16);
  box-shadow: var(--shadow-1);
  margin-bottom: 22px;
}
.guide-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.guide-card h4 { margin: 0 0 10px; }
.guide-card .body-sm { margin: 0 0 4px; }
.guide-card .btn-link { margin-top: auto; padding-top: 18px; }

/* Full-bleed photo band with text overlay (Waco landmark imagery) */
.photo-band { position: relative; display: grid; grid-template-columns: 1fr; align-items: center; overflow: hidden; min-height: 460px; }
.photo-band > .photo-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band > .photo-band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,22,51,0.85) 0%, rgba(15,22,51,0.55) 48%, rgba(15,22,51,0.15) 100%);
}
.photo-band .wrap { position: relative; z-index: 1; width: 100%; }
.photo-band h2, .photo-band h1 { color: var(--ww-cream); }
.photo-band .lede, .photo-band p { color: rgba(251,247,238,0.92); }
.photo-band .photo-stamp {
  position: absolute; z-index: 1; bottom: 20px; right: 22px;
  background: rgba(15,22,51,0.7); color: rgba(251,247,238,0.85);
  font: 600 11px var(--ff-body); letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 12px; border-left: 2px solid var(--ww-gold);
}
/* Taller variant for page heroes */
.photo-band--tall { min-height: 540px; }
.photo-band h1 { color: var(--ww-cream); }
/* Stats overlaid on a photo band read light */
.photo-band .stats { border-color: rgba(226,200,146,0.28); }
.photo-band .stat .n { color: var(--ww-cream); }
.photo-band .stat .l { color: rgba(251,247,238,0.82); }
@media (max-width: 680px) {
  .photo-band { min-height: 400px; }
  .photo-band--tall { min-height: 460px; }
  .photo-band > .photo-band-scrim { background: linear-gradient(180deg, rgba(15,22,51,0.55), rgba(15,22,51,0.86)); }
}
.band-dark .card, .band-deep .card {
  background: rgba(251,247,238,0.06);
  border-color: rgba(226,200,146,0.18);
  box-shadow: none;
}

/* Clickable cards — the whole card triggers its primary link (guide PDFs + articles) */
.card { position: relative; }
.card a[href$=".pdf"]::after,
.card--link a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card:has(a[href$=".pdf"]),
.card--link {
  cursor: pointer;
  transition:
    transform var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard);
}
.card:has(a[href$=".pdf"]):hover,
.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: var(--ww-gold);
}

.tile {
  padding: 28px 0;
}
.tile h4 { margin-top: 14px; }
.tile p { font-size: var(--fs-15); line-height: 1.55; color: var(--fg2); margin: 0; }
.band-dark .tile p, .band-deep .tile p { color: rgba(251,247,238,0.78); }

/* Specialty marker (e.g. equity comp) */
.specialty {
  position: relative;
  background: var(--ww-gold-50);
  border-color: rgba(201,168,106,0.4);
}
.specialty .kicker { color: var(--ww-navy); }

/* ============================================================
   Image placeholders + photos
   ============================================================ */
.photo {
  position: relative;
  background: var(--ww-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-3);
}
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Image column that stretches to its adjacent card's height (bottoms align);
   restores an intrinsic ratio once the row stacks on mobile so it can't collapse. */
.photo--fill { align-self: stretch; }
@media (max-width: 680px) { .photo--fill { aspect-ratio: 4 / 3; } }
.photo--duotone img { filter: url("#ww-duotone-navy"); }
.photo--hero {
  position: absolute; inset: 0;
  border-radius: 0;
}
.photo-ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(28,42,94,0.05) 0,
      rgba(28,42,94,0.05) 1px,
      transparent 1px,
      transparent 14px
    ),
    var(--ww-navy-50);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--fg2);
  font: 400 12px var(--ff-mono);
  letter-spacing: 0.04em;
  padding: 18px;
  min-height: 120px;
}
.photo-ph span { max-width: 200px; }
.band-dark .photo-ph, .band-deep .photo-ph {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(226,200,146,0.08) 0,
      rgba(226,200,146,0.08) 1px,
      transparent 1px,
      transparent 14px
    ),
    rgba(251,247,238,0.04);
  border-color: rgba(226,200,146,0.18);
  color: rgba(251,247,238,0.55);
}

.portrait {
  width: 88px; height: 88px;
  border-radius: 999px;
  background: var(--ww-gold-50);
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; display: block; }

/* ============================================================
   Crest watermark — tone-on-tone on navy bands (4-8% opacity)
   Brand-system spec; finally being used.
   ============================================================ */
.crest-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.crest-watermark img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.06;
}
.band-dark .crest-watermark img,
.band-deep .crest-watermark img,
.hero .crest-watermark img { opacity: 0.07; }

/* ============================================================
   Hero — portrait split (the brochure cover language)
   Full-color photo on one side, copy block on the other.
   "Earned full-color moment" per brand system.
   ============================================================ */
.hero-split {
  background: var(--ww-cream);
  padding: 72px 48px 96px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-split .hero-split-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-split-copy {
  padding: 24px 0 24px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
}
.hero-split-copy h1 { color: var(--ww-navy); }
.hero-split-copy .lede { color: var(--fg2); max-width: 540px; }
.hero-split-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ww-navy-50);
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  max-height: 720px;
  justify-self: end;
  width: 100%;
}
.hero-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split-photo .photo-stamp {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(15,22,51,0.78);
  backdrop-filter: blur(6px);
  color: var(--ww-cream);
  font: 600 11px var(--ff-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 0;
  border-left: 2px solid var(--ww-gold);
}
.hero-split .hero-trust {
  margin-top: 36px;
  font: 600 11px var(--ff-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ww-navy);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-split .hero-trust .dot {
  width: 4px; height: 4px; background: var(--ww-gold); border-radius: 50%; display: inline-block;
}
.hero-split .hero-trust .muted-dot { color: var(--ww-stone); }
.hero-stamp {
  margin: 28px 0 0;
  font: 600 11px var(--ff-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ww-graphite);
}
.hero-stamp span { color: var(--ww-gold); margin: 0 4px; }
.hero-split .crest-watermark {
  top: -120px; right: -120px;
  width: 640px; height: 640px;
  z-index: 0;
}
.hero-split .crest-watermark img { opacity: 0.05; }

@media (max-width: 980px) {
  .hero-split .hero-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-split-photo { aspect-ratio: 4/5; max-height: 560px; }
}

/* JustHer hero variant — white-studio photo, sub-brand surface */
.hero-split--justher {
  background: linear-gradient(180deg, var(--ww-white) 0%, var(--ww-cream) 100%);
}
.hero-split--justher .hero-split-photo {
  background: var(--ww-white);
  box-shadow: 0 24px 60px rgba(15,22,51,0.10);
}
.hero-split--justher .hero-split-photo img { object-position: 38% center; }
.hero-split--justher .hero-split-photo .photo-stamp {
  background: rgba(251,247,238,0.94);
  color: var(--ww-navy-deep);
  border-left-color: var(--ww-gold);
}
.hero-split--justher .crest-watermark img { opacity: 0.04; }

/* Full-color photo (overrides .photo--duotone if applied together) */
.photo--full img { filter: none !important; }

/* Founders card — brochure-style intro pairing */
.founders-card {
  background: var(--ww-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-2);
}
.founders-card .founders-photo {
  background: var(--ww-cream);
  position: relative;
  min-height: 420px;
}
.founders-card .founders-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.founders-card .founders-copy {
  padding: 48px 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.founders-card .founders-copy .kicker { color: var(--ww-gold); }
.founders-card .founders-names {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
  color: var(--ww-navy);
  margin: 4px 0 0;
}
.founders-card .founders-meta {
  font: 600 12px var(--ff-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ww-stone);
  margin: 12px 0 0;
}
.founders-card .founders-quote {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.35;
  color: var(--ww-navy-deep);
  margin: 24px 0 0;
  max-width: 36ch;
}
.founders-card .founders-attrib {
  font: 600 12px var(--ff-body);
  letter-spacing: 0.04em;
  color: var(--ww-graphite);
  margin: 20px 0 0;
}
@media (max-width: 860px) {
  .founders-card { grid-template-columns: 1fr; }
  .founders-card .founders-photo { min-height: 360px; }
  .founders-card .founders-copy { padding: 32px; }
}

/* B&W editorial pull-quote — used only for JustHer */
.editorial-quote {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.editorial-quote .editorial-photo {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 620px;
  background: var(--ww-navy-deep);
}
.editorial-quote .editorial-photo img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02);
}
.editorial-quote .editorial-copy {
  position: relative;
  padding: 0 0 0 32px;
}
.editorial-quote .editorial-copy::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--ww-navy);
}
.editorial-quote .editorial-mark {
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--ww-gold);
  display: block;
  margin: 0 0 8px;
}
.editorial-quote blockquote {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.2;
  color: var(--ww-navy-deep);
  margin: 0;
  max-width: 22ch;
}
.editorial-quote .editorial-attrib {
  margin-top: 28px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ww-graphite);
}
@media (max-width: 860px) {
  .editorial-quote { grid-template-columns: 1fr; gap: 32px; }
}

/* Solo variant — no photo, centered, larger */
.editorial-quote--solo {
  display: block;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 0;
}
.editorial-quote--solo .editorial-mark {
  display: block;
  font-size: clamp(96px, 10vw, 144px);
  line-height: 0.45;
  margin: 0 0 16px;
}
.editorial-quote--solo blockquote {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.18;
  color: var(--ww-navy-deep);
  letter-spacing: -0.01em;
  max-width: none;
  margin: 0 auto;
}
.editorial-quote--solo .editorial-attrib {
  margin-top: 36px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ww-graphite);
}

/* Community / casual moment — Baylor photo, off-center stamp */
.casual-moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.casual-moment .casual-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
  box-shadow: var(--shadow-2);
}
.casual-moment .casual-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.casual-moment .casual-photo .photo-stamp {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--ww-cream);
  color: var(--ww-navy-deep);
  font: 600 10px var(--ff-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-left: 2px solid var(--ww-gold);
}
@media (max-width: 860px) {
  .casual-moment { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Waco interlude — quiet atmospheric beat
   Full-bleed duotone Waco landmark with a single line of type.
   ============================================================ */
.waco-interlude {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ww-cream);
  padding: 96px 48px;
}
.waco-interlude .waco-bg { position: absolute; inset: 0; z-index: -2; }
.waco-interlude .waco-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: url("#ww-duotone-navy");
}
.waco-interlude .waco-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,22,51,0.45) 0%, rgba(15,22,51,0.72) 100%);
}
.waco-interlude h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--ww-cream);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.waco-interlude .rule-gold {
  margin: 28px auto 0;
}
.waco-interlude .place-stamp {
  margin-top: 24px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--__gold-glint);
}

/* ============================================================
   Brand pull-quote — the consistent founder/voice treatment
   Big display-serif italic, navy heavy rule, gold open mark.
   Used wherever the firm quotes a single founder.
   ============================================================ */
.brand-quote-block {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 4px solid var(--ww-navy);
}
.brand-quote-block .brand-quote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
  color: var(--ww-navy-deep);
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 28ch;
}
.brand-quote-block .brand-quote-attrib {
  margin-top: 18px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ww-graphite);
}
.band-dark .brand-quote-block,
.band-deep .brand-quote-block { border-top-color: var(--ww-gold); }
.band-dark .brand-quote-block .brand-quote,
.band-deep .brand-quote-block .brand-quote { color: var(--ww-cream); }
.band-dark .brand-quote-block .brand-quote-attrib,
.band-deep .brand-quote-block .brand-quote-attrib { color: var(--__gold-glint); }

/* ============================================================
   Services ledger — editorial index, no card containers
   ============================================================ */
.services-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 72px;
  margin-top: 56px;
}
.svc-col-eyebrow {
  font: 600 11px var(--ff-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ww-graphite);
  margin: 0 0 6px;
}
.svc-col-heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
  color: var(--ww-navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.svc-col-rule {
  height: 2px;
  width: 56px;
  background: var(--ww-gradient-gold);
  border: 0;
  margin: 18px 0 16px;
}
.svc-entry {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
}
.svc-entry:last-child { border-bottom: 1px solid var(--border-soft); }
.svc-entry .svc-name {
  font-family: var(--ff-body);
  font-weight: var(--fw-subhead);
  font-size: 17px;
  line-height: 1.3;
  color: var(--ww-navy);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.svc-entry .svc-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg2);
  margin: 0;
}
.svc-entry .svc-specialty {
  display: inline-block;
  font: 600 10px var(--ff-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ww-gold);
  margin-left: 8px;
  vertical-align: 3px;
}
@media (max-width: 960px) {
  .services-ledger { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Hero blocks
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 48px 128px;
  background: var(--ww-navy-deep);
  color: var(--ww-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: url("#ww-duotone-navy");
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,22,51,0.85) 0%, rgba(15,22,51,0.55) 45%, rgba(15,22,51,0.30) 100%),
    linear-gradient(180deg, rgba(15,22,51,0) 50%, rgba(15,22,51,0.6) 100%);
}
.hero .wrap { position: relative; }
.hero-content { max-width: 780px; }
.hero h1 { color: var(--ww-cream); }
.hero .lede { color: rgba(251,247,238,0.86); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  margin-top: 36px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.04em;
  color: rgba(226,200,146,0.7);
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.hero-trust .dot { width: 4px; height: 4px; background: var(--ww-gold); border-radius: 50%; display: inline-block; }

/* ============================================================
   Pricing / fee rows
   ============================================================ */
.fee-rows { display: flex; flex-direction: column; }
.fee-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.fee-row:first-child { border-top: 1px solid var(--border-soft); }
.fee-row span { color: var(--fg2); font-size: var(--fs-15); }
.fee-row strong {
  font-family: var(--ff-body); font-weight: var(--fw-subhead);
  font-size: var(--fs-18); color: var(--ww-navy); white-space: nowrap;
}
.price-figure {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1; color: var(--ww-navy);
  margin: 18px 0 10px; letter-spacing: -0.01em;
}

/* ============================================================
   Services 3-cluster
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 56px; }
.svc-cluster h3 { margin-bottom: 24px; }
.svc-list { display: flex; flex-direction: column; gap: 14px; }
.svc-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.svc-tile h4 { margin: 0 0 4px; font-size: var(--fs-15); }
.svc-tile p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--fg2); }
.svc-tile.specialty {
  background: var(--ww-gold-50);
  border-color: rgba(201,168,106,0.45);
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
/* 2x2 variant — for tucking the stats into a column */
.stats--2x2 { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
.stats--2x2 .n { font-size: clamp(36px, 3vw, 48px); }
.stat .n {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1;
  color: var(--ww-navy);
}
.stat .l {
  margin-top: 10px;
  font: 600 12px var(--ff-body);
  letter-spacing: 0.04em;
  color: var(--fg2);
}
.band-dark .stats, .band-deep .stats { border-color: rgba(226,200,146,0.2); }
.band-dark .stat .n, .band-deep .stat .n { color: var(--__gold-glint); }
.band-dark .stat .l, .band-deep .stat .l { color: rgba(251,247,238,0.75); }

/* ============================================================
   Team grid
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.team-photo {
  width: 140px; height: 140px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--ww-gold-50);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--ff-display); font-size: 22px; color: var(--ww-navy); margin: 0 0 4px; }
.team-role { font: 600 12px var(--ff-body); letter-spacing: 0.04em; color: var(--ww-gold); margin-bottom: 14px; }
.team-bio { font-size: 13px; line-height: 1.6; color: var(--fg2); margin: 0 0 18px; }
.team-card .btn-link { font-size: 13px; margin-top: auto; align-self: center; }
/* The bio toggle is a <button> styled as the standard text link. */
.team-bio-toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   Team bio modal
   ============================================================ */
.bio-modal {
  width: min(640px, calc(100vw - 32px));
  max-width: 640px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--bg-surface);
  color: var(--fg2);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}
.bio-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}
.bio-modal-inner { position: relative; padding: 40px; }
.bio-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--ww-navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.bio-modal-close:hover { background: var(--ww-navy); color: #fff; }
.bio-modal-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.bio-modal-photo {
  flex: 0 0 88px;
  width: 88px; height: 88px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--ww-gold-50);
}
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-modal-name { font-family: var(--ff-display); font-size: 26px; color: var(--ww-navy); margin: 0 0 4px; }
.bio-modal-role { font: 600 12px var(--ff-body); letter-spacing: 0.04em; color: var(--ww-gold); margin: 0; }
.bio-modal-body { max-height: min(56vh, 520px); overflow-y: auto; }
.bio-modal-body p { font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.bio-modal-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: var(--ww-navy-deep);
  color: rgba(251,247,238,0.7);
  padding: 64px 48px 32px;
}
.foot .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; }
.foot img { height: 44px; width: auto; }
.foot h5 { font: 600 12px var(--ff-body); letter-spacing: 0.04em; color: var(--__gold-glint); margin: 0 0 14px; text-transform: uppercase; }
.foot a { color: rgba(251,247,238,0.78); border: 0; font-size: 14px; display: block; padding: 4px 0; text-decoration: none; }
.foot a:hover { color: var(--__gold-glint); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot p { font-size: 13px; line-height: 1.6; margin: 0 0 8px; color: rgba(251,247,238,0.65); }
.foot-bottom {
  max-width: 1240px; margin: 56px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(226,200,146,0.14);
  font-size: 11px; line-height: 1.55;
  color: rgba(251,247,238,0.45);
}
.foot-disc { font-size: 11px; line-height: 1.55; color: rgba(251,247,238,0.45); margin-top: 16px; }

.foot-tagline {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.2;
  color: var(--__gold-glint);
  letter-spacing: -0.005em;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto 56px;
  padding: 0 24px 44px;
  border-bottom: 1px solid rgba(226,200,146,0.18);
}
.foot-tagline .tm { color: var(--__gold-glint); }

.tagline-band {
  background: var(--ww-navy);
  color: var(--__gold-glint);
  font-family: var(--ff-display);
  font-size: 28px;
  text-align: center;
  padding: 36px 24px;
  letter-spacing: -0.005em;
  border-top: 1px solid rgba(226,200,146,0.18);
}

/* ============================================================
   Forms
   ============================================================ */
.field {
  background: var(--ww-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--fg2);
  font-family: var(--ff-body);
}
.field.tall { min-height: 96px; }

/* ============================================================
   Process / timeline / event row
   ============================================================ */
.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}
.event-row .date {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--ww-navy);
  display: block;
  line-height: 1;
}
.event-row .month {
  font: 600 11px var(--ff-body);
  letter-spacing: 0.06em;
  color: var(--ww-gold);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.event-row h3 { font-size: 20px; margin: 0 0 6px; }
.event-row .meta-line { font-size: 13px; color: var(--fg2); margin: 0; }

/* ============================================================
   Chips / tags
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: 600 12px var(--ff-body);
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--ww-white);
  color: var(--ww-navy);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
}
.chip:hover { border-color: var(--ww-gold); color: var(--ww-gold); }
.chip.is-active { background: var(--ww-navy); color: var(--ww-cream); border-color: var(--ww-navy); }

/* ============================================================
   Partner cells
   ============================================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-cell {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
}
.partner-cell .logo-box {
  height: 64px;
  background: var(--ww-navy-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font: 400 10px var(--ff-mono);
  letter-spacing: 0.06em;
  color: var(--fg3);
  margin-bottom: 14px;
}
.partner-cell h5 { font: 600 14px var(--ff-body); color: var(--ww-navy); margin: 0 0 4px; }
.partner-cell p { font-size: 12px; line-height: 1.5; color: var(--fg2); margin: 0; }

/* ============================================================
   FAQ accordion (open by default, document-feel)
   ============================================================ */
.faq-item {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item h3 {
  font-size: 22px;
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 0 0 12px;
}
.faq-item h3::after {
  content: '+';
  font-family: var(--ff-display);
  color: var(--ww-gold);
  font-size: 28px;
}
.faq-item p { color: var(--fg2); max-width: 80ch; margin: 0; }

/* ============================================================
   Misc utilities
   ============================================================ */
.center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Lucide icons baseline */
.icon { width: 20px; height: 20px; stroke-width: 1.5; color: var(--ww-navy); flex-shrink: 0; }
.icon--gold { color: var(--ww-gold); }
.icon--cream { color: var(--ww-cream); }
.icon-circle {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--ww-gold-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ww-navy);
  border: 1px solid rgba(201,168,106,0.3);
}
.icon-circle--dark {
  background: rgba(226,200,146,0.12);
  border-color: rgba(226,200,146,0.25);
  color: var(--__gold-glint);
}
.icon-circle svg { width: 22px; height: 22px; stroke-width: 1.5; }

/* Pull-quote */
.pull {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.18;
  color: var(--ww-cream);
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.pull .open { color: var(--__gold-glint); font-family: var(--ff-display); }

/* Sub-brand mark for JustHer */
.subbrand {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--__gold-glint);
}
.subbrand .reg { font-size: 0.55em; vertical-align: super; margin-left: 1px; }


/* ============================================================
   Multi-page build additions (not in the design prototype)
   ============================================================ */
[id] { scroll-margin-top: 92px; }
.ww-filter-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Mobile nav toggle — injected by site.js, hidden on desktop */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--ww-navy);
  padding: 8px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle:hover { border-color: var(--ww-gold); }
.page--dark .nav-toggle { color: var(--ww-cream); border-color: rgba(226,200,146,0.4); }

@media (max-width: 880px) {
  .topnav .inner { flex-wrap: wrap; gap: 16px; }
  .nav-toggle { display: inline-flex; }
  .topnav ul {
    display: none;
    order: 3; flex: 0 0 100%;
    flex-direction: column; gap: 2px;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
  }
  .topnav .nav-cta { display: none; order: 4; flex: 0 0 100%; text-align: center; }
  .topnav.is-open ul { display: flex; }
  .topnav.is-open .nav-cta { display: block; }
  .topnav ul li a { display: block; padding: 12px 4px; }
  .topnav li a.is-current { border-bottom: 0; color: var(--ww-gold); }
  .page--dark .topnav ul { border-top-color: rgba(226,200,146,0.18); }
}

/* ============================================================
   Responsive — tablet & mobile (added in the mobile QA pass)
   ============================================================ */

/* Tablet / small laptop: drop 3- and 4-up grids to two columns,
   ease section + footer padding. */
@media (max-width: 900px) {
  section.sec { padding: 80px 32px; }
  section.sec.tight { padding: 64px 32px; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .foot { padding: 56px 32px 32px; }
  .foot .wrap { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}

/* Phone: single-column everything, tighter padding, full-width CTAs. */
@media (max-width: 680px) {
  section.sec { padding: 60px 22px; }
  section.sec.tight { padding: 48px 22px; }

  /* Hero is a <header>, not section.sec — give it the same mobile padding */
  .hero-split { padding: 56px 22px 64px; }

  /* Grid/flex items default to min-width:auto and refuse to shrink,
     which forces horizontal overflow. Let them shrink. */
  .hero-split-inner > *,
  .cols-2 > *, .cols-3 > *, .cols-4 > *,
  .cols-hero > *, .cols-2-flip > * { min-width: 0; }

  /* Every multi-column layout stacks */
  .cols-2, .cols-3, .cols-4,
  .cols-hero, .cols-2-flip { grid-template-columns: 1fr; }
  .cols-2 { gap: 32px; }

  /* Inline image+text feature grids and the newsletter row stack */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

  /* Stats become a 2x2 block */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
  .stat .n { font-size: clamp(34px, 12vw, 48px); }

  /* Event rows stack: date, then title, then button */
  .event-row { grid-template-columns: 1fr; gap: 10px; align-items: start; }

  /* Footer collapses to one column */
  .foot { padding: 48px 22px 28px; }
  .foot .wrap { grid-template-columns: 1fr; gap: 32px; }

  /* Calendly embeds must not force horizontal overflow */
  .calendly-inline-widget { min-width: 0 !important; width: 100%; }

  /* Buttons go full-width for easy tapping (except inline nav/link styles) */
  .hero-actions { gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Headings ease down so long lines don't overflow */
  h1, .h1 { font-size: clamp(32px, 8.5vw, 44px); }
  h2, .h2 { font-size: clamp(26px, 7vw, 36px); }

  /* Bio modal: trim padding and center the header on phones */
  .bio-modal-inner { padding: 28px 20px; }
  .bio-modal-head { flex-direction: column; text-align: center; gap: 14px; }
  .bio-modal-name { font-size: 23px; }
  .bio-modal-body p { font-size: 14px; }
}

/* Small phones: collapse the team grid too, trim padding further. */
@media (max-width: 480px) {
  section.sec { padding: 52px 18px; }
  .team-grid, .partner-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   JustHer — "Middle Ground" treatment  (body.page--justher)
   Lighter/warmer bands + sparing gold accents. Scoped so only
   the JustHer page is affected.
   ============================================================ */
body.page--justher { background: var(--ww-white); }
.page--justher .hero-split { background: #fff; }
.page--justher section.sec.band-tint { background: #FBFAF7; border-top: 1px solid rgba(201,168,106,0.20); }
.page--justher .icon-circle { background: var(--ww-gold-50); border: 1px solid rgba(201,168,106,0.45); }
.page--justher .icon-circle svg { color: var(--ww-navy); }
.page--justher .card { box-shadow: 0 6px 18px rgba(15,22,51,0.07); }

/* ============================================================
   Personal contact pages (/chad, /jessica)
   QR-code "digital business card" — standalone, mobile-first.
   ============================================================ */
.vcard-page {
  min-height: 100vh;
  background: var(--bg-tint);
  padding: 28px 16px 40px;
  overflow-x: hidden;
}
.vcard {
  width: 100%; max-width: 460px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(15,23,42,0.12);
  overflow: hidden;
}
.vcard-top {
  background: var(--ww-navy);
  padding: 22px 28px 60px;
  text-align: center;
}
.vcard-top .logo { height: 28px; width: auto; }
.vcard-photo {
  width: 128px; height: 128px;
  border-radius: 999px;
  border: 4px solid var(--bg-surface);
  overflow: hidden;
  margin: -54px auto 0;
  background: var(--ww-gold-50);
  box-shadow: 0 8px 22px rgba(15,23,42,0.18);
}
.vcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.vcard-body { padding: 14px 24px 26px; text-align: center; }
.vcard-name { font-family: var(--ff-display); font-size: 28px; line-height: 1.1; color: var(--ww-navy); margin: 12px 0 4px; }
.vcard-creds { font-size: 13px; color: var(--fg2); margin: 0 0 6px; }
.vcard-role { font: 700 11px var(--ff-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ww-gold); margin: 0 0 16px; }
.vcard-tagline { font-style: italic; color: var(--fg2); font-size: 14px; line-height: 1.6; margin: 0 auto 20px; max-width: 34ch; }
.vcard-tagline .cite { display: block; font-style: normal; font-size: 11px; letter-spacing: 0.04em; color: var(--fg3); margin-top: 8px; text-transform: uppercase; }

/* Quick actions — call / email / directions */
.vcard-quick { display: flex; justify-content: center; gap: 18px; margin: 2px 0 22px; }
.vcard-quick a {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font: 700 11px var(--ff-body); color: var(--ww-navy);
  text-decoration: none; width: 70px;
}
.vcard-quick .ic {
  width: 50px; height: 50px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--ww-navy-50); color: var(--ww-navy);
  border: 1px solid var(--border-soft);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.vcard-quick a:hover .ic { background: var(--ww-navy); color: #fff; border-color: var(--ww-navy); }

/* Stacked link rows */
.vcard-links { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.vcard-link {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--ww-navy); text-decoration: none;
  font: 600 14px var(--ff-body);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.vcard-link:hover { border-color: var(--ww-navy); background: var(--ww-navy-50); }
.vcard-link .ic { flex: 0 0 22px; color: var(--ww-gold); display: grid; place-items: center; }
.vcard-link .arrow { margin-left: auto; color: var(--fg3); transition: transform 0.15s ease; }
.vcard-link:hover .arrow { transform: translateX(3px); }
.vcard-link--primary { background: var(--ww-navy); color: var(--ww-cream); border-color: var(--ww-navy); }
.vcard-link--primary .ic, .vcard-link--primary .arrow { color: var(--ww-cream); }
.vcard-link--primary:hover { background: var(--ww-navy-deep); border-color: var(--ww-gold); }
.vcard-link--gold { background: var(--ww-gold); color: var(--ww-navy-deep); border-color: var(--ww-gold); }
.vcard-link--gold .ic, .vcard-link--gold .arrow { color: var(--ww-navy-deep); }
.vcard-link--gold:hover { background: var(--ww-gold-100); border-color: var(--ww-navy-deep); }
.vcard-section-label { font: 700 11px var(--ff-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg3); text-align: left; margin: 22px 0 10px; }

/* About / bio prose */
.vcard-bio { text-align: left; }
.vcard-bio p { font-size: 13.5px; line-height: 1.65; color: var(--fg2); margin: 0 0 12px; }
.vcard-bio p:last-child { margin-bottom: 0; }

/* Sub-brand callout (e.g. JustHer) */
.vcard-callout {
  text-align: left;
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--ww-gold-50);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--ww-gold);
  border-radius: var(--radius-md);
}
.vcard-callout-title { font-family: var(--ff-display); font-size: 17px; color: var(--ww-navy); margin: 0 0 6px; }
.vcard-callout p { font-size: 13px; line-height: 1.6; color: var(--fg2); margin: 0; }

/* Social */
.vcard-social { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.vcard-social a {
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--ww-navy); color: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}
.vcard-social a:hover { background: var(--ww-gold); color: var(--ww-navy-deep); }

/* Footer details + disclosure */
.vcard-foot { border-top: 1px solid var(--border-soft); margin-top: 24px; padding-top: 18px; }
.vcard-foot p { font-size: 12.5px; color: var(--fg2); margin: 5px 0; line-height: 1.5; }
.vcard-foot a { color: var(--ww-navy); text-decoration: none; }
.vcard-foot a:hover { color: var(--ww-gold); }
.vcard-disc { width: 100%; max-width: 460px; margin: 18px auto 0; padding: 0 8px; }
.vcard-disc p { font-size: 10.5px; color: var(--fg3); line-height: 1.5; text-align: center; margin: 0; }
.vcard-disc a { color: var(--fg2); }

@media (max-width: 420px) {
  .vcard-quick { gap: 12px; }
  .vcard-name { font-size: 25px; }
}
