/* Sunshine Academy — tutoring-first brand system */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sun: #F0B429;
  --sun-soft: #FFF8E8;
  --sun-deep: #D4920F;
  --orange: #E8862A;
  --orange-deep: #C96D18;
  --sky: #EAF4FB;
  --blue: #3D7EA6;
  --blue-soft: #6BA3C4;
  --navy: #16324A;
  --navy-mid: #0F2438;
  --ink: #1F3347;
  --muted: #5B6E80;
  --line: rgba(22, 50, 74, 0.1);
  --white: #ffffff;
  --cream: #FFFcf7;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px rgba(15, 36, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 36, 56, 0.12);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 78px;
  --max: 1140px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ===== NAV ===== */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4.5%;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
nav.scrolled {
  box-shadow: 0 8px 28px rgba(15, 36, 56, 0.08);
  border-bottom-color: var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-deep);
  background: rgba(240, 180, 41, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-phone:hover {
  background: var(--navy);
  color: var(--sun-soft);
  border-color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px 5% 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 8px;
  border-radius: 10px;
}
.mobile-menu a:hover { background: var(--sun-soft); }
.mobile-menu .mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--orange);
  color: #fff !important;
  border-radius: 999px;
  padding: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--sun) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 134, 42, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(232, 134, 42, 0.38);
  color: #fff;
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 50, 74, 0.18);
}
.btn-secondary:hover { background: var(--navy-mid); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(22, 50, 74, 0.18);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

/* ===== LAYOUT ===== */
.section {
  padding: 88px 5%;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-header.left {
  margin-left: 0;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header h2,
.section h2.display {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.bg-soft { background: var(--sun-soft); }
.bg-sky { background: var(--sky); }
.bg-white { background: var(--white); }
.bg-navy {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
}
.bg-navy .lead,
.bg-navy p { color: rgba(255,255,255,0.82); }
.bg-navy h2 { color: #fff; }
.bg-navy .eyebrow {
  color: var(--sun);
  background: rgba(240, 180, 41, 0.12);
  border-color: rgba(240, 180, 41, 0.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 48px) 5% 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(240, 180, 41, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 90%, rgba(61, 126, 166, 0.12) 0%, transparent 50%),
    var(--cream);
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--orange-deep);
}
.hero-copy .sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}

.hero-visual {
  position: relative;
}
.hero-visual-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--sky);
}
.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
}
.hero-card.card-1 { left: -18px; bottom: 28%; }
.hero-card.card-2 { right: -8px; bottom: 12%; }
.hero-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.hero-card span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.hero-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--sun-soft);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ===== CARDS / GRIDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sun-soft);
  font-size: 1.45rem;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.card p { color: var(--muted); font-size: 0.98rem; }
.card ul {
  margin: 12px 0 0 1.1rem;
  color: var(--muted);
}
.card ul li { margin-bottom: 6px; }
.card .card-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
  color: var(--orange-deep);
  text-decoration: none;
}
.card .card-link:hover { text-decoration: underline; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.18);
  color: var(--orange-deep);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img,
.split .media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.split .media { aspect-ratio: 4/3; background: var(--sky); }
.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
  max-height: none;
}
.split h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.split p { color: var(--muted); margin-bottom: 14px; }

/* Pause notice */
.pause-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--sky);
  border: 1px solid rgba(61, 126, 166, 0.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 18px 0;
}
.pause-banner strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.pause-banner p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 126, 166, 0.12);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* Testimonials */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.04);
  height: 100%;
}
.quote-card .stars {
  color: var(--sun);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.quote-card blockquote {
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 18px;
}
.quote-card .who {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.quote-card .who span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

/* Page hero */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 5% 56px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(240, 180, 41, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(61, 126, 166, 0.1) 0%, transparent 50%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--navy);
  max-width: 820px;
  margin-bottom: 14px;
  font-weight: 800;
}
.page-hero .sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 24px;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-content { padding: 64px 5% 88px; }
.page-content-inner { max-width: var(--max); margin: 0 auto; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.step h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 12px;
  line-height: 1.15;
}
.cta-band p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
}
.contact-panel h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #fff;
}
.contact-panel > p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}
.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
}
.contact-item a:hover { color: var(--sun); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-intro {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 134, 42, 0.15);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 4px 0 16px;
}
.form-submit {
  width: 100%;
  border: 0;
}
.form-success {
  display: none;
  text-align: center;
  padding: 28px 12px;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--display);
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { color: var(--muted); margin-bottom: 18px; }

.acuity-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 36px;
}
.acuity-box h3 {
  font-family: var(--display);
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.acuity-box > p {
  color: var(--muted);
  margin-bottom: 16px;
}
.acuity-box iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 14px;
  background: var(--cream);
}

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 36px 20px 0;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  font-size: 1.02rem;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 400;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  display: none;
  padding: 0 8px 20px 0;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

/* Soft daycare callout on home */
.daycare-soft {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.04);
}
.daycare-soft h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 10px 0 10px;
}
.daycare-soft p { color: var(--muted); margin-bottom: 16px; }

/* Footer */
footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  padding: 56px 5% 28px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 4px 8px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 12px;
}
.footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.5;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--sun); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--sun); }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,252,247,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15,36,56,0.08);
  gap: 10px;
}
.mobile-sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: 0.88rem; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: 10px; }
.stack-md > * + * { margin-top: 16px; }

/* Time-zone hours */
.tz-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.04);
}
.tz-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}
.tz-table th,
.tz-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tz-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tz-table th:first-child { border-radius: var(--radius) 0 0 0; }
.tz-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.tz-table tbody tr:last-child td { border-bottom: 0; }
.tz-table td strong { color: var(--navy); }
.tz-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-grid,
  .split,
  .contact-grid,
  .daycare-soft { grid-template-columns: 1fr; }
  .hero-card.card-1 { left: 12px; bottom: 18%; }
  .hero-card.card-2 { right: 12px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  :root { --nav-h: 70px; }
  .logo img { height: 48px; }
  .logo-text { display: none; }
  .section { padding: 64px 5%; }
  .grid-3,
  .grid-2,
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 48px; }
  .hero-copy h1 { font-size: clamp(1.95rem, 8vw, 2.5rem); }
  .page-hero { padding-top: calc(var(--nav-h) + 28px); }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .hero-card { display: none; }
  .nav-actions .btn { padding: 10px 14px; font-size: 0.82rem; }
}

@media (max-width: 420px) {
  .hero-ctas .btn,
  .page-hero-actions .btn { width: 100%; }
}
