/* ============================================================
   Pediatric Foundations Family Consulting — pffc.css
   Single source of truth for the whole site.

   Sections:
     1.  Design tokens
     2.  Reset & base
     3.  Buttons
     4.  Navigation (bar, links, CTA, hamburger, mobile menu)
     5.  Section primitives (eyebrow / title / sub / divider)
     6.  Page header (green banner, optional photo overlay)
     7.  Trust bar
     8.  Footer
     9.  Home — hero
     10. Home — audience cards
     11. Home — credentials
     12. Steps (home + school)
     13. Closing CTA (home + school)
     14. Pricing
     15. School — topics, services
     16. Contact — expect strip, sidebar, form, FAQ
     17. Family intake form
     18. Responsive
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --green-dark:    #095C45;
  --green-primary: #0D7A5C;
  --green-light:   #D4F0E4;
  --green-mid:     #3DC494;
  --green-soft:    #7ED4B8;
  --green-deep:    #062E23;   /* footer / darkest panels */

  --amber:         #BA7517;
  --amber-light:   #FAEEDA;
  --amber-dark:    #633806;
  --amber-bright:  #FAC775;   /* amber label on dark cards */

  --cream:         #F7F3EC;
  --cream-dark:    #EDE8DF;
  --border:        #D3D1C7;
  --border-soft:   #E8E4DC;

  --text-dark:     #2C2C2A;
  --text-mid:      #444441;
  --text-muted:    #5F5E5A;
  --text-faint:    #888780;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;

  /* True rendered height of the fixed nav (84px logo + padding).
     Overridden per breakpoint in the responsive section so the body
     offset always matches the bar and content never tucks underneath. */
  --nav-height: 118px;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  padding-top: var(--nav-height);
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.6;
}

/* Homepage: hero runs to the very top edge, behind the transparent nav */
body.home { padding-top: 0; }

img { max-width: 100%; }

/* ---------- 3. BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: transparent; color: var(--green-primary) !important; border-color: var(--green-primary); }
.hero .btn-primary:hover,
.page-header .btn-primary:hover,
.closing-cta .btn-primary:hover { color: var(--green-soft) !important; border-color: var(--green-soft); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  font-weight: 400;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(247, 243, 236, 0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.btn-ghost:hover { border-color: rgba(247, 243, 236, 0.6); background: rgba(247, 243, 236, 0.05); color: var(--cream) !important; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--green-primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--green-primary); color: var(--cream) !important; }

/* full-width modifier, used inside cards */
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- 4. NAVIGATION ---------- */
nav {
  background: rgba(9, 92, 69, 0.80);
  backdrop-filter: blur(6px);
  padding: 12px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
}
.nav-logo { line-height: 0; }
.nav-logo img { height: 84px; width: auto; display: block; padding: 5px 0; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 18px;
  font-weight: 400;
  color: var(--green-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--amber);
  color: var(--cream) !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; color: var(--cream) !important; }

.nav-hamburger { display: none; }
.nav-mobile-menu { display: none; }

/* ---------- 5. SECTION PRIMITIVES ---------- */
.section { padding: 4rem 2rem; max-width: 960px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
}
.divider { border: none; border-top: 0.5px solid var(--border); margin: 0 2rem; }

/* centered intro variant (pricing) */
.page-intro { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; padding: 0 2rem; }
.page-intro .section-sub { margin: 0 auto; }

/* ---------- 6. PAGE HEADER (green banner) ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.page-header.has-image { background: var(--green-deep); }
.page-header.has-image::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('img/contact-header-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.page-header.has-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(9, 92, 69, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.page-header > * { position: relative; z-index: 2; }

.page-header-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--green-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.page-header-title em { font-style: italic; color: var(--green-soft); }
.page-header-sub {
  font-size: 18px;
  color: var(--green-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- 7. TRUST BAR ---------- */
.trust-bar {
  background: var(--cream-dark);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-item-top svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-item-bottom { font-size: 13px; color: var(--text-muted); white-space: nowrap; }

/* ---------- 8. FOOTER ---------- */
footer { background: var(--green-deep); padding: 3rem 2rem 2rem; }
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(126, 212, 184, 0.15);
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 1.15rem; display: block; }
.footer-desc { font-size: 15px; color: rgba(126, 212, 184, 0.78); line-height: 1.75; font-weight: 300; }
.footer-col-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 15px;
  color: rgba(126, 212, 184, 0.72);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--green-soft); }
.footer-bottom {
  max-width: 1060px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy, .footer-service-area { font-size: 13px; color: rgba(126, 212, 184, 0.5); }
.footer-service-area { letter-spacing: 0.5px; }

/* ---------- 9. HOME — HERO ---------- */
.hero {
  background: rgba(9, 92, 69, 0.90);
  padding: 11rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center 28%;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(9, 92, 69, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--green-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--green-soft); }
.hero-sub {
  font-size: 18px;
  color: var(--green-soft);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-service-area { margin-top: 40px; font-size: 12px; color: rgba(126, 212, 184, 0.6); letter-spacing: 1px; }

/* decorative logo-mark divider (home) */
.brand-divider { text-align: center; padding: 2rem 0; }
.brand-divider img { width: 128px; height: auto; display: block; margin: 0 auto; }

/* ---------- 10. HOME — AUDIENCE CARDS ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.audience-card {
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.2s;
}
.audience-card:hover { transform: translateY(-2px); }
.audience-card-top { background: rgba(9, 92, 69, 0.90); padding: 2rem 1.75rem 1.5rem; }
.audience-card-top.amber-top { background: var(--amber-dark); }
.audience-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.audience-icon svg { width: 20px; height: 20px; }
.audience-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 500;
  margin-bottom: 6px;
}
.amber-top .audience-label { color: var(--amber-bright); }
.audience-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.audience-body { padding: 1.5rem 1.75rem; flex: 1; }
.audience-desc { font-size: 18px; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300; }
.audience-bullets { list-style: none; margin-bottom: 1.5rem; }
.audience-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.5;
}
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-primary); flex-shrink: 0; margin-top: 8px; }
.amber-dot { background: var(--amber); }
.audience-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.audience-link:hover { border-color: var(--green-primary); color: var(--green-primary) !important; }
.audience-link.amber-link { color: var(--amber); border-bottom-color: var(--amber-light); }
.audience-link.amber-link:hover { border-color: var(--amber); color: var(--amber) !important; }

/* ---------- 11. CREDENTIALS ---------- */
/* base card = light context (used on the School page) */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}
.cred-card { background: #fff; border: 0.5px solid var(--border); border-radius: 14px; padding: 1.25rem; }
.cred-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.cred-icon svg { width: 16px; height: 16px; }
.cred-title { font-size: 18px; font-weight: 500; color: var(--green-dark); margin-bottom: 5px; line-height: 1.4; }
.cred-desc { font-size: 14px; color: var(--text-faint); line-height: 1.55; font-weight: 300; }

/* dark context (home credentials section) */
.creds-section { background: rgba(9, 92, 69, 0.90); }
.creds-inner { max-width: 960px; margin: 0 auto; padding: 4rem 2rem; }
.creds-section .section-eyebrow { color: var(--green-mid); }
.creds-section .section-title { color: var(--cream); }
.creds-section .section-sub { color: var(--green-soft); }
.creds-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.creds-top-text { flex: 1; }
.creds-headshot {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(61, 196, 148, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}
.creds-headshot img { width: 100%; height: 100%; object-fit: cover; object-position: 25% 30%; }
.creds-section .cred-card { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.12); }
.creds-section .cred-icon { background: rgba(61, 196, 148, 0.18); }
.creds-section .cred-title { color: var(--cream); }
.creds-section .cred-desc { color: var(--green-soft); }

/* ---------- 12. STEPS ---------- */
.steps { margin-top: 2rem; display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 1.25rem 0; border-bottom: 0.5px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body { flex: 1; }
.step-title { font-size: 18px; font-weight: 500; color: var(--green-dark); margin-bottom: 4px; }
.step-desc { font-size: 18px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ---------- 13. CLOSING CTA ---------- */
.closing-cta { background: rgba(9, 92, 69, 0.90); padding: 4.5rem 2rem; text-align: center; }
.closing-cta-eyebrow {
  font-size: 12px; letter-spacing: 2px; color: var(--green-mid);
  text-transform: uppercase; font-weight: 500; margin-bottom: 14px;
}
.closing-cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.closing-cta-sub {
  font-size: 18px; color: var(--green-soft);
  max-width: 440px; margin: 0 auto 30px;
  line-height: 1.75; font-weight: 300;
}
.closing-cta-note { margin-top: 18px; font-size: 12px; color: rgba(126, 212, 184, 0.55); letter-spacing: 1px; }

/* ---------- 14. PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.price-card { background: #fff; border-radius: 14px; border: 0.5px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--green-primary); }
.price-card-top { padding: 1.25rem 1.25rem 1rem; border-bottom: 0.5px solid var(--border-soft); }
.tier-badge {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.badge-t1, .badge-half { background: var(--green-light); color: var(--green-dark); }
.badge-t2, .badge-full { background: var(--green-primary); color: var(--green-light); }
.badge-t3, .badge-retainer { background: var(--amber-light); color: var(--amber-dark); }
.badge-custom { background: #F1EFE8; color: var(--text-mid); }
.popular-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.popular-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.popular-text { font-size: 12px; color: var(--amber); font-weight: 500; letter-spacing: 0.5px; }
.tier-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--green-dark); margin-bottom: 3px; }
.tier-sub { font-size: 13px; color: var(--text-faint); }

.price-block { padding: 1rem 1.25rem; border-bottom: 0.5px solid var(--border-soft); }
.price-main { font-family: var(--font-body); font-size: 34px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; color: var(--green-primary); }
.price-note { font-size: 12px; color: var(--text-faint); margin-top: 3px; line-height: 1.5; }
.price-alt { font-size: 13px; color: var(--text-muted); margin-top: 6px; padding-top: 6px; border-top: 0.5px solid var(--border-soft); }

.features { padding: 1rem 1.25rem; flex: 1; }
.feature-group-label {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 8px; margin-top: 12px;
}
.feature-group-label:first-child { margin-top: 0; }
.feature-item { display: flex; gap: 8px; margin-bottom: 7px; align-items: flex-start; }
.check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check svg { width: 8px; height: 8px; }
.feature-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.support-block { margin: 0 1.25rem 1.25rem; background: var(--cream); border-radius: 8px; padding: 10px 12px; }
.support-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* card action button spacing */
.price-card .btn-block { margin: 0 1.25rem 1.25rem; width: auto; padding: 10px; }

/* ---------- 15. SCHOOL — TOPICS & SERVICES ---------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 1.5rem;
}
.topic-pill { background: #fff; border: 0.5px solid var(--border); border-radius: 8px; padding: 10px 14px; display: flex; align-items: flex-start; gap: 10px; }
.topic-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 6px; }
.topic-text { font-size: 18px; color: var(--text-mid); line-height: 1.5; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 1.5rem; }
.svc-card { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.svc-card.accent { border: 2px solid var(--green-primary); }
.svc-top { padding: 1.1rem 1.1rem 0.8rem; border-bottom: 0.5px solid var(--border-soft); }
.svc-badge {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px;
}
.svc-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--green-dark); margin-bottom: 2px; }
.svc-duration { font-size: 13px; color: var(--text-faint); }
.svc-price { padding: 0.8rem 1.1rem; border-bottom: 0.5px solid var(--border-soft); }
.price-num { font-family: var(--font-body); font-size: 30px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; color: var(--green-primary); }
.price-sub { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.svc-features { padding: 0.8rem 1.1rem; flex: 1; }
.svc-feat { display: flex; gap: 8px; margin-bottom: 7px; align-items: flex-start; }
.svc-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.svc-check svg { width: 8px; height: 8px; }
.svc-feat-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ---------- 16. CONTACT ---------- */
.expect-strip { background: var(--cream-dark); border-bottom: 0.5px solid var(--border); padding: 1.5rem 2rem; }
.expect-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.expect-item { display: flex; gap: 12px; align-items: flex-start; }
.expect-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.expect-icon svg { width: 16px; height: 16px; }
.expect-label { font-size: 18px; font-weight: 500; color: var(--green-dark); margin-bottom: 2px; }
.expect-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; font-weight: 300; }

.contact-main {
  max-width: 1020px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}
.sidebar-section { margin-bottom: 2rem; }
.sidebar-eyebrow { font-size: 11px; letter-spacing: 2px; color: var(--amber); text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.sidebar-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--green-dark); margin-bottom: 8px; line-height: 1.25; }
.sidebar-text { font-size: 18px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
.sidebar-divider { border: none; border-top: 0.5px solid var(--border); margin: 1.75rem 0; }

.fit-list { list-style: none; margin-top: 0.75rem; }
.fit-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 18px; color: var(--text-mid);
  margin-bottom: 10px; line-height: 1.5; font-weight: 300;
}
.fit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-primary); flex-shrink: 0; margin-top: 8px; }

.reassurance-card { background: var(--green-deep); border-radius: 14px; padding: 1.25rem; margin-top: 0.5rem; }
.reassurance-card p { font-size: 18px; color: var(--green-soft); line-height: 1.7; font-weight: 300; font-style: italic; }
.reassurance-card p::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green-mid);
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

/* contact form (formalized from inline styles) */
.contact-form-wrap { background: #fff; border: 0.5px solid var(--border); border-radius: 16px; padding: 2.5rem 2rem; }
.form-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 8px; }
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--green-dark); margin-bottom: 6px; }
.form-intro { font-size: 15px; color: var(--text-muted); font-weight: 300; margin-bottom: 2rem; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 5px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-field select { appearance: none; }
.form-field textarea { resize: vertical; line-height: 1.6; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--green-primary); }
.form-hint { font-weight: 300; color: var(--text-faint); }
.radio-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-inline { display: flex; align-items: center; gap: 7px; font-size: 15px; color: var(--text-mid); font-weight: 300; cursor: pointer; }
.radio-inline input { accent-color: var(--green-primary); }
.btn-submit {
  margin-top: 0.5rem;
  background: var(--green-primary);
  color: var(--cream);
  font-size: 16px; font-weight: 500;
  font-family: var(--font-body);
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; color: var(--cream) !important; }
.form-note { font-size: 12px; color: var(--text-faint); text-align: center; line-height: 1.6; }

.faq-section { background: var(--cream-dark); border-top: 0.5px solid var(--border); padding: 3.5rem 2rem; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-eyebrow { font-size: 12px; letter-spacing: 2px; color: var(--amber); text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.faq-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--green-dark); margin-bottom: 2rem; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1.1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 18px; font-weight: 500; color: var(--green-dark); margin-bottom: 6px; }
.faq-a { font-size: 18px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ---------- 17. FAMILY INTAKE FORM ---------- */
/* App-like multi-section form. No marketing nav/footer; own sticky topbar. */
.intake { padding-top: 0; padding-bottom: 6rem; }
.intake .topbar { background: var(--green-dark); padding: 1.1rem 1.25rem 1rem; position: sticky; top: 0; z-index: 100; }
.topbar-eyebrow { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-soft); margin-bottom: 3px; }
.topbar-title { font-family: var(--font-display); font-size: 19px; color: #fff; font-weight: 600; }
.topbar-sub { font-size: 11px; color: var(--green-soft); margin-top: 2px; }

.progress-wrap { background: var(--green-dark); padding: 0 1.25rem 1rem; position: sticky; top: 68px; z-index: 99; }
.progress-bar-bg { background: rgba(255, 255, 255, 0.15); border-radius: 20px; height: 4px; }
.progress-bar-fill { background: var(--amber); border-radius: 20px; height: 4px; transition: width 0.4s ease; width: 0; }
.progress-label { font-size: 10px; color: var(--green-soft); margin-top: 5px; }

.intro-card { margin: 1rem 1rem 0; background: #fff; border: 0.5px solid var(--border); border-radius: 14px; padding: 1.1rem; border-left: 4px solid var(--green-primary); }
.intro-title { font-family: var(--font-display); font-size: 16px; color: var(--green-dark); font-weight: 600; margin-bottom: 6px; }
.intro-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.section-wrap { margin: 1rem 1rem 0; }
.section-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-dark); border-radius: 12px 12px 0 0;
  padding: 0.75rem 1rem; cursor: pointer;
}
.section-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--amber); color: #fff;
  font-size: 12px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.section-wrap .section-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff; flex: 1; margin: 0; }
.section-chevron { color: var(--green-soft); font-size: 14px; transition: transform 0.2s; }
.section-header.open .section-chevron { transform: rotate(180deg); }
.section-body { background: #fff; border: 0.5px solid var(--border); border-top: none; border-radius: 0 0 12px 12px; overflow: hidden; display: none; }
.section-body.open { display: block; }

.q-block { padding: 1rem 1rem 0.75rem; border-bottom: 0.5px solid #F0EDE6; }
.q-block:last-child { border-bottom: none; }
.q-label { font-size: 13px; font-weight: 500; color: var(--text-dark); line-height: 1.5; margin-bottom: 4px; }
.q-hint { font-size: 11px; color: var(--text-faint); font-style: italic; margin-bottom: 8px; line-height: 1.4; }
.q-input, .q-textarea, .q-select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-appearance: none;
  outline: none;
}
.q-textarea { resize: none; min-height: 80px; line-height: 1.5; }
.q-textarea.tall { min-height: 110px; }
.q-input:focus, .q-textarea:focus { border-color: var(--green-primary); background: #fff; }
.q-select:focus { border-color: var(--green-primary); }

.check-group, .radio-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.check-item, .radio-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  cursor: pointer;
}
.check-item input, .radio-item input { width: 16px; height: 16px; accent-color: var(--green-primary); flex-shrink: 0; }
.check-item label, .radio-item label { font-size: 13px; color: var(--text-dark); cursor: pointer; }
.radio-item.selected { border-color: var(--green-primary); background: var(--green-light); }

.scale-wrap { display: flex; gap: 6px; margin-top: 4px; }
.scale-btn {
  flex: 1; padding: 10px 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  text-align: center;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s;
}
.scale-btn.selected { background: var(--green-primary); color: #fff; border-color: var(--green-primary); }
.scale-labels { display: flex; justify-content: space-between; margin-top: 4px; }
.scale-label-text { font-size: 10px; color: var(--text-faint); font-style: italic; }

.routine-block { background: var(--amber-light); border-left: 3px solid var(--amber); padding: 10px 12px; margin: 0 1rem; }
.routine-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 3px; }
.routine-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; font-style: italic; }

.submit-wrap { margin: 1.5rem 1rem 0; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--green-dark); color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  font-family: var(--font-body); cursor: pointer;
}
.submit-note { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 8px; line-height: 1.5; }

.thankyou { display: none; margin: 2rem 1rem; background: #fff; border: 0.5px solid var(--border); border-radius: 14px; padding: 2rem 1.25rem; text-align: center; }
.thankyou-icon { font-size: 36px; margin-bottom: 12px; }
.thankyou-title { font-family: var(--font-display); font-size: 22px; color: var(--green-dark); margin-bottom: 8px; }
.thankyou-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---------- 18. RESPONSIVE ---------- */
/* ============================================================
   Gravity Forms AJAX helper iframe — must never reserve space.
   Fixes the blank gap below the footer on the intake page
   (ajax="true" renders a hidden iframe Elementor lets take height).
   ============================================================ */
iframe[name^="gform_ajax_frame"],
iframe[id^="gform_ajax_frame"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  border: 0 !important;
  visibility: hidden !important;
}

@media (min-width: 1440px) { .hero::after { background-position: center 35%; } }
@media (min-width: 1920px) { .hero::after { background-position: center 30%; } }

@media (max-width: 1024px) {
  /* 60px logo + 8px nav padding → ~86px bar */
  :root { --nav-height: 86px; }
  nav { padding: 8px 1.5rem; }
  .nav-logo img { height: 60px; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 13px; }
  .nav-cta { padding: 6px 12px; font-size: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .trust-bar {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 1.3rem 3rem;
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 600px) {
  /* Mobile bar uses a fixed 64px height */
  :root { --nav-height: 64px; }
  /* NAV */
  nav { padding: 0 1.25rem; height: var(--nav-height); }
  .nav-logo img { height: 44px; padding: 0; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
  }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.25s; }
  .nav-mobile-menu {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--green-deep);
    padding: 1.5rem 1.25rem 2rem; gap: 1.25rem; z-index: 999;
    border-top: 0.5px solid rgba(126, 212, 184, 0.15);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a { color: var(--green-soft); text-decoration: none; font-size: 18px; font-weight: 400; }
  .nav-mobile-menu .nav-cta { color: var(--cream) !important; padding: 12px 20px; text-align: center; margin-top: 0.5rem; }

  /* HERO */
  .hero { min-height: auto; padding: 5.5rem 1.25rem 3rem; text-align: left; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-service-area { text-align: left; margin-left: 0; }
  .hero-title { font-size: clamp(32px, 9vw, 46px); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions a { text-align: center; }

  /* PAGE HEADER */
  .page-header { padding: 5.5rem 1.25rem 2.5rem; }

  /* TRUST BAR — single column on phones, sub-labels stay visible */
  .trust-bar { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; padding: 1.5rem 1.25rem; }
  .trust-item-top { font-size: 15px; }
  .trust-item-bottom { font-size: 12px; }

  /* SECTIONS */
  .section { padding: 2.75rem 1.25rem; max-width: 100%; }
  .creds-inner { padding: 2.75rem 1.25rem; }

  /* AUDIENCE / CREDS */
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .creds-top { flex-direction: column-reverse; align-items: flex-start; gap: 1.5rem; }
  .creds-headshot { width: 140px; height: 140px; margin: 0 auto; }
  .creds-headshot img { object-position: top center; }
  .creds-grid { grid-template-columns: 1fr; gap: 10px; }

  /* STEPS */
  .step { gap: 14px; }
  .step-num { width: 30px; height: 30px; font-size: 14px; }

  /* CLOSING CTA */
  .closing-cta { padding: 3rem 1.25rem; }

  /* PRICING / SCHOOL CARDS */
  .pricing-grid, .services-grid { grid-template-columns: 1fr; padding-left: 1.25rem; padding-right: 1.25rem; }

  /* CONTACT */
  .contact-main { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 3rem; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .expect-strip { padding: 1.5rem 1.25rem; }
  .faq-section { padding: 2.5rem 1.25rem; }

  /* FOOTER */
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 1.25rem; }
  .footer-brand img { height: 58px; }
}
