/*
Theme Name: FieraRhoIceAcademy
Theme URI: https://www.fisg.it/
Author: FISG
Description: Tema WordPress responsive per Fiera Rho Ice Academy, realizzato dai mockup forniti.
Version: 1.2.0
Text Domain: fiera-rho-ice-academy
*/

:root {
    --fria-black: #202848;
    --fria-lime: #2068a0;
    --fria-blue: #e5f1f7;
    --fria-green: #107838;
    --fria-red: #d01020;
    --fria-gray: #f4f7fa;
    --fria-muted: #626a7f;
    --fria-line: #d9e1e9;
    --fria-radius: 14px;
    --fria-max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--fria-black);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.container { width: min(calc(100% - 64px), var(--fria-max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--gray { background: var(--fria-gray); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading--center { display: block; text-align: center; }
.section-heading h2, .section-title { margin: 4px 0 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.055em; }
.eyebrow { display: inline-block; color: var(--fria-lime); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow--pill { padding: 4px 9px; border-radius: 999px; background: var(--fria-blue); color: var(--fria-lime); }
.muted { color: var(--fria-muted); }

.button {
    display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 16px;
    padding: 9px 12px 9px 22px; border: 1px solid transparent; border-radius: 999px;
    background: var(--fria-lime); color: #fff; font-weight: 800; cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.button::after { content: '\2192'; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--fria-black); color: white; font-size: 14px; }
.button:hover { transform: translateY(-2px); background: #2d7fb5; }
.button--dark { background: var(--fria-black); color: #fff; }
.button--dark::after { background: #fff; color: var(--fria-black); }
.button--light { background: #fff; color: var(--fria-black); }
.button--light::after { background: var(--fria-black); color: #fff; }
.button--small { min-height: 40px; padding-left: 17px; font-size: .82rem; }
.button--small::after { width: 23px; height: 23px; }

/* Header */
.site-header { position: relative; z-index: 30; padding: 26px 0; }
.site-header--overlay { position: absolute; inset: 0 0 auto; color: #fff; }
.site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.site-branding { display: inline-flex; align-items: center; width: max-content; }
.custom-logo { max-height: 48px; width: auto; }
.site-branding--image { overflow: hidden; width: 158px; height: 94px; border-radius: 8px; background: #fff; box-shadow: 0 4px 18px rgba(20, 39, 67, .12); }
.brand-logo { width: 100%; height: 100%; object-fit: contain; }
.wordmark { display: flex; flex-direction: column; line-height: .86; font-weight: 900; letter-spacing: -.08em; }
.wordmark__main { font-size: 1.55rem; }
.wordmark__sub { margin-top: 5px; font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav { border-radius: 999px; background: var(--fria-black); color: #fff; }
.primary-nav ul { display: flex; list-style: none; gap: 0; margin: 0; padding: 0 11px; }
.primary-nav > ul > li { position: relative; }
.primary-nav a { display: block; padding: 12px 13px; font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: #8dc9eb; }
.primary-nav .menu-item-has-children > a { display: flex; align-items: center; gap: 7px; }
.primary-nav .menu-item-has-children > a::after { content: ''; width: 7px; height: 7px; margin-top: -4px; border-right: 2px solid #8dc9eb; border-bottom: 2px solid #8dc9eb; transform: rotate(45deg); transition: transform .18s ease; }
.primary-nav .menu-item-has-children:hover > a::after, .primary-nav .menu-item-has-children:focus-within > a::after { transform: translateY(3px) rotate(225deg); }
.primary-nav > ul > .menu-item-has-children::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 10px; }
.primary-nav .sub-menu {
    position: absolute; top: calc(100% + 10px); left: 0; z-index: 5; display: block; min-width: 220px;
    padding: 8px; border: 1px solid rgba(32, 40, 72, .08); border-radius: 14px;
    background: #fff; color: var(--fria-black); box-shadow: 0 16px 35px rgba(20, 39, 67, .18);
    opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.primary-nav .sub-menu::before { content: ''; position: absolute; top: -6px; left: 22px; width: 11px; height: 11px; background: #fff; transform: rotate(45deg); }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu, .primary-nav li.is-submenu-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.primary-nav .sub-menu li { position: relative; }
.primary-nav .sub-menu a { position: relative; z-index: 1; border-radius: 9px; padding: 11px 13px; font-size: .76rem; white-space: nowrap; }
.primary-nav .sub-menu a:hover, .primary-nav .sub-menu .current-menu-item > a { background: var(--fria-blue); color: var(--fria-black); }
.submenu-toggle { display: none; }
.header-action { justify-self: end; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--fria-black); color: #fff; cursor: pointer; }

/* Hero */
.home-hero { padding: 12px 0 90px; }
.home-hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; gap: 58px; align-items: stretch; }
.home-hero__copy { display: flex; flex-direction: column; justify-content: space-between; padding: 72px 0 48px; }
.home-hero h1 { max-width: 650px; margin: 0; font-size: clamp(3.3rem, 6.5vw, 6.8rem); line-height: .91; letter-spacing: -.075em; }
.home-hero__intro { max-width: 480px; margin: 24px 0; color: var(--fria-muted); font-size: 1.08rem; }
.rating { display: flex; align-items: center; gap: 16px; }
.rating__faces { display: flex; }
.rating__face { width: 46px; height: 46px; margin-left: -10px; overflow: hidden; border: 3px solid white; border-radius: 50%; background: #ddd; }
.rating__face:first-child { margin-left: 0; }
.rating__stars { color: var(--fria-red); letter-spacing: 2px; }
.rating small { display: block; margin-top: 3px; color: var(--fria-muted); }
.home-hero__visual { position: relative; overflow: hidden; min-height: 650px; border-radius: 2px; background: url('assets/images/tennis.jpg') center / cover; }
.home-hero__visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.03), rgba(0,0,0,.23)); }
.booking-card { position: absolute; right: 24px; bottom: 24px; width: min(430px, calc(100% - 48px)); padding: 28px; background: var(--fria-black); color: white; }
.booking-card h2 { margin: 0 0 22px; font-size: 1.6rem; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.booking-card label { display: block; color: #bbb; font-size: .72rem; font-weight: 700; }
.booking-card span { display: block; margin-top: 4px; color: white; font-size: .9rem; }
.booking-card .button { width: 100%; justify-content: space-between; }

.page-hero { min-height: 450px; display: grid; place-items: center; color: #fff; background: linear-gradient(rgba(8,20,0,.45), rgba(8,20,0,.45)), url('assets/images/football-field.jpg') center 42% / cover; }
.page-hero h1 { margin: 70px 0 0; font-size: clamp(3.4rem, 7vw, 6rem); font-weight: 500; letter-spacing: -.06em; }

/* Programs */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card { overflow: hidden; border: 1px solid var(--fria-line); border-radius: var(--fria-radius); background: var(--fria-gray); transition: transform .2s ease, box-shadow .2s ease; }
.program-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,.08); }
.program-card__image { width: 100%; aspect-ratio: 1.36 / 1; object-fit: cover; }
.program-card__content { padding: 16px; }
.program-card h3 { margin: 0 0 3px; font-size: 1.35rem; letter-spacing: -.035em; }
.program-card p { overflow: hidden; margin: 0 0 10px; color: var(--fria-muted); white-space: nowrap; text-overflow: ellipsis; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-flex; padding: 3px 8px; border-radius: 999px; background: var(--fria-black); color: #fff; font-size: .72rem; font-weight: 800; }
.program-search { margin-bottom: 38px; }
.program-search label { display: block; margin-bottom: 8px; font-weight: 800; }
.program-search input { width: 100%; padding: 18px; border: 1px solid #e2e2df; border-radius: 8px; background: var(--fria-gray); }

/* Coaches and content */
.coach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.coach-card img { width: 100%; border-radius: 14px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 82px; align-items: center; }
.about-collage { position: relative; min-height: 590px; }
.about-collage img { position: absolute; object-fit: cover; border-radius: 12px; }
.about-collage img:first-child { inset: 0 30% 0 0; width: 70%; height: 100%; }
.about-collage img:nth-child(2) { top: 0; right: 0; width: 27%; height: 44%; }
.about-collage img:nth-child(3) { right: 0; bottom: 0; width: 27%; height: 52%; }
.about-copy h2 { margin: 6px 0 25px; font-size: clamp(2.4rem, 4vw, 4.7rem); line-height: .96; letter-spacing: -.065em; }
.about-copy p { color: var(--fria-muted); }
.facility-banner { position: relative; overflow: hidden; min-height: 500px; border-radius: 18px; background: url('assets/images/basketball.jpg') center / cover; }
.facility-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent 65%); }
.feature-cards { position: absolute; z-index: 1; right: 22px; bottom: 22px; left: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-card { padding: 20px; border-radius: 8px; background: white; }
.feature-card h3 { margin: 4px 0 8px; font-size: 1.4rem; }
.feature-card p { margin: 0; color: var(--fria-muted); font-size: .85rem; }
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 24px; padding: 56px 0; color: #8a8a88; }
.partner { font-size: 1.35rem; font-weight: 900; letter-spacing: -.08em; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { position: relative; }
.price-card__top { min-height: 260px; padding: 24px; border: 1px solid var(--fria-line); border-radius: 10px; background: var(--fria-gray); }
.price-card h3 { margin: 0 0 18px; font-size: 1.35rem; }
.price-badge { position: absolute; top: 24px; right: 20px; padding: 3px 12px; background: var(--fria-black); color: #fff; font-size: .7rem; font-weight: 800; }
.price { margin: 18px 0; font-size: 2.8rem; font-weight: 700; letter-spacing: -.06em; }
.price small { font-size: .75rem; font-weight: 400; letter-spacing: 0; }
.price-card .button { width: 100%; justify-content: space-between; }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; }
.check-list li { position: relative; margin: 9px 0; padding-left: 25px; font-size: .9rem; font-weight: 700; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 1px; display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--fria-green); color: #fff; font-size: 10px; }

/* FAQ and testimonials */
.faq-wrap { padding: 72px clamp(20px, 8vw, 150px); border-radius: 15px; background: var(--fria-gray); }
.faq-list { max-width: 900px; margin: 35px auto 0; }
.faq-item { margin: 8px 0; border: 1px solid var(--fria-line); border-radius: 6px; background: #fff; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 19px 22px; border: 0; background: transparent; text-align: left; font-size: 1.1rem; font-weight: 700; cursor: pointer; }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 400; }
.faq-answer { display: none; padding: 0 22px 20px; color: #d7d7d7; }
.faq-item.is-open { background: var(--fria-black); color: #fff; }
.faq-item.is-open .faq-question::after { content: '\00d7'; color: #fff; }
.faq-item.is-open .faq-answer { display: block; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: minmax(180px, auto); gap: 14px; }
.quote-card, .stat-card { padding: 25px; border-radius: 10px; background: var(--fria-gray); }
.quote-card--large { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.quote-card__stars { color: var(--fria-red); }
.quote-card blockquote { margin: 16px 0; font-size: 1.45rem; line-height: 1.05; letter-spacing: -.035em; }
.testimonial-photo { width: 100%; height: 100%; min-height: 200px; object-fit: cover; border-radius: 10px; }
.stat-card { background: var(--fria-black); color: #fff; }
.stat-card strong { display: block; margin-top: 45px; font-size: 3rem; color: #fff; }

/* CTA and footer */
.cta { display: grid; grid-template-columns: 1fr 1.5fr; overflow: hidden; min-height: 420px; border-radius: 17px; background: var(--fria-black); color: white; }
.cta__image { min-height: 360px; background: linear-gradient(135deg, #888 0 28%, #111 28% 42%, #777 42% 60%, #111 60%); }
.cta__image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; }
.cta__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 6vw, 85px); }
.cta h2 { margin: 0 0 15px; font-size: clamp(2.5rem, 4vw, 4.2rem); line-height: .95; letter-spacing: -.06em; }
.cta p { max-width: 520px; color: #ccc; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }
.site-footer { padding: 60px 0 25px; background: var(--fria-black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 90px; }
.footer-images { display: flex; gap: 14px; margin-bottom: 70px; }
.footer-images img { width: 190px; height: 125px; object-fit: cover; border-radius: 7px; }
.footer-images img:last-child { width: 92px; }
.footer-logo { font-size: clamp(4.3rem, 9vw, 9rem); font-weight: 900; line-height: .78; letter-spacing: -.09em; }
.footer-logo-image { width: min(100%, 560px); border-radius: 10px; }
.footer-tagline { margin-top: 24px; font-size: 1.2rem; }
.newsletter { margin: 90px 0 50px; }
.newsletter label { display: block; margin-bottom: 8px; color: #fff; font-size: .82rem; font-weight: 800; }
.newsletter__form { display: flex; }
.newsletter input { width: 100%; min-height: 50px; padding: 0 19px; border: 0; border-radius: 999px 0 0 999px; }
.newsletter button { flex: none; min-height: 50px; border: 0; border-radius: 0 999px 999px 0; background: var(--fria-lime); font-weight: 800; cursor: pointer; }
.footer-navs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-navs h3 { margin: 0 0 12px; color: #8dc9eb; font-size: .9rem; }
.footer-navs ul { list-style: none; margin: 0; padding: 0; }
.footer-navs li { margin: 6px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; color: #bbb; font-size: .85rem; }
.back-top { color: #8dc9eb; font-weight: 800; text-transform: uppercase; }

/* Program detail */
.program-detail { padding: 35px 0 100px; }
.program-detail__head { text-align: center; }
.program-detail__head h1 { margin: 20px 0 14px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .95; letter-spacing: -.06em; }
.program-detail__intro { max-width: 900px; margin: 17px auto 35px; color: var(--fria-muted); }
.program-detail__hero { width: 100%; max-height: 620px; aspect-ratio: 2.95 / 1; object-fit: cover; border-radius: 12px; }
.program-detail__layout { display: grid; grid-template-columns: 1fr 400px; gap: 34px; margin-top: 55px; align-items: start; }
.prose h2 { margin: 34px 0 10px; font-size: 1.45rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--fria-muted); }
.detail-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 40px 0; }
.detail-gallery img { width: 100%; aspect-ratio: 1.42; object-fit: cover; border-radius: 10px; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.path-card { padding: 18px; border: 1px solid var(--fria-line); border-radius: 7px; background: var(--fria-gray); }
.path-card h3 { font-size: .98rem; }
.path-card p { margin: 0; font-size: .85rem; }
.booking-panel { position: sticky; top: 24px; padding: 28px; border-radius: 12px; background: var(--fria-gray); }
.booking-panel h2 { margin: 0 0 25px; font-size: 1.7rem; }
.booking-panel label { display: block; margin-top: 14px; font-size: .82rem; font-weight: 800; }
.booking-panel input, .booking-panel select { width: 100%; margin-top: 5px; padding: 11px 0; border: 0; border-bottom: 1px solid #ccc; background: transparent; color: #777; }
.booking-panel .button { width: 100%; justify-content: space-between; margin-top: 25px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; justify-content: space-between; }
.contact-info h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .95; letter-spacing: -.06em; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-details h3 { margin: 0 0 6px; color: var(--fria-muted); font-size: .9rem; }
.contact-details p { margin: 0 0 24px; font-size: 1.35rem; }
.contact-form { padding: 34px; border-radius: 16px; background: var(--fria-gray); }
.contact-form h2 { margin: 0 0 38px; font-size: 2rem; }
.contact-form label { display: block; margin: 15px 0 6px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 7px; background: #fff; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .button { width: 100%; justify-content: space-between; margin-top: 18px; border: 0; }
.form-message { padding: 12px 15px; border-radius: 6px; background: #e8f8ce; }

/* 404 and generic content */
.not-found { min-height: 650px; display: grid; place-items: center; padding: 100px 20px; text-align: center; }
.not-found h1 { margin: 0 0 22px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .95; letter-spacing: -.07em; }
.not-found p { margin-bottom: 28px; color: var(--fria-muted); font-size: 1.2rem; }
.entry-content { padding: 70px 0; }
.entry-content > * { max-width: 850px; margin-inline: auto; }
.page-block-content { overflow: hidden; }
.page-block-content > :where(:not(.alignfull)) { width: min(calc(100% - 64px), var(--fria-max)); margin-inline: auto; }
.page-block-content > .section, .page-block-content > .section--tight { width: 100%; max-width: none; }
.page-block-content .wp-block-cover.fria-block-hero h1 { max-width: 760px; margin: 0 0 22px; color: #fff; font-size: clamp(3.4rem, 7vw, 7rem); line-height: .9; letter-spacing: -.07em; }
.page-block-content .wp-block-cover.fria-block-hero p { max-width: 650px; color: #fff; font-size: 1.2rem; }
.page-block-content .wp-block-button__link { border-radius: 999px; background: var(--fria-lime); color: #fff; font-weight: 800; }
.page-block-content .wp-block-image img { border-radius: 12px; }
.page-block-content .wp-block-columns { gap: clamp(28px, 5vw, 70px); }
.page-block-content .booking-panel { height: max-content; }

@media (max-width: 1050px) {
    .container { width: min(calc(100% - 40px), var(--fria-max)); }
    .site-header__inner { grid-template-columns: 1fr auto auto; }
    .primary-nav { position: fixed; inset: 0; display: none; place-items: center; border-radius: 0; }
    .primary-nav.is-open { display: grid; }
    .primary-nav ul { display: block; text-align: center; }
    .primary-nav a { padding: 14px; font-size: 1.6rem; }
    .primary-nav .menu-item-has-children > a { display: inline-flex; }
    .primary-nav .menu-item-has-children > a::after { width: 8px; height: 8px; }
    .primary-nav .sub-menu { position: static; min-width: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
    .primary-nav .sub-menu::before { display: none; }
    .primary-nav .sub-menu li { display: none; }
    .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu li { display: block; }
    .primary-nav .sub-menu a { padding: 9px 14px; color: #c7d4e0; font-size: 1rem; }
    .submenu-toggle { display: inline-grid; position: relative; z-index: 1; width: 34px; height: 34px; margin-left: 4px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; }
    .submenu-toggle::before { content: ''; width: 8px; height: 8px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
    .menu-item-has-children.is-submenu-open > .submenu-toggle::before { transform: rotate(180deg); }
    .menu-toggle { position: relative; z-index: 2; display: grid; place-items: center; }
    .header-action { display: none; }
    .home-hero__grid { grid-template-columns: 1fr; }
    .home-hero__copy { min-height: 520px; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-layout { grid-template-columns: 1fr; }
    .contact-info { min-height: 450px; }
    .program-detail__layout { grid-template-columns: 1fr; }
    .booking-panel { position: static; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--fria-max)); }
    .page-block-content > :where(:not(.alignfull)) { width: min(calc(100% - 28px), var(--fria-max)); }
    .section { padding: 72px 0; }
    .section-heading { display: block; }
    .section-heading .button { margin-top: 20px; }
    .site-header { padding: 17px 0; }
    .wordmark__main { font-size: 1.25rem; }
    .site-branding--image { width: 112px; height: 70px; }
    .home-hero { padding-top: 0; }
    .home-hero__grid { gap: 20px; }
    .home-hero__copy { min-height: 430px; padding: 45px 0 20px; }
    .home-hero__visual { min-height: 580px; }
    .booking-fields { grid-template-columns: 1fr; }
    .program-grid, .coach-grid, .pricing-grid, .feature-cards, .testimonial-grid { grid-template-columns: 1fr; }
    .program-card__image { aspect-ratio: 1.6 / 1; }
    .coach-grid { grid-template-columns: 1fr 1fr; }
    .about-collage { min-height: 430px; }
    .feature-cards { position: relative; inset: auto; padding: 14px; }
    .facility-banner { padding-top: 300px; }
    .faq-wrap { padding: 50px 15px; }
    .cta { grid-template-columns: 1fr; }
    .cta__image { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .newsletter { margin-top: 55px; }
    .footer-images { margin-bottom: 55px; }
    .footer-bottom { flex-direction: column; }
    .detail-columns, .path-grid, .contact-details { grid-template-columns: 1fr; }
    .program-detail__hero { min-height: 300px; }
    .page-hero { min-height: 360px; }
    .page-hero h1 { margin-top: 55px; }
}
