/* ============================================================
   Golden Peak Care Solution — Design System
   Warm, modern, approachable. California in-home care.
   ============================================================ */

:root {
  /* Brand blues */
  --blue-900: #0e2a52;
  --blue-800: #133a6e;
  --blue-700: #1a4c91;
  --blue-600: #1f5fbf;
  --blue-500: #2f76d9;
  --blue-300: #8fc0f5;
  --blue-100: #e7f1fd;
  --blue-50:  #f3f8ff;

  /* Warm accents (golden yellow) */
  --gold: #f5b71f;
  --gold-deep: #d99412;
  --gold-soft: #fdedc6;
  --amber: #ffb84d;
  --amber-soft: #ffe9c7;
  --coral: #ff7a59;

  /* Neutrals */
  --ink: #16263d;
  --body: #3f5168;
  --muted: #6b7c92;
  --line: #e4ebf3;
  --cream: #fbf7f1;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 4px 14px rgba(16, 42, 82, 0.06);
  --shadow: 0 18px 40px rgba(16, 42, 82, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 42, 82, 0.16);

  --maxw: 1160px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a[href^="tel:"] { white-space: nowrap; font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; letter-spacing: .01em; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; }
h1 { font-family: var(--font-serif); font-weight: 600; }
h2 { font-family: var(--font-serif); font-weight: 600; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue-700); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
/* Accent + clear buttons — gold brand CTA */
.btn-accent {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 100%);
  color: var(--blue-900); font-weight: 700;
  box-shadow: 0 10px 24px rgba(245, 183, 31, .38);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #c8840f 0%, var(--gold-deep) 100%);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 183, 31, .45);
}
.btn-clear { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.65); }
.btn-clear:hover { background: var(--gold); color: var(--blue-900); border-color: var(--gold); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: #fff; box-shadow: 0 10px 22px rgba(31, 95, 191, .28);
  border: 1px solid rgba(245, 183, 31, .25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  transform: translateY(-2px); box-shadow: 0 14px 28px rgba(31, 95, 191, .34);
  border-color: rgba(245, 183, 31, .45);
}
.btn-ghost { background: transparent; color: var(--blue-700); border-color: var(--blue-300); }
.btn-ghost:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--blue-800); }
.btn-light { background: #fff; color: var(--blue-700); border: 1px solid rgba(245, 183, 31, .35); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, #ffd873 70%, var(--gold)) 1;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  min-height: 76px; gap: 20px;
}

/* Left-aligned logo */
.brand {
  justify-self: start; display: flex; flex-direction: row; align-items: center;
  gap: 10px; color: var(--blue-700); text-align: left; line-height: 1; text-decoration: none;
}
.brand-emblem { color: var(--blue-600); display: inline-flex; flex: none; }
.brand-lockup { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.brand-word {
  font-weight: 800; font-size: .95rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
  background: linear-gradient(90deg, #e0830f, #f5b71f 60%, #f6a01e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-sub { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-600); font-weight: 700; }

/* Center nav */
.nav-left { justify-self: center; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav-menu a:not(.btn) {
  color: var(--ink); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 8px 12px; border-radius: 10px; transition: background .2s, color .2s;
}
.nav-menu a:not(.btn):hover { background: var(--gold-soft); color: var(--blue-800); }
.nav-mobile-only { display: none; }

/* Right: social + intake */
.header-right { justify-self: end; display: flex; align-items: center; gap: 10px; }
.social {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  color: var(--blue-700); border: 1px solid var(--line); transition: background .2s, color .2s, border-color .2s;
}
.social:hover { background: var(--blue-50); color: var(--blue-600); border-color: var(--blue-300); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; justify-self: start;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Shared section ---------- */
.section { padding: 96px 0; }
.section-tint {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(245,183,31,.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head h2::after {
  content: ""; display: block; width: 56px; height: 4px; margin: 18px auto 0;
  border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.section-sub { font-size: 1.1rem; color: var(--muted); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 700; color: var(--gold-deep); margin-bottom: 14px;
}

.accent { color: var(--blue-600); position: relative; }

/* Inline SVG icons */
.ic { width: 26px; height: 26px; display: block; }
.ic-sm { width: 16px; height: 16px; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--body); font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--blue-700); color: var(--gold);
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}

/* ---------- Hero (full-bleed) ---------- */
.hero {
  position: relative; overflow: hidden; display: grid; align-content: end;
  min-height: 88vh; background: var(--blue-900);
}
.hero > .container { min-width: 0; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,30,60,.88) 0%, rgba(11,30,60,.52) 42%, rgba(11,30,60,.15) 100%),
    linear-gradient(0deg, rgba(11,30,60,.75) 0%, rgba(11,30,60,0) 55%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(245,183,31,.12) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 150px; }
.hero-eyebrow {
  color: #ffd068; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; font-size: .8rem; margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-title {
  color: #fff; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -.01em;
  margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-lede {
  color: #e9f0fb; font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 580px; margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 110px; z-index: 2; }

/* ---------- Values ---------- */
.values { padding: 50px 0 10px; position: relative; z-index: 3; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-300); border-top-color: var(--gold-deep); }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), #fff4d6); color: var(--gold-deep);
  font-size: 1.4rem; font-weight: 800; margin-bottom: 16px;
}
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { font-size: .96rem; color: var(--muted); }

/* ---------- Full-bleed split rows (wall-to-wall imagery) ---------- */
.split-section { padding: 0; overflow: hidden; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; }
.split-media { position: relative; min-height: 560px; overflow: hidden; background: var(--blue-900); }
.split-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0; box-shadow: none; aspect-ratio: auto;
}
.split-copy { display: flex; align-items: center; background: #fff; padding: clamp(56px, 7vw, 112px) clamp(24px, 6vw, 96px); }
.split-tint .split-copy {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  border-left: 4px solid var(--gold);
}
.split-copy-inner { width: 100%; max-width: 600px; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }

/* ---------- About ---------- */
.about-media img { object-position: 50% 35%; }
.about-quote {
  position: absolute; left: 24px; bottom: 24px; max-width: 300px; z-index: 2;
  background: var(--blue-700); color: #fff; padding: 22px 24px; border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow); font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.4;
}
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.about-copy p { margin-bottom: 16px; }

/* ---------- Approach (clean numbered list) ---------- */
.approach-list { list-style: none; max-width: 760px; margin: 0 auto; padding: 0; display: grid; gap: 46px; }
.approach-item h3 {
  font-family: var(--font-serif); font-weight: 500; line-height: 1.2;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem); color: var(--ink); margin-bottom: 10px;
}
.approach-num { color: var(--gold-deep); font-weight: 600; }
.approach-item p { color: var(--body); font-size: 1.05rem; max-width: 660px; }
.section-dark .approach-item h3 { color: #fff; }
.section-dark .approach-num { color: #ffd166; }
.section-dark .approach-item p { color: #acc5e6; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  padding: 32px 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-300); border-top-color: var(--gold-deep); }
.service-icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--blue-700);
  background: linear-gradient(135deg, var(--blue-50), var(--gold-soft));
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.how-copy { position: sticky; top: 100px; }
.how-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.how-copy p { margin-bottom: 26px; }
.steps { list-style: none; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.step {
  display: flex; gap: 20px; background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm);
}
.step-num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border: 2px solid var(--gold);
  color: #ffd166; display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--muted); }

/* ---------- Community / dark blue + gold bands ---------- */
.section-dark {
  background:
    radial-gradient(80% 120% at 15% 0%, var(--blue-700) 0%, rgba(26,76,145,0) 60%),
    radial-gradient(60% 80% at 95% 100%, rgba(245,183,31,.08) 0%, transparent 50%),
    var(--blue-900);
  color: #d8e5f5;
}
.section-blue-mid {
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(245,183,31,.1) 0%, transparent 50%),
    radial-gradient(80% 120% at 0% 100%, var(--blue-700) 0%, rgba(26,76,145,0) 55%),
    linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #d8e5f5;
}
.section-head-light h2 { color: #fff; }
.section-head-light .section-sub { color: #acc5e6; }
.section-head-light .section-sub a { color: #ffd166; font-weight: 600; }
.section-head-light .section-sub a:hover { color: #fff; }
.section-head-light .eyebrow { color: var(--gold); }
.section-blue-mid .section-head h2::after,
.section-dark .section-head h2::after {
  background: linear-gradient(90deg, var(--gold), #ffd873);
}
.section-head-light h2::after { background: linear-gradient(90deg, var(--gold), #ffd873); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid rgba(245,183,31,.5);
  border-radius: var(--radius); padding: 34px 18px;
  transition: border-color .2s, background .2s;
}
.stat:hover { background: rgba(255,255,255,.08); border-top-color: var(--gold); }
.stat-num { display: block; font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); color: #ffd166; font-weight: 600; }
.stat-label { color: #acc5e6; font-size: .95rem; font-weight: 500; }

/* ---------- Careers ---------- */
.careers-media img { object-position: 50% 30%; }
.careers-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.careers-copy .btn { margin-top: 36px; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border: 1px solid rgba(245,183,31,.35);
  display: grid; place-items: center; color: var(--gold);
}
.contact-ic .ic { width: 22px; height: 22px; }
.contact-list a { color: var(--blue-700); font-weight: 600; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
  padding: 34px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--blue-50); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); background: #fff;
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.field textarea { resize: vertical; }
.field input:invalid.touched { border-color: var(--coral); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: #e8f7ee; color: #1d7a45; font-weight: 600; text-align: center;
}
.form-error {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: #fdeeee; color: #b42318; font-weight: 600; text-align: center;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(80% 120% at 85% 0%, var(--blue-700) 0%, rgba(26,76,145,0) 60%),
    radial-gradient(50% 80% at 10% 100%, rgba(245,183,31,.12) 0%, transparent 55%),
    linear-gradient(120deg, var(--blue-900), var(--blue-700));
  color: #fff;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, #ffd873 70%, var(--gold)) 1;
}
.cta-inner { text-align: center; padding: 70px 24px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 10px; }
.cta-inner p { color: #d7e6fb; margin-bottom: 26px; font-size: 1.1rem; }
.cta-inner .btn-light { background: var(--gold); color: var(--blue-900); border-color: var(--gold); font-weight: 700; }
.cta-inner .btn-light:hover { background: #fff; color: var(--blue-800); }
.cta-inner .eyebrow { color: var(--gold); margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-900); color: #a9c0de; padding: 64px 0 28px;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, #ffd873 70%, var(--gold)) 1;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.brand-footer { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-footer .brand-text {
  color: #f6b73e; font-family: 'Fraunces', Georgia, serif;
  font-weight: 600; font-size: 1.3rem; letter-spacing: .2px; line-height: 1.1;
}
.brand-footer .brand-mark { color: #fff; display: inline-flex; }
.footer-brand p { margin-top: 16px; max-width: 340px; color: #93acce; }
.footer-col h4 { color: #ffd166; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #a9c0de; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-ic {
  flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--gold);
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: #7e98ba;
}

/* ---------- Regional Centers ---------- */
.regional-media img { object-position: 50% 30%; }
.regional-stat {
  position: absolute; left: 24px; bottom: 24px; z-index: 2; background: var(--blue-700); color: #fff;
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); max-width: 230px;
  border-left: 4px solid var(--gold);
}
.regional-stat-num { display: block; font-family: var(--font-serif); font-size: 1.65rem; font-weight: 600; line-height: 1.15; color: #ffd166; }
.regional-stat-label { font-size: .85rem; color: #cbdcf3; }
.regional-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.regional-copy p { margin-bottom: 16px; }
.regional-sub { font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.life-stages {
  list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px;
}
.life-stages li {
  padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: .96rem; color: var(--body);
  border-left: 4px solid var(--gold);
}
.life-stages strong { color: var(--ink); }
.families-media img { object-position: 50% 35%; }
.families-copy .btn { margin-top: 28px; }
.children-care-media img { object-position: 55% 25%; }
.children-care-copy .check-list { margin-top: 4px; }
.rc-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
}
.rc-list li { position: relative; padding-left: 26px; color: var(--body); font-size: .96rem; }
.rc-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft);
}
.regional-note { font-size: .95rem; color: var(--muted); font-style: italic; margin-bottom: 0; }

/* ---------- Areas we serve / local SEO ---------- */
.local-regions { display: grid; gap: 44px; max-width: 920px; margin: 0 auto; }
.local-region h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  margin-bottom: 10px; color: var(--ink);
}
.local-region p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.65; }
.section-dark .local-region h3 { color: #fff; }
.section-dark .local-region p { color: #acc5e6; }
.section-dark .local-region p a { color: #ffd166; font-weight: 600; }
.section-dark .local-region p a:hover { color: #fff; }
.section-dark .area-chips li {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14);
}
.section-dark .area-chips a { color: #e9f0fb; }
.section-dark .area-chips li:hover {
  background: rgba(245,183,31,.14); border-color: var(--gold); transform: translateY(-2px);
}
.section-dark .area-chips li:hover a { color: #ffd166; }
.section-dark .areas-note { color: #acc5e6; }
.section-dark .areas-note a { color: #ffd166; }
.section-dark .areas-note strong { color: #fff; }
.local-region .area-chips { justify-content: flex-start; max-width: none; margin: 0; }
.area-chips {
  list-style: none; padding: 0; margin: 0 auto; max-width: 880px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.area-chips li {
  background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100);
  padding: 0; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: background .2s, transform .2s;
}
.area-chips a {
  display: block; padding: 10px 18px; color: inherit; text-decoration: none; border-radius: 999px;
}
.area-chips li:hover { background: var(--blue-100); transform: translateY(-2px); }
.area-chips li:hover a { color: var(--blue-600); }
.areas-note { text-align: center; margin-top: 36px; color: var(--muted); max-width: 640px; margin-left: auto; margin-right: auto; }
.areas-note a { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { border-color: var(--blue-300); border-left-color: var(--blue-700); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 600; color: var(--ink);
  font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-700); color: var(--gold); display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 700; transition: transform .25s, background .2s, color .2s;
}
.faq-item[open] summary::after { content: "−"; background: var(--gold); color: var(--blue-900); transform: rotate(180deg); }
.faq-body { padding: 0 26px 22px; }
.faq-body p { color: var(--muted); margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-copy { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Full-bleed split rows stack to image-on-top */
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; }
  .split-reverse .split-media { order: 0; }
  .split-reverse .split-copy { order: 0; }
}

/* Header collapses to mobile layout */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "toggle brand actions";
    min-height: 68px; gap: 10px;
  }
  .nav-toggle { display: flex; grid-area: toggle; }
  .brand { grid-area: brand; justify-self: start; }
  .header-right { grid-area: actions; }
  .nav-left { display: contents; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid var(--line); border-radius: 0 0 16px 16px;
    padding: 14px 20px 20px; box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a:not(.btn) { padding: 12px 14px; border-radius: 10px; }
  .header-right .social { display: none; }
  .brand-word { font-size: .88rem; letter-spacing: .12em; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { min-height: 76vh; }
  .hero-content { padding-top: 90px; padding-bottom: 100px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .values-grid, .services-grid, .stats-grid, .rc-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .header-inner { gap: 8px; min-height: 68px; }
  .header-right .btn-accent { padding: 9px 15px; font-size: .9rem; }
  .brand-sub { display: none; }
  .brand-emblem svg { width: 42px; height: 42px; }
  .brand-word { font-size: .88rem; letter-spacing: .12em; }
  .hero-divider { height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
