/* ==========================================================================
   Manhattan Beach Lice Removal Services — Design System
   ========================================================================== */

:root {
  --color-bg: #FAF8F3;
  --color-bg-alt: #F0F4F1;
  --color-bg-deep: #EAF0EE;
  --color-primary: #3D7A82;
  --color-primary-dark: #2C5B61;
  --color-primary-light: #E8F1F1;
  --color-accent: #8FBC94;
  --color-accent-dark: #6FA377;
  --color-accent-light: #EAF4EB;
  --color-cta: #E0733F;
  --color-cta-dark: #C15F30;
  --color-text: #263238;
  --color-text-muted: #5C6B70;
  --color-white: #FFFFFF;
  --color-border: #E1DDD3;
  --shadow-sm: 0 2px 10px rgba(38, 54, 56, 0.07);
  --shadow-md: 0 10px 30px rgba(38, 54, 56, 0.10);
  --shadow-lg: 0 18px 46px rgba(38, 54, 56, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-height: 76px;
  --container-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* space for mobile sticky bar */
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 76px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-deep { background: var(--color-bg-deep); }

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p { margin-top: 12px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-cta {
  background: var(--color-cta);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(224, 115, 63, 0.32);
}
.btn-cta:hover { background: var(--color-cta-dark); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(61, 122, 130, 0.28);
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-dark:hover { background: var(--color-primary-light); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
}
.top-bar a { display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--color-accent-light); }
.top-bar svg { width: 14px; height: 14px; }
.top-bar .top-bar-note { opacity: 0.85; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { font-family: var(--font-heading); line-height: 1.15; }
.brand-text .brand-name { font-weight: 700; color: var(--color-primary-dark); font-size: 1.02rem; display: block; }
.brand-text .brand-sub { font-size: 0.72rem; color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.03em; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--color-primary); }
.main-nav a[aria-current="page"] { color: var(--color-primary); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--color-accent-dark);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1rem;
}
.header-phone svg { width: 19px; height: 19px; color: var(--color-cta); }

.header-cta {
  padding: 10px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--color-primary-dark);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-bg) 55%);
  padding: 72px 0 90px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { font-size: 1.12rem; margin-bottom: 30px; max-width: 520px; }
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 34px;
}
.hero-trust-row .trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600; color: var(--color-primary-dark);
}
.hero-trust-row svg { width: 18px; height: 18px; color: var(--color-accent-dark); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(143,188,148,0.35), transparent 60%),
              radial-gradient(circle at 30% 75%, rgba(61,122,130,0.22), transparent 55%);
  border-radius: 50%;
  filter: blur(4px);
}
.hero-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  width: 100%;
  max-width: 380px;
}
.hero-illustration { width: 100%; height: auto; }

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge svg { width: 30px; height: 30px; color: var(--color-cta); flex-shrink: 0; }
.hero-badge .badge-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: var(--color-primary-dark); }
.hero-badge .badge-sub { font-size: 0.76rem; color: var(--color-text-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--color-primary-dark); padding: 26px 0; }
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 10px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1 1 200px;
}
.trust-strip svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* ---------- Why-us split (text cards + photo) ---------- */
.why-us-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}
.why-us-cards { grid-template-columns: repeat(2, 1fr); align-content: start; }
.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px;
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- How it works photo ---------- */
.how-it-works-photo {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.how-it-works-photo img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
}

/* ---------- Happy family photo ---------- */
.happy-family-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.happy-family-photo img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}
.happy-family-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.happy-family-caption .badge-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--color-primary-dark); }
.happy-family-caption .badge-sub { font-size: 0.82rem; color: var(--color-text-muted); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
  position: relative;
}
.step { position: relative; padding-top: 6px; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(61,122,130,0.3);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.93rem; }

/* ---------- Pricing ---------- */
.price-hero {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.price-figure { text-align: center; }
.price-figure .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--color-primary-dark);
  line-height: 1;
}
.price-figure .unit { font-size: 0.95rem; color: var(--color-text-muted); font-weight: 500; }

.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border-color: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card .tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.price-card .price-line { font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; color: var(--color-primary-dark); margin: 6px 0 16px; }
.price-card .price-line span { font-size: 0.85rem; font-weight: 500; color: var(--color-text-muted); }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--color-text-muted);
  margin-bottom: 10px;
}
.check-list svg { width: 18px; height: 18px; color: var(--color-accent-dark); flex-shrink: 0; margin-top: 1px; }

.note-box {
  background: var(--color-primary-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 40px;
}
.note-box svg { width: 26px; height: 26px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.note-box h4 { color: var(--color-primary-dark); margin-bottom: 6px; }
.note-box p { font-size: 0.93rem; }

/* ---------- Areas ---------- */
.area-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm);
}
.area-card .pin {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-card .pin svg { width: 24px; height: 24px; }
.area-card h3 { font-size: 1.02rem; margin-bottom: 3px; }
.area-card p { font-size: 0.85rem; margin: 0; }

.area-expand {
  margin-top: 34px;
  text-align: center;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  padding: 30px;
}
.area-expand h3 { margin-bottom: 8px; }
.area-expand p { max-width: 520px; margin: 0 auto 18px; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--color-cta); }
.stars svg { width: 17px; height: 17px; }
.testimonial p.quote { color: var(--color-text); font-size: 0.96rem; margin-bottom: 16px; }
.testimonial .author { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--color-primary-dark); }
.testimonial .author span { display: block; font-weight: 400; color: var(--color-text-muted); font-size: 0.8rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  color: var(--color-white);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-values { margin-top: 20px; }
.about-values li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; color: var(--color-text-muted); }
.about-values svg { width: 20px; height: 20px; color: var(--color-accent-dark); flex-shrink: 0; margin-top: 2px; }

/* ---------- Contact / form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 46px;
  align-items: start;
}
.contact-info-card {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h2 { color: var(--color-white); font-size: 1.25rem; margin-bottom: 18px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-row svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; margin-bottom: 3px; }
.contact-info-row .value { font-family: var(--font-heading); font-weight: 600; }
.contact-info-row a:hover { color: var(--color-accent); }
.contact-divider { height: 1px; background: rgba(255,255,255,0.18); margin: 24px 0; }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-toggle {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-bottom: 26px;
}
.form-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.form-toggle button.active { background: var(--color-primary); color: var(--color-white); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 5px; }
.hidden-field { display: none; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.visible { display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.93rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { background: rgba(255,255,255,0.14); }
.footer-brand .brand-name { color: var(--color-white); }
.footer-col h4 { color: var(--color-white); font-size: 0.92rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-col p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; color: var(--color-white); font-size: 1.05rem; margin-bottom: 12px; }
.footer-phone svg { width: 18px; height: 18px; color: var(--color-accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.6);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 20px rgba(38,54,56,0.10);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-bar a { flex: 1; }
.mobile-bar .btn { width: 100%; padding: 13px 10px; font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-hero { grid-template-columns: 1fr; text-align: center; }
  .why-us-split { grid-template-columns: 1fr; }
  .why-us-image { order: -1; min-height: 260px; }
}

@media (max-width: 860px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .header-phone span.phone-label { display: none; }
  .nav-toggle { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }

  .brand { flex-shrink: 1; min-width: 0; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-text .brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-text .brand-sub { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--color-bg-alt); }
  .header-actions .btn-cta.header-cta { display: none; }
}

@media (max-width: 640px) {
  section { padding: 54px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 26px; }
  .price-hero { padding: 28px; }
  .why-us-cards { grid-template-columns: 1fr; }
  .happy-family-caption { left: 14px; right: 14px; bottom: 14px; padding: 12px 16px; }
}
