/* ==========================================================================
   Children's Lighthouse Overland Park — HappyFeet Soccer Partner
   Standalone preview comp — DO NOT deploy as-is
   Design tokens, type scale, layout, components.
   ========================================================================== */

/* ----- Self-hosted fonts ----- */
@font-face {
  font-family: "Squada One";
  src: url("./assets/squada-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----- Design tokens ----- */
:root {
  /* Brand */
  --navy: #1C244B;
  --navy-700: #2A356B;
  --navy-50: #EEF0F8;
  --red: #EE313D;
  --red-700: #C42030;
  --yellow: #FEDE10;
  --cream: #FFF8E6;
  --cream-deep: #F7EBC4;

  /* Surfaces */
  --bg: #FAFAF7;       /* warm off-white */
  --surface: #FFFFFF;
  --ink: #14172E;       /* near-navy text */
  --ink-2: #4A4F6B;     /* secondary text */
  --ink-3: #7A8094;     /* tertiary text */
  --line: #E7E4DA;      /* warm hairline */
  --line-strong: #CFCBBC;

  /* Type */
  --display: "Squada One", "Bebas Neue", Impact, system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale (1.25 ratio, mobile base 16) */
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1rem;
  --t-md: 1.125rem;
  --t-lg: 1.375rem;
  --t-xl: 1.75rem;
  --t-2xl: 2.25rem;
  --t-3xl: 3rem;
  --t-4xl: 4rem;
  --t-5xl: 5.25rem;

  /* Spacing (4pt grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Elevation — warm, not pure black */
  --shadow-sm: 0 1px 2px rgba(28, 36, 75, 0.06), 0 1px 1px rgba(28, 36, 75, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 36, 75, 0.08), 0 2px 4px rgba(28, 36, 75, 0.04);
  --shadow-lg: 0 16px 40px rgba(28, 36, 75, 0.12), 0 4px 12px rgba(28, 36, 75, 0.06);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* ----- Typography ----- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0 0 var(--s-4);
  color: var(--navy);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 7vw, var(--t-5xl)); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4.5vw, var(--t-3xl)); }
h3 { font-size: clamp(1.5rem, 3vw, var(--t-xl)); }
h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--t-md);
  margin: 0 0 var(--s-2);
  color: var(--navy);
  letter-spacing: -0.01em;
}
p { margin: 0 0 var(--s-4); color: var(--ink-2); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--cream-deep);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(238,49,61,0.18);
}

/* ----- Container & sections ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-6); }
section { padding: var(--s-20) 0; }
.section-head { max-width: 720px; margin-bottom: var(--s-12); }
.section-head p.lead { font-size: var(--t-md); color: var(--ink-2); margin-top: var(--s-4); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-6);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--s-6);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.125rem;
  letter-spacing: 0;
}
.nav-links { display: flex; gap: var(--s-6); align-items: center; }
.nav-links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: #fff;
  padding: 10px 18px;
  font-size: var(--t-sm);
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: transform .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
  flex: none;
}
.nav-cta:hover { background: var(--navy-700); transform: translateY(-1px); }
.menu-btn { display: none; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: var(--s-16) 0 var(--s-20);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 110% -10%, var(--cream) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: var(--s-5);
}
.hero-eyebrow .pin { color: var(--red); }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  margin-bottom: var(--s-5);
}
.hero h1 .accent {
  display: block;
  color: var(--red);
  font-style: normal;
}
.hero-sub {
  font-size: var(--t-md);
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: var(--s-8);
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-8); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-6) var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-sm); color: var(--ink-2);
}
.trust-item strong { color: var(--navy); font-weight: 700; }
.trust-item .ico { width: 18px; height: 18px; color: var(--red); flex: none; }

/* Hero visual: split polaroid stack */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.polaroid {
  position: absolute;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.polaroid-1 {
  top: 4%; left: 0; width: 62%; aspect-ratio: 4/5;
  transform: rotate(-3deg);
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: var(--s-6);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--navy);
}
.polaroid-1::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(254,222,16,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(238,49,61,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.polaroid-1 > * { position: relative; z-index: 1; }
.polaroid-1 .pl1-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: var(--t-md);
  color: var(--navy); letter-spacing: 0.02em;
}
.polaroid-1 .pl1-mark span.dot {
  width: 28px; height: 28px; background: var(--navy); color: var(--yellow);
  border-radius: 7px; display: grid; place-items: center;
  font-family: var(--display); font-size: 0.9rem; letter-spacing: 0;
}
.polaroid-1 .pl1-center {
  flex: 1; display: grid; place-items: center; padding: var(--s-3) 0;
  min-height: 0;
}
.polaroid-1 .pl1-center img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(28,36,75,0.10));
}
.polaroid-1 .pl1-foot {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.polaroid-2 {
  bottom: 0; right: 0; width: 52%; aspect-ratio: 4/5;
  transform: rotate(4deg);
  padding: var(--s-5);
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--cream);
}
.polaroid-2 .pl-tag {
  font-family: var(--display);
  font-size: var(--t-2xl);
  color: var(--navy);
  line-height: 0.95;
}
.polaroid-2 .pl-meta {
  display: flex; align-items: center; gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--cream-deep);
}
.polaroid-2 .pl-meta .swatch {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  color: #fff; font-family: var(--display); font-size: 1.125rem;
}
.polaroid-2 .pl-meta span { font-size: var(--t-xs); font-weight: 600; color: var(--navy); }
.polaroid-svg {
  width: 100%; height: 60%;
  border-radius: var(--r-md);
  margin-top: var(--s-4);
  background: #fff;
}
.hero-confetti {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: var(--r-md);
  top: -20px; right: 30%;
  transform: rotate(15deg);
  z-index: -1;
  opacity: 0.55;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--t-base);
  letter-spacing: -0.005em;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(238,49,61,0.28);
}
.btn-primary:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(238,49,61,0.34); }
.btn-secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(28,36,75,0.18);
}
.btn-secondary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 24px;
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .2s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* =============================================================
   SECTION: WHAT THIS IS (story)
   ============================================================= */
.story {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-16);
  align-items: start;
}
.story h2 { margin-bottom: var(--s-6); }
.story-pillars {
  display: grid;
  gap: var(--s-5);
}
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  padding: var(--s-6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pillar:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pillar-num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--display);
  font-size: var(--t-lg);
  border-radius: 12px;
  display: grid; place-items: center;
  letter-spacing: 0;
}
.pillar h4 { margin-bottom: var(--s-1); }
.pillar p { margin: 0; font-size: var(--t-sm); }

/* =============================================================
   SECTION: AGES & SCHEDULE
   ============================================================= */
.schedule-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-16);
  align-items: stretch;
}
.schedule-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-10);
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.schedule-card h3 { color: #fff; margin-bottom: var(--s-3); }
.schedule-card .price-row {
  display: flex; align-items: baseline; gap: var(--s-2);
  margin: var(--s-6) 0;
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.schedule-card .price {
  font-family: var(--display);
  font-size: var(--t-4xl);
  color: var(--yellow);
  letter-spacing: 0;
}
.schedule-card .price-unit { color: rgba(255,255,255,0.75); font-size: var(--t-sm); font-weight: 500; }
.schedule-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.schedule-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  align-items: center;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-list .age {
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--yellow);
}
.schedule-list .label { color: #fff; font-weight: 500; font-size: var(--t-sm); }
.schedule-list .time { color: rgba(255,255,255,0.7); font-size: var(--t-xs); font-variant-numeric: tabular-nums; }

.schedule-meta {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--cream-deep);
}
.schedule-meta h3 { margin-bottom: var(--s-3); color: var(--navy); }
.schedule-meta ul { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: var(--s-3); }
.schedule-meta li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: var(--t-sm); color: var(--ink-2);
}
.schedule-meta li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  flex: none;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
}
.schedule-meta strong { color: var(--navy); }

/* =============================================================
   SECTION: WHY THIS LOCATION (5 reasons)
   ============================================================= */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
}
.reason {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.reason:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.reason:nth-child(1), .reason:nth-child(2) { grid-column: span 3; }
.reason:nth-child(3), .reason:nth-child(4), .reason:nth-child(5) { grid-column: span 2; }
.reason-num {
  font-family: var(--display);
  font-size: var(--t-xl);
  color: var(--red);
  letter-spacing: 0;
  margin-bottom: var(--s-3);
  line-height: 1;
}
.reason h4 { margin-bottom: var(--s-2); }
.reason p { margin: 0; font-size: var(--t-sm); }

/* =============================================================
   MID-PAGE CONVERSION STRIP
   ============================================================= */
.cta-strip {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-16) var(--s-12);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: var(--s-12);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}
.cta-strip h2 { color: #fff; margin: 0 0 var(--s-3); position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.78); margin: 0; max-width: 560px; position: relative; z-index: 1; font-size: var(--t-md); }
.cta-strip-actions { display: flex; flex-direction: column; gap: var(--s-3); position: relative; z-index: 1; }
.cta-strip .btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 10px 26px rgba(254,222,16,0.32); }
.cta-strip .btn-primary:hover { background: #fff; }
.cta-strip .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-strip .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 2px; margin-bottom: var(--s-4); color: var(--yellow); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial blockquote {
  font-family: var(--body);
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 var(--s-6);
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.testimonial-author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: var(--t-md);
}
.testimonial-author .name { font-weight: 700; color: var(--navy); font-size: var(--t-sm); }
.testimonial-author .meta { font-size: var(--t-xs); color: var(--ink-3); }
.review-source {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s-8);
  font-size: var(--t-xs);
  color: var(--ink-3);
}
.review-source .pill {
  background: var(--navy-50); color: var(--navy);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-weight: 600;
}

/* =============================================================
   LOCATION
   ============================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-12);
  align-items: stretch;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-10);
}
.location-card h3 { margin-bottom: var(--s-3); }
.address-block {
  font-family: var(--body);
  font-size: var(--t-md);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  padding: var(--s-5);
  background: var(--cream);
  border-radius: var(--r-md);
  margin: var(--s-5) 0 var(--s-8);
  border-left: 4px solid var(--red);
}
.address-block .addr-line { display: block; font-weight: 500; color: var(--ink-2); font-size: var(--t-sm); margin-top: 4px; }
.drive-list { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: 0; }
.drive-list li {
  display: grid; grid-template-columns: 1fr auto;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--line);
  font-size: var(--t-sm);
  color: var(--ink-2);
}
.drive-list li:last-child { border-bottom: 0; }
.drive-list .from { color: var(--navy); font-weight: 600; }
.drive-list .mins { font-variant-numeric: tabular-nums; color: var(--ink-3); }
.location-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  position: relative;
  min-height: 460px;
  display: flex; flex-direction: column;
}
.map-svg { flex: 1; }
.map-pin-card {
  position: absolute;
  bottom: var(--s-6); left: var(--s-6); right: var(--s-6);
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--s-4);
}
.map-pin-card .pin-ico {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  flex: none;
}
.map-pin-card .pin-ico::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: #fff; transform: rotate(45deg); }
.map-pin-card .pin-text { font-size: var(--t-sm); }
.map-pin-card .pin-text strong { display: block; color: var(--navy); font-size: var(--t-md); }
.map-pin-card .pin-text span { color: var(--ink-3); }

/* =============================================================
   FAQ
   ============================================================= */
.faq-list { display: grid; gap: var(--s-3); max-width: 880px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--t-md);
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: var(--t-xl);
  color: var(--red);
  flex: none;
  transition: transform .2s var(--ease);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  margin: var(--s-4) 0 0;
  color: var(--ink-2);
  font-size: var(--t-base);
  line-height: 1.6;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: var(--s-20) 0 var(--s-10);
  margin-top: 0;
}
.footer-final-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  padding: var(--s-12);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 880px;
  margin: 0 auto var(--s-16);
}
.footer-final-cta h2 { color: #fff; margin-bottom: var(--s-3); }
.footer-final-cta p { color: rgba(255,255,255,0.7); margin-bottom: var(--s-6); }
.footer-final-cta .actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
.footer-final-cta .btn-primary { background: var(--yellow); color: var(--navy); box-shadow: none; }
.footer-final-cta .btn-primary:hover { background: #fff; }
.footer-final-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.footer-final-cta .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s-4); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { background: rgba(255,255,255,0.1); color: var(--yellow); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 0; font-size: var(--t-sm); }
.footer-col h5 { font-family: var(--body); font-weight: 700; color: #fff; font-size: var(--t-sm); text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 var(--s-4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.footer-col a { color: rgba(255,255,255,0.7); font-size: var(--t-sm); transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: var(--s-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
}

/* =============================================================
   STICKY MOBILE CTA
   ============================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  gap: var(--s-3);
  box-shadow: 0 -8px 24px rgba(28,36,75,0.08);
}
.mobile-cta .btn { flex: 1; padding: 14px 18px; font-size: var(--t-sm); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero-visual { justify-self: center; max-width: 440px; }
  .story-grid, .schedule-grid, .location-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reason:nth-child(1), .reason:nth-child(2),
  .reason:nth-child(3), .reason:nth-child(4), .reason:nth-child(5) { grid-column: span 1; }
  .reason:nth-child(5) { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .cta-strip { grid-template-columns: 1fr; padding: var(--s-12); }
}

@media (max-width: 768px) {
  section { padding: var(--s-16) 0; }
  .nav-links { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--cream);
  }
  .menu-btn svg { width: 22px; height: 22px; color: var(--navy); }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .schedule-card, .schedule-meta, .location-card { padding: var(--s-6); }
  .cta-strip { padding: var(--s-8); }
  .footer-final-cta { padding: var(--s-8); }
  .reasons-grid { grid-template-columns: 1fr; }
  .reason:nth-child(5) { grid-column: span 1; }
  .schedule-card .price { font-size: var(--t-3xl); }
  .hero { padding: var(--s-12) 0 var(--s-16); }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 var(--s-4); }
  .schedule-list li { grid-template-columns: auto 1fr; }
  .schedule-list .time { grid-column: 1 / -1; padding-left: 56px; padding-top: 0; }
  .hero-trust { gap: var(--s-4); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-ctas .btn, .footer-final-cta .actions .btn { flex: 1; }
}

/* Print + reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
