@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@1,9..144,600&display=swap');

:root {
  --ink: #253549;
  --muted: #667181;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --yellow: #ffd463;
  --coral: #ff866f;
  --blue: #6bc9e6;
  --green: #9bd3a9;
  --navy: #263a54;
  --line: rgba(37, 53, 73, 0.12);
  --shadow: 0 24px 60px rgba(63, 68, 75, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: white;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 14px auto -82px;
  padding: 10px 12px 10px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 10px 35px rgba(38, 58, 84, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  width: 104px;
  height: auto;
  flex: 0 0 auto;
}

.brand--footer .brand-logo {
  width: 116px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(38, 58, 84, 0.2);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(38, 58, 84, 0.24);
}

.button:focus-visible,
.choice-button:focus-visible,
.edit-button:focus-visible,
summary:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #1784a9;
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.84rem;
}

.button--light {
  color: var(--navy);
  background: white;
  box-shadow: none;
}

.button--cream {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: none;
}

.section {
  padding: 120px max(24px, calc((100% - 1160px) / 2));
}

.hero {
  display: grid;
  min-height: 760px;
  padding-top: 180px;
  align-items: center;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 78%, rgba(255, 212, 99, 0.34), transparent 24%),
    radial-gradient(circle at 90% 4%, rgba(107, 201, 230, 0.22), transparent 24%),
    var(--cream);
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: #647080;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: #ed715f;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.23rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.text-link span { margin-left: 5px; }

.trust-row {
  display: flex;
  margin-top: 46px;
  flex-wrap: wrap;
  gap: 20px;
  color: #5d6775;
  font-size: 0.83rem;
  font-weight: 600;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.play-card {
  position: absolute;
  inset: 30px 24px 30px 28px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 48% 48% 44% 44% / 38% 38% 50% 50%;
  background: #c9edf2;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.play-card::after {
  position: absolute;
  right: -15%;
  bottom: -22%;
  left: -15%;
  height: 48%;
  border-radius: 50%;
  background: #ffcf63;
  content: "";
}

.sun {
  position: absolute;
  top: 0;
  right: 10px;
  width: 78px;
  height: 78px;
  border: 11px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 191, 53, 0.26);
}

.cloud {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 21px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 5px;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.cloud::before { left: 8px; width: 22px; height: 22px; }
.cloud::after { right: 8px; width: 28px; height: 28px; }
.cloud--one { top: 92px; left: 90px; }
.cloud--two { top: 145px; right: 90px; transform: scale(0.75); }

.arch {
  position: absolute;
  z-index: 3;
  bottom: 90px;
  width: 150px;
  height: 220px;
  border-radius: 95px 95px 0 0;
}

.arch--back { left: 45px; background: var(--coral); transform: rotate(-5deg); }
.arch--front { right: 30px; height: 180px; background: var(--green); transform: rotate(7deg); }

.child {
  position: absolute;
  z-index: 7;
  width: 90px;
  height: 190px;
}

.child--one { right: 110px; bottom: 80px; }
.child--two { left: 115px; bottom: 63px; transform: scale(0.83) rotate(-8deg); }
.child-head {
  position: absolute;
  top: 0;
  left: 15px;
  width: 58px;
  height: 65px;
  border: 8px solid #603c30;
  border-radius: 48% 52% 48% 46%;
  background: #c77e59;
}

.child-head::before {
  position: absolute;
  top: -16px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #603c30;
  content: "";
}

.child-body {
  position: absolute;
  top: 60px;
  left: 4px;
  width: 78px;
  height: 86px;
  border-radius: 38px 38px 18px 18px;
  background: #fff5e4;
}

.child--two .child-body { background: #4e83bc; }
.child--two .child-head { background: #e0a078; border-color: #2e2624; }
.child--two .child-head::before { background: #2e2624; }

.child-leg {
  position: absolute;
  top: 138px;
  width: 24px;
  height: 52px;
  border-radius: 14px;
  background: #45678d;
}

.child-leg--left { left: 18px; transform: rotate(5deg); }
.child-leg--right { right: 18px; transform: rotate(-5deg); }

.ball {
  position: absolute;
  z-index: 6;
  border-radius: 50%;
}

.ball--one { left: 48%; bottom: 92px; width: 52px; height: 52px; background: white; }
.ball--two { left: 38%; bottom: 42px; width: 34px; height: 34px; background: var(--blue); }

.scribble {
  position: absolute;
  z-index: 7;
  top: 42px;
  left: 50%;
  color: rgba(38, 58, 84, 0.65);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  transform: translateX(-50%) rotate(-4deg);
}

.mini-note {
  position: absolute;
  z-index: 10;
  padding: 12px 18px;
  border: 4px solid white;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(38, 58, 84, 0.12);
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-note--top { top: 70px; left: 0; background: var(--yellow); transform: rotate(-5deg); }
.mini-note--bottom { right: 0; bottom: 58px; background: #ffc0b3; transform: rotate(4deg); }

.experience {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow { grid-column: 1 / -1; }

.section-heading h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.branch-grid {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.branch-card {
  position: relative;
  min-height: 320px;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--radius);
}

.branch-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  content: "";
}

.branch-card--nest { background: #ffe3a0; }
.branch-card--preschool { background: #bfe9f1; }
.branch-topline { display: flex; align-items: center; justify-content: space-between; }
.branch-topline > span {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.branch-topline strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  font-size: 0.72rem;
}
.branch-card h3 {
  margin: 42px 0 12px;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.branch-card h3 em { font-family: "Fraunces", Georgia, serif; font-weight: 600; }
.branch-card--nest h3 em { color: #d76452; }
.branch-card--preschool h3 em { color: #2b7695; }
.branch-card > p { max-width: 480px; color: rgba(37,53,73,0.7); }
.branch-card > a { position: relative; z-index: 1; font-weight: 700; text-decoration: none; }
.branch-card > a span { margin-left: 6px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.journey-card {
  position: relative;
  min-height: 350px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
}

.journey-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(37, 53, 73, 0.12);
  border-radius: 50%;
  content: "";
}

.journey-card--yellow { background: #ffe7a1; }
.journey-card--coral { background: #ffc6b9; }
.journey-card--blue { background: #c9edf2; }
.journey-card--green { background: #d3ebd7; }

.journey-number {
  color: rgba(37, 53, 73, 0.52);
  font-size: 0.75rem;
  font-weight: 700;
}

.journey-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 34px 0;
  place-items: center;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(37, 53, 73, 0.08);
  font-size: 2.1rem;
}

.journey-moment {
  margin-bottom: 5px;
  color: rgba(37, 53, 73, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.journey-card p:last-child {
  color: rgba(37, 53, 73, 0.7);
  font-size: 0.88rem;
}

.benefit-strip {
  position: relative;
  display: grid;
  margin-top: 26px;
  padding: 32px 36px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: repeat(4, 1fr);
  background: white;
}

.benefit-strip > div {
  display: flex;
  padding: 8px 26px;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.benefit-strip > div:first-child { padding-left: 0; }
.benefit-strip > div:nth-child(4) { border-right: 0; }
.benefit-strip strong { font-size: 0.95rem; }
.benefit-strip span { color: var(--muted); font-size: 0.82rem; }
.benefit-note {
  position: absolute;
  right: 36px;
  bottom: 16px;
  left: 36px;
  margin: 0;
  color: #7a8490;
  font-size: 0.72rem;
  text-align: center;
}

.families {
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 0% 23%, rgba(255, 134, 111, 0.14), transparent 22%),
    radial-gradient(circle at 100% 45%, rgba(107, 201, 230, 0.18), transparent 22%),
    var(--cream);
}

.section-heading--center {
  display: block;
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 { margin-bottom: 20px; }

.finder {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 36px;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 0.86fr;
  background: rgba(255, 255, 255, 0.92);
}

.finder-controls { padding: 45px; }

.finder-step + .finder-step {
  margin-top: 36px;
}

.step-label {
  display: flex;
  margin-bottom: 17px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.step-label > span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.76rem;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.choice-button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-weight: 700;
}

.choice-button.is-selected {
  border-color: var(--navy);
  color: white;
  background: var(--navy);
}

.priorities {
  padding: 0;
  border: 0;
}

.priorities label {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: #546171;
  cursor: pointer;
  font-size: 0.91rem;
}

.priorities input {
  width: 19px;
  height: 19px;
  accent-color: var(--coral);
}

.finder-result {
  position: relative;
  display: flex;
  min-height: 540px;
  padding: 50px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.finder-result::before,
.finder-result::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.finder-result::before {
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  background: rgba(107, 201, 230, 0.24);
}

.finder-result::after {
  bottom: -90px;
  left: -80px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255, 212, 99, 0.16);
}

.result-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-result h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.result-intro {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.campus-result-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 700;
}

.finder-result ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 16px 0 22px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.finder-result li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,0.9);
  font-size: 0.91rem;
}

.finder-result li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--yellow);
  content: "✦";
}

.result-footnote {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.52);
  font-size: 0.7rem;
}

.finder-result .button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.info-grid {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.schedule-card,
.faq-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.schedule-card h3,
.faq-card h3 {
  margin-bottom: 25px;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.schedule-display {
  display: grid;
  gap: 11px;
}

.schedule-location {
  padding: 18px;
  border-radius: 16px;
  background: #f8f4ec;
}

.schedule-location h4 {
  display: flex;
  margin: 0 0 12px;
  align-items: center;
  gap: 8px;
  font-size: 0.91rem;
}

.schedule-location h4 small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.65rem;
}

.schedule-location p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.location-dot { width: 10px; height: 10px; border-radius: 50%; }
.location-dot--nest { background: var(--yellow); }
.location-dot--preschool { background: var(--blue); }
.schedule-display span { color: var(--muted); font-size: 0.78rem; }
.schedule-display strong { font-size: 0.9rem; }

.schedule-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 18px 34px 18px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  color: var(--coral);
  content: "+";
  font-size: 1.25rem;
}

.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding-right: 30px; color: var(--muted); font-size: 0.84rem; }

.contact-card {
  position: relative;
  display: grid;
  margin-top: 28px;
  padding: 68px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  grid-template-columns: 1fr 0.7fr;
  gap: 55px;
  color: white;
  background: var(--navy);
}

.contact-card::before {
  position: absolute;
  top: -120px;
  right: 18%;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(255, 134, 111, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-card > div { position: relative; z-index: 1; }
.contact-card h2 { font-size: clamp(2.2rem, 4.2vw, 4rem); }
.contact-card p { margin: 16px 0 0; color: rgba(255,255,255,0.68); }
.eyebrow--light { color: rgba(255,255,255,0.64); }
.contact-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.contact-actions .button { width: 100%; }
.instagram-link { color: white; font-weight: 700; text-decoration: none; }
.contact-actions > span { color: rgba(255,255,255,0.5); font-size: 0.7rem; }

footer {
  display: flex;
  padding: 44px 8px 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

footer p { margin: 0; }
footer > a:last-child { font-weight: 600; text-decoration: none; }

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 13px 18px;
  border-radius: 13px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.82rem;
  font-weight: 600;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .site-header nav { display: none; }
  .hero { gap: 30px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .benefit-strip > div:nth-child(2) { border-right: 0; }
  .finder-result { padding: 42px; }
  .contact-card { padding: 52px; }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 62px;
    margin-top: 8px;
    margin-bottom: -70px;
  }

  .site-header .button { min-height: 40px; padding-inline: 15px; font-size: 0.72rem; }
  .brand { font-size: 1rem; }
  .brand-logo { width: 92px; }
  .brand-lockup { display: none; }
  .section { padding: 82px 18px; }
  .hero { min-height: auto; padding-top: 132px; grid-template-columns: 1fr; gap: 34px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .trust-row { margin-top: 32px; gap: 8px 16px; }
  .hero-art { min-height: 430px; }
  .play-card { inset: 25px 13px; }
  .mini-note--top { left: 2px; }
  .mini-note--bottom { right: 0; }
  .child--one { right: 70px; }
  .child--two { left: 85px; }
  .arch--back { left: 20px; }
  .arch--front { right: 12px; }

  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 22px; }
  .journey-grid { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .branch-card { min-height: 300px; padding: 30px 24px; }
  .journey-card { min-height: 290px; }
  .journey-icon { margin: 24px 0; }
  .benefit-strip { padding: 24px 24px 58px; grid-template-columns: 1fr; }
  .benefit-strip > div,
  .benefit-strip > div:first-child { padding: 11px 0 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-strip > div:nth-child(4) { border-bottom: 0; }
  .benefit-note { right: 20px; bottom: 14px; left: 20px; }

  .finder { grid-template-columns: 1fr; }
  .finder-controls { padding: 28px 22px 32px; }
  .choice-button { min-height: 48px; }
  .choice-row { grid-template-columns: repeat(3, 1fr); }
  .finder-result { min-height: auto; padding: 38px 26px; }
  .finder-result .button { width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
  .schedule-card,
  .faq-card { padding: 28px 22px; }
  .contact-card { padding: 42px 24px; grid-template-columns: 1fr; gap: 34px; }
  footer { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (max-width: 390px) {
  .site-header .brand-logo { width: 88px; }
  .hero-art { min-height: 390px; }
  .child--one { right: 46px; }
  .child--two { left: 58px; }
  .mini-note { font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
