:root {
    --green-900: #214f43;
    --green-800: #2d6655;
    --green-700: #3d7b67;
    --green-600: #4d8c76;
    --green-200: #cfe6dc;
    --green-100: #eaf5ef;
    --blue-800: #315a6c;
    --blue-200: #d5eaf0;
    --blue-100: #ecf7f9;
    --sun-500: #f1b94f;
    --sun-200: #f9dea0;
    --sun-100: #fff5d9;
    --peach-500: #ef9c7e;
    --peach-200: #f7d1c3;
    --peach-100: #fff0ea;
    --rose-100: #fbeaec;
    --violet-100: #eee9fa;
    --cream: #fffaf1;
    --paper: #ffffff;
    --ink: #27343b;
    --muted: #64737a;
    --line: #dfe7e4;
    --shadow: 0 20px 60px rgba(38, 78, 65, .12);
    --shadow-soft: 0 12px 36px rgba(38, 78, 65, .09);
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1200px;
    --font-sans: "Segoe UI", "Be Vietnam Pro", Arial, sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
svg { display: block; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--green-900); line-height: 1.2; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
::selection { background: var(--sun-200); color: var(--green-900); }
:focus-visible { outline: 3px solid var(--sun-500); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; overflow: clip; }
.section--tight-top { padding-top: 35px; }
.section--cream { background: var(--cream); }
.section--soft-green { background: var(--green-100); }
.section--soft-blue { background: var(--blue-100); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--with-action { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading--with-action > p { max-width: 470px; margin-bottom: 0; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p:last-child { margin-bottom: 0; }
.section-copy h2 { margin-bottom: 22px; }
.section-copy > p { font-size: 1.04rem; margin-bottom: 18px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--green-700); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--sun-500); border-radius: 999px; }
.eyebrow span { display: none; }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--sun-200); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: 12px; transform: translateY(-160%); background: var(--green-900); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { transform: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 12px 25px; border: 2px solid var(--green-700); border-radius: 999px; background: var(--green-700); color: #fff; font-weight: 750; line-height: 1.1; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-900); border-color: var(--green-900); box-shadow: 0 12px 28px rgba(33,79,67,.18); }
.button--small { min-height: 42px; padding: 9px 18px; font-size: .9rem; }
.button--outline { background: transparent; color: var(--green-800); }
.button--outline:hover { color: #fff; }
.button--sun { background: var(--sun-500); border-color: var(--sun-500); color: var(--green-900); }
.button--sun:hover { background: #ffd170; border-color: #ffd170; color: var(--green-900); }
.button--ghost-light { background: transparent; border-color: rgba(255,255,255,.65); color: #fff; }
.button--ghost-light:hover { background: #fff; color: var(--green-900); border-color: #fff; }
.button--full { width: 100%; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.topbar { background: var(--green-900); color: rgba(255,255,255,.86); font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p, .topbar a { color: inherit; margin: 0; }
.topbar p, .topbar__links, .topbar__links a { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; }
.topbar__links { gap: 22px; }
.topbar a:hover { color: var(--sun-200); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(53,94,80,.08); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(26,56,47,.1); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 58px; height: 58px; }
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong { color: var(--green-800); font-size: 1.28rem; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; color: var(--peach-500); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > a:not(.button) { position: relative; padding: 12px 11px; color: #40524f; font-size: .9rem; font-weight: 650; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 6px; height: 2px; background: var(--peach-500); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a.is-active::after { transform: scaleX(1); }
.primary-nav > a.is-active { color: var(--green-800); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 14px; background: var(--green-100); }
.nav-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--green-800); transition: transform .2s ease, opacity .2s ease; }
.nav-open .nav-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle > span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.flash-stack { position: fixed; right: 25px; top: 110px; z-index: 1100; max-width: 430px; }
.flash { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 15px 18px; margin-bottom: 10px; border-radius: 14px; border: 1px solid; box-shadow: var(--shadow-soft); background: #fff; }
.flash p { margin: 0; color: inherit; }
.flash button { border: 0; background: transparent; color: inherit; font-size: 1.25rem; line-height: 1; }
.flash--success { color: #25684f; border-color: #8ed1b6; background: #edfbf5; }
.flash--error { color: #8d3e3e; border-color: #eab0b0; background: #fff1f1; }
.flash--warning { color: #7f5a19; border-color: #e9cb8e; background: #fff8e7; }
.flash--info { color: #315b75; border-color: #a8cada; background: #f0f9fc; }
.flash--leaving { opacity: 0; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }

.hero { position: relative; overflow: hidden; }
.hero--home { min-height: 730px; padding: 78px 0 100px; background: linear-gradient(135deg, #f4fbf7 0%, #fff8e9 58%, #fff0eb 100%); }
.hero__grid, .page-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 55px; }
.hero__content { position: relative; z-index: 2; max-width: 650px; }
.hero__content h1 { margin-bottom: 24px; }
.hero__content h1 em, .page-hero h1 em { color: var(--peach-500); font-family: var(--font-display); font-weight: 500; }
.hero__lead { max-width: 610px; font-size: 1.1rem; }
.hero__actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; margin-top: 30px; }
.hero__assurances { display: flex; gap: 22px; flex-wrap: wrap; padding: 0; margin: 28px 0 0; list-style: none; color: #52665f; font-size: .89rem; font-weight: 650; }
.hero__assurances span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; border-radius: 50%; background: var(--green-200); color: var(--green-800); }
.hero__visual { position: relative; z-index: 2; }
.hero__image-wrap { position: relative; padding: 20px; border-radius: 48% 52% 47% 53% / 56% 44% 56% 44%; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.hero__image-wrap::before { content: ""; position: absolute; inset: -18px; border: 2px dashed rgba(77,140,118,.22); border-radius: inherit; transform: rotate(-3deg); }
.hero__image-wrap img { position: relative; width: 100%; border-radius: inherit; }
.hero-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-soft); }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { color: var(--green-900); font-size: .9rem; }
.hero-note span { color: var(--muted); font-size: .74rem; }
.hero-note--top { top: 8%; right: -3%; display: block; transform: rotate(3deg); }
.hero-note--bottom { left: -8%; bottom: 8%; }
.hero-note__heart { display: grid !important; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: var(--peach-100); color: var(--peach-500) !important; font-size: 1.15rem !important; }
.hero__decor { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero__decor--one { width: 340px; height: 340px; right: -150px; top: -100px; background: rgba(213,234,240,.65); }
.hero__decor--two { width: 230px; height: 230px; left: -120px; bottom: 30px; background: rgba(247,209,195,.55); }
.hero__wave { position: absolute; left: -5%; right: -5%; bottom: -62px; height: 115px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: #fff; }

.trust-strip { position: relative; z-index: 5; margin-top: -30px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.trust-item { display: flex; align-items: center; gap: 13px; min-height: 74px; padding: 9px 16px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 16px; font-weight: 800; }
.trust-item__icon--green { background: var(--green-100); color: var(--green-800); }
.trust-item__icon--sun { background: var(--sun-100); color: #9f7221; }
.trust-item__icon--peach { background: var(--peach-100); color: #aa624c; }
.trust-item__icon--blue { background: var(--blue-100); color: var(--blue-800); }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--green-900); font-size: .89rem; }
.trust-item small { color: var(--muted); font-size: .73rem; line-height: 1.4; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split-layout--image-left > :first-child { order: 0; }
.image-collage { position: relative; padding: 20px 35px 35px 10px; }
.image-collage__main { overflow: hidden; border-radius: 42% 58% 38% 62% / 48% 44% 56% 52%; background: var(--blue-100); box-shadow: var(--shadow); }
.image-collage__main img { width: 100%; }
.image-collage__main::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.image-collage__badge { position: absolute; right: -3%; bottom: 6%; display: grid; place-items: center; width: 145px; height: 145px; border: 8px solid #fff; border-radius: 50%; background: var(--sun-500); color: var(--green-900); text-align: center; transform: rotate(-8deg); box-shadow: var(--shadow-soft); line-height: 1.2; }
.image-collage__badge span, .image-collage__badge strong { display: block; }
.image-collage__badge strong { font-family: var(--font-display); font-size: 1.25rem; }
.image-collage__dots { position: absolute; left: 0; bottom: 0; width: 100px; height: 70px; background-image: radial-gradient(var(--peach-500) 2px, transparent 2px); background-size: 15px 15px; opacity: .35; }
.signature-line { display: flex; gap: 13px; margin: 28px 0; padding: 18px 20px; border-left: 4px solid var(--peach-500); background: var(--peach-100); border-radius: 0 16px 16px 0; }
.signature-line span { color: var(--peach-500); font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.signature-line p { margin: 0; color: var(--green-900); font-family: var(--font-display); font-size: 1.1rem; font-style: italic; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { position: relative; min-height: 315px; padding: 34px 28px; border: 1px solid rgba(56,105,88,.08); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 8px 30px rgba(32,73,60,.06); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.value-card__number { position: absolute; right: 20px; top: 15px; color: rgba(39,52,59,.08); font-size: 3.6rem; font-weight: 900; }
.value-card__icon { display: grid; place-items: center; width: 65px; height: 65px; margin-bottom: 27px; border-radius: 21px; font-size: 1.65rem; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { margin: 0; font-size: .92rem; }
.value-card--green .value-card__icon { background: var(--green-100); color: var(--green-800); }
.value-card--sun .value-card__icon { background: var(--sun-100); color: #9c7024; }
.value-card--peach .value-card__icon { background: var(--peach-100); color: #a65e48; }
.value-card--blue .value-card__icon { background: var(--blue-100); color: var(--blue-800); }

.program-tabs { display: grid; grid-template-columns: 275px 1fr; gap: 28px; align-items: stretch; }
.program-tabs__nav { display: grid; gap: 10px; align-content: start; }
.program-tabs__nav button { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; padding: 19px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--green-900); text-align: left; font-weight: 800; transition: background .2s ease, color .2s ease, transform .2s ease; }
.program-tabs__nav button small { color: var(--muted); font-weight: 600; }
.program-tabs__nav button:hover { transform: translateX(4px); }
.program-tabs__nav button.is-active { background: var(--green-800); color: #fff; border-color: var(--green-800); box-shadow: var(--shadow-soft); }
.program-tabs__nav button.is-active small { color: rgba(255,255,255,.75); }
.program-tabs__content { min-height: 530px; }
.program-panel { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 45px; min-height: 530px; padding: 45px; border-radius: var(--radius-xl); background: var(--cream); box-shadow: inset 0 0 0 1px rgba(104,83,36,.05); }
.program-panel[hidden] { display: none; }
.program-panel h3 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
.program-panel img { border-radius: 30px; width: 100%; }
.check-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 31px; color: #50615d; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--green-200); color: var(--green-800); font-size: .72rem; font-weight: 900; }
.check-list--boxed li { padding: 14px 16px 14px 47px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.72); }
.check-list--boxed li::before { left: 16px; top: 15px; }

.daily-section__image { margin-top: 34px; border-radius: var(--radius-lg); }
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 69px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(var(--green-200), var(--peach-200)); }
.timeline li { position: relative; display: grid; grid-template-columns: 105px 1fr; gap: 25px; padding: 0 0 30px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline time { position: relative; z-index: 2; display: grid; place-items: center; width: 64px; height: 43px; border-radius: 14px; background: #fff; color: var(--green-800); box-shadow: var(--shadow-soft); font-size: .82rem; font-weight: 850; }
.timeline h3 { margin-bottom: 5px; font-size: 1.05rem; }
.timeline p { margin: 0; font-size: .89rem; }

.activity-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 22px; }
.activity-card { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.activity-card img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; background: var(--cream); }
.activity-card--large img { aspect-ratio: 1.65 / 1; }
.activity-card > div { padding: 25px; }
.activity-card span { color: var(--peach-500); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.activity-card h3 { margin: 8px 0 10px; }
.activity-card p { margin: 0; font-size: .9rem; }
.care-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.care-section__visual img { border-radius: var(--radius-xl); }
.feature-list { display: grid; gap: 12px; margin: 28px 0; }
.feature-list article { display: flex; gap: 17px; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.75); border: 1px solid rgba(49,90,108,.08); }
.feature-list article > span { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 13px; background: var(--blue-200); color: var(--blue-800); font-weight: 850; font-size: .77rem; }
.feature-list h3 { margin-bottom: 4px; font-size: 1.03rem; }
.feature-list p { margin: 0; font-size: .87rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.news-card__image { position: relative; display: block; overflow: hidden; aspect-ratio: 1.55 / 1; background: var(--green-100); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__image > span { position: absolute; left: 16px; top: 16px; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.93); color: var(--green-800); font-size: .7rem; font-weight: 850; }
.news-card__body { padding: 24px; }
.news-card time { color: var(--peach-500); font-size: .75rem; font-weight: 750; }
.news-card h3 { margin: 8px 0 11px; font-size: 1.17rem; }
.news-card h3 a:hover { color: var(--green-700); }
.news-card p { min-height: 72px; margin-bottom: 18px; font-size: .88rem; }
.news-card .text-link { font-size: .86rem; }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; border: 1px dashed var(--line); border-radius: var(--radius-lg); background: var(--cream); text-align: center; }
.empty-state img { margin: 0 auto 18px; }
.empty-state h2 { font-size: 1.7rem; }

.global-cta { padding: 65px 0; background: var(--green-800); color: #fff; overflow: hidden; }
.global-cta__inner { display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 50px; }
.global-cta h2 { margin-bottom: 13px; color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
.global-cta p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.75); }
.global-cta__actions { display: flex; align-items: center; justify-content: end; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 75px 0 25px; background: #183e35; color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr .95fr; gap: 50px; }
.brand--footer .brand__text strong { color: #fff; }
.footer-brand > p, .site-footer p { color: rgba(255,255,255,.67); font-size: .88rem; }
.footer-brand > p { max-width: 330px; margin-top: 20px; }
.site-footer h3 { color: #fff; font-size: .98rem; margin: 11px 0 20px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: rgba(255,255,255,.68); font-size: .86rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--sun-200); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; font-weight: 800; }
.social-links a:hover { background: var(--sun-500); color: var(--green-900); border-color: var(--sun-500); }
.newsletter-form { display: flex; margin-top: 18px; }
.newsletter-form input[type="email"] { min-width: 0; flex: 1; height: 46px; padding: 0 15px; border: 1px solid rgba(255,255,255,.2); border-right: 0; border-radius: 13px 0 0 13px; background: rgba(255,255,255,.07); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { width: 48px; border: 0; border-radius: 0 13px 13px 0; background: var(--sun-500); color: var(--green-900); font-weight: 900; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom p { margin: 0; font-size: .76rem; }
.site-footer__bottom div { display: flex; gap: 18px; color: rgba(255,255,255,.58); font-size: .75rem; }
.site-footer__bottom a:hover { color: #fff; }
.floating-contact { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 55px; height: 55px; border: 4px solid #fff; border-radius: 50%; background: var(--peach-500); color: #fff; box-shadow: 0 10px 30px rgba(128,62,43,.3); }
.floating-contact svg { width: 24px; height: 24px; fill: currentColor; }

/* Page hero */
.page-hero { position: relative; padding: 75px 0 85px; overflow: hidden; background: linear-gradient(135deg, var(--green-100), var(--cream)); }
.page-hero::after { content: ""; position: absolute; right: -130px; top: -150px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.55); }
.page-hero--admission { background: linear-gradient(135deg, #eef8f3, #fff4dc); }
.page-hero--recruitment { background: linear-gradient(135deg, #eff8f8, #fff0ea); }
.page-hero--contact { background: linear-gradient(135deg, #fff7e7, #edf7f2); }
.page-hero--news { background: linear-gradient(135deg, #eef7f9, #fff3ed); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content h1 { margin-bottom: 21px; font-size: clamp(2.4rem, 4.6vw, 4.3rem); }
.page-hero__content > p:last-of-type { max-width: 650px; font-size: 1.05rem; }
.page-hero__visual { position: relative; z-index: 2; }
.page-hero__visual > img { width: 100%; border-radius: var(--radius-xl); }
.page-hero__badge { position: absolute; left: -20px; bottom: 20px; padding: 14px 18px; border-radius: 17px; background: #fff; box-shadow: var(--shadow-soft); }
.page-hero__badge strong, .page-hero__badge span { display: block; }
.page-hero__badge strong { color: var(--green-900); }
.page-hero__badge span { color: var(--muted); font-size: .75rem; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: #6c7d78; font-size: .76rem; }
.breadcrumbs a:hover { color: var(--green-800); }
.page-hero--compact { padding: 70px 0; }
.page-hero--compact .container { max-width: 850px; }
.page-hero--compact h1 { margin-bottom: 10px; }

/* About */
.story-gallery { position: relative; min-height: 560px; }
.story-gallery__main { width: 82%; border-radius: 45% 55% 36% 64% / 52% 42% 58% 48%; box-shadow: var(--shadow); }
.story-gallery__small { position: absolute; right: 0; bottom: 0; width: 47%; border: 9px solid #fff; border-radius: 50% 50% 42% 58%; box-shadow: var(--shadow-soft); }
.story-gallery__stamp { position: absolute; right: 7%; top: 5%; display: grid; place-items: center; width: 128px; height: 128px; border-radius: 50%; background: var(--sun-500); color: var(--green-900); text-align: center; font-size: .75rem; transform: rotate(8deg); }
.story-gallery__stamp strong { font-family: var(--font-display); font-size: 1rem; }
.quote-card { position: relative; margin-top: 25px; padding: 25px 25px 25px 58px; border-radius: 20px; background: var(--green-100); }
.quote-card > span { position: absolute; left: 19px; top: 9px; color: var(--green-600); font-family: var(--font-display); font-size: 3.4rem; }
.quote-card p { margin: 0; color: var(--green-900); font-family: var(--font-display); font-style: italic; }
.philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.philosophy-card { padding: 30px; border-radius: var(--radius-lg); background: #fff; }
.philosophy-card > span { display: block; margin-bottom: 25px; color: var(--peach-500); font-weight: 900; font-size: .8rem; }
.philosophy-card h3 { min-height: 56px; }
.philosophy-card p { margin: 0; font-size: .9rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.mission-card { min-height: 355px; padding: 38px; border-radius: var(--radius-xl); }
.mission-card h2 { font-size: 2rem; }
.mission-card--green { background: var(--green-800); color: #fff; }
.mission-card--green h2 { color: #fff; }
.mission-card--green p { color: rgba(255,255,255,.75); }
.mission-card--peach { background: var(--peach-100); }
.mission-card--cream { background: var(--sun-100); }
.accordion { display: grid; gap: 11px; }
.accordion__item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.accordion__item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 18px 20px; border: 0; background: transparent; color: var(--green-900); text-align: left; font-weight: 750; }
.accordion__item button b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green-100); transition: transform .2s ease; }
.accordion__item.is-open button b { transform: rotate(45deg); }
.accordion__content { padding: 0 20px 18px; }
.accordion__content p { margin: 0; font-size: .9rem; }
.care-principles__visual { position: relative; }
.care-principles__visual img { border-radius: var(--radius-xl); }
.care-principles__note { position: absolute; left: -30px; bottom: 22px; padding: 18px 21px; border-radius: 18px; background: var(--green-800); color: #fff; box-shadow: var(--shadow-soft); }
.care-principles__note strong, .care-principles__note span { display: block; }
.care-principles__note strong { font-size: 1.4rem; }
.care-principles__note span { color: rgba(255,255,255,.75); font-size: .75rem; }
.facility-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 22px; }
.facility-card { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.facility-card img { width: 100%; aspect-ratio: 1.25/1; object-fit: cover; background: var(--blue-100); }
.facility-card--wide img { aspect-ratio: 1.55/1; }
.facility-card div { padding: 24px; }
.facility-card h3 { margin-bottom: 7px; }
.facility-card p { margin: 0; font-size: .88rem; }
.team-section__visual img { border-radius: var(--radius-xl); }

/* Forms */
.form-card { padding: 38px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.form-card__heading { margin-bottom: 26px; }
.form-card__heading > span { color: var(--peach-500); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-card__heading h2, .form-card__heading h3 { margin: 7px 0 8px; }
.form-card__heading h3 { font-size: 1.7rem; }
.form-card__heading p { margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > span { color: #455852; font-size: .79rem; font-weight: 750; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea, .news-filter input, .news-filter select { width: 100%; border: 1px solid #cedbd6; border-radius: 12px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 48px; padding: 0 14px; }
.field textarea { padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .news-filter input:focus, .news-filter select:focus { outline: 0; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(77,140,118,.12); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: #5e6f69; font-size: .77rem; }
.consent input { margin-top: 4px; accent-color: var(--green-700); }
.form-privacy, .form-note { margin: 12px 0 0; color: #7c8985; font-size: .72rem; }

/* Admission */
.admission-note { background: var(--green-800); color: #fff; }
.admission-note__inner { min-height: 62px; display: flex; align-items: center; gap: 25px; }
.admission-note span { flex: 0 0 auto; padding: 6px 12px; border-radius: 999px; background: var(--sun-500); color: var(--green-900); font-size: .75rem; font-weight: 850; }
.admission-note p { flex: 1; margin: 0; color: rgba(255,255,255,.78); font-size: .85rem; }
.admission-note a { color: var(--sun-200); font-weight: 750; }
.age-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.age-card { min-height: 430px; padding: 25px 21px; border-radius: 25px; }
.age-card__top { display: grid; justify-items: start; min-height: 145px; }
.age-card__top > span { font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.age-card__top strong { color: var(--green-900); font-size: 3.2rem; line-height: 1; }
.age-card__top small { color: var(--muted); }
.age-card h3 { margin-bottom: 10px; }
.age-card p { font-size: .84rem; }
.age-card ul { padding-left: 18px; margin-bottom: 0; color: #52635e; font-size: .78rem; }
.age-card--blue { background: var(--blue-100); }
.age-card--green { background: var(--green-100); }
.age-card--sun { background: var(--sun-100); }
.age-card--peach { background: var(--peach-100); }
.age-card--violet { background: var(--violet-100); }
.reason-list { display: grid; gap: 16px; margin-top: 28px; }
.reason-list article { display: grid; grid-template-columns: 50px 1fr; gap: 15px; }
.reason-list article > span { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 15px; background: #fff; color: var(--green-800); font-weight: 850; box-shadow: var(--shadow-soft); }
.reason-list h3 { margin-bottom: 4px; }
.reason-list p { margin: 0; font-size: .88rem; }
.why-admission__visual { position: relative; }
.why-admission__visual > img { border-radius: var(--radius-xl); }
.stat-card { position: absolute; right: -28px; bottom: 28px; display: flex; align-items: center; gap: 14px; padding: 17px 20px; border-radius: 18px; background: var(--green-800); color: #fff; box-shadow: var(--shadow-soft); }
.stat-card strong { font-size: 2.2rem; }
.stat-card span { font-size: .75rem; line-height: 1.45; color: rgba(255,255,255,.75); }
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0; margin: 0; }
.process-card { position: relative; min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.process-card > span { position: absolute; right: 20px; top: 18px; color: rgba(39,52,59,.09); font-size: 3rem; font-weight: 900; }
.process-card__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 25px; border-radius: 19px; background: var(--green-100); color: var(--green-800); font-size: 1.3rem; }
.process-card p { margin: 0; font-size: .87rem; }
.admission-documents__visual img { border-radius: var(--radius-xl); }
.document-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; }
.document-list li { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 15px; background: rgba(255,255,255,.8); }
.document-list li > span { display: grid; place-items: center; width: 37px; height: 37px; flex: 0 0 auto; border-radius: 12px; background: var(--blue-200); color: var(--blue-800); font-size: .72rem; font-weight: 850; }
.document-list strong, .document-list small { display: block; }
.document-list small { color: var(--muted); }
.admission-form-section, .recruitment-form-section { padding: 105px 0; background: var(--green-800); }
.admission-form-section__grid, .recruitment-form-section__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; }
.admission-form-section__copy h2, .recruitment-form-section__copy h2 { color: #fff; }
.admission-form-section__copy > p, .recruitment-form-section__copy > p { color: rgba(255,255,255,.75); }
.admission-form-section__copy ul { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; color: rgba(255,255,255,.85); }
.admission-form-section__copy li span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 7px; border-radius: 50%; background: var(--sun-500); color: var(--green-900); font-size: .72rem; }
.contact-inline, .recruitment-contact { display: grid; margin-top: 25px; }
.contact-inline span, .recruitment-contact span { color: rgba(255,255,255,.6); font-size: .75rem; }
.contact-inline a, .recruitment-contact a { color: var(--sun-200); font-size: 1.35rem; font-weight: 850; }
.faq-section__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }

/* Recruitment */
.culture-section__visual img { border-radius: var(--radius-xl); }
.culture-points { display: grid; gap: 13px; margin-top: 25px; }
.culture-points article { display: flex; gap: 15px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 16px; }
.culture-points article > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 14px; background: var(--peach-100); color: var(--peach-500); }
.culture-points h3 { margin-bottom: 3px; font-size: 1rem; }
.culture-points p { margin: 0; font-size: .84rem; }
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.job-card { padding: 32px; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 7px 25px rgba(37,79,65,.07); }
.job-card__head { display: flex; align-items: center; gap: 15px; margin-bottom: 17px; }
.job-card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: var(--green-100); color: var(--green-800); font-weight: 900; }
.job-card__head small { color: var(--peach-500); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.job-card__head h3 { margin: 3px 0 0; }
.job-card > p { font-size: .9rem; }
.job-card ul { margin: 20px 0; padding-left: 20px; color: #53645f; font-size: .85rem; }
.job-card > a { color: var(--green-800); font-weight: 800; }
.role-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role-detail-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.role-detail-card > span { color: var(--peach-500); font-weight: 900; }
.role-detail-card h3 { margin-top: 18px; }
.role-detail-card--highlight { background: var(--green-800); border-color: var(--green-800); }
.role-detail-card--highlight h3, .role-detail-card--highlight > span { color: #fff; }
.role-detail-card--highlight .bullet-list { color: rgba(255,255,255,.8); }
.bullet-list { padding-left: 20px; color: #53645f; font-size: .87rem; }
.bullet-list li { margin-bottom: 9px; }
.hiring-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; margin: 0; }
.hiring-steps li { position: relative; padding: 30px; border-right: 1px solid #e5ddcd; }
.hiring-steps li:last-child { border-right: 0; }
.hiring-steps span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 50%; background: var(--sun-500); color: var(--green-900); font-weight: 900; }
.hiring-steps p { margin: 0; font-size: .87rem; }
.recruitment-contact + .recruitment-contact { margin-top: 14px; }

/* Contact */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-info-card { min-height: 265px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contact-info-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 15px; background: var(--green-100); color: var(--green-800); font-size: 1.2rem; }
.contact-info-card > small { color: var(--peach-500); font-weight: 800; text-transform: uppercase; font-size: .68rem; }
.contact-info-card h2 { margin: 8px 0 10px; font-size: 1.23rem; }
.contact-info-card p { margin-bottom: 10px; font-size: .88rem; }
.contact-info-card > a { color: var(--green-800); font-weight: 800; font-size: .83rem; }
.contact-info-card__note { color: #82908c; font-size: .72rem; }
.contact-main-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 45px; align-items: start; }
.contact-aside { overflow: hidden; border-radius: var(--radius-xl); background: var(--green-800); color: #fff; }
.contact-aside > img { width: 100%; background: var(--green-100); }
.contact-aside__content { padding: 32px; }
.contact-aside__content h2 { color: #fff; font-size: 1.7rem; }
.contact-aside__content .check-list li { color: rgba(255,255,255,.8); }
.contact-aside__content .check-list li::before { background: var(--sun-500); color: var(--green-900); }
.contact-aside__content .button--outline { border-color: rgba(255,255,255,.65); color: #fff; }
.map-section { padding: 80px 0 0; }
.map-section__header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.map-section__header h2 { margin-bottom: 0; }
.map-section__header > p { max-width: 450px; margin-bottom: 5px; text-align: right; }
.map-frame { height: 480px; background: var(--blue-100); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.contact-department-list { display: grid; gap: 13px; }
.contact-department-list article { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; }
.contact-department-list article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--green-100); color: var(--green-800); font-weight: 850; font-size: .75rem; }
.contact-department-list h3 { margin-bottom: 5px; }
.contact-department-list p { margin: 0 0 5px; font-size: .85rem; }
.contact-department-list a { color: var(--green-800); font-weight: 750; font-size: .82rem; }

/* News listing */
.news-filter-section { padding: 26px 0; border-bottom: 1px solid var(--line); background: #fff; }
.news-filter { display: flex; align-items: center; gap: 12px; }
.news-search { position: relative; flex: 1; max-width: 530px; }
.news-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; fill: none; stroke: var(--muted); stroke-width: 2; }
.news-search input { height: 45px; padding: 0 15px 0 45px; }
.news-category select { min-width: 220px; height: 45px; padding: 0 13px; }
.filter-reset { color: var(--muted); font-size: .8rem; text-decoration: underline; }
.featured-news { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 50px; padding: 25px; border-radius: var(--radius-xl); background: var(--green-100); }
.featured-news__image { position: relative; overflow: hidden; border-radius: 27px; aspect-ratio: 1.55/1; }
.featured-news__image img { width: 100%; height: 100%; object-fit: cover; }
.featured-news__image span { position: absolute; left: 18px; top: 18px; padding: 7px 12px; border-radius: 999px; background: #fff; color: var(--green-800); font-size: .72rem; font-weight: 850; }
.featured-news__content { padding-right: 25px; }
.featured-news__content time { color: var(--peach-500); font-size: .8rem; font-weight: 750; }
.featured-news__content h2 { margin: 10px 0 16px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.news-grid--listing { row-gap: 34px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 45px; }
.pagination a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; color: var(--green-800); font-weight: 800; }
.pagination a.is-current, .pagination a:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }

/* Article */
.article-header { padding: 65px 0 55px; background: var(--cream); text-align: center; }
.article-header__inner { max-width: 900px; }
.article-header .breadcrumbs { justify-content: center; }
.article-category { display: inline-block; margin: 10px 0 16px; padding: 7px 13px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: .73rem; font-weight: 850; }
.article-header h1 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.article-excerpt { max-width: 760px; margin: 0 auto 18px; font-size: 1.05rem; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; color: #7a8984; font-size: .78rem; }
.draft-banner { margin-bottom: 15px; padding: 10px 14px; border-radius: 12px; background: var(--sun-100); color: #7b5b20; font-weight: 750; }
.article-cover { max-width: 1100px; margin-top: 40px; }
.article-cover img { width: 100%; max-height: 640px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.article-layout { display: grid; grid-template-columns: 70px minmax(0, 760px) 260px; gap: 35px; align-items: start; padding-top: 65px; padding-bottom: 100px; }
.article-share { position: sticky; top: 120px; display: grid; justify-items: center; gap: 10px; }
.article-share > span { color: var(--muted); font-size: .66rem; font-weight: 800; text-transform: uppercase; writing-mode: vertical-rl; margin-bottom: 8px; }
.article-share a, .article-share button { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--green-800); font-weight: 850; }
.article-share button { padding: 0; }
.article-aside { position: sticky; top: 120px; }
.article-aside__card { padding: 25px; border-radius: var(--radius-lg); background: var(--green-100); text-align: center; }
.article-aside__card img { margin: 0 auto 10px; }
.article-aside__card .eyebrow { justify-content: center; }
.article-aside__card h2 { font-size: 1.35rem; }
.article-aside__card p { font-size: .82rem; }
.news-article { color: #3c4a4f; font-size: 1.02rem; line-height: 1.85; }
.news-article > :first-child { margin-top: 0; }
.news-article h2 { margin: 48px 0 16px; font-size: 2rem; }
.news-article h3 { margin: 36px 0 12px; font-size: 1.45rem; }
.news-article p { color: #3f4e53; margin-bottom: 21px; }
.news-article ul, .news-article ol { margin: 18px 0 25px; padding-left: 26px; }
.news-article li { margin-bottom: 8px; }
.news-article blockquote { margin: 35px 0; padding: 25px 28px; border-left: 5px solid var(--peach-500); border-radius: 0 18px 18px 0; background: var(--peach-100); color: var(--green-900); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; }
.news-article figure { margin: 35px 0; }
.news-article figure img, .news-article > img { width: 100%; border-radius: 20px; }
.news-article figcaption { margin-top: 9px; color: #7b8985; font-size: .76rem; text-align: center; }
.news-article a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.news-article table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: .88rem; }
.news-article th, .news-article td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.news-article th { background: var(--green-100); }
.news-article pre { overflow-x: auto; padding: 18px; border-radius: 14px; background: #1f302b; color: #eaf5ef; }
.related-news { padding-top: 80px; }
.not-found { min-height: 600px; display: grid; place-items: center; text-align: center; }
.not-found img { margin: 0 auto 15px; }

/* Policy */
.policy-content .prose { max-width: 850px; }
.prose h2 { margin: 35px 0 12px; font-size: 1.55rem; }
.prose p { color: #43514f; }
.prose a { color: var(--green-700); text-decoration: underline; }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal--delay { transition-delay: .12s; }
.js .reveal--delay-2 { transition-delay: .24s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    :root { --container: 960px; }
    .primary-nav > a:not(.button) { padding-inline: 7px; font-size: .82rem; }
    .primary-nav > a:not(.button)::after { left: 7px; right: 7px; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .value-grid, .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .age-card-grid { grid-template-columns: repeat(3, 1fr); }
    .age-card { min-height: 390px; }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1.25fr .75fr 1fr; }
    .site-footer__grid > :last-child { grid-column: 1 / -1; max-width: 480px; }
    .article-layout { grid-template-columns: 55px minmax(0, 1fr); }
    .article-aside { display: none; }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .site-header__inner { min-height: 76px; }
    .nav-toggle { display: block; }
    .primary-nav { position: fixed; inset: 76px 0 0; display: none; align-content: start; gap: 2px; padding: 24px 20px 40px; background: #fff; overflow-y: auto; }
    .nav-open .primary-nav { display: grid; }
    .primary-nav > a:not(.button) { padding: 14px 10px; font-size: 1rem; border-bottom: 1px solid var(--line); }
    .primary-nav .button { margin-top: 15px; }
    .hero--home { min-height: auto; padding-top: 55px; }
    .hero__grid, .page-hero__grid, .split-layout, .care-section__grid, .admission-form-section__grid, .recruitment-form-section__grid, .faq-section__grid, .contact-main-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero__content { max-width: 760px; }
    .hero__visual { max-width: 650px; margin-inline: auto; }
    .page-hero__content { order: 1; }
    .page-hero__visual { order: 2; max-width: 650px; margin-inline: auto; }
    .split-layout--image-left > :first-child { order: 2; }
    .split-layout--image-left > :last-child { order: 1; }
    .program-tabs { grid-template-columns: 1fr; }
    .program-tabs__nav { grid-template-columns: repeat(4, 1fr); }
    .program-tabs__nav button { display: grid; justify-content: start; padding: 14px; }
    .program-panel { grid-template-columns: 1fr; }
    .activity-grid, .facility-grid { grid-template-columns: 1fr 1fr; }
    .activity-card--large, .facility-card--wide { grid-column: 1 / -1; }
    .mission-grid, .role-detail-grid { grid-template-columns: 1fr; }
    .mission-card { min-height: auto; }
    .process-grid, .hiring-steps { grid-template-columns: repeat(2, 1fr); }
    .hiring-steps li:nth-child(2) { border-right: 0; }
    .hiring-steps li:nth-child(-n+2) { border-bottom: 1px solid #e5ddcd; }
    .global-cta__inner { grid-template-columns: 1fr; }
    .global-cta__actions { justify-content: start; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__grid > :last-child { grid-column: auto; }
    .featured-news { grid-template-columns: 1fr; }
    .featured-news__content { padding: 0 20px 20px; }
}

@media (max-width: 700px) {
    body { font-size: 15px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 75px 0; }
    .brand img { width: 51px; height: 51px; }
    .brand__text strong { font-size: 1.1rem; }
    .brand__text small { font-size: .61rem; }
    .hero--home { padding-bottom: 90px; }
    .hero__actions { gap: 16px; }
    .hero-note--top { right: 0; }
    .hero-note--bottom { left: 0; bottom: -8px; }
    .hero__assurances { display: grid; gap: 8px; }
    .trust-strip { margin-top: -22px; }
    .trust-strip__grid { grid-template-columns: 1fr; padding: 10px; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line) !important; }
    .trust-item:last-child { border-bottom: 0 !important; }
    .section-heading--with-action, .map-section__header, .site-footer__bottom { align-items: flex-start; flex-direction: column; display: flex; }
    .value-grid, .philosophy-grid, .news-grid, .job-grid, .contact-info-grid, .site-footer__grid { grid-template-columns: 1fr; }
    .program-tabs__nav { grid-template-columns: 1fr 1fr; }
    .program-tabs__content { min-height: auto; }
    .program-panel { min-height: auto; padding: 28px; }
    .activity-grid, .facility-grid { grid-template-columns: 1fr; }
    .activity-card--large, .facility-card--wide { grid-column: auto; }
    .timeline::before { left: 53px; }
    .timeline li { grid-template-columns: 82px 1fr; gap: 12px; }
    .timeline time { width: 58px; }
    .page-hero { padding: 55px 0 65px; }
    .story-gallery { min-height: 430px; }
    .story-gallery__stamp { width: 105px; height: 105px; }
    .care-principles__note { left: 10px; }
    .age-card-grid { grid-template-columns: 1fr; }
    .age-card { min-height: auto; }
    .age-card__top { min-height: 120px; }
    .process-grid, .hiring-steps { grid-template-columns: 1fr; }
    .hiring-steps li { border-right: 0; border-bottom: 1px solid #e5ddcd; }
    .form-card { padding: 27px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }
    .admission-note__inner { align-items: flex-start; flex-direction: column; padding-block: 18px; gap: 8px; }
    .stat-card { right: 10px; bottom: 10px; }
    .news-filter { align-items: stretch; flex-direction: column; }
    .news-search { max-width: none; }
    .news-category select { width: 100%; }
    .article-layout { grid-template-columns: 1fr; padding-top: 40px; }
    .article-share { position: static; display: flex; justify-content: flex-start; }
    .article-share > span { writing-mode: initial; margin: 0 8px 0 0; align-self: center; }
    .article-cover { margin-top: 25px; }
    .flash-stack { left: 14px; right: 14px; top: 90px; }
    .global-cta__actions { flex-direction: column; align-items: stretch; }
    .site-footer__grid > :last-child { grid-column: auto; }
    .floating-contact { right: 15px; bottom: 15px; }
    .map-section__header > p { text-align: left; }
    .map-frame { height: 370px; }
}

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