/* ============================================================
   Best Beginnings with Jillian — Design System
   Theme: "Midnight & Moonlight" — calming, premium, professional
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --night: #1d2946;        /* deep midnight blue */
  --night-2: #263561;      /* lighter midnight */
  --twilight: #4a5a8a;     /* muted blue */
  --dusty: #93a6d1;        /* dusty blue */
  --moon: #e8b06a;         /* warm gold (moon) */
  --moon-soft: #f4d8ad;    /* soft gold */
  --blush: #f3c9c2;        /* soft blush accent */
  --blush-soft: #fbe7e3;
  --cream: #fbf7f1;        /* warm background */
  --cream-2: #f4ede2;      /* deeper cream */
  --white: #ffffff;
  --ink: #232634;          /* body text */
  --ink-soft: #5c6376;     /* muted text */
  --line: #e7ded1;         /* soft borders */

  /* Typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(29, 41, 70, 0.06);
  --shadow: 0 12px 40px rgba(29, 41, 70, 0.10);
  --shadow-lg: 0 30px 70px rgba(29, 41, 70, 0.16);
  --radius: 20px;
  --radius-lg: 32px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--night); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-optical-sizing: auto; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moon);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--moon); display: inline-block; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.95rem 1.9rem; border-radius: 100px;
  cursor: pointer; border: none; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--moon); color: var(--night); box-shadow: 0 10px 26px rgba(232, 176, 106, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(232, 176, 106, 0.55); }
.btn-dark { background: var(--night); color: var(--cream); }
.btn-dark:hover { background: var(--night-2); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--night); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--night); background: var(--white); }
.btn-light { background: var(--white); color: var(--night); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: all 0.4s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(251, 247, 241, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--night); }
.brand .brand-mark { width: 40px; height: 40px; flex: none; }
.brand small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--moon); font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-size: 0.94rem; font-weight: 500; color: var(--night);
  padding: 0.55rem 0.95rem; border-radius: 100px; transition: all 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover { background: rgba(147, 166, 209, 0.16); }
.nav-links a.active { color: var(--twilight); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--night); margin: 5px 0; border-radius: 2px; transition: 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, #33477f 0%, #1d2946 48%, #141d34 100%);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--moon-soft); }
.hero .lead { color: rgba(251, 247, 241, 0.8); margin: 1.6rem 0 2.3rem; max-width: 32ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-trust .stars { color: var(--moon); letter-spacing: 2px; }
.hero-trust span { font-size: 0.9rem; color: rgba(251,247,241,0.7); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(251, 247, 241, 0.06);
  border: 1px solid rgba(251, 247, 241, 0.14);
  border-radius: var(--radius-lg); padding: 2rem;
  backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card .moon-badge {
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--moon-soft), var(--moon));
  box-shadow: 0 0 60px rgba(232, 176, 106, 0.5); margin-bottom: 1.4rem;
}
.hero-card h3 { color: var(--cream); margin-bottom: 0.5rem; }
.hero-card p { color: rgba(251,247,241,0.75); font-size: 0.98rem; }
.hero-card .mini-stats { display: flex; gap: 1.6rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(251,247,241,0.14); }
.hero-card .mini-stats b { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--moon-soft); line-height: 1; }
.hero-card .mini-stats small { font-size: 0.78rem; color: rgba(251,247,241,0.7); }

/* Stars + clouds */
.stars-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.star { position: absolute; background: #fff; border-radius: 50%; opacity: 0.85; animation: twinkle 3.5s infinite ease-in-out; }
@keyframes twinkle { 0%, 100% { opacity: 0.15; transform: scale(0.7); } 50% { opacity: 0.95; transform: scale(1); } }
.cloud { position: absolute; opacity: 0.09; fill: #fff; animation: drift 26s infinite linear; }
@keyframes drift { from { transform: translateX(-10%); } to { transform: translateX(110%); } }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ---------- Marquee trust bar ---------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.trustbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.trustbar .item { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; }
.trustbar .item svg { width: 22px; height: 22px; color: var(--moon); flex: none; }

/* ---------- Feature / value cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: all 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blush-soft), var(--moon-soft)); margin-bottom: 1.3rem;
}
.card .icon svg { width: 28px; height: 28px; color: var(--night); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Split (about/image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.portrait {
  border-radius: var(--radius-lg); aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(160deg, var(--dusty), var(--twilight)); position: relative; box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.portrait .initials { font-family: var(--serif); font-size: 5rem; color: rgba(255,255,255,0.9); }
.portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 60%); }
.badge-float {
  position: absolute; background: var(--white); border-radius: 18px; padding: 1rem 1.3rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.8rem;
}
.badge-float.tl { top: -22px; left: -22px; }
.badge-float.br { bottom: -22px; right: -22px; }
.badge-float .dot { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--moon), var(--moon-soft)); display: grid; place-items: center; flex: none; }
.badge-float b { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--night); line-height: 1; }
.badge-float small { font-size: 0.76rem; color: var(--ink-soft); }
.tick-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--ink); }
.tick-list li svg { width: 22px; height: 22px; color: var(--moon); flex: none; margin-top: 3px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--night); color: var(--cream); position: relative; overflow: hidden; }
.stats-band .wrap { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats-grid .stat b { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--moon-soft); display: block; line-height: 1; }
.stats-grid .stat span { font-size: 0.92rem; color: rgba(251,247,241,0.72); margin-top: 0.5rem; display: block; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .num {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--night);
  width: 52px; height: 52px; border-radius: 50%; background: var(--cream-2); border: 1.5px solid var(--line);
  display: grid; place-items: center; margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.4rem 2rem; display: flex; flex-direction: column; transition: all 0.4s var(--ease); position: relative;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan.featured { background: var(--night); color: var(--cream); border-color: var(--night); transform: scale(1.03); }
.plan.featured:hover { transform: scale(1.03) translateY(-8px); }
.plan.featured h3, .plan.featured .price { color: var(--cream); }
.plan .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--moon); color: var(--night); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px; }
.plan .plan-name { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moon); margin-bottom: 0.8rem; }
.plan .price { font-family: var(--serif); font-size: 2.8rem; color: var(--night); line-height: 1; }
.plan .price small { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.plan.featured .price small { color: rgba(251,247,241,0.7); }
.plan .plan-desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0.8rem 0 1.6rem; }
.plan.featured .plan-desc { color: rgba(251,247,241,0.75); }
.plan ul { margin-bottom: 1.8rem; flex: 1; }
.plan ul li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.5rem 0; font-size: 0.95rem; border-top: 1px solid var(--line); }
.plan.featured ul li { border-color: rgba(251,247,241,0.14); }
.plan ul li:first-child { border-top: none; }
.plan ul li svg { width: 19px; height: 19px; color: var(--moon); flex: none; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative;
}
.quote-card .stars { color: var(--moon); letter-spacing: 2px; margin-bottom: 1rem; }
.quote-card p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--dusty), var(--twilight)); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--serif); flex: none; }
.quote-card .who b { display: block; font-size: 0.95rem; color: var(--night); }
.quote-card .who small { color: var(--ink-soft); font-size: 0.85rem; }
.quote-feature {
  background: linear-gradient(160deg, var(--night), var(--night-2)); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden;
}
.quote-feature .qmark { font-family: var(--serif); font-size: 6rem; color: var(--moon); line-height: 0.5; opacity: 0.5; }
.quote-feature blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4; color: var(--cream); max-width: 26ch; margin: 1rem auto 1.6rem; }
.quote-feature cite { font-style: normal; color: var(--moon-soft); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--serif); font-size: 1.2rem; color: var(--night);
}
.faq-q .plus { flex: none; width: 30px; height: 30px; position: relative; transition: transform 0.4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--moon); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-q .plus::before { width: 16px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 16px; transition: transform 0.4s var(--ease); }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding-bottom: 1.5rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: radial-gradient(120% 140% at 85% 0%, #33477f, var(--night));
  border-radius: var(--radius-lg); padding: clamp(2.6rem, 6vw, 5rem); text-align: center; color: var(--cream);
  position: relative; overflow: hidden;
}
.cta-inner h2 { color: var(--cream); max-width: 20ch; margin-inline: auto; }
.cta-inner p { color: rgba(251,247,241,0.8); max-width: 46ch; margin: 1.2rem auto 2rem; }
.cta-inner .hero-actions { justify-content: center; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { background: var(--night); color: var(--cream); border-radius: var(--radius-lg); padding: 2.4rem; }
.info-card h3 { color: var(--cream); }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem; }
.info-item svg { width: 24px; height: 24px; color: var(--moon); flex: none; margin-top: 3px; }
.info-item b { display: block; color: var(--cream); }
.info-item span { color: rgba(251,247,241,0.72); font-size: 0.95rem; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
form label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--night); margin-bottom: 0.5rem; }
form .field { margin-bottom: 1.2rem; }
form input, form select, form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 0.9rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px; background: var(--white);
  transition: border 0.25s var(--ease);
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--moon); }
form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: rgba(251,247,241,0.72); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand { color: var(--cream); margin-bottom: 1rem; }
.site-footer p { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--moon); }
.footer-bottom { border-top: 1px solid rgba(251,247,241,0.12); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.86rem; }
.socials { display: flex; gap: 0.7rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,247,241,0.2); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.socials a:hover { background: var(--moon); border-color: var(--moon); color: var(--night); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: radial-gradient(120% 130% at 80% -20%, #33477f, var(--night)); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem); position: relative; overflow: hidden; text-align: center; }
.page-hero .eyebrow { color: var(--moon-soft); justify-content: center; }
.page-hero h1 { color: var(--cream); margin-top: 1rem; }
.page-hero p { color: rgba(251,247,241,0.8); max-width: 52ch; margin: 1.2rem auto 0; }
.breadcrumb { font-size: 0.85rem; color: rgba(251,247,241,0.6); margin-top: 1.4rem; }
.breadcrumb a:hover { color: var(--moon-soft); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Utilities ---------- */
.bg-white { background: var(--white); }
.bg-cream2 { background: var(--cream-2); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .steps, .pricing { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
  .hero-visual { margin-top: 1rem; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 1.2rem; right: 1.2rem;
    flex-direction: column; align-items: stretch; background: var(--white);
    padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); gap: 0.2rem;
  }
  .site-header.open .nav-links a { padding: 0.85rem 1rem; }
  .grid-3, .grid-4, .steps, .pricing, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge-float.tl { left: 0; top: -16px; }
  .badge-float.br { right: 0; bottom: -16px; }
  form .row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
