/* ═══════════════════════════════════════════════════════════
   HIKARI Preschool Design System
   "Where little lights learn to shine"
   Islam × Jepang · warm washi cream · brand rainbow
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand rainbow (from the hikari wordmark) */
  --teal: #23a094;
  --teal-d: #157f75;
  --coral: #e94f5f;
  --amber: #f4a93c;
  --amber-d: #b26f14;
  --pink: #f3b7c8;
  --pink-d: #d76d8f;
  --vermilion: #e85c3a;
  --sky: #56ade0;
  --sky-d: #2f7fb2;

  /* Surfaces */
  --cream: #fdf9f2;
  --cream-2: #faf3e7;
  --paper: #fff;
  --ink: #33302b;
  --ink-soft: #6b645a;

  /* Hanida Foundation brand (sampled from logo) */
  --deep: #1f3245;
  --deep-2: #2c4459;
  --hanida-red: #b03f47;
  --hanida-red-l: #e2848b;
  --hanida-blue-l: #7ba3c4;

  /* Tints */
  --tint-teal: #e3f4f1;
  --tint-pink: #fce9ee;
  --tint-amber: #fdf0d9;
  --tint-sky: #e5f2fb;

  /* Type */
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Rhythm */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --shadow-sm: 0 2px 8px rgba(51, 48, 43, .06);
  --shadow-md: 0 10px 30px -8px rgba(51, 48, 43, .14);
  --shadow-lg: 0 24px 60px -16px rgba(51, 48, 43, .22);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 76px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.6vw, 2.75rem); }
h3 { font-size: 1.22rem; }
strong { font-weight: 700; }
::selection { background: var(--amber); color: #fff; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2.5rem); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: .9rem 1.7rem; border-radius: 999px; text-decoration: none; border: none;
  transition: transform .2s var(--ease-spring), box-shadow .25s ease, background .25s ease, color .25s ease;
  min-height: 52px; cursor: pointer; touch-action: manipulation;
}
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn:active { transform: scale(.96); }
.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--vermilion));
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(233, 79, 95, .55), inset 0 -3px 0 rgba(0,0,0,.12);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -6px rgba(233, 79, 95, .6), inset 0 -3px 0 rgba(0,0,0,.12); }
.btn--ghost {
  background: #fff; color: var(--teal-d);
  box-shadow: inset 0 0 0 2px var(--teal), var(--shadow-sm);
}
.btn--ghost:hover { background: var(--tint-teal); transform: translateY(-3px); }
.btn--soft { background: var(--pt, var(--tint-teal)); color: var(--pc, var(--teal-d)); box-shadow: inset 0 0 0 2px currentColor; }
.btn--soft:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px currentColor, var(--shadow-md); }
.btn--light { background: #fff; color: var(--teal-d); box-shadow: 0 8px 22px -8px rgba(0,0,0,.4); }
.btn--light:hover { transform: translateY(-3px); }
.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--block { width: 100%; }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(253, 249, 242, .92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.nav__inner { width: min(1240px, 100% - 2rem); margin-inline: auto; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; padding: .35rem .4rem; }
.brand img { width: auto; height: 52px; }
.brand--footer img { height: 60px; }

.nav__links { display: flex; align-items: center; gap: 1.35rem; }
.nav__links a {
  text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: .4rem 0; position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px;
  background: var(--amber); border-radius: 3px; transition: right .25s ease;
}
.nav__links a:not(.nav__cta):hover::after { right: 0; }
.nav__cta {
  background: var(--teal); color: #fff !important; padding: .6rem 1.3rem !important;
  border-radius: 999px; font-family: var(--font-display); font-weight: 700 !important;
  box-shadow: 0 6px 16px -4px rgba(35, 160, 148, .5), inset 0 -3px 0 rgba(0,0,0,.12);
  transition: transform .2s var(--ease-spring), box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -4px rgba(35, 160, 148, .55), inset 0 -3px 0 rgba(0,0,0,.12); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: #fff; border: none; width: 48px; height: 48px; border-radius: 14px; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.nav__burger span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)) 0 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(244, 169, 60, .16), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(86, 173, 224, .12), transparent 60%),
    var(--cream);
}
.hero__kanji {
  position: absolute; top: 6%; right: -2%; font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 26rem); line-height: 1; color: var(--amber);
  opacity: .07; user-select: none; pointer-events: none; font-weight: 800;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 2.5rem; align-items: center; position: relative; }
.hero__copy { padding-bottom: clamp(3rem, 6vw, 5.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border-radius: 999px; padding: .5rem 1.1rem;
  font-size: .82rem; font-weight: 700; color: var(--teal-d);
  box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.eyebrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(233,79,95,.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(233,79,95,.08); } }

.hero__title { font-size: clamp(2.5rem, 1.6rem + 4.6vw, 4.4rem); font-weight: 800; margin-bottom: 1.25rem; }
.dot-coral { color: var(--coral); }
.hl {
  font-style: normal;
  background-image: linear-gradient(transparent 60%, var(--hl-c) 60%, var(--hl-c) 92%, transparent 92%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: .06em;
}
.hl--amber { --hl-c: rgba(244, 169, 60, .40); }
.hl--teal { --hl-c: rgba(35, 160, 148, .38); }
.hl--pink { --hl-c: rgba(243, 183, 200, .62); }
.hl--coral { --hl-c: rgba(233, 79, 95, .28); }
.hl--sky { --hl-c: rgba(86, 173, 224, .40); }

.hero__sub { font-size: clamp(1.02rem, .95rem + .4vw, 1.18rem); color: var(--ink-soft); max-width: 34em; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; list-style: none; font-size: .9rem; color: var(--ink-soft); }
.hero__chips li { display: flex; align-items: center; gap: .45rem; }
.hero__chips li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none; }

.hero__art { position: relative; align-self: center; display: grid; justify-items: center; padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero__board {
  position: relative; width: min(540px, 100%);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  border: 6px solid #fff; background: #fff;
  overflow: hidden;
}
.hero__scene { display: block; width: 100%; height: auto; }

/* ── Chalk handwriting on the board ────────────────────── */
.hero__chalk { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.chalk__s {
  fill: none; stroke: #f4f7ee; stroke-width: 5.6;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: var(--o, .93);
}
.chalk__dust circle { fill: #f4f7ee; opacity: 0; transform-box: fill-box; transform-origin: center; }
.hero__chalk.is-writing .chalk__dust circle {
  animation: chalkDust 1.1s ease-out var(--dd, 0s) both;
}
@keyframes chalkDust {
  0%   { opacity: .55; transform: translate(0, 0) scale(1); }
  100% { opacity: 0;   transform: translate(1.5px, 9px) scale(.35); }
}

/* three value chips: a row under the board, never on top of the illustration */
.hero__facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: .55rem;
  width: min(540px, 100%); margin-top: 1rem;
}
.hero__fact {
  flex: 1 1 150px; display: flex; align-items: center; gap: .55rem;
  background: #fff; border-radius: 15px; padding: .6rem .8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.hero__fact:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero__fact svg { width: 24px; height: 24px; flex: none; color: var(--fc); }
.hero__fact-kanji { font-family: var(--font-display); font-size: 1.3rem; line-height: 1; color: var(--fc); flex: none; }
.hero__fact strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: .84rem; line-height: 1.2; color: var(--ink);
}
.hero__fact small { display: block; font-size: .73rem; color: var(--ink-soft); line-height: 1.25; }

.hero__wave { position: relative; margin-top: -2px; }
.hero__wave svg { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }

/* petals */
.hero__petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -30px; width: 14px; height: 12px;
  background: var(--pink); border-radius: 80% 10% 80% 10%;
  opacity: .8; animation: fall linear infinite;
}
@keyframes fall {
  to { transform: translate(var(--drift, 60px), 110vh) rotate(660deg); opacity: .25; }
}

/* ── Ticker ────────────────────────────────────────────── */
.ticker { background: var(--teal); color: #fff; overflow: hidden; padding: .8rem 0; transform: rotate(-.6deg) scale(1.01); }
.ticker__track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; }
.ticker__track i { font-style: normal; color: var(--amber); margin: 0 .8rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Sections ──────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--cream2 { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section--tint-teal { background: linear-gradient(180deg, var(--cream) 0%, var(--tint-teal) 18%, var(--tint-teal) 82%, var(--cream) 100%); }
.section--tint-amber { background: linear-gradient(180deg, var(--cream) 0%, var(--tint-amber) 16%, var(--tint-amber) 84%, var(--cream-2) 100%); }
.section--deep { background: var(--deep); color: #f2efe8; }

.section__head { max-width: 760px; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section__head--light h2 { color: #fff; }
.section__head--light .lede { color: rgba(242, 239, 232, .82); }
.section__head--light em { color: var(--hanida-red-l); font-style: normal; }
.section--deep .kicker { color: var(--hanida-red-l); }
.kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; margin-bottom: .7rem; display: flex; align-items: center; gap: .55rem;
}
.kicker::before { content: ""; width: 26px; height: 4px; border-radius: 4px; background: currentColor; }
.kicker--coral { color: var(--coral); }
.kicker--teal { color: var(--teal-d); }
.kicker--amber { color: var(--amber-d); }
.kicker--pink { color: var(--pink-d); }
.kicker--sky { color: var(--sky-d); }
.lede { font-size: clamp(1rem, .95rem + .35vw, 1.14rem); color: var(--ink-soft); margin-top: 1rem; }

/* ── Vignettes (framed character scenes) ───────────────── */
.vignette {
  border-radius: var(--r-md); border: 5px solid #fff;
  box-shadow: var(--shadow-md); background: #fff;
}
.vignette--l { transform: rotate(-1.6deg); }
.vignette--r { transform: rotate(1.6deg); }

.split-head { display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.split-head .section__head { flex: 1; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.split-head__img { width: clamp(180px, 22vw, 280px); height: auto; flex: none; margin-bottom: 2rem; }
@media (max-width: 768px) { .split-head__img { display: none; } }

/* ── Grids & cards ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }

.card {
  background: #fff; border-radius: var(--r-md); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; display: block; margin-bottom: .8rem; opacity: .9; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card--tilt:nth-child(2) { transform: rotate(.8deg); }
.card--tilt:nth-child(2):hover { transform: rotate(0) translateY(-6px); }
.card--tilt:nth-child(3) { transform: rotate(-.8deg); }
.card--tilt:nth-child(3):hover { transform: rotate(0) translateY(-6px); }

.pullquote { margin-top: clamp(2.4rem, 5vw, 4rem); text-align: center; }
.pullquote p {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.35rem, 1rem + 2vw, 2.1rem); max-width: 21em; margin-inline: auto; line-height: 1.35;
}
.pullquote span {
  display: inline-grid; place-items: center; width: 1.7em; height: 1.7em;
  background: var(--coral); color: #fff; border-radius: 50%; transform: rotate(-6deg);
  box-shadow: 0 8px 18px -4px rgba(233,79,95,.5);
}
.pullquote--bridge { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.section__bridge {
  text-align: center; max-width: 42em; margin: 0 auto clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
}

/* ── Why HIKARI cards ──────────────────────────────────── */
.why-card {
  background: #fff; border-radius: var(--r-lg); padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm); border-top: 6px solid var(--wc);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 56px; height: 56px; margin-bottom: 1rem; border-radius: 18px;
  display: grid; place-items: center; color: var(--wc);
  background: color-mix(in srgb, var(--wc) 12%, #fff);
}
.why-card__icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.why-card p { font-size: .92rem; color: var(--ink-soft); }

/* ── Philosophy ────────────────────────────────────────── */
.philo__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.philo__story h2 { font-size: clamp(2.4rem, 2rem + 2.5vw, 3.6rem); margin-bottom: .6rem; }
.philo__story p { margin-bottom: 1rem; color: var(--ink-soft); }
.philo__story p strong { color: var(--ink); }
.philo__mascot { margin-top: 1.8rem; max-width: 300px; }
.philo__mascot img { width: 100%; height: auto; }
.philo__cards { display: grid; gap: 1.1rem; }
.kanji-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--cream); border-radius: var(--r-md); padding: 1.5rem 1.6rem;
  border: 1.5px solid #f0e7d8; transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.kanji-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.kanji-card__glyph { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; writing-mode: vertical-rl; flex: none; }
.kanji-card h3 { margin-bottom: .35rem; }
.kanji-card p { font-size: .93rem; color: var(--ink-soft); }

/* ── Play-based learning ───────────────────────────────── */
.playlearn { position: relative; overflow: hidden; background: var(--tint-amber); }
.playlearn__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.playlearn__art { display: flex; justify-content: center; }
.playlearn__art img { width: min(320px, 100%); height: auto; }
.playlearn__text p { color: var(--ink-soft); margin-bottom: 1rem; }
.playlearn__text p:last-of-type { margin-bottom: 1.4rem; }
.playlearn__tags { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
.playlearn__tags li {
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  background: #fff; color: var(--amber-d); padding: .5rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) { .playlearn__grid { grid-template-columns: 1fr; text-align: center; } .playlearn__tags { justify-content: center; } }

/* ── Pillars ───────────────────────────────────────────── */
.pillar {
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.5rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-sm); border-top: 6px solid var(--pc);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow-lg); }
.pillar__icon {
  width: 74px; height: 74px; margin: 0 auto 1.1rem; border-radius: 26px;
  display: grid; place-items: center; color: var(--pc);
  background: color-mix(in srgb, var(--pc) 12%, #fff);
  transform: rotate(-4deg);
}
.pillar__icon svg { width: 38px; height: 38px; }
.pillar h3 { color: var(--pc); font-size: 1.35rem; margin-bottom: .5rem; }
.pillar p { font-size: .92rem; color: var(--ink-soft); }

.values-divider {
  text-align: center; max-width: 46em; margin: clamp(2.4rem, 5vw, 3.6rem) auto 2rem;
  padding-top: clamp(2rem, 4vw, 3rem); border-top: 1.5px dashed rgba(51,48,43,.16);
}
.values-divider p { font-size: 1rem; color: var(--ink-soft); }
.values-divider strong { color: var(--ink); }
.values-divider em { color: var(--teal-d); font-style: normal; }

.daily-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 1.6rem; }
.daily-value {
  display: flex; gap: .9rem; align-items: flex-start;
  background: rgba(255,255,255,.6); border-radius: var(--r-sm); padding: 1.1rem 1.2rem;
  transition: background .25s ease, transform .25s ease;
}
.daily-value:hover { background: #fff; transform: translateY(-3px); }
.daily-value__icon {
  width: 40px; height: 40px; flex: none; color: var(--teal-d);
  background: rgba(255,255,255,.7); border-radius: 12px; padding: 8px;
}
.daily-value h4 { font-family: var(--font-display); font-weight: 700; font-size: .98rem; margin-bottom: .25rem; }
.daily-value p { font-size: .84rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 860px) { .daily-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .daily-values { grid-template-columns: 1fr; } }

/* ── Day toggle (Dhuha / Hijaiyah) ─────────────────────── */
.day__toggle {
  display: flex; width: fit-content; max-width: 100%; gap: .3rem; background: #fff; border-radius: 999px;
  padding: .35rem; box-shadow: var(--shadow-sm); margin: 0 auto 1rem;
}
.day__tab {
  display: inline-flex; align-items: center; gap: .5rem; border: none; background: transparent;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink-soft);
  padding: .6rem 1.2rem; border-radius: 999px; transition: background .25s ease, color .25s ease;
}
.day__tab svg { width: 20px; height: 20px; flex: none; }
.day__tab.is-active { background: var(--teal); color: #fff; box-shadow: 0 6px 14px -4px rgba(35,160,148,.45); }
.day__note {
  text-align: center; font-size: .88rem; color: var(--ink-soft); max-width: 42em; margin: 0 auto;
  background: var(--tint-amber); border-radius: 999px; padding: .55rem 1.3rem;
}
.day__note[hidden] { display: none; }

/* ── Day timeline ──────────────────────────────────────── */
.day { position: relative; margin-block: 1rem 2.5rem; }
.day__track {
  display: flex; gap: 1.1rem; overflow-x: auto; padding: 1.6rem max(calc((100vw - 1180px)/2), 1.25rem) 1.8rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.day__track[hidden] { display: none; }
.day__track::-webkit-scrollbar { display: none; }
.day__item {
  flex: 0 0 258px; scroll-snap-align: start;
  background: #fff; border-radius: var(--r-md); padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm); border-top: 5px solid var(--dc);
  position: relative; transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.day__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.day__item time {
  font-family: var(--font-display); font-weight: 800; font-size: .95rem; color: var(--dc);
  background: color-mix(in srgb, var(--dc) 11%, #fff);
  padding: .2rem .8rem; border-radius: 999px; display: inline-block; margin-bottom: .7rem;
  font-variant-numeric: tabular-nums;
}
.day__item h3 { font-size: 1.12rem; margin-bottom: .4rem; display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; }
.day__plus {
  font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .02em;
  color: var(--amber-d); background: var(--tint-amber); padding: .15rem .5rem; border-radius: 999px;
}
.day__item p { font-size: .88rem; color: var(--ink-soft); }
.day__nav { display: flex; justify-content: flex-end; gap: .6rem; }
.day__btn {
  width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff;
  box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink);
  transition: transform .2s var(--ease-spring), background .2s ease, color .2s ease;
}
.day__btn:hover { background: var(--teal); color: #fff; transform: scale(1.08); }
.day__btn svg { width: 22px; height: 22px; }
.rhythm { margin-top: 1rem; }
.mini-card { background: #fff; border-radius: var(--r-md); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); }
.mini-card__badge {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  padding: .25rem .85rem; border-radius: 999px; margin-bottom: .8rem;
}
.mini-card h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.mini-card p { font-size: .9rem; color: var(--ink-soft); }

/* ── Programs ──────────────────────────────────────────── */
.promo {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(120deg, #fff6e3, #fdeee6);
  border: 2px dashed var(--amber); border-radius: var(--r-lg);
  padding: 1.4rem 1.8rem; margin-bottom: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.promo__badge {
  flex: none; width: 86px; height: 86px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ff7a68, var(--coral) 60%, #d13a4b);
  color: #fff; display: grid; place-items: center; align-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: .9;
  transform: rotate(-8deg);
  box-shadow: 0 10px 22px -6px rgba(233, 79, 95, .55);
}
.promo__badge small { font-size: .8rem; letter-spacing: .12em; }
.promo__text { flex: 1 1 320px; }
.promo__text h3 { font-size: 1.18rem; margin-bottom: .3rem; }
.promo__text p { color: var(--ink-soft); font-size: .95rem; }
.promo__text s { color: var(--ink-soft); opacity: .75; }
.promo__price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--coral); }
.promo__cta { flex: none; }
.programs { align-items: stretch; }
.program {
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.1rem;
  position: relative; border: 2px solid transparent;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease, border-color .3s ease;
}
.program:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pc); }
.program__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9rem; }
.program__badge {
  width: 158px; height: 158px; flex: none; border-radius: 50%;
  box-shadow: 0 10px 24px -6px rgba(51, 48, 43, .28);
  transition: transform .35s var(--ease-spring);
}
.program:hover .program__badge { transform: scale(1.06) rotate(-4deg); }
.program h3 { font-size: 1.45rem; color: var(--pc); }
.program h3 span { font-size: .85rem; color: var(--ink-soft); font-weight: 600; margin-left: .2rem; }
.program__age { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.program__desc { font-size: .93rem; color: var(--ink-soft); }
.program__meta { list-style: none; display: grid; gap: .5rem; background: var(--pt); border-radius: var(--r-sm); padding: 1.1rem 1.2rem; font-size: .9rem; margin-top: auto; }
.program__meta li { display: flex; justify-content: space-between; gap: 1rem; }
.program__meta span { color: var(--ink-soft); }
.program__meta strong { font-variant-numeric: tabular-nums; text-align: right; }
.program__fee { border-top: 1.5px dashed rgba(51,48,43,.18); padding-top: .55rem; }
.program__fee s { opacity: .6; font-weight: 500; margin-right: .3rem; }
.program__fee strong { color: var(--coral); }
.programs__note { text-align: center; margin-top: 2.2rem; font-size: .86rem; color: var(--ink-soft); }

/* ── Teachers ──────────────────────────────────────────── */
.teacher-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.teacher {
  flex: 1 1 280px; max-width: 360px;
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.teacher:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.teacher__avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.1rem; position: relative;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tc) 14%, #fff);
  color: var(--tc); font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  border: 3px solid color-mix(in srgb, var(--tc) 45%, #fff);
}
.teacher__mark {
  position: absolute; right: -6px; bottom: -6px; width: 38px; height: 38px; padding: 8px;
  background: var(--tc); color: #fff; border-radius: 50%; box-shadow: var(--shadow-sm);
}
.teacher h3 { font-size: 1.18rem; }
.teacher h3 span { color: var(--ink-soft); font-size: .9rem; }
.teacher__role { font-weight: 700; color: var(--tc); font-size: .88rem; margin: .25rem 0 .7rem; }
.teacher p:last-child { font-size: .9rem; color: var(--ink-soft); }

.homevisit {
  margin-top: 2.5rem; display: flex; gap: 1.6rem; align-items: center;
  background: var(--tint-sky); border-radius: var(--r-lg); padding: 1.8rem 2rem;
}
.homevisit__img { width: clamp(150px, 17vw, 210px); height: auto; flex: none; }
@media (max-width: 768px) { .homevisit__img { display: none; } }
.homevisit__icon {
  flex: none; width: 64px; height: 64px; border-radius: 22px; background: #fff;
  display: grid; place-items: center; color: var(--sky-d); box-shadow: var(--shadow-sm);
}
.homevisit__icon svg { width: 32px; height: 32px; }
.homevisit h3 { margin-bottom: .4rem; }
.homevisit p { font-size: .95rem; color: var(--ink-soft); }

/* ── Stats & bubbles ───────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.stat { background: #fff; border-radius: var(--r-md); padding: 1.6rem 1.2rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 1.8rem + 2.5vw, 3.6rem);
  line-height: 1; color: var(--amber-d); display: block; margin-bottom: .4rem; font-variant-numeric: tabular-nums;
}
.stat p { font-size: .88rem; color: var(--ink-soft); }
.bubbles__title { margin-bottom: 1.4rem; }
.bubbles__title--second { margin-top: clamp(2.5rem, 5vw, 4rem); }
.bubbles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bubble {
  background: #fff; border-radius: var(--r-md); padding: 1.6rem;
  position: relative; box-shadow: var(--shadow-sm); border-left: 6px solid var(--bc);
}
.bubble::after {
  content: ""; position: absolute; left: 2rem; bottom: -12px;
  border: 12px solid transparent; border-top-color: #fff; border-bottom: 0;
}
.bubble blockquote { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; margin-bottom: .7rem; color: var(--ink); }
.bubble figcaption { font-size: .85rem; color: var(--ink-soft); }
.bubble figcaption strong { color: var(--bc); }

/* ── Foundation (deep) ─────────────────────────────────── */
.foundation__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.foundation__logo {
  display: inline-block; background: #fff; border-radius: var(--r-sm);
  padding: 1rem 1.5rem; margin-bottom: 1.6rem; box-shadow: var(--shadow-md);
}
.foundation__logo img { width: min(260px, 100%); height: auto; }
.foundation__text p { color: rgba(242,239,232,.85); margin-bottom: 1.4rem; }
.foundation__text strong { color: #fff; }
.foundation__people { list-style: none; display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.foundation__people li {
  background: var(--deep-2); border-radius: var(--r-sm); padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--hanida-red);
}
.foundation__people strong { display: block; font-family: var(--font-display); }
.foundation__people span { font-size: .87rem; color: rgba(242,239,232,.72); }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.roadmap__item { background: rgba(255,255,255,.06); border-radius: var(--r-sm); padding: 1rem 1.1rem; border-top: 3px solid var(--hanida-blue-l); }
.roadmap__item time { font-family: var(--font-display); font-weight: 800; color: var(--hanida-red-l); font-size: 1.15rem; display: block; margin-bottom: .3rem; }
.roadmap__item p { font-size: .82rem; color: rgba(242,239,232,.78); margin: 0; }
.foundation__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--deep-2); }
.foundation__img img { width: 100%; height: 100%; object-fit: cover; }
.foundation__img figcaption { padding: 1rem 1.3rem; font-size: .85rem; color: rgba(242,239,232,.75); }

/* ── Testimonials ──────────────────────────────────────── */
.testi-carousel { position: relative; margin-block: .5rem 1rem; }
.testi__track {
  display: flex; gap: 1.2rem; overflow-x: auto; padding: 1rem max(calc((100vw - 1180px)/2), 1.25rem) 1.8rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi__track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 min(400px, 84vw); scroll-snap-align: start;
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  border-top: 5px solid var(--tc);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi__quote { width: 34px; height: 34px; color: var(--tc); flex: none; }
.testi blockquote { font-size: .95rem; color: var(--ink); line-height: 1.7; flex: 1; }
.testi figcaption { display: flex; align-items: center; gap: .8rem; font-size: .85rem; color: var(--ink-soft); }
.testi__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; flex: none;
}

.quote-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.quote-wall__item {
  background: #fff; border-radius: var(--r-md); padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm); border-top: 5px solid var(--qc);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.quote-wall__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-wall__item blockquote { font-size: .92rem; line-height: 1.6; color: var(--ink); margin-bottom: .9rem; }
.quote-wall__item figcaption { font-weight: 700; font-size: .85rem; color: var(--qc); }
@media (max-width: 1024px) { .quote-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .quote-wall { grid-template-columns: 1fr; } }

/* ── Gallery ───────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery__item { position: relative; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(transparent, rgba(30,25,18,.72));
  color: #fff; font-size: .82rem; font-weight: 600;
}
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { display: grid; gap: .9rem; }
.faq__item { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; border: 1.5px solid transparent; transition: border-color .25s ease; }
.faq__item[open] { border-color: var(--teal); }
.faq__item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  min-height: 56px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--tint-teal); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--teal-d); border-radius: 2px;
  transition: transform .3s ease;
}
.faq__icon::before { width: 14px; height: 2.5px; }
.faq__icon::after { width: 2.5px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: .95rem; }
.faq__body a { color: var(--teal-d); font-weight: 600; }

/* ── Map / Lokasi ──────────────────────────────────────── */
.map-card {
  display: grid; grid-template-columns: 1.4fr 1fr; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: #fff;
}
.map-card__frame { position: relative; aspect-ratio: 4/3; background: var(--cream-2); }
.map-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-card__info { padding: 2rem 1.8rem; display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; }
.map-card__info h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.map-card__info p { color: var(--ink-soft); }

/* ── Register ──────────────────────────────────────────── */
.section--register {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(244,169,60,.14), transparent 60%),
    radial-gradient(600px 400px at 0% 90%, rgba(86,173,224,.12), transparent 60%),
    var(--cream-2);
}
.register__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.register__copy { position: relative; }
.register__steps { list-style: none; display: grid; gap: .9rem; margin-top: 1.6rem; }
.register__steps li { display: flex; align-items: center; gap: .9rem; font-weight: 600; }
.register__steps span {
  width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 800;
  box-shadow: 0 5px 12px -3px rgba(35,160,148,.5);
}
.register__mascot { margin-top: 2rem; max-width: 260px; height: auto; }

.register__form {
  background: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg); display: grid; gap: 1.15rem;
  border-top: 8px solid var(--amber);
}
.register__form h3 { font-size: 1.4rem; }
.field { display: grid; gap: .4rem; }
.field--half { grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--half > div { display: grid; gap: .4rem; align-content: start; }
.field label { font-weight: 700; font-size: .9rem; }
.req { color: var(--coral); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem 1rem; border-radius: 14px; border: 2px solid #ece4d4;
  background: var(--cream); min-height: 52px; width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: auto; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--coral); }
.field__hint { font-size: .78rem; color: var(--ink-soft); }
.field__error { font-size: .8rem; color: #c22d3d; font-weight: 600; min-height: 0; }
.field__error:empty { display: none; }
.register__privacy { font-size: .78rem; color: var(--ink-soft); text-align: center; }

/* ── Finale ────────────────────────────────────────────── */
.finale {
  background: linear-gradient(135deg, var(--teal-d), var(--teal) 55%, #2fb3a5);
  color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden;
}
.finale::before {
  content: "光"; position: absolute; right: -3%; top: -18%; font-family: var(--font-display);
  font-size: 22rem; font-weight: 800; color: rgba(255,255,255,.06); pointer-events: none;
}
.finale__inner { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.finale__mascot { width: clamp(120px, 16vw, 190px); flex: none; filter: drop-shadow(0 16px 24px rgba(0,0,0,.25)); }
.finale__jp { font-weight: 600; letter-spacing: .3em; opacity: .75; margin-bottom: .6rem; }
.finale h2 { font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.4rem); max-width: 22em; margin-bottom: 1.6rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: #221f1b; color: #cfc9bf; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.brand--footer .brand__sub { color: #9c958a; }
.footer__tag { margin-top: 1rem; font-size: .92rem; }
.footer__hanida { margin-top: 1.2rem; font-size: .82rem; color: #9c958a; }
.footer__hanida strong { color: #e8e2d8; }
.footer__hanida-logo {
  width: 150px; height: auto; margin-top: .9rem;
  background: #fff; padding: .6rem .9rem; border-radius: 10px;
}
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__col a { display: block; text-decoration: none; padding: .3rem 0; font-size: .92rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--amber); }
.footer__addr { font-size: .92rem; padding: .3rem 0; }
.footer__bottom {
  border-top: 1px solid #3a362f; padding-top: 1.5rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: .8rem; font-size: .82rem; color: #9c958a;
}
.footer__arigato span { color: var(--coral); }

/* ── Reveal animations ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s var(--ease-spring); }
.reveal.is-visible { opacity: 1; transform: none; }
.grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(4) { transition-delay: .24s; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 480px; margin-inline: auto; }
  .hero__copy { text-align: center; padding-bottom: 3rem; }
  .hero__cta, .hero__chips { justify-content: center; }
  .section__head { margin-inline: auto; text-align: center; }
  .kicker { justify-content: center; }
  .philo__grid, .foundation__grid, .register__grid { grid-template-columns: 1fr; }
  .philo__story { text-align: left; }
  .register__mascot { display: none; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem 1.6rem; border-radius: 0 0 24px 24px;
    transform: translateY(-130%); transition: transform .35s var(--ease-spring);
  }
  .nav { background: rgba(253, 249, 242, .95); backdrop-filter: blur(14px); }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid #f0e7d8; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: 1rem; text-align: center; border-bottom: none !important; }
  .nav__burger { display: flex; }
}
@media (max-width: 768px) {
  .grid-3, .bubbles { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: 1fr; }
  .homevisit { flex-direction: column; }
  .field--half { grid-template-columns: 1fr; }
  .finale__inner { flex-direction: column; text-align: center; }
  .finale h2 { margin-inline: auto; }
  .finale .hero__cta { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__facts { justify-content: center; }
  .card--tilt:nth-child(2), .card--tilt:nth-child(3) { transform: none; }
  .map-card { grid-template-columns: 1fr; }
  .map-card__frame { aspect-ratio: 16/10; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .day__item { flex-basis: 236px; }
  .btn { width: 100%; }
  .hero__cta { flex-direction: column; }
  /* one line per chip so three of them don't push the headline down the fold */
  .hero__fact { flex-basis: 100%; padding: .5rem .75rem; }
  .hero__fact strong { display: inline; }
  .hero__fact small { display: inline; margin-left: .35rem; }
  .day__tab { padding: .55rem .85rem; font-size: .82rem; gap: .35rem; }
  .day__tab svg { width: 17px; height: 17px; }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .petal { display: none; }
  .ticker__track { animation: none; }
}
