:root {
    --ink: #163b3a;
    --ink-soft: #3e5f5d;
    --paper: #fffdf9;
    --white: #ffffff;
    --orange: #e95f24;
    --orange-dark: #c94513;
    --teal: #178d88;
    --yellow: #f2bd31;
    --coral: #ef7e78;
    --purple: #7c5aa6;
    --green: #70a86b;
    --line: #dbe4df;
    --shadow: 0 18px 55px rgba(22, 59, 58, 0.12);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
    letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -80px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
}
.skip-link:focus { top: 12px; }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 76px;
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid rgba(22, 59, 58, 0.12);
    backdrop-filter: blur(14px);
}
.nav-shell, .section-shell {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand-link { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand-link img, .footer-brand img { border-radius: 50%; border: 1px solid rgba(22, 59, 58, 0.12); }
.brand-link span, .footer-brand div { display: grid; line-height: 1.1; }
.brand-link strong, .footer-brand strong { font-size: 19px; color: var(--orange); }
.brand-link small, .footer-brand span { margin-top: 4px; font-size: 12px; color: var(--ink-soft); text-transform: uppercase; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a { font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav > a:not(.nav-login):hover { color: var(--orange); }
.nav-login { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--white); background: var(--ink); border-radius: 6px; }
.nav-login svg { width: 17px; }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; }

.hero {
    position: relative;
    min-height: min(780px, 84vh);
    padding-top: 76px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: rgba(13, 56, 54, 0.62); }
.hero-content { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 72px 0 54px; color: var(--white); }
.hero-location { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.hero-location svg { width: 19px; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(46px, 7vw, 88px); line-height: 0.98; letter-spacing: 0; text-wrap: balance; }
.hero-lead { max-width: 660px; margin: 25px 0 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; border: 2px solid transparent; border-radius: 6px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; }
.button.primary { color: var(--white); background: var(--orange); }
.button.primary:hover { background: var(--orange-dark); }
.button.light { color: var(--ink); background: var(--white); }
.button.dark { color: var(--white); background: var(--ink); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 46px 0 0; padding: 0; list-style: none; }
.hero-facts li { min-width: 150px; padding: 0 28px; border-left: 1px solid rgba(255,255,255,.45); display: grid; }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { font-size: 22px; }
.hero-facts span { font-size: 13px; opacity: .88; }

.notice-band { color: var(--white); background: var(--ink); }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; }
.notice-grid > div { min-height: 130px; display: flex; align-items: center; gap: 18px; padding: 28px 34px; }
.notice-grid > div + div { border-left: 1px solid rgba(255,255,255,.2); }
.notice-grid svg { flex: 0 0 auto; width: 30px; height: 30px; color: var(--yellow); }
.notice-grid p { margin: 0; }

.section { padding: 96px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading.compact { align-items: start; }
.section-heading > p { margin: 0 0 7px; color: var(--ink-soft); font-size: 17px; }
.eyebrow { margin: 0 0 9px; color: var(--orange); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; text-wrap: balance; }
h3 { margin: 0; font-size: 23px; }

.program-section { background: var(--white); }
.schedule { border-top: 1px solid var(--line); }
.schedule-row { display: grid; grid-template-columns: 150px 1fr 60px; align-items: center; gap: 26px; padding: 25px 22px; border-bottom: 1px solid var(--line); }
.schedule-row::before { content: ""; width: 7px; align-self: stretch; grid-row: 1; border-radius: 2px; }
.schedule-row.coral::before { background: var(--coral); }
.schedule-row.yellow::before { background: var(--yellow); }
.schedule-row.teal::before { background: var(--teal); }
.schedule-time { display: flex; gap: 8px; font-weight: 900; }
.schedule-time span + span::before { content: "-"; margin-right: 8px; color: var(--ink-soft); }
.schedule-age { margin: 0 0 4px; font-size: 21px; font-weight: 900; }
.schedule-row p:last-child { margin: 0; color: var(--ink-soft); }
.schedule-row > svg { width: 31px; height: 31px; color: var(--orange); }
.program-note { margin-top: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 20px 22px; color: var(--ink); background: #e9f5f3; border-left: 5px solid var(--teal); }
.program-note > svg { color: var(--teal); }
.program-note p { margin: 0; }
.program-note a, .text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--orange-dark); font-weight: 900; text-decoration: none; white-space: nowrap; }
.program-note a svg, .text-link svg { width: 17px; }

.age-section { background: #f1f5ef; }
.age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.age-card { min-height: 310px; padding: 30px; border-radius: 8px; display: flex; flex-direction: column; align-items: flex-start; }
.age-card p { color: var(--ink-soft); }
.age-coral { background: #fbe1df; }
.age-yellow { background: #fff1bd; }
.age-purple { background: #ebe2f4; }
.age-number { margin-bottom: auto; font-size: 44px; font-weight: 900; line-height: .95; }
.age-number small { margin-left: 7px; font-size: 18px; }

.experience-section { padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: var(--white); }
.experience-media { min-height: 700px; overflow: hidden; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.experience-copy { max-width: 650px; padding: 90px clamp(35px, 7vw, 110px); align-self: center; }
.experience-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 17px; }
.feature-list { margin: 34px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.feature-list svg { width: 25px; color: var(--teal); }
.feature-list span { display: grid; color: var(--ink-soft); }
.feature-list strong { color: var(--ink); }

.pricing-section { background: #fff7eb; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.price-card { position: relative; padding: 30px; background: var(--white); border: 1px solid #eadcc8; border-radius: 8px; }
.price-card.featured { color: var(--white); background: var(--teal); border-color: var(--teal); box-shadow: var(--shadow); }
.price-card > svg { width: 34px; height: 34px; color: var(--orange); }
.price-card.featured > svg { color: var(--yellow); }
.price-kicker { margin: 24px 0 6px; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.price-duration { min-height: 74px; color: var(--ink-soft); }
.featured .price-duration { color: rgba(255,255,255,.84); }
.price { margin: 25px 0 0; font-size: 43px; font-weight: 900; line-height: 1; }
.price span { font-size: 18px; }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; color: var(--ink); background: var(--yellow); border-radius: 4px; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.price-footnote { margin: 20px 0 0; color: var(--ink-soft); font-size: 13px; }

.nutrition-section { color: var(--white); background: var(--purple); }
.nutrition-section .eyebrow { color: #ffd96e; }
.nutrition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.nutrition-grid > div > p:last-child { font-size: 18px; color: rgba(255,255,255,.88); }
.nutrition-points { border-left: 1px solid rgba(255,255,255,.3); padding-left: 45px; }
.nutrition-points p { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; margin: 0; padding: 18px 0; }
.nutrition-points p + p { border-top: 1px solid rgba(255,255,255,.25); }
.nutrition-points svg { color: #ffd96e; }
.nutrition-points span { display: grid; }

.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.gallery-grid figure { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border-radius: 6px; background: #edf0ed; }
.gallery-grid figure:first-child { aspect-ratio: 4 / 5; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 22px 18px 16px; color: var(--white); background: rgba(22,59,58,.78); font-weight: 800; }

.faq-section { background: #eef5f4; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.faq-layout > div:first-child > p:last-child { color: var(--ink-soft); }
.faq-list { border-top: 1px solid #bfcfcb; }
.faq-list details { border-bottom: 1px solid #bfcfcb; }
.faq-list summary { position: relative; padding: 23px 46px 23px 0; font-size: 18px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 17px; font-size: 27px; color: var(--orange); }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { margin: -5px 50px 23px 0; color: var(--ink-soft); }

.contact-section { padding: 90px 0; color: var(--white); background: var(--orange); }
.contact-section .eyebrow { color: #ffdf79; }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.contact-layout > div > p:not(.eyebrow) { max-width: 670px; font-size: 18px; }
.contact-section .button.primary { color: var(--orange-dark); background: var(--white); }
.contact-layout address { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 28px; font-style: normal; background: rgba(103,30,7,.28); border-radius: 8px; }
.contact-layout address > svg { width: 30px; }
.contact-layout address div { display: grid; }
.contact-layout address span { opacity: .9; }
.contact-layout address a { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 900; }
.contact-layout address a svg { width: 16px; }

.site-footer { padding: 45px 0 25px; color: var(--white); background: #122c2b; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-grid > p { margin: 0; text-align: center; color: rgba(255,255,255,.75); }
.footer-links { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.footer-links a { font-weight: 800; text-decoration: none; }
.footer-links a:first-child { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.footer-bottom { margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.62); font-size: 12px; }

@media (max-width: 980px) {
    .menu-button { display: inline-flex; }
    .main-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; align-items: stretch; padding: 16px 20px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
    .main-nav.open { display: grid; }
    .main-nav > a { padding: 10px 4px; }
    .nav-login { justify-content: center; margin-top: 5px; }
    .section-heading, .faq-layout { grid-template-columns: 1fr; gap: 18px; }
    .notice-grid, .nutrition-grid, .contact-layout { grid-template-columns: 1fr; }
    .notice-grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
    .age-grid, .pricing-grid { grid-template-columns: 1fr; }
    .age-card { min-height: 250px; }
    .experience-section { grid-template-columns: 1fr; }
    .experience-media { min-height: 520px; }
    .experience-copy { max-width: none; }
    .nutrition-points { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid figure:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > p { order: 3; grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
    .nav-shell, .section-shell, .hero-content { width: min(calc(100% - 28px), var(--max)); }
    .site-header { height: 68px; }
    .brand-link img { width: 46px; height: 46px; }
    .main-nav { top: 68px; }
    .hero { min-height: 760px; padding-top: 68px; align-items: end; }
    .hero-image { object-position: 58% center; }
    .hero-shade { background: rgba(13,56,54,.7); }
    .hero-content { padding: 60px 0 38px; }
    .hero h1 { font-size: 48px; }
    .hero-actions .button { width: 100%; }
    .hero-facts { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; row-gap: 22px; }
    .hero-facts li { min-width: 0; padding: 0 14px; }
    .hero-facts li:nth-child(3) { padding-left: 0; border-left: 0; }
    .notice-grid > div { padding: 24px 6px; align-items: flex-start; }
    .section { padding: 72px 0; }
    .schedule-row { grid-template-columns: 1fr auto; gap: 14px; padding: 23px 10px; }
    .schedule-row::before { display: none; }
    .schedule-time { grid-column: 1; }
    .schedule-row > div:nth-child(2) { grid-column: 1 / -1; }
    .schedule-row > svg { grid-column: 2; grid-row: 1; }
    .program-note { grid-template-columns: auto 1fr; }
    .program-note a { grid-column: 1 / -1; }
    .experience-media { min-height: 460px; }
    .experience-copy { padding: 68px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid figure, .gallery-grid figure:last-child { grid-column: auto; aspect-ratio: 4 / 5; }
    .contact-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { justify-content: flex-start; }
    .footer-grid > p { grid-column: auto; order: 0; }
    .footer-bottom { gap: 18px; }
}

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