/* ============================================================
   ANew Horizon Counselling — v2 Stylesheet
   Palette : Option 1 · Warm Golden
   Updated : 2026-05-02
   ============================================================ */

:root {
  /* ── Palette ─────────────────────────────────────────────── */
  --c-base:       #FFF8F1;   /* page background                 */
  --c-surface:    #F3ECE2;   /* alternate sections, card fills  */
  --c-warm:       #E7DCC7;   /* borders, dividers               */
  --c-peach:      #FBA16A;   /* hover tints, italic accent      */
  --c-accent:     #E66E2D;   /* primary CTA, links, highlights  */
  --c-gold:       #C98736;   /* secondary accent, stars, quotes */
  --c-ink-light:  #6F6459;   /* secondary body text             */
  --c-ink:        #3A3836;   /* primary text                    */

  /* ── Typography ──────────────────────────────────────────── */
  /* HERO FONT — change this ONE variable to swap the serif     */
  --font-hero: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* ── Layout ──────────────────────────────────────────────── */
  --radius-card: 18px;
  --radius-btn:  999px;
  --max-width:   1100px;
  --nav-height:  64px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-base);
  color: var(--c-ink);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--c-accent); text-decoration: none; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtext {
  font-size: 1rem;
  color: var(--c-ink-light);
  max-width: 600px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #c85a20; transform: translateY(-1px); color: #fff; }

.btn-ghost {
  display: inline-block;
  color: var(--c-ink);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1.5px solid var(--c-warm);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* ── NAV ─────────────────────────────────────────────────────── */
/* sticky lives on <header> — not .site-nav — so it pins the full
   header block to the viewport rather than just the inner nav div */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  background: rgba(255, 248, 241, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-warm);
  height: var(--nav-height);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img {
  display: block;
  height: 38px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logo-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.1em;
}
.nav-logo-a {
  color: var(--c-accent);
  font-style: italic;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--c-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-accent); }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn-primary {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-ink);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--c-base);
  border-top: 1px solid var(--c-warm);
  padding: 1rem 24px 1.5rem;
  gap: 4px;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-warm);
}
.nav-mobile .btn-primary {
  margin-top: 12px;
  text-align: center;
  display: block;
}
.nav-mobile.is-open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────── */
/* Two states:
   Default  — image fills screen, no overlay, no text (just scroll hint)
   Revealed — image fades to warm cream wash, headline slides in over it */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center center;
  animation: hero-drift 22s ease-in-out infinite;
}

/* Ken Burns — gentle slow zoom that drifts slightly upward and back.
   22 seconds makes it almost subliminal; visitors feel the page
   is alive without noticing the animation consciously.
   Zoom is kept to 6% so nothing important gets cropped off-screen. */
@keyframes hero-drift {
  0%   { transform: scale(1)    translateY(0);    }
  50%  { transform: scale(1.06) translateY(-1.5%); }
  100% { transform: scale(1)    translateY(0);    }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Starts transparent — transitions to warm cream on scroll */
  background: rgba(255, 248, 241, 0);
  transition: background 0.75s ease-out;
}
/* When .hero gets .is-revealed, overlay fades the image to a soft wash */
.hero.is-revealed .hero-overlay {
  background: rgba(255, 248, 241, 0.68);
}

/* Hero content — hidden until scroll */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s ease-out 0.1s, transform 0.75s ease-out 0.1s;
  pointer-events: none;
}
.hero.is-revealed .hero-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Scroll hint — visible on load, hidden when content reveals */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
  user-select: none;
}
.hero-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: hero-bounce 1.6s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 1;   }
}

/* Text colours — dark ink over the light cream wash */
.hero-headline {
  /* Uses --font-hero — swap that one variable in :root to change the serif */
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--c-ink);
}
.hero-headline em {
  font-style: italic;
  color: var(--c-accent);
}
.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-ink-light);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-ctas .btn-ghost {
  color: var(--c-ink);
  border-color: var(--c-warm);
}
.hero-ctas .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

/* ── ENTRY POINTS ─────────────────────────────────────────────── */
.entry-points {
  background: var(--c-surface);
  padding: 5rem 0;
}
.entry-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--c-ink-light);
  margin-bottom: 2.5rem;
  font-style: italic;
}
.entry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.entry-card {
  background: var(--c-base);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid var(--c-warm);
  transition: box-shadow 0.2s;
}
.entry-card:hover { box-shadow: 0 6px 24px rgba(58, 40, 16, 0.1); }
.entry-icon {
  width: 44px;
  height: 44px;
  background: var(--c-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
.entry-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-ink);
}
.entry-preview {
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.6;
}
.entry-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.7;
}
.entry-card.is-open .entry-expand {
  max-height: 300px;
  opacity: 1;
}
.entry-expand p { margin-top: 0.75rem; }
.entry-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}
.entry-arrow {
  display: inline-block;
  transition: transform 0.25s;
  font-size: 1rem;
}
.entry-card.is-open .entry-arrow { transform: rotate(90deg); }

/* ── QUOTE BANNERS ────────────────────────────────────────────── */
.quote-banner {
  background: var(--c-base);
  padding: 4rem 0;
  border-top: 1px solid var(--c-warm);
  border-bottom: 1px solid var(--c-warm);
}
.quote-banner blockquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.quote-banner blockquote::before {
  content: '\201C';
  font-family: var(--font-hero);
  font-size: 5rem;
  color: var(--c-warm);
  line-height: 0.5;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.6;
  font-family: var(--font-hero);
  font-weight: 400;
}
.quote-cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--c-accent);
  margin-top: 1rem;
  font-family: var(--font-body);
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services { padding: 5rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-warm);
}
.service-img {
  width: 100%;
  height: 220px;
  background: var(--c-warm);
  overflow: hidden;
}
/* Fills the image slot and crops neatly — same technique as the hero */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-body { padding: 1.5rem; }
.service-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--c-ink);
}
.service-body ul { display: flex; flex-direction: column; gap: 6px; }
.service-body li {
  font-size: 0.9rem;
  color: var(--c-ink-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-accent);
}
.service-link:hover { text-decoration: underline; }
.services-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--c-ink-light);
  font-style: italic;
  text-align: center;
}
.services-note strong {
  color: var(--c-accent);
  font-style: normal;
}

/* ── VIDEO SECTION ────────────────────────────────────────────── */
.video-section {
  background: var(--c-surface);
  padding: 5rem 0;
}
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.founder-photo-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.video-play-btn {
  width: 56px;
  height: 56px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.video-text h2 { margin-bottom: 0.75rem; }
.video-intro {
  font-size: 0.95rem;
  color: var(--c-ink-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.5;
}
.approach-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials {
  padding: 5rem 0;
  text-align: center;
}
.testimonials h2 { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid var(--c-warm);
}
.stars {
  color: var(--c-gold);
  font-size: 14px;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-text,
.testimonial-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-ink-light);
  font-style: italic;
  margin-bottom: 0.55rem;
}
.testimonial-body {
  margin-bottom: 0.5rem;
}
.testimonial-body.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--c-accent);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}
.testimonial-toggle:hover { opacity: 0.7; }
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink);
}

/* ── WHAT TO EXPECT ───────────────────────────────────────────── */
.what-to-expect {
  background: var(--c-surface);
  padding: 5rem 0;
}
.wte-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.wte-text h2 { margin-bottom: 1rem; }
.wte-text p {
  font-size: 0.95rem;
  color: var(--c-ink-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.wte-cta { margin-top: 0.5rem; }
.wte-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0.5rem;
}
.wte-point {
  background: var(--c-base);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.25rem 1.1rem;
  border-left: 3px solid var(--c-accent);
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.6;
}
.wte-point strong {
  display: block;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 3px;
}

/* ── RESOURCES ────────────────────────────────────────────────── */
.resources { padding: 5rem 0; }

/* Crisis hotline strip */
.crisis-strip {
  background: var(--c-surface);
  border: 1px solid var(--c-warm);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
}
.crisis-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 0.35rem;
}
.crisis-subtext {
  font-size: 0.875rem;
  color: var(--c-ink-light);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.crisis-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 1rem;
  border-left: 2px solid var(--c-warm);
}
.crisis-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink);
}
.crisis-desc {
  font-size: 0.775rem;
  color: var(--c-ink-light);
  line-height: 1.4;
}
.crisis-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.crisis-number:hover { text-decoration: underline; }
.resources-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 12px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-warm);
  transition: box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.resource-card:hover {
  box-shadow: 0 6px 24px rgba(58, 40, 16, 0.1);
  transform: translateY(-2px);
}
.resource-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.resource-body { padding: 1rem 1.1rem 1.25rem; }
.resource-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin-bottom: 5px;
}
.resource-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.resource-link {
  font-size: 0.8rem;
  color: var(--c-accent);
  font-weight: 500;
}

/* ── SOCIAL / CONTACT ─────────────────────────────────────────── */
.social-connect {
  background: var(--c-surface);
  padding: 4rem 0;
  border-top: 1px solid var(--c-warm);
  border-bottom: 1px solid var(--c-warm);
}
.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.social-text h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.social-text p { font-size: 0.9rem; color: var(--c-ink-light); }
.social-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-base);
  color: var(--c-ink);
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--c-warm);
  transition: border-color 0.2s, color 0.2s;
}
.btn-email:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ── BOOKING FORM ─────────────────────────────────────────────── */
.book-section {
  padding: 5rem 0;
  background: var(--c-base);
}
.book-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.book-inner .section-heading { margin-bottom: 0.5rem; }
.book-intro {
  font-size: 0.95rem;
  color: var(--c-ink-light);
  margin-bottom: 2.5rem;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-field {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--c-warm);
  font-size: 0.95rem;
  background: var(--c-surface);
  color: var(--c-ink);
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field:focus { border-color: var(--c-accent); }
.form-field::placeholder { color: var(--c-ink-light); }
textarea.form-field { resize: vertical; }

/* Phone row — country code + number */
.phone-row {
  display: flex;
  gap: 8px;
}
.phone-country {
  flex: 0 0 148px;
  cursor: pointer;
}
.phone-number {
  flex: 1;
}

/* WhatsApp opt-in checkbox */
.wa-opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-ink);
  line-height: 1.45;
  padding: 2px 0;
}
.wa-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.wa-opt span {
  user-select: none;
}

/* ── Session Fees ─────────────────────────────────────────────── */
.fees-section {
  padding: 5rem 0;
  background: var(--c-surface);
}
.fees-section .section-heading {
  margin-bottom: 1rem;
}
.fees-intro {
  font-size: 0.95rem;
  color: var(--c-ink-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-align: center;
}
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 640px) {
  .fees-grid { grid-template-columns: 1fr; }
}
.fee-card {
  background: var(--c-base);
  border: 1.5px solid var(--c-warm);
  border-radius: 18px;
  padding: 2rem 1.75rem;
}
.fee-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--c-warm);
}
.fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fee-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fee-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fee-amount {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-accent);
}
.fee-amount em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--c-ink-light);
}
.fees-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-ink-light);
  max-width: 480px;
  margin: 0 auto;
}

/* ── FAQs ─────────────────────────────────────────────────────── */
.faqs { padding: 5rem 0; }
.faqs h2 { margin-bottom: 2.5rem; }
.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-item { border-bottom: 1px solid var(--c-warm); }
.faq-item details { cursor: pointer; }
.faq-item details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-ink);
  gap: 12px;
  cursor: pointer;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-accent);
  line-height: 1;
}
.faq-answer {
  padding: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--c-ink-light);
}
@media (max-width: 700px) {
  .faqs-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials { padding: 5rem 0; background: var(--c-surface); }
.testimonials h2 { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--c-base);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem 1.5rem;
  border: 1.5px solid var(--c-warm);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.testimonial-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-ink);
  flex: 1;
  margin-bottom: 0.75rem;
}
.testimonial-body.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-accent);
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.testimonial-toggle:hover { text-decoration: underline; }
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--c-ink);
  color: var(--c-base);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-logo img {
  width: 90px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  max-width: 240px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-info a {
  color: var(--c-peach);
  text-decoration: none;
}
.footer-contact-info a:hover { text-decoration: underline; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.accred-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.accred-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.accred-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0.15rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── CTA Final band ──────────────────────────────────────────── */
.cta-final {
  padding: 5rem 0;
  background: var(--c-accent);
  text-align: center;
}
.cta-final p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--c-accent);
  border-color: #fff;
}
.cta-final .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — full mobile pass
   768px : tablets & landscape phones
   640px : portrait phones
   ══════════════════════════════════════════════════════════════ */

/* Desktop fix: testimonial cards must not stretch to match a
   neighbour's height when one card is expanded                 */
.testimonials-grid { align-items: start; }

/* ── 768px ─────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Navigation — show burger, hide desktop links and CTA */
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-burger { display: block; }

  /* Services — stack cards vertically */
  .services-grid { grid-template-columns: 1fr; }

  /* About / Video — stack: video tile above, text below */
  .video-inner            { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-wrap     { order: -1; aspect-ratio: 3 / 2; }
  .video-text .btn-primary { display: block; width: 100%; text-align: center; }

  /* What to Expect — stack left column above right */
  .wte-inner { grid-template-columns: 1fr; gap: 2rem; }
  .wte-cta   { display: block; width: 100%; text-align: center; }

  /* Testimonials — auto-fit already wraps; just ensure align */
  .testimonials-grid { grid-template-columns: 1fr; }

}

/* ── 640px ─────────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Tighter container edges on small screens */
  .container { padding: 0 16px; }

  /* Tighter section vertical padding */
  .services, .video-section, .testimonials, .what-to-expect,
  .resources, .fees-section, .faqs, .book-section,
  .social-connect, .cta-final { padding: 3.5rem 0; }

  /* Hero headline smaller */
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

  /* Entry cards — single column */
  .entry-cards { grid-template-columns: 1fr; gap: 12px; }

  /* Crisis strip — stacked tap-friendly cards */
  .crisis-strip { padding: 1.25rem; }
  .crisis-grid  { grid-template-columns: 1fr; gap: 10px; }
  .crisis-item {
    border-left: none;
    border-radius: 14px;
    background: var(--c-base);
    border: 1.5px solid var(--c-warm);
    padding: 1rem 1.25rem;
    gap: 4px;
  }
  .crisis-name   { font-size: 0.9rem; }
  .crisis-number {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 999px;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
  }
  .crisis-number:hover { background: #c55e26; text-decoration: none; }

  /* Reach out directly — stacked centred */
  .social-inner   { flex-direction: column; text-align: center; gap: 1.5rem; }
  .social-text h2 { font-size: 1.3rem; }
  .social-buttons { flex-direction: column; width: 100%; }
  .btn-whatsapp,
  .btn-email      { width: 100%; justify-content: center; }

  /* CTA final band */
  .cta-final p { font-size: 1.1rem; }

  /* Footer — single column */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* FAQs — single column */
  .faqs-grid { grid-template-columns: 1fr; }

}
details { width: 100%; }
details summary {
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--c-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--c-ink-light);
  line-height: 1;
}
details[open] summary .faq-chevron {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.faq-answer {
  padding: 0 2rem 1.25rem 0;
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.75;
}

/* ── CTA FINAL ────────────────────────────────────────────────── */
.cta-final {
  background: var(--c-accent);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-final p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--c-accent);
}
.cta-final .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 0.5rem;
}
.footer-logo img {
  display: block;
  height: 90px;
  width: auto;
  border-radius: 10px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.footer-contact-info {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-info a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-info a:hover { color: var(--c-peach); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--c-peach); }
.accred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.accred-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 0.5rem;
}
.accred-item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0 0 0.3rem;
}
.accred-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.35); }
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.65); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid,
  .video-inner,
  .wte-inner { grid-template-columns: 1fr; }
  .video-inner { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }

  /* Mobile: same cream wash reveal, text centred */
  .hero-content { max-width: 100%; text-align: center; }
  .hero-ctas { justify-content: center; }

  .faqs-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .crisis-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .social-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .resources-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
