:root {
    --navy: #071d2a;
    --navy-soft: #0d2b3b;
    --lime: #c8f000;
    --cyan: #62d9ef;
    --paper: #f3f5f4;
    --white: #fff;
    --ink: #10232c;
    --muted: #65737a;
    --line: #d8dedc;
    --error: #c54537;
    --max: 1160px;
    --radius: 22px;
    --shadow: 0 22px 70px rgba(7, 29, 42, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--lime);
    color: var(--navy);
    font-weight: 800;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.closure-dialog {
    width: min(calc(100% - 32px), 620px);
    max-height: calc(100dvh - 32px);
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .36);
    overflow: auto;
}
.closure-dialog::backdrop {
    background: rgba(4, 19, 27, .78);
    backdrop-filter: blur(6px);
}
.closure-dialog[open] { animation: dialog-in 220ms ease-out; }
.closure-dialog-inner { padding: clamp(28px, 6vw, 54px); text-align: center; }
.closure-dialog-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 900;
}
.closure-dialog-label {
    margin: 0 0 12px;
    color: #587400;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.closure-dialog h2 {
    margin: 0;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}
.closure-dialog p:last-of-type { margin: 22px auto 0; color: var(--muted); }
.closure-dialog-button {
    min-width: 180px;
    margin-top: 30px;
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.closure-dialog-button:hover { background: var(--navy-soft); }

@keyframes dialog-in {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled, .site-header.is-open {
    background: rgba(7, 29, 42, .97);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-name { font-size: .75rem; font-weight: 600; line-height: 1.05; letter-spacing: .14em; }
.brand-name strong { display: block; color: var(--lime); font-size: 1rem; letter-spacing: .055em; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}
.main-nav a:hover { color: var(--lime); }
.main-nav .nav-contact {
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 100px;
    color: var(--white);
}
.menu-toggle { display: none; border: 0; background: none; color: inherit; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 0;
    background: radial-gradient(circle at 78% 26%, rgba(98, 217, 239, .14), transparent 26%), linear-gradient(135deg, var(--navy) 0%, #061923 100%);
    color: var(--white);
}
.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -190px;
    right: -150px;
    border: 1px solid rgba(200, 240, 0, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(200, 240, 0, .025), 0 0 0 140px rgba(200, 240, 0, .018);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: end;
    gap: clamp(50px, 8vw, 110px);
    padding-bottom: 92px;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--lime);
    font-size: .76rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #537100; }
.hero h1, .section h2, .contact h2 {
    margin: 0;
    font-size: clamp(3.25rem, 7.5vw, 7.4rem);
    font-weight: 820;
    line-height: .88;
    letter-spacing: -.065em;
}
.hero h1 em, .contact h2 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead {
    max-width: 640px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(1.06rem, 1.6vw, 1.28rem);
    line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--navy); }
.button-primary span + span { padding-left: 18px; border-left: 1px solid rgba(7, 29, 42, .25); font-size: .8rem; }
.button-ghost { border-color: rgba(255, 255, 255, .24); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .06); }

.booking-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
}
.booking-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .65);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.availability { display: flex; align-items: center; gap: 7px; color: var(--white); }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200, 240, 0, .1); }
.booking-time { margin: 30px 0 10px; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 780; line-height: 1; letter-spacing: -.06em; }
.booking-card > p:not(.booking-time) { margin: 0 0 28px; color: rgba(255, 255, 255, .62); font-size: .92rem; }
.booking-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: var(--lime);
    font-size: 1.04rem;
    font-weight: 820;
    text-decoration: none;
}
.hero-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .13); }
.hero-stats > div { min-height: 122px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-right: 1px solid rgba(255, 255, 255, .13); }
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats strong { color: var(--white); font-size: 1.16rem; }
.hero-stats span { color: rgba(255, 255, 255, .5); font-size: .78rem; }

.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 60px; margin-bottom: 64px; }
.section-heading h2, .about h2 { color: var(--navy); font-size: clamp(2.9rem, 5.7vw, 5.5rem); }
.section-heading > p { max-width: 450px; margin: 0 0 2px auto; color: var(--muted); font-size: 1.02rem; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.service-card {
    position: relative;
    isolation: isolate;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 4;
    padding: 28px;
    border: 0;
    border-radius: var(--radius);
    background: var(--navy);
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 29, 42, .98) 0%, rgba(7, 29, 42, .62) 47%, rgba(7, 29, 42, .17) 100%);
}
.service-image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-image { transform: scale(1.035); }
.service-card.featured { min-height: 420px; grid-column: span 8; color: var(--white); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; }
.service-number { align-self: flex-end; color: rgba(255, 255, 255, .72); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.featured .service-number { color: rgba(255, 255, 255, .46); }
.service-card h3 { margin: 0 0 12px; color: var(--white); font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1; letter-spacing: -.045em; }
.featured h3 { color: var(--lime); font-size: clamp(3.4rem, 6vw, 6rem); }
.service-card p { max-width: 580px; margin: 0; color: rgba(255, 255, 255, .76); }
.featured p { color: rgba(255, 255, 255, .68); }
.service-card .service-kicker { margin-bottom: 18px; color: var(--cyan); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card a { display: inline-flex; gap: 8px; margin-top: 30px; color: var(--lime); font-weight: 760; }
.water { box-shadow: inset 0 5px 0 var(--cyan); }
.heat { box-shadow: inset 0 5px 0 #fb7f59; }
.fitness { box-shadow: inset 0 5px 0 #9b8cff; }
.refreshment { box-shadow: inset 0 5px 0 var(--lime); }
.amenity-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.amenity-line span { padding: 8px 14px; border: 1px solid #c9d0cd; border-radius: 100px; color: #536168; font-size: .78rem; font-weight: 700; }

.pricing { background: var(--navy); color: var(--white); }
.pricing-heading h2 { color: var(--white); }
.pricing-heading > p { color: rgba(255, 255, 255, .6); }
.pricing-heading > p a { color: var(--lime); font-weight: 750; }
.price-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.price-panel { padding: clamp(24px, 3.6vw, 42px); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); background: rgba(255, 255, 255, .055); }
.price-panel.package { border-color: rgba(200, 240, 0, .45); background: var(--lime); color: var(--navy); }
.price-panel > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.package > header { border-color: rgba(7, 29, 42, .18); }
.price-panel header p { margin: 0 0 3px; color: rgba(255, 255, 255, .55); font-size: .76rem; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.package header p { color: rgba(7, 29, 42, .6); }
.price-panel h3 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.1; letter-spacing: -.035em; }
.price-panel header > span { flex: 0 0 auto; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 100px; color: rgba(255, 255, 255, .65); font-size: .7rem; font-weight: 700; }
.package header > span { border-color: rgba(7, 29, 42, .18); color: var(--navy); }
.package-note { margin: 22px 0 -4px; font-size: .9rem; font-weight: 650; }
.season-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; padding-top: 30px; }
.season-title { min-height: 60px; margin-bottom: 12px; }
.season-title h4 { margin: 0; font-size: 1rem; }
.season-title span { color: rgba(255, 255, 255, .48); font-size: .76rem; }
.package .season-title span { color: rgba(7, 29, 42, .58); }
.price-list { margin: 0; }
.price-list > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, .11); }
.package .price-list > div { border-color: rgba(7, 29, 42, .14); }
.price-list dt { color: rgba(255, 255, 255, .78); font-size: .84rem; }
.package .price-list dt { color: rgba(7, 29, 42, .82); }
.price-list dt small { display: block; color: rgba(255, 255, 255, .42); }
.package .price-list dt small { color: rgba(7, 29, 42, .52); }
.price-list dd { margin: 0; font-weight: 820; white-space: nowrap; }

.coaches { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 18px; margin-top: 18px; }
.coach-intro, .coach-card { padding: 28px; border-radius: var(--radius); background: var(--paper); color: var(--navy); }
.coach-intro h3 { margin: 0 0 16px; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.06; letter-spacing: -.04em; }
.coach-intro > p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
.coach-card { display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255, 255, 255, .12); background: var(--navy-soft); color: var(--white); }
.coach-name { display: flex; align-items: center; gap: 14px; }
.coach-name > span { width: 44px; height: 44px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--cyan); color: var(--navy); font-size: .8rem; font-weight: 850; }
.coach-card:nth-child(3) .coach-name > span { background: var(--lime); }
.coach-name h4 { margin: 0; font-size: 1.04rem; }
.coach-name p { margin: 2px 0 0; color: rgba(255, 255, 255, .5); font-size: .77rem; }
.coach-card > strong { display: block; margin: 34px 0; color: var(--lime); font-size: 2rem; line-height: 1; }
.coach-card > strong small { color: rgba(255, 255, 255, .45); font-size: .74rem; font-weight: 600; }
.coach-links { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-size: .8rem; }
.coach-links a { color: rgba(255, 255, 255, .72); }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.about-photo { position: relative; margin: 0; }
.about-photo::before { content: ""; position: absolute; z-index: 1; inset: 0; border-radius: var(--radius); background: linear-gradient(to top, rgba(7, 29, 42, .58), transparent 36%); pointer-events: none; }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); object-fit: cover; object-position: 63% center; box-shadow: var(--shadow); }
.about-photo figcaption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; color: var(--white); font-size: .78rem; font-weight: 700; }
.about-copy { max-width: 500px; }
.about-lead { margin: 32px 0 18px; color: var(--navy); font-size: clamp(1.12rem, 2vw, 1.35rem); font-weight: 650; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.text-link { display: inline-flex; gap: 12px; margin-top: 20px; color: #496500; font-weight: 800; }

.contact { background: var(--navy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact h2 { font-size: clamp(3.2rem, 6.3vw, 6.2rem); }
.contact-details > p:not(.eyebrow):not(.company-meta) { max-width: 500px; margin: 28px 0 44px; color: rgba(255, 255, 255, .62); }
.contact address { display: grid; gap: 24px; font-style: normal; }
.contact address > div { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .13); }
.contact address span { display: block; color: rgba(255, 255, 255, .42); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact address a:not(.map-link), .contact address p { display: inline-block; margin: 6px 0 0; color: var(--white); font-size: 1.16rem; font-weight: 720; line-height: 1.5; }
.contact address small { display: block; color: rgba(255, 255, 255, .48); font-size: .78rem; }
.map-link { display: inline-flex; gap: 8px; margin-top: 14px; color: var(--lime); font-size: .82rem; font-weight: 800; }
.company-meta { max-width: 390px; margin: 40px 0 0; color: rgba(255, 255, 255, .36); font-size: .73rem; }

.form-card { padding: clamp(26px, 4vw, 48px); border-radius: var(--radius); background: var(--white); color: var(--navy); box-shadow: 0 30px 90px rgba(0, 0, 0, .18); }
.form-heading { margin-bottom: 30px; }
.form-heading p { margin: 0 0 2px; color: #61717a; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.05em; }
.form-status { display: grid; gap: 2px; margin-bottom: 24px; padding: 15px 16px; border-radius: 12px; font-size: .86rem; }
.form-status.success { background: #edf7c9; color: #2f4900; }
.form-status.error { background: #fff0ed; color: #81291f; }
.field { position: relative; margin-bottom: 22px; }
.field label { display: block; margin-bottom: 7px; color: #485860; font-size: .78rem; font-weight: 800; }
.field input, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cbd3d0; border-radius: 10px; background: #fafbfa; color: var(--navy); transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.field textarea { min-height: 138px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 0; border-color: #789500; background: var(--white); box-shadow: 0 0 0 4px rgba(200, 240, 0, .2); }
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field small, .consent > small { display: block; margin-top: 5px; color: var(--error); font-size: .74rem; font-weight: 650; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 4px 0 26px; }
.consent input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: #6c8900; }
.consent label { color: #5f6d73; font-size: .78rem; line-height: 1.5; }
.consent label a { color: var(--navy); }
.consent > small { grid-column: 2; margin-top: -6px; }
.button-submit { width: 100%; justify-content: space-between; border: 0; border-radius: 10px; background: var(--lime); color: var(--navy); }

.privacy { padding: 45px 0; border-top: 1px solid #dce1df; background: #e8ecea; }
.privacy-inner { display: grid; grid-template-columns: .35fr 1fr; gap: 50px; }
.privacy h2 { margin: 0; font-size: 1.12rem; }
.privacy p { max-width: 760px; margin: 0; color: #5e6b71; font-size: .8rem; }
.privacy a { color: var(--navy); font-weight: 700; }
.site-footer { padding: 34px 0; background: #04131b; color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-inner p, .footer-inner > a:last-child { margin: 0; color: rgba(255, 255, 255, .46); font-size: .74rem; }
.footer-inner > a:last-child { justify-self: end; }

@media (max-width: 980px) {
    .hero-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 50px; }
    .booking-card { max-width: 540px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats > div:nth-child(2) { border-right: 0; }
    .hero-stats > div:first-child, .hero-stats > div:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .service-card, .service-card.featured, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; }
    .service-card.featured { min-height: 360px; grid-column: span 12; }
    .price-panels { grid-template-columns: 1fr; }
    .coaches { grid-template-columns: 1fr 1fr; }
    .coach-intro { grid-column: 1 / -1; }
    .contact-details { max-width: 700px; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 28px), var(--max)); }
    .header-inner { min-height: 72px; }
    .menu-toggle { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 8px 0 8px 10px; }
    .menu-label { font-size: .78rem; font-weight: 760; }
    .menu-lines { display: grid; gap: 5px; }
    .menu-lines i { width: 22px; height: 2px; display: block; background: var(--lime); transition: transform 160ms ease; }
    .site-header.is-open .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
    .site-header.is-open .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 100px 28px 60px; background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
    .site-header.is-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav a { font-size: clamp(2rem, 10vw, 3.4rem); line-height: 1; letter-spacing: -.04em; }
    .main-nav .nav-contact { margin-top: 10px; padding: 12px 20px; font-size: 1rem; letter-spacing: 0; }
    .hero { padding-top: 130px; }
    .hero-grid { padding-bottom: 62px; }
    .hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
    .hero-lead { margin-top: 26px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .booking-card { padding: 22px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stats > div { min-height: 104px; padding: 16px 14px; }
    .hero-stats > div:first-child, .hero-stats > div:nth-child(3) { padding-left: 0; }
    .section-heading, .about-grid, .privacy-inner { grid-template-columns: 1fr; }
    .section-heading { gap: 26px; margin-bottom: 42px; }
    .section-heading > p { margin: 0; }
    .service-card, .service-card.featured, .service-card:nth-child(4), .service-card:nth-child(5) { min-height: 270px; grid-column: span 12; }
    .service-card.featured { min-height: 380px; }
    .season-grid { grid-template-columns: 1fr; gap: 12px; }
    .season-title { min-height: 0; }
    .price-panel > header { flex-direction: column; gap: 12px; }
    .coaches { grid-template-columns: 1fr; }
    .coach-intro { grid-column: auto; }
    .about-photo img { aspect-ratio: 4 / 3; }
    .about-copy { order: -1; }
    .privacy-inner { gap: 12px; }
    .footer-inner { grid-template-columns: 1fr; justify-items: start; }
    .footer-inner > a:last-child { justify-self: start; }
}

@media (max-width: 420px) {
    .brand-name { font-size: .66rem; }
    .brand-name strong { font-size: .88rem; }
    .menu-label { display: none; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stats > div, .hero-stats > div:nth-child(2), .hero-stats > div:nth-child(3) { padding-left: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .button-primary { flex-direction: column; gap: 5px; }
    .button-primary span + span { padding-left: 0; border-left: 0; }
}

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