/* ============================================================
   GENIUS CODE MAPPING — Shared Design System
   Base: Trust Anchor (01) · Colours: Growth Garden (04)
   Image pattern: Warm Roots (02)
   Mobile-optimised: hamburger nav, fluid type, safe spacing
   ============================================================ */

/* === TOKENS ================================================= */
:root {
  /* Trust Blue — deep cobalt signals trust, reliability, authority */
  --navy:        #0D2B52;   /* deep anchor navy */
  --sky:         #1E5FAD;   /* primary cobalt — interactive, active states */
  --sky-light:   #EAF3FB;   /* lightest blue — section backgrounds */
  --sky-dark:    #163F78;   /* hover / pressed cobalt */
  --gold:        #C27B0E;   /* warm amber — trust chip, highlights */
  --gold-soft:   #FEF3DC;   /* light amber — warm section backgrounds */
  --coral:       #E05A4F;   /* CTA coral-red */
  --coral-hover: #CA4E44;
  --coral-soft:  #FDE8E7;
  --green:       #2E7D52;   /* secondary accent */
  --green-light: #E4F4EC;
  --ink:         #0D2040;   /* very deep navy text */
  --ink-mid:     #2D4F6E;   /* mid-tone body text */
  --warm-white:  #FEFCF9;
}

/* === RESET ================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* === TYPOGRAPHY ============================================ */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: 52px; font-weight: 700; line-height: 1.08; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
p { max-width: 640px; }

/* === BUTTONS =============================================== */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary:hover { background: var(--coral-hover); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-ghost:hover { background: var(--ink); color: var(--warm-white); }

.text-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.text-link:hover { border-bottom-color: var(--sky); }

/* === NAV =================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(29, 43, 58, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--sky); }
.nav-links a.active {
  color: var(--sky);
  border-bottom: 2px solid var(--sky);
  padding-bottom: 2px;
}
.nav-btn {
  padding: 11px 22px !important;
  font-size: 14px !important;
  border-bottom: none !important;
  color: var(--warm-white) !important;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO (homepage) ======================================= */
.hero {
  background: var(--sky-light);
  padding: 96px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-hook {
  font-size: 19px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Blob image — Design 2 (Warm Roots) pattern */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-image-blob {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.hero-image-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-trust-chip {
  position: absolute;
  bottom: 36px;
  left: -8px;
  background: var(--warm-white);
  box-shadow: 0 6px 24px rgba(29, 43, 58, 0.12);
  border-radius: 28px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-trust-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.hero-trust-chip span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--sky);
}

/* === PAGE HERO (subpages) ================================== */
.page-hero {
  background: var(--sky-light);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(30, 95, 173, 0.18);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero .breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--sky);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.page-hero h1 { font-size: 44px; margin-bottom: 16px; }
.page-hero .lead {
  font-size: 18px;
  color: var(--ink-mid);
  max-width: 580px;
  line-height: 1.65;
}

/* === SECTION LABELS ======================================== */
.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.section-label.coral { color: var(--coral); }
.section-label.green { color: var(--green); }

/* === CREDIBILITY BAR ======================================= */
.credibility-bar {
  background: var(--warm-white);
  padding: 28px 0;
  border-top: 1px solid rgba(29, 43, 58, 0.1);
  border-bottom: 1px solid rgba(29, 43, 58, 0.1);
}
.credibility-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.cred-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 8px 40px;
}
.cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(29, 43, 58, 0.2);
  flex-shrink: 0;
}

/* === PULL QUOTE ============================================ */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  padding: 36px 0 36px 36px;
  border-left: 2px solid var(--sky);
  margin-bottom: 40px;
  max-width: 100%;
}

/* === BLOB IMAGE SHAPES (section images) =================== */
.blob-image {
  overflow: hidden;
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
  aspect-ratio: 3 / 4;
}
.blob-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blob-image-alt {
  overflow: hidden;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  aspect-ratio: 3 / 4;
}
.blob-image-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Founder photo — gradient bg absorbs white studio backdrop via multiply */
.founder-photo {
  position: relative;
  overflow: hidden;
  border-radius: 48% 52% 44% 56% / 52% 48% 56% 44%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--sky-light) 0%, #d6e9f8 40%, var(--gold-soft) 100%);
  box-shadow: 0 24px 64px rgba(13, 43, 82, 0.18);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

/* === HONEST PITCH ========================================== */
.honest-pitch { background: var(--green-light); padding: 96px 0; }
.honest-pitch-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.honest-pitch-left h2 { margin-bottom: 32px; }
.honest-pitch-left p { color: var(--ink-mid); margin-bottom: 20px; max-width: 100%; }
.honest-pitch-right { padding-top: 12px; }
.honest-pitch-right p { color: var(--ink-mid); margin-bottom: 20px; max-width: 100%; }

/* === PAIN POINTS STRIP ===================================== */
.pain-points { background: var(--warm-white); padding: 80px 0; }
.pain-points-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.pain-points-header { margin-bottom: 48px; max-width: 560px; }
.pain-points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pain-point-card {
  padding: 28px 24px;
  border-top: 3px solid var(--sky);
  background: var(--sky-light);
  border-radius: 0 0 8px 8px;
}
.pain-point-card:nth-child(2) { border-top-color: var(--green); background: var(--green-light); }
.pain-point-card:nth-child(3) { border-top-color: var(--coral); background: var(--coral-soft); }
.pain-point-card h3 { font-size: 18px; margin-bottom: 10px; }
.pain-point-card p { font-size: 15px; color: var(--ink-mid); max-width: 100%; line-height: 1.65; }

/* === HOW IT WORKS ========================================== */
.how-it-works { background: var(--warm-white); padding: 96px 0; }
.how-it-works-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.how-it-works-header { margin-bottom: 64px; }
.how-it-works-header h2 { max-width: 520px; }
.steps-list { display: flex; flex-direction: column; gap: 0; list-style: none; }
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(29, 43, 58, 0.1);
}
.step:first-child { border-top: 1px solid rgba(29, 43, 58, 0.1); }
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 68px;
  font-weight: 700;
  color: rgba(30, 95, 173, 0.12);
  line-height: 1;
  user-select: none;
  padding-top: 4px;
}
.step-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.step-body h3 { font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.step-body p { color: var(--ink-mid); font-size: 17px; max-width: 580px; }

/* === TESTIMONIAL (dark hero) =============================== */
.testimonial-section { background: var(--ink); padding: 96px 0; }
.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 44px;
  align-items: start;
}
.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 100%;
}
.testimonial-attribution {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(254, 252, 249, 0.5);
  letter-spacing: 0.04em;
}
.testimonial-attribution strong {
  color: rgba(254, 252, 249, 0.85);
  font-weight: 500;
}

/* === TESTIMONIAL CARDS ==================================== */
.testimonial-cards-section { background: var(--warm-white); padding: 96px 0; }
.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(29, 43, 58, 0.07);
  border-top: 4px solid var(--sky);
}
.testimonial-card:nth-child(even) { border-top-color: var(--green); }
.tc-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 100%;
}
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-name { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); }
.tc-meta { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink-mid); margin-top: 3px; }

/* === WINDOW SECTION ======================================== */
.window-section { background: var(--warm-white); padding: 96px 0; }
.window-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.window-image {
  overflow: hidden;
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
  aspect-ratio: 3 / 4;
}
.window-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.window-content h2 { margin-bottom: 24px; }
.window-content p { color: var(--ink-mid); margin-bottom: 20px; max-width: 100%; }
.window-content p:last-of-type { margin-bottom: 36px; }

/* === AGE PHASES STRIP ===================================== */
.age-phases { background: var(--sky-light); padding: 80px 0; }
.age-phases-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.age-phases-header { margin-bottom: 48px; }
.phases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.phase-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(29,43,58,0.07);
}
.phase-age {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 8px;
}
.phase-card:nth-child(2) .phase-age { color: var(--green); }
.phase-card:nth-child(3) .phase-age { color: var(--coral); }
.phase-card h3 { font-size: 18px; margin-bottom: 10px; }
.phase-card p { font-size: 15px; color: var(--ink-mid); max-width: 100%; line-height: 1.65; }

/* === LEAD MAGNET =========================================== */
.lead-magnet { background: var(--coral-soft); padding: 96px 0; }
.lead-magnet-inner { max-width: 680px; margin: 0 auto; padding: 0 48px; }
.lead-magnet h2 { font-size: 32px; margin-bottom: 16px; max-width: 560px; }
.lead-magnet-desc { font-size: 17px; color: var(--ink-mid); margin-bottom: 36px; max-width: 100%; }
.lead-magnet-form { display: flex; gap: 12px; align-items: stretch; }
.lead-magnet-form input[type="email"] {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1.5px solid rgba(29, 43, 58, 0.2);
  border-radius: 4px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease;
}
.lead-magnet-form input[type="email"]:focus { border-color: var(--sky); }
.lead-magnet-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(29, 43, 58, 0.45);
  margin-top: 14px;
}

/* === CTA BANNER ============================================ */
.cta-banner { background: var(--sky-light); padding: 80px 0; }
.cta-banner-inner { max-width: 680px; margin: 0 auto; padding: 0 48px; text-align: center; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--ink-mid); font-size: 17px; margin-bottom: 36px; margin-left: auto; margin-right: auto; max-width: 100%; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === SERVICE CARDS ========================================= */
.services-section { background: var(--warm-white); padding: 96px 0; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: 0 2px 20px rgba(29, 43, 58, 0.08);
  border-top: 4px solid var(--sky);
}
.service-card.featured { border-top-color: var(--coral); }
.service-badge {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.service-price { font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--ink-mid); margin-bottom: 28px; font-style: italic; }
.service-includes { list-style: none; margin-bottom: 36px; }
.service-includes li {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--ink-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(29, 43, 58, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-includes li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-card.featured .service-includes li::before { color: var(--coral); }

/* === FAQ =================================================== */
.faq-section { background: var(--green-light); padding: 96px 0; }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.faq-header { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid rgba(29, 43, 58, 0.1); padding: 28px 0; }
.faq-item:first-of-type { border-top: 1px solid rgba(29, 43, 58, 0.1); }
.faq-q {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 100%;
}
.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 100%;
}

/* === CONTACT FORM ========================================== */
.contact-form-section { background: var(--warm-white); padding: 96px 0; }
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1.5px solid rgba(29, 43, 58, 0.22);
  border-radius: 4px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-sidebar h3 { font-size: 24px; margin-bottom: 20px; }
.contact-sidebar p { color: var(--ink-mid); font-size: 16px; margin-bottom: 20px; max-width: 100%; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 4px;
  margin-bottom: 32px;
  transition: opacity 0.2s ease;
}
.wa-btn:hover { opacity: 0.9; }
.contact-detail { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink-mid); margin-bottom: 10px; }
.contact-detail a { color: var(--sky); }

/* === EXPECT SECTION ======================================== */
.expect-section { background: var(--sky-light); padding: 96px 0; }
.expect-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.expect-item { padding: 32px 0; border-top: 2px solid var(--sky); }
.expect-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(30, 95, 173, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.expect-item h3 { font-size: 18px; margin-bottom: 10px; }
.expect-item p { font-size: 15px; color: var(--ink-mid); max-width: 100%; }

/* === FOOTER ================================================ */
.footer { background: var(--ink); padding: 56px 0 40px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--warm-white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(254, 252, 249, 0.45);
  max-width: 260px;
}
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(254, 252, 249, 0.5);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--warm-white); }
.footer-copy { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(254, 252, 249, 0.3); }

/* ============================================================
   RESPONSIVE — 860px (tablets + hamburger nav)
   ============================================================ */
@media (max-width: 860px) {
  html { font-size: 17px; }

  /* Nav */
  .nav-inner { padding: 16px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 2px solid rgba(29,43,58,0.08);
    box-shadow: 0 12px 32px rgba(29,43,58,0.12);
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(29,43,58,0.06); }
  .nav-links li:last-child { border-bottom: none; margin-top: 12px; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: none !important;
  }
  .nav-btn {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
  }

  /* Hero */
  .hero { padding: 60px 0 52px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .hero h1 { font-size: 36px; }
  .hero-hook { font-size: 17px; margin-bottom: 28px; }
  .hero-image-wrap { justify-content: center; }
  .hero-image-blob {
    max-width: 340px;
    width: 100%;
    aspect-ratio: 4 / 5;
  }
  .hero-trust-chip { left: 50%; transform: translateX(-50%); bottom: -16px; }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero-inner { padding: 0 24px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero .lead { font-size: 17px; }

  /* Credibility bar */
  .credibility-bar-inner { padding: 0 24px; gap: 4px; }
  .cred-item { padding: 8px 20px; font-size: 11px; }
  .cred-divider { display: none; }

  /* Honest pitch */
  .honest-pitch { padding: 64px 0; }
  .honest-pitch-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }

  /* Pain points */
  .pain-points { padding: 60px 0; }
  .pain-points-inner { padding: 0 24px; }
  .pain-points-grid { grid-template-columns: 1fr; gap: 16px; }

  /* How it works */
  .how-it-works { padding: 64px 0; }
  .how-it-works-inner { padding: 0 24px; }
  .how-it-works-header { margin-bottom: 40px; }
  .step { grid-template-columns: 72px 1fr; gap: 16px; padding: 28px 0; }
  .step-number { font-size: 52px; }
  .step-body p { font-size: 16px; max-width: 100%; }

  /* Testimonial hero */
  .testimonial-section { padding: 64px 0; }
  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px;
  }
  .testimonial-avatar { width: 72px; height: 72px; }
  .testimonial-quote { font-size: 20px; }

  /* Testimonial cards */
  .testimonial-cards-section { padding: 64px 0; }
  .testimonial-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }

  /* Window section */
  .window-section { padding: 64px 0; }
  .window-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .window-image { max-width: 320px; margin: 0 auto; }

  /* Age phases */
  .age-phases { padding: 60px 0; }
  .age-phases-inner { padding: 0 24px; }
  .phases-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Lead magnet */
  .lead-magnet { padding: 64px 0; }
  .lead-magnet-inner { padding: 0 24px; }
  .lead-magnet h2 { font-size: 26px; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-form .btn-primary { width: 100%; text-align: center; }

  /* CTA banner */
  .cta-banner { padding: 64px 0; }
  .cta-banner-inner { padding: 0 24px; }
  .cta-banner h2 { font-size: 28px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn-primary,
  .cta-banner-btns .btn-ghost { width: 100%; max-width: 360px; text-align: center; }

  /* Services */
  .services-section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
  .service-card { padding: 32px 28px; }

  /* FAQ */
  .faq-section { padding: 64px 0; }
  .faq-inner { padding: 0 24px; }
  .faq-q { font-size: 18px; }

  /* Contact */
  .contact-form-section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }

  /* Expect */
  .expect-section { padding: 64px 0; }
  .expect-inner { padding: 0 24px; }
  .expect-grid { grid-template-columns: 1fr; gap: 0; margin-top: 32px; }
  .expect-item { padding: 24px 0; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-inner { flex-direction: column; gap: 32px; padding: 0 24px; }
  .footer-right { align-items: flex-start; }
  .footer-links { justify-content: flex-start; gap: 16px; }

  /* Headings */
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  /* Inline grid sections (not using named classes) */
  .honest-pitch-inner > * { max-width: 100%; }
  .pull-quote { font-size: 19px; padding: 24px 0 24px 24px; }

  /* Pain points */
  .pain-points-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px (phones)
   ============================================================ */
@media (max-width: 480px) {
  html { font-size: 16px; }

  .nav-logo { font-size: 16px; }

  .hero { padding: 48px 0 48px; }
  .hero h1 { font-size: 30px; }
  .hero-hook { font-size: 16px; }
  .hero-image-blob { max-width: 280px; }
  .hero-ctas { flex-direction: column; gap: 14px; }
  .hero-ctas .btn-primary,
  .hero-ctas .text-link { width: 100%; text-align: center; }

  .page-hero h1 { font-size: 28px; }

  .cred-item { padding: 6px 12px; font-size: 10px; letter-spacing: 0.06em; }

  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-number { font-size: 40px; line-height: 0.9; }

  .testimonial-quote { font-size: 18px; }

  h1 { font-size: 30px; }
  h2 { font-size: 24px; }

  .service-card { padding: 28px 22px; }
  .service-card h3 { font-size: 22px; }

  .btn-primary, .btn-ghost { font-size: 15px; padding: 13px 20px; }
}

/* === BOOKING MODAL ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 32, 64, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 44px 48px;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(13, 32, 64, 0.25);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink-mid);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s ease;
}
.modal-close:hover { color: var(--ink); }

@media (max-width: 480px) {
  .modal-card { padding: 32px 24px; }
}
