:root {
  --paper: #f6f2e9;
  --paper-deep: #ece5d8;
  --paper-light: #fffdf7;
  --ink: #293448;
  --ink-soft: #536074;
  --teal: #2f9f9b;
  --teal-dark: #176f71;
  --teal-pale: #d9eeea;
  --orange: #ed9a63;
  --yellow: #f5c856;
  --lilac: #ddd6f0;
  --rose: #f2d2ca;
  --line: rgba(41, 52, 72, 0.15);
  --line-strong: rgba(41, 52, 72, 0.28);
  --shadow: 0 20px 45px rgba(41, 52, 72, 0.11);
  --shadow-soft: 0 10px 25px rgba(41, 52, 72, 0.08);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(41, 52, 72, 0.12) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
}

::selection { background: var(--yellow); color: var(--ink); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(1160px, calc(100% - 56px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(246, 242, 233, 0.84);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(246, 242, 233, 0.96); box-shadow: 0 7px 25px rgba(41, 52, 72, 0.06); }
.header-inner { min-height: 70px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 39px; height: 39px; display: block; flex: none; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: grid; gap: 0; line-height: 1.1; }
.brand-copy strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -0.04em; }
.brand-copy small { color: var(--ink-soft); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a { padding: 8px 10px; border-radius: 8px; color: var(--ink-soft); font-size: 0.83rem; text-decoration: none; transition: color 0.2s ease, background 0.2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { background: var(--teal-pale); color: var(--teal-dark); }
.header-phone { display: inline-flex; min-height: 38px; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink); font-size: 0.79rem; font-weight: 700; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.header-phone:hover { border-color: var(--teal); background: var(--paper-light); transform: translateY(-1px); }
.phone-icon { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: white; font-size: 0.9rem; line-height: 1; transform: rotate(-45deg); }
.phone-label { display: none; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { width: 17px; height: 2px; display: block; margin: 4px auto; border-radius: 2px; background: var(--ink); transition: transform 0.2s ease; }
.site-header.is-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.site-header.is-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Type and shared controls */
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.055em; }
h1 { max-width: 680px; font-size: clamp(3.1rem, 6.1vw, 5.7rem); font-weight: 800; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.35rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 800; }
em { color: var(--teal-dark); font-style: normal; }
.eyebrow, .section-kicker, .section-marker, .program-meta, .news-card time, .news-mini time { letter-spacing: 0.105em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--teal-dark); font-size: 0.71rem; font-weight: 800; }
.eyebrow-dot { width: 9px; height: 9px; display: block; border: 3px solid var(--paper); border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.section { padding: clamp(68px, 8vw, 108px) 0; }
.section-marker { padding-top: 6px; color: var(--teal-dark); font-size: 0.7rem; font-weight: 800; white-space: nowrap; }
.section-kicker { margin-bottom: 20px; color: var(--teal-dark); font-size: 0.72rem; font-weight: 800; }
.section-lead { max-width: 620px; margin-top: 21px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 15px; padding: 14px 21px; border: 1px solid transparent; border-radius: 9px; font-size: 0.91rem; font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease; }
.button span { font-size: 1.15rem; line-height: 0; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 17px rgba(47, 159, 155, 0.22); }
.button-primary:hover { background: var(--teal-dark); box-shadow: 0 12px 25px rgba(47, 159, 155, 0.27); }
.button-dark { background: var(--ink); color: var(--paper-light); box-shadow: 0 8px 17px rgba(41, 52, 72, 0.17); }
.button-dark:hover { background: #172033; }
.text-button { display: inline-flex; min-height: 52px; align-items: center; gap: 10px; color: var(--ink); font-size: 0.92rem; font-weight: 800; text-decoration: none; }
.text-button span { color: var(--teal-dark); font-size: 1.2rem; transition: transform 0.2s ease; }
.text-button:hover span { transform: translateY(4px); }
.button:focus-visible, .text-button:focus-visible, .main-nav a:focus-visible, .header-phone:focus-visible, .footer-top:focus-visible, .inline-link:focus-visible, .contact-phone:focus-visible, .address-block a:focus-visible, .news-mini a:focus-visible { outline: 3px solid rgba(47, 159, 155, 0.38); outline-offset: 3px; }

/* Hero */
.hero-section { position: relative; min-height: min(700px, calc(100vh - 70px)); display: grid; align-items: center; overflow: hidden; padding: clamp(55px, 6vw, 86px) 0 66px; }
.hero-section::before { position: absolute; top: 4%; right: -11%; width: 56vw; height: 56vw; max-width: 790px; max-height: 790px; border: 1px solid rgba(47, 159, 155, 0.16); border-radius: 50%; content: ""; box-shadow: 0 0 0 34px rgba(47, 159, 155, 0.035), 0 0 0 70px rgba(47, 159, 155, 0.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.88fr); gap: clamp(34px, 6vw, 82px); align-items: center; }
.hero-copy { padding-bottom: 4px; }
.hero-copy h1 em { display: inline-block; color: var(--teal-dark); }
.hero-mobile-break { display: none; }
.hero-lead { max-width: 560px; margin: 22px 0 25px; color: var(--ink-soft); font-size: clamp(1rem, 1.45vw, 1.13rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 29px; color: var(--ink-soft); font-size: 0.74rem; line-height: 1.4; }
.hero-proof strong { color: var(--ink); font-size: 0.81rem; }
.avatar-stack { display: flex; padding-left: 3px; }
.avatar-stack span { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -3px; border: 2px solid var(--paper); border-radius: 50%; color: var(--ink); font-size: 0.72rem; font-weight: 800; }
.avatar-stack span:nth-child(1) { background: var(--yellow); }
.avatar-stack span:nth-child(2) { background: var(--rose); }
.avatar-stack span:nth-child(3) { background: var(--teal-pale); }
.hero-art { position: relative; max-width: 510px; justify-self: end; width: 100%; }
.mascot-card { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(41, 52, 72, 0.24); border-radius: 19px; background: var(--teal-pale); box-shadow: var(--shadow); transform: rotate(2deg); }
.mascot-card-top { min-height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 0 21px; border-bottom: 1px solid rgba(41, 52, 72, 0.15); color: var(--teal-dark); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.card-dots { color: var(--teal); letter-spacing: 3px; }
.mascot-stage { position: relative; min-height: 438px; display: flex; align-items: center; justify-content: center; padding: 23px 21px 18px; background: linear-gradient(135deg, rgba(255,255,255,0.23), transparent 52%), radial-gradient(circle at 70% 15%, rgba(245,200,86,0.4), transparent 24%); }
.mascot-stage::before { position: absolute; inset: 23px; border: 1px dashed rgba(47, 159, 155, 0.28); border-radius: 17px; content: ""; }
.mascot { position: relative; z-index: 1; width: min(86%, 365px); height: auto; filter: drop-shadow(0 14px 5px rgba(41, 52, 72, 0.1)); }
.math-symbol { position: absolute; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--ink); font-size: 1.45rem; font-weight: 800; box-shadow: 0 8px 16px rgba(41, 52, 72, 0.1); transform: rotate(-9deg); }
.math-symbol--one { top: 72px; left: 64px; background: var(--yellow); }
.math-symbol--two { top: 145px; right: 60px; background: var(--paper-light); transform: rotate(12deg); }
.math-symbol--three { right: 76px; bottom: 91px; background: var(--rose); transform: rotate(-8deg); }
.mascot-caption { position: absolute; right: 30px; bottom: 24px; left: 30px; z-index: 2; display: flex; align-items: baseline; justify-content: space-between; gap: 13px; padding-top: 14px; border-top: 1px solid rgba(41, 52, 72, 0.16); }
.mascot-caption strong { font-size: 1rem; }
.mascot-caption span { max-width: 255px; color: var(--ink-soft); font-size: 0.75rem; line-height: 1.35; text-align: right; }
.art-note { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(41, 52, 72, 0.15); border-radius: 8px; background: var(--paper-light); box-shadow: var(--shadow-soft); font-size: 0.75rem; font-weight: 800; }
.art-note--top { top: 37px; right: -24px; transform: rotate(5deg); }
.art-note--bottom { bottom: 52px; left: -27px; transform: rotate(-6deg); }
.note-star { color: var(--orange); font-size: 1.25rem; line-height: 0; }
.note-check { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 0.8rem; }
.hero-scribble { position: absolute; right: -57px; bottom: -60px; color: var(--teal-dark); font-family: "Comic Sans MS", "Trebuchet MS", cursive; font-size: 1rem; line-height: 1.1; transform: rotate(-11deg); }
.hero-bottom-line { position: absolute; right: 0; bottom: 24px; left: 0; display: flex; justify-content: center; gap: 8px; }
.hero-bottom-line span { width: 5px; height: 5px; display: block; border-radius: 50%; background: var(--teal); opacity: 0.42; }
.hero-bottom-line span:nth-child(2) { width: 32px; border-radius: 5px; opacity: 0.75; }

/* Story */
.story-section { border-top: 1px solid var(--line); background: rgba(255, 253, 247, 0.42); }
.story-grid { display: grid; grid-template-columns: 0.3fr minmax(0, 1fr) minmax(215px, 0.53fr); gap: clamp(25px, 3.5vw, 52px); align-items: start; }
.story-copy h2 { max-width: 680px; }
.story-values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); }
.story-values div { display: grid; gap: 11px; }
.story-values strong { color: var(--teal-dark); font-size: 0.71rem; letter-spacing: 0.08em; }
.story-values span { color: var(--ink-soft); font-size: 0.78rem; line-height: 1.45; }
.story-logo-card { position: relative; overflow: visible; margin-top: 25px; padding: 15px; border-radius: 17px; background: var(--yellow); box-shadow: 9px 10px 0 rgba(47, 159, 155, 0.34); transform: rotate(4deg); }
.story-logo-card::before { position: absolute; top: -13px; left: 22px; width: 74px; height: 25px; background: rgba(255, 253, 247, 0.66); content: ""; transform: rotate(-5deg); }
.story-logo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 11px; background: white; }
.logo-card-label { display: block; margin-top: 13px; color: var(--ink); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-align: center; text-transform: uppercase; }
.sticker { position: absolute; z-index: 2; display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; color: var(--ink); font-size: 0.68rem; font-weight: 800; line-height: 1.05; text-align: center; transform: rotate(-12deg); }
.sticker--yellow { top: -44px; right: -35px; background: var(--rose); }

/* Programs */
.programs-section { background: var(--paper-deep); }
.section-heading { display: grid; grid-template-columns: 0.3fr minmax(0, 1fr) minmax(175px, 0.33fr); gap: clamp(25px, 3.5vw, 52px); align-items: start; }
.section-heading h2 { max-width: 690px; }
.heading-note { align-self: end; max-width: 210px; padding-bottom: 7px; color: var(--ink-soft); font-size: 0.8rem; line-height: 1.5; }
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 51px; }
.program-card { overflow: hidden; border: 1px solid rgba(41, 52, 72, 0.13); border-radius: 17px; background: var(--paper-light); box-shadow: 0 8px 0 rgba(41, 52, 72, 0.05); transition: transform 0.25s var(--ease), box-shadow 0.25s ease; }
.program-card:hover { box-shadow: 0 13px 0 rgba(41, 52, 72, 0.08), 0 20px 25px rgba(41, 52, 72, 0.08); transform: translateY(-7px); }
.program-card--featured { border-color: rgba(47, 159, 155, 0.5); box-shadow: 0 8px 0 rgba(47, 159, 155, 0.24); }
.program-image { position: relative; overflow: hidden; aspect-ratio: 1.62 / 1; background: var(--orange); }
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.program-card:hover .program-image img { transform: scale(1.04); }
.program-image--logo { background: var(--lilac); }
.program-image--logo img { object-position: center; }
.program-sticker { position: absolute; top: 13px; left: 13px; padding: 7px 10px; border-radius: 6px; background: var(--paper-light); color: var(--ink); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.featured-label { position: absolute; right: 13px; bottom: 13px; padding: 7px 10px; border-radius: 6px; background: var(--teal-dark); color: white; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.program-body { display: flex; min-height: 248px; flex-direction: column; padding: 18px 19px 16px; }
.program-meta { display: flex; align-items: center; gap: 7px; min-height: 20px; color: var(--teal-dark); font-size: 0.59rem; font-weight: 800; line-height: 1.2; }
.program-meta span:first-child { white-space: nowrap; }
.meta-dot { width: 4px; height: 4px; flex: none; border-radius: 50%; background: var(--orange); }
.program-body h3 { margin-top: 14px; font-size: clamp(1.28rem, 2vw, 1.62rem); }
.program-body p { max-width: 310px; margin-top: 10px; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.5; }
.program-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); }
.program-bottom strong { font-size: 1.37rem; letter-spacing: -0.04em; }
.program-bottom small { color: var(--ink-soft); font-size: 0.68rem; font-weight: 500; letter-spacing: 0; }
.program-bottom a { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-pale); color: var(--teal-dark); font-size: 1.1rem; font-weight: 800; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.program-bottom a:hover { background: var(--teal); color: white; }
.program-footnote { display: flex; align-items: center; gap: 9px; margin-top: 23px; color: var(--ink-soft); font-size: 0.79rem; }
.program-footnote span { color: var(--orange); font-size: 1.2rem; }

/* News */
.life-section { background: var(--paper-light); }
.section-heading--life { margin-bottom: 51px; }
.news-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); gap: 31px; align-items: stretch; }
.news-card--main { display: grid; grid-template-columns: minmax(210px, 0.9fr) minmax(235px, 1fr); overflow: hidden; min-height: 292px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.news-image { position: relative; min-height: 100%; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-tag { position: absolute; top: 15px; left: 15px; padding: 6px 9px; border-radius: 5px; background: var(--yellow); color: var(--ink); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.news-card-content { display: flex; flex-direction: column; padding: 21px 21px 18px; }
.news-card time, .news-mini time { color: var(--teal-dark); font-size: 0.64rem; font-weight: 800; }
.news-card-content h3 { margin-top: 14px; font-size: clamp(1.35rem, 2.3vw, 1.95rem); }
.news-card-content p { margin-top: 11px; color: var(--ink-soft); font-size: 0.83rem; line-height: 1.5; }
.inline-link, .news-mini a, .address-block a { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-dark); font-size: 0.76rem; font-weight: 800; text-decoration: none; }
.inline-link { margin-top: auto; padding-top: 22px; }
.inline-link span, .news-mini a span, .address-block a span { font-size: 1rem; transition: transform 0.2s ease; }
.inline-link:hover span, .news-mini a:hover span, .address-block a:hover span { transform: translateX(3px); }
.news-side { display: grid; align-content: center; }
.news-mini { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 17px; padding: 19px 0; border-top: 1px solid var(--line); }
.news-mini:last-child { border-bottom: 1px solid var(--line); }
.mini-number { color: var(--orange); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; }
.news-mini h3 { margin-top: 9px; font-size: 1.3rem; }
.news-mini p { max-width: 390px; margin-top: 8px; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.5; }
.news-mini a { margin-top: 12px; }

/* Gallery */
.gallery-section { overflow: hidden; background: var(--teal-pale); }
.gallery-heading { display: grid; grid-template-columns: 0.33fr minmax(0, 1fr) minmax(190px, 0.35fr); gap: clamp(28px, 4vw, 65px); align-items: start; }
.gallery-heading h2 { max-width: 650px; }
.gallery-handnote { align-self: end; padding-bottom: 10px; color: var(--teal-dark); font-family: "Comic Sans MS", "Trebuchet MS", cursive; font-size: 0.88rem; transform: rotate(-4deg); }
.gallery-handnote span { display: inline-block; margin-left: 7px; font-size: 1.2rem; }
.photo-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.65fr) minmax(210px, 0.65fr); gap: 15px; align-items: end; margin-top: 51px; }
.photo-card { position: relative; overflow: hidden; border: 6px solid var(--paper-light); border-radius: 14px; background: var(--paper-light); box-shadow: var(--shadow-soft); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.photo-card:hover img { transform: scale(1.05); }
.photo-card--wide { aspect-ratio: 1.13 / 1; transform: rotate(-2deg); }
.photo-card--tall { aspect-ratio: 0.76 / 1; transform: translateY(34px) rotate(3deg); }
.photo-card--circle { aspect-ratio: 0.94 / 1; border-radius: 50% 50% 16px 16px; transform: rotate(-3deg); }
.photo-card figcaption { position: absolute; right: 11px; bottom: 11px; left: 11px; display: grid; gap: 1px; padding: 10px 11px; border-radius: 8px; background: rgba(255, 253, 247, 0.91); }
.photo-card figcaption strong { font-size: 0.8rem; }
.photo-card figcaption span { color: var(--ink-soft); font-size: 0.66rem; }

/* Steps */
.steps-section { background: var(--orange); }
.steps-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr); gap: clamp(45px, 8vw, 105px); align-items: start; }
.steps-layout h2 { max-width: 580px; }
.steps-layout h2 em { color: var(--paper-light); }
.steps-layout .section-kicker { margin-top: 34px; color: var(--ink); }
.steps-layout .section-lead { color: rgba(41, 52, 72, 0.8); }
.steps-layout .button { margin-top: 25px; }
.steps-list { list-style: none; }
.steps-list li { display: grid; grid-template-columns: 43px minmax(0, 1fr); gap: 14px; padding: 18px 0; border-top: 1px solid rgba(41, 52, 72, 0.25); }
.steps-list li:last-child { border-bottom: 1px solid rgba(41, 52, 72, 0.25); }
.step-number { color: var(--ink); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.1em; }
.steps-list h3 { font-size: 1.4rem; }
.steps-list p { max-width: 330px; margin-top: 6px; color: rgba(41, 52, 72, 0.76); font-size: 0.87rem; line-height: 1.5; }

/* Contact */
.contact-section { padding: clamp(68px, 8vw, 108px) 0; background: var(--paper-light); }
.contact-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr); overflow: hidden; border-radius: 20px; background: var(--teal-dark); color: var(--paper-light); box-shadow: var(--shadow); }
.contact-card::before { position: absolute; right: 22%; bottom: -240px; width: 460px; height: 460px; border: 1px solid rgba(255, 253, 247, 0.18); border-radius: 50%; content: ""; box-shadow: 0 0 0 29px rgba(255, 253, 247, 0.04), 0 0 0 65px rgba(255, 253, 247, 0.03); }
.contact-copy { position: relative; z-index: 1; padding: clamp(32px, 5vw, 58px); }
.contact-copy .section-kicker { color: var(--teal-pale); }
.contact-copy h2 { max-width: 630px; color: var(--paper-light); }
.contact-copy h2 em { color: var(--yellow); }
.contact-copy > p:not(.section-kicker) { max-width: 410px; margin-top: 19px; color: rgba(255, 253, 247, 0.8); font-size: 0.91rem; }
.contact-phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--paper-light); font-size: clamp(1.15rem, 2.2vw, 1.65rem); font-weight: 800; letter-spacing: -0.04em; text-decoration: none; }
.contact-phone span { color: var(--yellow); font-size: 1.4rem; transition: transform 0.2s ease; }
.contact-phone:hover span { transform: translate(3px, -3px); }
.contact-details { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; min-height: 315px; padding: 30px 31px 31px; border-left: 1px solid rgba(255, 253, 247, 0.19); background: rgba(255, 253, 247, 0.08); }
.mini-mascot { position: absolute; top: 26px; right: 27px; width: 97px; opacity: 0.95; transform: rotate(9deg); }
.mini-mascot svg { width: 100%; }
.address-block { display: grid; gap: 8px; }
.address-block > span { color: var(--teal-pale); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.address-block strong { color: var(--paper-light); font-size: 1.07rem; line-height: 1.35; }
.address-block a { width: fit-content; margin-top: 5px; color: var(--yellow); }
.copy-address { width: fit-content; margin-top: 25px; padding: 8px 11px; border: 1px solid rgba(255, 253, 247, 0.29); border-radius: 6px; background: transparent; color: rgba(255, 253, 247, 0.79); font-size: 0.7rem; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease; }
.copy-address:hover { border-color: var(--yellow); background: rgba(255, 253, 247, 0.1); color: var(--paper-light); }
.copy-status { min-height: 20px; margin-top: 7px; color: var(--yellow); font-size: 0.7rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand--footer .brand-mark { width: 35px; height: 35px; }
.brand--footer .brand-copy strong { font-size: 1rem; }
.brand--footer .brand-copy small { font-size: 0.52rem; }
.footer-inner > p { color: var(--ink-soft); font-size: 0.71rem; line-height: 1.4; text-align: center; }
.footer-top { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: 0.78rem; font-weight: 800; text-decoration: none; }
.footer-top span { font-size: 1.1rem; }

/* Reveal */
[data-reveal] { opacity: 1; transform: none; transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
html.js [data-reveal] { opacity: 0; transform: translateY(22px); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .container { width: min(100% - 48px, 900px); }
  .main-nav { gap: 0; }
  .main-nav a { padding-inline: 8px; font-size: 0.8rem; }
  .phone-text { display: none; }
  .phone-label { display: inline; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr); gap: 40px; }
  h1 { font-size: clamp(3.1rem, 6.9vw, 5.4rem); }
  .story-grid, .section-heading, .gallery-heading { grid-template-columns: 0.25fr minmax(0, 1fr) minmax(175px, 0.42fr); gap: 28px; }
  .program-body { padding-inline: 17px; }
  .program-meta { flex-wrap: wrap; }
  .program-meta span:first-child { white-space: normal; }
  .photo-grid { grid-template-columns: 1.12fr 0.75fr 0.75fr; }
  .steps-layout { gap: 60px; }
}

@media (max-width: 780px) {
  .container { width: calc(100% - 36px); }
  .header-inner { min-width: 0; min-height: 70px; gap: 14px; }
  .brand, .brand-copy, .hero-grid, .hero-copy, .hero-copy h1, .hero-lead { min-width: 0; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 253, 247, 0.98); box-shadow: var(--shadow-soft); }
  .site-header.is-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 13px; font-size: 0.9rem; }
  .header-phone { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-section { min-height: auto; padding-top: 60px; padding-bottom: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-art { width: min(100%, 570px); margin: 30px auto 0; justify-self: center; }
  .story-grid, .section-heading, .gallery-heading { grid-template-columns: 1fr; gap: 19px; }
  .section-marker { padding-top: 0; }
  .heading-note { max-width: 480px; padding-bottom: 0; }
  .story-logo-card { max-width: 310px; margin: 46px auto 0; }
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .program-card:last-child { grid-column: 1 / -1; width: min(100%, calc(50% - 9px)); margin-inline: auto; }
  .news-grid { grid-template-columns: 1fr; gap: 35px; }
  .news-card--main { max-width: 680px; }
  .news-side { max-width: 680px; }
  .photo-grid { grid-template-columns: 1fr 0.8fr; max-width: 680px; }
  .photo-card--wide { grid-row: span 2; aspect-ratio: 0.88 / 1; }
  .photo-card--tall { transform: translateY(0) rotate(3deg); }
  .photo-card--circle { aspect-ratio: 1 / 0.85; border-radius: 14px; transform: rotate(-3deg); }
  .gallery-handnote { padding-bottom: 0; }
  .steps-layout { grid-template-columns: 1fr; gap: 57px; }
  .steps-layout .section-kicker { margin-top: 35px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-details { min-height: 290px; border-top: 1px solid rgba(255, 253, 247, 0.19); border-left: 0; }
  .footer-inner { min-height: 125px; flex-wrap: wrap; padding-block: 24px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 30px); }
  .header-inner { position: static; display: flex; padding-right: 0; }
  .header-phone { position: fixed; top: 16px; right: 63px; z-index: 25; flex: none; margin-left: 0; }
  .menu-toggle { position: fixed; top: 14px; right: 15px; z-index: 25; flex: none; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy small { font-size: 0.55rem; }
  .brand-mark { width: 38px; height: 38px; }
  .header-phone { width: 38px; min-height: 38px; justify-content: center; padding: 6px; }
  .header-phone .phone-label { display: none; }
  .hero-section { padding-top: 58px; padding-bottom: 77px; }
  h1 { font-size: clamp(2.4rem, 11.8vw, 3.6rem); }
  .hero-copy h1 em { display: inline; }
  .hero-mobile-break { display: inline; }
  .hero-copy { width: calc(100vw - 30px); max-width: calc(100vw - 30px); }
  .hero-copy h1 { width: 100%; max-width: 100%; text-wrap: wrap; }
  .hero-lead { width: 100%; max-width: min(100%, 340px); text-wrap: wrap; white-space: normal; overflow-wrap: break-word; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.45rem); }
  .section { padding: 62px 0; }
  .hero-lead { margin-top: 23px; font-size: 0.92rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .text-button { justify-content: center; }
  .hero-proof { margin-top: 29px; }
  .mascot-stage { min-height: 410px; padding-inline: 10px; }
  .mascot-stage::before { inset: 13px; }
  .mascot-caption { right: 18px; bottom: 17px; left: 18px; }
  .mascot-caption span { max-width: 190px; font-size: 0.65rem; }
  .math-symbol--one { top: 54px; left: 30px; }
  .math-symbol--two { top: 110px; right: 33px; }
  .math-symbol--three { right: 38px; bottom: 78px; }
  .art-note { padding: 8px 10px; font-size: 0.65rem; }
  .art-note--top { top: 27px; right: -3px; }
  .art-note--bottom { bottom: 49px; left: -4px; }
  .hero-scribble { right: -9px; bottom: -50px; font-size: 0.8rem; }
  .story-values { grid-template-columns: 1fr; gap: 16px; }
  .story-values div { grid-template-columns: 26px 1fr; gap: 8px; }
  .story-logo-card { width: min(76vw, 285px); }
  .program-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
  .program-card:last-child { grid-column: auto; width: 100%; }
  .program-image { aspect-ratio: 1.4 / 1; }
  .program-body { min-height: 230px; }
  .program-footnote { align-items: flex-start; }
  .news-card--main { grid-template-columns: 1fr; }
  .news-image { height: 250px; min-height: 0; }
  .news-card-content { min-height: 250px; }
  .news-mini { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .photo-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 47px; }
  .photo-card--wide, .photo-card--tall, .photo-card--circle { grid-row: auto; aspect-ratio: 1.1 / 1; transform: none; border-radius: 13px; }
  .photo-card--tall { aspect-ratio: 0.9 / 1; }
  .photo-card--circle { aspect-ratio: 1.1 / 0.9; }
  .contact-copy { padding: 37px 25px 44px; }
  .contact-details { min-height: 255px; padding: 28px 25px; }
  .contact-phone { font-size: 1.18rem; }
  .mini-mascot { right: 19px; width: 75px; }
  .footer-inner { align-items: flex-start; justify-content: center; gap: 18px; text-align: center; }
  .footer-inner > p { order: 3; flex-basis: 100%; }
}

@media (max-width: 420px) {
  .header-inner { position: static; padding-right: 0; }
  .header-phone { position: static; margin-left: auto; }
  .menu-toggle { position: static; }
}
