/* =========================================================
   Tiny Treasures Daycare — stylesheet
   Palette: cream/parchment, cedar brown, treasure gold, deep teal
   ========================================================= */

:root {
  --cream: #fbf2e1;
  --card: #fffbf2;
  --cedar: #3a2a1d;
  --cedar-soft: #6b5240;
  --gold: #c7963a;
  --gold-light: #e4b85e;
  --gold-dark: #a97824;
  --teal-deep: #1f4a47;
  --teal: #2e7d77;
  --teal-light: #6fada7;
  --line: rgba(58, 42, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 40px -18px rgba(58, 42, 29, 0.35);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--cedar);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cedar);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--gold-light); }
.on-dark .eyebrow::before { background: var(--gold-light); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; }
.section-head p { margin-top: 14px; color: var(--cedar-soft); font-size: 17px; }
.on-dark .section-head p { color: rgba(255,255,255,0.72); }
.on-dark .section-head h2 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--cedar);
  box-shadow: 0 10px 24px -10px rgba(199, 150, 58, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(199, 150, 58, 0.75); }
.btn-outline {
  background: transparent;
  border-color: var(--cedar);
  color: var(--cedar);
}
.btn-outline:hover { background: var(--cedar); color: var(--cream); transform: translateY(-2px); }
.on-dark .btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.on-dark .btn-outline:hover { background: #fff; color: var(--teal-deep); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.05; color: var(--cedar); }
.brand-word span { display: block; font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 0.15em; color: var(--teal); text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--cedar-soft);
  position: relative;
  padding: 6px 0;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--cedar); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-call { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cedar);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 8px 28px 22px;
}
.mobile-panel a {
  padding: 13px 4px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  color: var(--cedar);
}
.mobile-panel.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 90px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.3vw, 62px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 18.5px;
  color: var(--cedar-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.trust-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cedar-soft);
}
.trust-strip svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hero-art-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(58, 42, 29, 0.28));
}
.hero-art-shadow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 62%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(58, 42, 29, 0.28) 0%, rgba(58, 42, 29, 0) 72%);
  border-radius: 50%;
}
.hero-art-sparkle {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: sparkle-pulse 2.6s ease-in-out infinite;
}
.hero-art-sparkle.s1 { top: 10%; left: 12%; width: 9px; height: 9px; background: var(--gold-light); animation-delay: 0s; }
.hero-art-sparkle.s2 { top: 6%; right: 14%; width: 13px; height: 13px; background: var(--teal); animation-delay: 0.6s; }
.hero-art-sparkle.s3 { bottom: 30%; right: 4%; width: 8px; height: 8px; background: var(--gold); animation-delay: 1.2s; }
.hero-art-sparkle.s4 { top: 44%; left: 2%; width: 7px; height: 7px; background: var(--teal-light); animation-delay: 1.8s; }
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art-sparkle { animation: none; opacity: 0.85; }
}

/* ---------- Stat band ---------- */
.stats {
  background: var(--teal-deep);
  padding: 46px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
.stats-grid > div + div { border-left: 1px solid var(--line-light); }

/* ---------- Trail (signature element) ---------- */
.trail-wrap { position: relative; }
.trail-svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.trail-line {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 1 14;
  stroke-linecap: round;
  fill: none;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.4s ease;
}
.trail-line.drawn { stroke-dashoffset: 0; }
.trail-node {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--gold-dark);
}
.trail-node svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .trail-svg, .trail-node { display: none; }
}

/* ---------- Section spacing ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 76px 0; }
.on-dark { background: var(--teal-deep); color: #fff; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }

/* ---------- Program cards ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.program-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 24px 26px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.program-card.in-view { opacity: 1; transform: translateY(0); }
.program-card::before,
.program-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  opacity: 0.55;
}
.program-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.program-card::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.program-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(46, 125, 119, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.program-card h3 { font-size: 21px; margin-bottom: 6px; }
.program-price { font-family: var(--font-display); font-size: 17px; color: var(--gold-dark); font-weight: 700; margin-bottom: 12px; }
.program-price small { font-family: var(--font-body); font-weight: 700; font-size: 12.5px; color: var(--cedar-soft); }
.program-card p.desc { color: var(--cedar-soft); font-size: 14.5px; margin-bottom: 16px; }
.program-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--cedar-soft); border-top: 1px dashed var(--line); padding-top: 14px; }
.program-meta svg { width: 15px; height: 15px; color: var(--gold-dark); }

.pricing-note {
  margin-top: 40px;
  background: var(--card);
  border: 1px dashed var(--gold);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--cedar-soft);
}
.pricing-note svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.pricing-note strong { color: var(--cedar); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: 26px;
  overflow: hidden;
  border: 6px solid var(--card);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-caption { margin-top: 14px; font-size: 13px; color: var(--cedar-soft); text-align: center; font-weight: 700; }
.about-bio p { color: var(--cedar-soft); margin: 0 0 16px; }
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--teal-deep);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 26px 0;
}
.values-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.value-chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}
.value-chip svg { width: 18px; height: 18px; color: var(--teal); }

/* ---------- Day timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.timeline-item.in-view { opacity: 1; transform: translateY(0); }
.timeline-item:last-child { border-bottom: none; }
.timeline-time { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--gold-dark); }
.timeline-body h4 { font-size: 17px; margin-bottom: 4px; }
.timeline-body p { margin: 0; color: var(--cedar-soft); font-size: 14.5px; }
.timeline-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--cedar-soft);
  font-style: italic;
}

/* ---------- What to bring ---------- */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bring-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px;
}
.bring-card h3 { font-size: 16.5px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.bring-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.bring-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--cedar-soft); }
.bring-card li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.bring-note { margin-top: 30px; text-align: center; font-size: 14.5px; color: var(--cedar-soft); }

/* ---------- Community ---------- */
.community {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.community-photo { border-radius: 20px; overflow: hidden; }
.community-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.community-copy { padding: 20px 28px 20px 4px; }
.sponsor-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199,150,58,0.14);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.community-copy h2 { font-size: 27px; margin-bottom: 14px; }
.community-copy p { color: var(--cedar-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cedar);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-q .plus svg { width: 12px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--gold); color: var(--cedar); transform: rotate(135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { margin: 0 4px 22px; color: var(--cedar-soft); font-size: 15px; max-width: 640px; }

/* ---------- Enroll / contact ---------- */
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 16px 18px;
  transition: background .2s ease, transform .2s ease;
}
a.contact-card:hover { background: rgba(255,255,255,0.12); transform: translateX(3px); }
.contact-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon svg { width: 19px; height: 19px; }
.contact-card .label { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; }
.contact-card .value { font-weight: 800; font-size: 15.5px; color: #fff; }

.map-embed {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  filter: saturate(0.85);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.enroll-form {
  background: var(--card);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
  color: var(--cedar);
}
.enroll-form h3 { color: var(--cedar); font-size: 22px; margin-bottom: 6px; }
.enroll-form > p { color: var(--cedar); opacity: 0.82; font-size: 14.5px; margin: 0 0 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--cedar-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cedar);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,150,58,0.22);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12.5px; color: var(--cedar-soft); margin-top: 12px; }
.form-status { font-size: 13.5px; font-weight: 700; margin-top: 12px; color: var(--teal); min-height: 18px; }

/* ---------- Footer ---------- */
.footer { background: #ffffff; color: var(--cedar-soft); padding: 56px 0 30px; border-top: 1px solid var(--line); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 46px; width: auto; }
.footer-brand-word { font-family: var(--font-display); font-weight: 700; color: var(--cedar); font-size: 19px; }
.footer p.tagline { font-style: italic; font-family: var(--font-display); color: var(--gold-dark); font-size: 16px; max-width: 280px; }
.footer h5 { color: var(--cedar); font-family: var(--font-body); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .18s ease; }
.footer ul a:hover { color: var(--gold-dark); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--cedar-soft);
}

/* ---------- Reveal on scroll (generic) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stats-grid > div { border-left: none !important; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 380px; margin: 0 auto; }
  .bring-grid { grid-template-columns: repeat(2, 1fr); }
  .community { grid-template-columns: 1fr; }
  .community-copy { padding: 4px 8px 24px; }
  .enroll-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  html { scroll-padding-top: 76px; }
  .nav .container { height: 72px; }
  .brand img { height: 36px; }
  .brand-word { font-size: 16px; }
  .brand-word span { display: none; }
  .nav-actions { gap: 10px; }
  .btn-sm { padding: 10px 14px; font-size: 13px; }
  .hero { padding: 44px 0 60px; }
  .program-grid { grid-template-columns: 1fr; }
  .bring-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .enroll-form { padding: 26px 22px; }
}
