/* ══════════════════════════════════════════════════════════
   DFF — Designed For Freedom
   CSS v2.1 — Clean rebuild, mobile first
   Brand tokens · Zodiak (display) + Satoshi (body)
   Breakpoints (min-width): 480 · 640 · 768 · 1024 · 1180
══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy-deep:   #0A1322;
  --navy:        #0F1A2E;
  --navy-soft:   #182640;
  --gold:        #C4A74C;
  --gold-soft:   #EADCAD;
  --gold-deep:   #A68831;
  --cream:       #F4F2ED;
  --cream-2:     #FAF7F1;
  --cream-3:     #F4EFE2;
  --text-muted:  #1E2D45;
  --line:        rgba(196,167,76,.22);
  --white-muted: rgba(244,242,237,.80);

  --font-display: 'Zodiak', Georgia, serif;
  --font-body:    'Satoshi', system-ui, sans-serif;

  /* fluid type scale */
  --text-xs:    clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:    clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base:  clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:    clamp(1.125rem, 1rem    + 0.75vw, 1.45rem);
  --text-xl:    clamp(1.5rem,   1.2rem  + 1.2vw,  2.2rem);
  --text-2xl:   clamp(2rem,     1.35rem + 1.8vw,  3rem);
  --hero-title: clamp(2rem,     1.5rem  + 2.5vw,  3.8rem);

  --radius-btn:  0.72rem;
  --radius-card: 1.35rem;
  --radius-xl:   2rem;
  --shadow-sm:   0 8px 22px rgba(15,26,46,.08);
  --shadow-md:   0 18px 38px rgba(15,26,46,.12);
  --shadow-lg:   0 28px 70px rgba(0,0,0,.22);

  --dark-band-bg: linear-gradient(135deg, #0A1322 0%, #0F1A2E 50%, #182640 100%);
  --page-width: 1180px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote { margin: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { padding: 0; list-style: none; }

/* ─── SHELL / CONTAINER ──────────────────────────────── */
.shell {
  width: min(calc(100% - 2.5rem), var(--page-width));
  margin-inline: auto;
}
.shell-narrow {
  width: min(calc(100% - 2.5rem), 760px);
  margin-inline: auto;
}

/* ─── SECTION BASE ───────────────────────────────────── */
section { padding: 3rem 0; }

@media (min-width: 1024px) {
  section { padding: 5rem 0; }
}

/* ─── SECTION HEAD ───────────────────────────────────── */
.section-head { margin-bottom: 2.5rem; text-align: center; }
.section-head span {
  display: inline-block;
  color: var(--gold-deep);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 1rem;
  font-weight: 400;
}
.section-head p {
  max-width: 58ch;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 auto;
}
.section-head-left { text-align: left; }
.section-head-left h2 { margin-left: 0; }
.section-head-left p  { margin-left: 0; }

/* ─── DARK BAND ──────────────────────────────────────── */
.dark-band {
  background: var(--dark-band-bg);
  color: var(--cream);
}
.dark-band .section-head span { color: var(--gold-soft); }
.dark-band .section-head p    { color: var(--white-muted); }
.dark-band .section-head h2   { color: var(--cream); }

/* ─── BUTTONS ────────────────────────────────────────── */
.cta {
  display: block;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(196,167,76,.18);
  border: 1px solid rgba(15,26,46,.06);
  cursor: pointer;
  text-align: center;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.cta:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(196,167,76,.26);
}
.cta:active { transform: translateY(0); }

@media (min-width: 640px) {
  .cta {
    display: inline-flex;
    width: auto;
  }
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  font-weight: 400;
  font-size: var(--text-sm);
  opacity: 0.85;
  transition: opacity 0.18s;
}
.btn-link:hover { opacity: 1; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.cta-secondary:hover {
  background: rgba(244,242,237,.12);
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,19,34,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,167,76,.14);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(10,19,34,.99); }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.header-logo { display: flex; align-items: center; }

.brand-svg { display: block; width: 260px; height: auto; max-width: 100%; }

@media (max-width: 640px) { .brand-svg { width: 180px; } }
@media (max-width: 400px) { .brand-svg { width: 150px; } }

/* Desktop nav — hidden mobile, shown at lg */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: var(--text-sm);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(244,242,237,.8);
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-list a:hover { color: var(--cream); }

/* Header CTAs — hidden until lg */
.header-ctas {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

/* Burger — shown mobile, hidden at lg */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.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); }

@media (min-width: 1024px) {
  .nav            { display: flex; }
  .header-ctas    { display: flex; }
  .nav-burger     { display: none; }
  .header-row     { display: grid; grid-template-columns: auto 1fr auto; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(10,19,34,.98);
  border-top: 1px solid rgba(196,167,76,.14);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(244,242,237,.85);
  font-size: var(--text-base);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(196,167,76,.08);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────────────── */
.hero-wrap {
  background: var(--dark-band-bg);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-wrap::before,
.hero-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: none;
}
.hero-wrap::before {
  width: 24rem; height: 24rem;
  right: -6rem; top: -4rem;
  background: rgba(196,167,76,.12);
}
.hero-wrap::after {
  width: 17rem; height: 17rem;
  left: -4rem; bottom: 3rem;
  background: rgba(196,167,76,.08);
}

.hero { padding: 3rem 0; }

/* Hero grid: 1 col base, 2 col at md */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 0; }
  .hero-grid {
    grid-template-columns: minmax(0, 620px) minmax(300px, 460px);
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.hero-copy { width: 100%; }

/* Hero visual: hidden mobile, centered at sm, right-aligned at md */
.hero-visual {
  display: none;
  width: 100%;
  max-width: 460px;
}
@media (min-width: 640px) {
  .hero-visual {
    display: block;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .hero-visual {
    justify-self: end;
    margin-inline: unset;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.8rem 0 0.5rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

/* Kicker */
.kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Gold rule */
.gold-line {
  width: 5.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  margin-bottom: 1.25rem;
  border: none;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--hero-title);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 1rem;
  font-weight: 400;
  text-wrap: balance;
}
.hero-accent {
  font-family: var(--font-display);
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-soft);
  display: inline;
}

.lead {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.2rem);
  color: var(--white-muted);
  max-width: 34ch;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hero-copy p {
  max-width: 58ch;
  color: var(--white-muted);
  font-weight: 300;
}

/* Hero visual frame */
.visual-frame {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.visual-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-xl) - 1rem);
  background: #d9d9d9;
  display: block;
}

/* Hero photo placeholder */
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(196,167,76,.06));
  border-radius: calc(var(--radius-xl) - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.hero-photo-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: .6;
}
.hero-photo-placeholder p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(244,242,237,.55);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
}
.hero-photo-placeholder strong {
  color: rgba(196,167,76,.8);
  font-weight: 600;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.section-about { background: var(--cream); }
.section-about .section-head { text-align: center; }
.section-about .section-head p {
  text-align: left;
  max-width: 72ch;
  margin: 0 auto 1.25rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .story-block { grid-template-columns: 1.1fr 0.9fr; }
}

.story-panel,
.program-panel {
  background: linear-gradient(180deg, var(--cream-2), var(--cream-3));
  border: 1px solid rgba(196,167,76,.2);
  border-radius: 1.6rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.story-quote {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-align: center;
}
.program-panel h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

/* ─── LIST ───────────────────────────────────────────── */
.list { display: grid; gap: 0.85rem; margin-top: 1rem; }
.list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
}
.list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex: none;
}
.list-no li::before { background: rgba(15,26,46,.3); }

/* ─── JOURNEY / TIMELINE ─────────────────────────────── */
.section-journey { background: var(--cream-2); }

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .timeline { grid-template-columns: repeat(4, 1fr); }
}

.milestone {
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: var(--cream-2);
  border: 1px solid rgba(196,167,76,.18);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.milestone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.milestone strong {
  display: block;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.milestone h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--navy);
}
.milestone p { color: var(--navy); font-family: var(--font-body); font-weight: 400; }

/* ─── PROGRAMS SECTION ───────────────────────────────── */
.section-programs {
  background: var(--dark-band-bg);
  color: var(--cream);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,167,76,.18);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--gold);
}
.card p { color: var(--white-muted); font-family: var(--font-body); font-weight: 300; }

/* Fit grid */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .fit-grid { grid-template-columns: 1fr 1fr; }
}

.fit-col {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(196,167,76,.2);
  background: var(--cream-2);
}
.fit-col.fit-no { background: rgba(255,255,255,.04); border-color: rgba(244,242,237,.12); }
.fit-col-head { margin-bottom: 1.2rem; }
.fit-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.fit-badge-yes {
  background: rgba(196,167,76,.15);
  color: var(--gold-deep);
  border: 1px solid rgba(196,167,76,.3);
}
.fit-badge-no {
  background: rgba(244,242,237,.08);
  color: rgba(244,242,237,.6);
  border: 1px solid rgba(244,242,237,.2);
}
/* List colour override inside dark fit-col */
.fit-no .list li { color: var(--white-muted); }
.fit-no .list li::before { background: rgba(244,242,237,.25); }
.fit-yes .list li { color: var(--text-muted); }

/* ─── RESULTS SECTION ────────────────────────────────── */
.section-results {
  background: var(--dark-band-bg);
  color: var(--cream);
}
.section-results .section-head h2 { color: var(--gold); }

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}

.result {
  padding: 1.6rem;
  border: 1px solid rgba(244,242,237,.12);
  border-radius: 1.4rem;
  background: rgba(255,255,255,.04);
  transition: background 0.2s;
}
.result:hover { background: rgba(255,255,255,.07); }
.result strong {
  display: block;
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.result p { color: var(--white-muted); font-weight: 300; }

/* ─── FEATURED TESTIMONIAL ───────────────────────────── */
.section-testimonial { background: var(--cream-2); }

.featured-testimonial {
  background: linear-gradient(180deg, var(--cream-2), var(--cream-3));
  border: 1px solid rgba(196,167,76,.22);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .featured-testimonial { padding: 3rem 3.5rem; }
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.featured-testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin: 0 0 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  quotes: none;
}
.featured-testimonial p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,167,76,.22);
  margin-top: 0.5rem;
}
.avatar-lg {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border: 2px solid rgba(196,167,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-soft);
  flex: none;
}
.author-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.author-role {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.author-practice {
  display: block;
  font-size: 0.82rem;
  color: #555;
}

/* ─── FAQ ────────────────────────────────────────────── */
.section-faq { background: var(--cream); }

.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(196,167,76,.18); }
.faq-item:first-child { border-top: 1px solid rgba(196,167,76,.18); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex: none;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { content: "−"; }

.faq-a {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.faq-a p { margin: 0; }

/* ─── APPLY / CTA BAND ───────────────────────────────── */
.section-apply { background: var(--dark-band-bg); color: var(--cream); }

.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(145deg, #F4ECD3, #F7F2E5, #FBFAF6);
  border: 1px solid rgba(196,167,76,.26);
  border-radius: 1.6rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 1024px) {
  .cta-band {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding: 2.5rem;
  }
}

.cta-band-main {}

.cta-aside {
  display: none;
}
@media (min-width: 1024px) {
  .cta-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 240px;
    max-width: 300px;
    padding-top: 2.5rem;
  }
}

.cta-aside-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-aside-points { display: grid; gap: 0.85rem; }
.aside-point {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.aside-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  margin-top: 0.45rem;
}
.aside-point p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── IFRAMES ────────────────────────────────────────── */
iframe { max-width: 100%; }

.dff-iframe {
  width: 100%;
  max-width: 100%;
  height: 1400px;
  min-height: 1400px;
  border: none;
  display: block;
  border-radius: 12px;
  margin-top: 2.5rem;
}
.sprint-iframe {
  width: 100%;
  max-width: 100%;
  height: 1600px;
  min-height: 1600px;
  border: none;
  display: block;
  border-radius: 12px;
}
.growth-iframe {
  width: 100%;
  max-width: 100%;
  height: 1600px;
  min-height: 1600px;
  border: none;
  display: block;
  border-radius: 12px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem 0;
  border-top: 1px solid rgba(196,167,76,.16);
}
.footer-bar-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bar-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand { display: flex; flex-direction: column; }
.brand-svg-footer { display: block; width: 240px; height: auto; }

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.75rem;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media (min-width: 640px) {
  .footer-links {
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
  }
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(244,242,237,.65);
  font-weight: 300;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--cream); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CTA LIST (WP nav walker) ───────────────────────── */
.cta-list {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ─── BLOG PAGE ──────────────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: 4rem 0 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-hero { padding: 5rem 0 3rem; }
}
.blog-hero h1 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 0.75rem;
}
.blog-hero p {
  color: rgba(244,242,237,.75);
  max-width: 50ch;
  margin: 0 auto;
}

.blog-grid-section {
  background: var(--navy);
  padding: 2rem 0 4rem;
}
@media (min-width: 768px) {
  .blog-grid-section { padding: 3rem 0 5rem; }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.blog-card p {
  color: #555;
  font-size: 0.92rem;
  flex: 1;
  margin: 0 0 1rem;
}
.blog-card .read-more {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card .read-more:hover { text-decoration: underline; }

.blog-pagination { text-align: center; margin-top: 3rem; }
.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  margin: 0 0.3rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}
.blog-pagination span.current { background: var(--gold); color: var(--navy); }

/* ─── VIDEOS PAGE ────────────────────────────────────── */
.videos-hero {
  background: var(--cream);
  padding: 4rem 0 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .videos-hero { padding: 5rem 0 3rem; } }
.videos-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.videos-hero p {
  color: var(--navy);
  opacity: 0.75;
  max-width: 50ch;
  margin: 0 auto;
}
.videos-section {
  background: var(--cream);
  padding: 2rem 0 4rem;
}
@media (min-width: 768px) { .videos-section { padding: 2rem 0 5rem; } }

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.35s ease;
}
.video-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  cursor: pointer;
}
@media (min-width: 640px) {
  .video-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (min-width: 900px) {
  .video-card { flex: 0 0 calc(33.33% - 1rem); }
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,26,46,.35);
  transition: background 0.2s;
}
.play-btn:hover { background: rgba(15,26,46,.55); }
.play-circle {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle svg { margin-left: 4px; }
.video-card-title {
  padding: 1rem 1.25rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--gold); color: var(--navy); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(196,167,76,.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--gold); }

/* ─── SINGLE BLOG POST ───────────────────────────────── */
.single-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.single-post-wrap {
  max-width: 72ch;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .single-post-wrap { margin: 4rem auto; } }
.single-post-wrap h1 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.post-meta {
  font-size: 0.85rem;
  color: rgba(15,26,46,.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.single-post-wrap .entry-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy);
}
.back-link {
  display: inline-block;
  margin-top: 3rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* ─── TOOLS HERO (growth tools page reference) ───────── */
.tools-hero {
  background: var(--navy);
  padding: 4rem 0 3rem;
  text-align: center;
}
@media (min-width: 768px) { .tools-hero { padding: 6rem 0 4rem; } }
.tools-hero .kicker {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.tools-hero h1 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  line-height: 1.15;
}
.tools-hero p {
  color: rgba(244,242,237,.75);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── FRONT PAGE UTILITY CLASSES (replaces inline styles) ─── */
/* story-quote colour is set via .story-quote class above (var(--gold)) */
/* program-panel h3 — gold centred heading */
.program-panel-head {
  text-align: center;
  color: var(--gold);
  font-size: var(--text-xl);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
/* card h3 gold */
.card-title-gold { color: var(--gold); }
/* fit-grid top margin */
.fit-grid-wrap { margin-top: 3rem; }
/* dark-band h2 gold */
.dark-band .section-head h2.gold { color: var(--gold); }
.dark-band .result strong { color: var(--gold-soft); }
/* cta-band section head left aligned */
.cta-band .section-head {
  text-align: left;
  margin-bottom: 0;
}
.cta-band .section-head h2 {
  max-width: 16ch;
  margin: 0 0 1rem;
}
.cta-band .section-head p {
  margin: 0;
  max-width: 50ch;
}
/* iframe wrapper */
.form-iframe-wrap { margin-top: 2.5rem; }
.home-form-iframe {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  min-height: 1400px;
  width: 100%;
}

/* cta-band section head — left-aligned, no bottom margin */
.cta-band-head {
  text-align: left;
  margin-bottom: 0;
}
.cta-band-head h2 {
  max-width: 16ch;
  margin: 0 0 1rem;
  text-align: left;
}
.cta-band-head p {
  margin: 0;
  max-width: 50ch;
  text-align: left;
}

/* dark-band results strong — gold colour */
.dark-band .result strong { color: var(--gold-soft); }

/* h2.gold inside dark-band */
.dark-band .section-head h2.gold { color: var(--gold); }
