:root {
    --color-ink: #191c1d;
    --color-muted: #3f484c;
    --color-surface: #f8f9fa;
    --color-surface-soft: #f1f3f4;
    --color-surface-card: #ffffff;
    --color-stroke: #e9ecef;
    --color-dark: #111111;
    --color-dark-soft: #1d1d1b;
    --color-teal: #00495e;
    --color-teal-bright: #0f6f86;
    --color-lime: #e2ec2e;
    --color-lime-dim: #c6cf00;
    --font-display: "Geom", Arial, Helvetica, sans-serif;
    --font-ui: "Outfit", Arial, Helvetica, sans-serif;
    --font-testimonial: "Bree Serif", Georgia, "Times New Roman", serif;
    --font-label: "Outfit", Arial, Helvetica, sans-serif;
    --container: 1280px;
    --gutter: 24px;
    --section-lg: 120px;
    --section-md: 80px;
    --shadow-teal: 0 18px 42px rgba(0, 73, 94, 0.12);
    --site-header-height: 104px;
    --site-logo-width: 168px;
    --site-logo-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-surface);
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.material-icons {
    display: inline-block;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
}

.container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--color-lime);
    color: #101200;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--site-header-height);
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 28px;
}

.site-logo {
    display: flex;
    align-items: center;
    width: var(--site-logo-width);
    height: var(--site-logo-height);
    overflow: hidden;
}

.site-logo img {
    width: var(--site-logo-width);
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding-block: 12px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-lime);
    transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--color-lime);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 16px 34px;
    border: 0;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--small {
    min-height: 40px;
    padding: 12px 26px;
    border-radius: 10px;
    letter-spacing: 0;
}

.button--lime {
    background: var(--color-lime);
    color: #121500;
}

.button--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
    color: #fff;
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
    border-color: #fff;
    background: #fff;
    color: var(--color-teal);
}

.hero {
    position: relative;
    min-height: 92vh;
    padding-top: var(--site-header-height);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    background: url("/assets/images/gim-hero.jpg") center / cover no-repeat;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: auto -8% 0;
    height: 32%;
    background:
        radial-gradient(ellipse at center, rgba(74, 98, 52, 0.58) 0%, rgba(33, 55, 31, 0.48) 35%, rgba(12, 16, 11, 0.9) 78%),
        repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
    display: none;
    transform: skewY(-4deg);
}

.hero__media::after {
    content: "";
    position: absolute;
    right: 13%;
    bottom: 18%;
    width: clamp(130px, 22vw, 320px);
    aspect-ratio: 0.36;
    border-radius: 50% 50% 45% 45%;
    background:
        linear-gradient(88deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 39% 42%, transparent 43%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.55));
    opacity: 0.55;
    filter: blur(0.4px);
    display: none;
    transform: rotate(12deg);
}

.hero__shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.76) 100%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 82%);
}

.hero__content {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(58px, 9vw, 132px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero__eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.hero__copy {
    max-width: 660px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-ui);
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 600;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 44px;
    z-index: 2;
    width: 26px;
    height: 36px;
    transform: translateX(-50%);
}

.hero__scroll::before,
.hero__scroll::after,
.hero__scroll span {
    content: "";
    position: absolute;
    left: 50%;
    width: 11px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.95;
}

.hero__scroll::before {
    top: 4px;
}

.hero__scroll span {
    top: 13px;
}

.hero__scroll::after {
    top: 22px;
}

.section {
    padding-block: var(--section-lg);
}

#offerings,
#mission,
#programs-preview,
#testimonials,
#footer {
    scroll-margin-top: 80px;
}

.section--light {
    background: var(--color-surface);
}

.offerings {
    padding-block: 92px 104px;
}

.offerings__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.offering {
    display: grid;
    justify-items: center;
    text-align: center;
}

.offering__icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--color-lime-dim);
    color: var(--color-teal);
}

.offering__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offering h3 {
    margin: 0 0 10px;
    color: #121212;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
}

.offering p {
    max-width: 170px;
    margin: 0;
    color: #555c60;
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.55;
}

.mission {
    padding-block: 120px 112px;
    background: var(--color-surface);
}

.mission__inner {
    max-width: 900px;
    text-align: center;
}

.mission h2,
.programs-preview h2 {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(39px, 4.4vw, 58px);
    font-weight: 900;
    line-height: 0.94;
}

.section-rule {
    width: 64px;
    height: 4px;
    margin: 30px auto 34px;
    background: var(--color-lime);
}

.mission__inner > p,
.programs-preview__intro > p {
    max-width: 720px;
    margin: 0 auto;
    color: #354146;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.mission strong {
    color: var(--color-teal);
}

.metric-row {
    display: flex;
    justify-content: center;
    gap: min(9vw, 140px);
    margin-top: 58px;
}

.metric {
    display: grid;
    justify-items: center;
    gap: 14px;
    color: var(--color-lime-dim);
}

.metric span {
    width: 28px;
    height: 28px;
}

.metric svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.metric p {
    margin: 0;
    color: #777;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.35;
}

.programs-preview {
    padding-block: 82px 108px;
    background: var(--color-surface-soft);
}

.programs-preview__intro {
    max-width: 780px;
    margin: 0 auto 78px;
    text-align: center;
}

.programs-preview__intro .section-rule {
    margin-top: 0;
}

.programs-preview__intro p {
    margin-bottom: 38px;
}

.program-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
}

.program-card {
    min-width: 0;
}

.program-card__image {
    display: block;
    position: relative;
    aspect-ratio: 450 / 482;
    margin-bottom: 26px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #d8dddc;
    box-shadow:
        16px 18px 0 var(--color-surface-container, #edeeef),
        0 24px 46px rgba(0, 73, 94, 0.14);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.program-card__image:hover {
    box-shadow:
        12px 14px 0 var(--color-surface-container, #edeeef),
        0 28px 54px rgba(0, 73, 94, 0.18);
    transform: translate(2px, 2px);
}

.program-card__image::before,
.program-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.program-card__image::before {
    background:
        radial-gradient(circle at 22% 24%, rgba(226, 236, 46, 0.78) 0 9%, transparent 10%),
        radial-gradient(circle at 63% 32%, rgba(255, 255, 255, 0.88) 0 3%, transparent 4%),
        linear-gradient(150deg, rgba(0, 73, 94, 0.14), transparent 35%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 22px);
}

.program-card__image::after {
    inset: auto 0 0;
    height: 42%;
    background:
        linear-gradient(8deg, rgba(29, 75, 34, 0.8), rgba(98, 128, 65, 0.58)),
        repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
}

.program-card__image--junior {
    background: url("/assets/images/junior-academy.jpeg") center / cover no-repeat;
}

.program-card__image--junior::before,
.program-card__image--junior::after {
    display: none;
}

.program-card__image--adult {
    background: url("/assets/images/adult-academy-a.jpg") center / cover no-repeat;
}

.program-card__image--adult::before,
.program-card__image--adult::after {
    display: none;
}

.program-card__image--fitting {
    background: url("/assets/images/bpg-home.jpg") center / cover no-repeat;
}

.program-card__image--fitting::before,
.program-card__image--fitting::after {
    display: none;
}

.program-card h3 {
    margin: 0 0 13px;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(25px, 2.4vw, 35px);
    font-weight: 900;
    line-height: 1;
}

.program-card h3 a,
.program-feature h2 a {
    color: inherit;
    text-decoration: none;
}

.program-card__image:focus-visible,
.program-feature__image:focus-visible {
    outline: 3px solid var(--color-lime);
    outline-offset: 6px;
}

.program-card p {
    max-width: 420px;
    margin: 0;
    color: #445057;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
}

.program-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--color-teal);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.program-card__link::after {
    content: "arrow_forward";
    margin-left: 8px;
    color: var(--color-lime);
    font-family: "Material Icons";
    font-size: 19px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
}

.program-card__link:hover,
.program-card__link:focus-visible {
    color: var(--color-black);
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    background: #101010;
    color: #fff;
    padding-block: 116px 108px;
    text-align: center;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 26px 26px;
}

.testimonial-section__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.testimonial-kicker {
    margin: 0 0 38px;
    color: var(--color-lime-dim);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.testimonial-section blockquote {
    margin: 0;
}

.testimonial-card {
    transition: opacity 180ms ease, transform 180ms ease;
}

.testimonial-card[data-changing="true"] {
    opacity: 0.42;
    transform: translateY(4px);
}

.testimonial-section blockquote p {
    margin: 0;
    font-family: var(--font-testimonial);
    font-size: clamp(24px, 3vw, 39px);
    font-style: italic;
    font-weight: 900;
    line-height: 1.52;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.testimonial-section cite {
    display: grid;
    gap: 5px;
    justify-items: center;
    margin-top: 28px;
    font-family: var(--font-ui);
    font-style: normal;
}

.testimonial-section cite strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.testimonial-section cite span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.testimonial-mark {
    position: absolute;
    color: rgba(198, 207, 0, 0.2);
    font-family: var(--font-testimonial);
    font-size: clamp(110px, 18vw, 260px);
    font-weight: 900;
    line-height: 0.8;
}

.testimonial-mark--left {
    top: 80px;
    left: 8vw;
}

.testimonial-mark--right {
    right: 8vw;
    bottom: 60px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 58px;
}

.testimonial-controls button {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
    border-color: var(--color-lime);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-lime);
    transform: translateY(-1px);
}

.testimonial-controls span:not(.material-icons) {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.testimonial-controls .material-icons {
    font-family: "Material Icons";
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
}

.page-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 470px;
    padding-block: 160px 92px;
    overflow: hidden;
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.page-hero__pattern,
.cta-band__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-hero::after,
.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 45%, rgba(0, 73, 94, 0.25), transparent 58%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.page-hero .section-rule {
    margin-top: 0;
    margin-bottom: 32px;
}

.page-hero h1 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(58px, 8vw, 104px);
    font-weight: 900;
    line-height: 0.92;
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.program-list {
    background: var(--color-surface);
}

.program-list__inner {
    display: grid;
    gap: 132px;
}

.program-feature {
    scroll-margin-top: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: min(8vw, 88px);
    align-items: center;
}

.program-feature--reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.program-feature--reverse .program-feature__media {
    order: 2;
}

.program-feature--reverse .program-feature__content {
    order: 1;
}

.program-feature__media {
    position: relative;
}

.program-feature__media::before {
    content: "";
    position: absolute;
    inset: 24px -24px -24px 24px;
    z-index: 0;
    background: var(--color-surface-container, #edeeef);
    box-shadow: var(--shadow-teal);
    transition: transform 180ms ease;
}

.program-feature--reverse .program-feature__media::before {
    inset: 24px 24px -24px -24px;
}

.program-feature__media:hover::before {
    transform: translate(-4px, -4px);
}

.program-feature__image {
    display: block;
    position: relative;
    z-index: 1;
    aspect-ratio: 450 / 482;
    overflow: hidden;
    border: 1px solid rgba(0, 73, 94, 0.2);
    background: #d8dddc;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.program-feature__image::before,
.program-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.program-feature__image::before {
    background:
        radial-gradient(circle at 30% 25%, rgba(226, 236, 46, 0.8) 0 10%, transparent 11%),
        radial-gradient(circle at 67% 34%, rgba(255, 255, 255, 0.84) 0 3.5%, transparent 4.5%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 24px);
}

.program-feature__image::after {
    inset: auto 0 0;
    height: 42%;
    background:
        linear-gradient(8deg, rgba(22, 67, 31, 0.82), rgba(89, 119, 67, 0.62)),
        repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.program-feature__image--junior {
    background: url("/assets/images/junior-academy.jpeg") center / cover no-repeat;
}

.program-feature__image--adult {
    background: url("/assets/images/adult-academy-a.jpg") center / cover no-repeat;
}

.program-feature__image--fitting {
    background: url("/assets/images/bpg-home.jpg") center / cover no-repeat;
}

.program-feature__image--junior::before,
.program-feature__image--junior::after,
.program-feature__image--adult::before,
.program-feature__image--adult::after,
.program-feature__image--fitting::before {
    display: none;
}

.program-feature__image--fitting::after {
    display: none;
}

.program-feature__metric {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    min-width: 170px;
    padding: 18px 20px;
    border-left: 4px solid var(--color-lime);
    background: rgba(17, 17, 17, 0.92);
    color: var(--color-lime);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.program-feature__metric--left {
    right: auto;
    left: 28px;
}

.program-feature__metric span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.program-feature__metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.program-feature__content {
    max-width: 560px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    color: var(--color-teal-bright);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.section-label span {
    width: 42px;
    height: 2px;
    background: var(--color-lime);
}

.program-feature h2 {
    margin: 0 0 20px;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 0.98;
}

.program-feature__content > p:not(.section-label) {
    margin: 0;
    color: #354146;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

.program-feature__content .button {
    margin-top: 34px;
}

.button--dark {
    background: var(--color-dark-soft);
    color: var(--color-lime);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--color-lime);
    color: #121500;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding-block: 98px;
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.cta-band__content {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.95;
}

.cta-band p {
    max-width: 640px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.about-hero {
    position: relative;
    display: grid;
    min-height: 85vh;
    place-items: center;
    overflow: hidden;
    padding-top: var(--site-header-height);
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.about-hero__media,
.about-hero__shade {
    position: absolute;
    inset: 0;
}

.about-hero__media {
    background: url("/assets/images/bg-one.jpg") center / cover no-repeat;
}

.about-hero__media::before {
    content: none;
}

.about-hero__media::after {
    content: none;
}

.about-hero__shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.64) 82%);
}

.about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.about-hero__content p {
    margin: 0 0 20px;
    color: var(--color-lime);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.26em;
}

.about-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(52px, 7.6vw, 104px);
    font-weight: 900;
    line-height: 0.94;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.58);
}

.about-story {
    background: var(--color-surface);
}

.about-story__grid,
.coach-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    gap: min(8vw, 92px);
    align-items: center;
}

.about-story__content {
    max-width: 620px;
}

.section-rule--left {
    margin-right: auto;
    margin-left: 0;
}

.about-story h2,
.about-tech h2,
.coach-section h2 {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.96;
}

.about-story p {
    margin: 0 0 24px;
    color: #354146;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.78;
}

.about-story strong {
    color: var(--color-teal);
    font-weight: 900;
}

.about-story .button {
    margin-top: 12px;
}

.about-photo {
    position: relative;
    aspect-ratio: 450 / 482;
    overflow: hidden;
    border: 1px solid rgba(0, 73, 94, 0.18);
    background: #d9dddc;
    box-shadow: var(--shadow-teal);
}

.about-photo::before {
    content: none;
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: 20px -18px -18px 20px;
    z-index: -1;
    background: var(--color-lime);
}

.about-photo--facility {
    background: url("/assets/images/about.jpg") center / cover no-repeat;
}

.about-tech {
    background: var(--color-surface-soft);
    border-block: 1px solid var(--color-stroke);
}

.about-tech__intro {
    max-width: 760px;
    margin-bottom: 70px;
    text-align: center;
}

.about-tech__intro p {
    margin: 0;
    color: rgba(63, 72, 76, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.about-tech__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(7vw, 86px);
}

.about-pillar {
    display: grid;
    justify-items: center;
    text-align: center;
}

.about-pillar__icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 26px;
    border-radius: 8px;
    background: var(--color-lime);
    color: var(--color-teal);
    font-size: 26px;
    box-shadow: 0 12px 26px rgba(198, 207, 0, 0.18);
}

.about-pillar h3 {
    margin: 0 0 12px;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.05;
}

.about-pillar p {
    max-width: 310px;
    margin: 0;
    color: #445057;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.coach-section {
    background: var(--color-surface);
}

.coach-section__grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.coach-photo {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: url("/assets/images/tim-overman.jpg") center top / cover no-repeat;
    box-shadow: var(--shadow-teal);
    filter: grayscale(1);
}

.coach-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 73, 94, 0.02), rgba(0, 0, 0, 0.1));
}

.coach-photo::after {
    content: none;
}

.coach-title {
    display: inline-block;
    margin: 16px 0 34px;
    padding: 8px 14px;
    background: var(--color-teal);
    color: var(--color-lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.coach-credential-list {
    display: grid;
    gap: 22px;
}

.coach-credential {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.coach-credential > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(226, 236, 46, 0.28);
    color: var(--color-teal);
    font-size: 22px;
}

.coach-credential h3 {
    margin: 0 0 4px;
    color: var(--color-teal);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.coach-credential p {
    margin: 0;
    color: #455158;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.coach-quote {
    position: relative;
    margin: 42px 0 0;
    padding: 8px 0 8px 28px;
    border-left: 4px solid var(--color-lime);
}

.coach-quote::before {
    content: "\201C";
    position: absolute;
    left: -11px;
    top: -34px;
    color: rgba(198, 207, 0, 0.42);
    font-family: var(--font-testimonial);
    font-size: 74px;
    line-height: 1;
}

.coach-quote p {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-testimonial);
    font-size: clamp(19px, 2.2vw, 28px);
    font-style: italic;
    line-height: 1.55;
}

.contact-hero {
    position: relative;
    display: grid;
    min-height: 610px;
    place-items: center;
    overflow: hidden;
    padding-block: 160px 110px;
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.contact-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 26px 26px;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(0, 73, 94, 0.24), transparent 56%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.contact-hero h1 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(54px, 7vw, 92px);
    font-weight: 900;
    line-height: 0.95;
}

.contact-hero__kicker {
    margin: 0 0 22px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.contact-hero__content > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.contact-section {
    background: var(--color-surface);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
    gap: min(7vw, 86px);
    align-items: start;
}

.contact-heading {
    margin-bottom: 48px;
}

.contact-heading h2 {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(39px, 4.5vw, 58px);
    font-weight: 900;
    line-height: 0.98;
}

.contact-heading .section-rule {
    margin-top: 28px;
    margin-bottom: 0;
}

.contact-form {
    display: grid;
    gap: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.form-field {
    display: grid;
    gap: 12px;
}

.form-field label {
    color: rgba(0, 73, 94, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--color-stroke);
    border-radius: 0;
    background: #fff;
    color: var(--color-ink);
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 180px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(226, 236, 46, 0.38);
}

.contact-form__submit {
    width: 100%;
    min-height: 72px;
    margin-top: 8px;
}

.contact-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-bottom: 28px;
    padding: 18px 20px;
    border-left: 4px solid;
    background: #fff;
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.form-alert p {
    margin: 0 0 8px;
    font-weight: 900;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert--success {
    border-color: var(--color-lime-dim);
}

.form-alert--error {
    border-color: #ba1a1a;
}

.location-panel {
    display: grid;
}

.location-list {
    display: grid;
    gap: 46px;
}

.location-card {
    padding: 38px 34px;
    border: 1px solid var(--color-stroke);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 73, 94, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.location-card:hover {
    border-color: var(--color-lime-dim);
    box-shadow: var(--shadow-teal);
    transform: translateY(-2px);
}

.location-card h3 {
    margin: 0 0 12px;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 900;
    line-height: 1.05;
}

.location-card p {
    margin: 0 0 26px;
    color: #445057;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.location-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.location-card a:hover,
.location-card a:focus-visible {
    color: #111;
}

.location-card .material-icons {
    font-size: 16px;
}

.direct-contact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
    margin-top: 50px;
    padding: 40px 34px;
    background: var(--color-lime);
    color: #121500;
}

.direct-contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: radial-gradient(circle, #121500 1px, transparent 1px);
    background-size: 22px 22px;
}

.direct-contact-card span,
.direct-contact-card a {
    position: relative;
    z-index: 1;
}

.direct-contact-card span {
    color: rgba(18, 21, 0, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.direct-contact-card a {
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.direct-contact-card a:hover,
.direct-contact-card a:focus-visible {
    color: var(--color-teal);
}

.booking-hero {
    position: relative;
    display: grid;
    min-height: 82vh;
    place-items: center;
    overflow: hidden;
    padding-top: var(--site-header-height);
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.booking-hero__media,
.booking-hero__shade {
    position: absolute;
    inset: 0;
}

.booking-hero__media {
    background: url("/assets/images/bg-two.jpg") center / cover no-repeat;
}

.booking-hero__media::before {
    content: none;
}

.booking-hero__media::after {
    content: none;
}

.booking-hero__shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.76) 100%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.64) 80%);
}

.booking-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.booking-hero h1 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(54px, 7.2vw, 100px);
    font-weight: 900;
    line-height: 0.94;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.58);
}

.booking-hero__kicker {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(19px, 2vw, 28px);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.booking-hero__content > p:last-of-type {
    max-width: 670px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.booking-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
}

.booking-section {
    padding-block: var(--section-lg) 76px;
    background: var(--color-dark-soft);
    color: #fff;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
    gap: min(6vw, 72px);
    align-items: start;
}

.booking-info h2 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: 0.96;
}

.booking-info > p {
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.booking-benefits {
    display: grid;
    gap: 22px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.booking-benefit {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.booking-benefit span,
.booking-location span {
    color: var(--color-lime);
}

.booking-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.booking-location {
    margin-top: 46px;
}

.booking-location h3 {
    margin: 0 0 18px;
    color: var(--color-lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.booking-location > div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
}

.booking-location address {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.booking-location a {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.booking-location a:hover,
.booking-location a:focus-visible {
    color: #fff;
}

.booking-widget {
    min-width: 0;
}

.booking-widget__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 20px;
    border: 1px solid var(--color-stroke);
    border-bottom: 0;
    background: #e1e3e4;
    color: var(--color-muted);
}

.booking-widget__bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.booking-widget__bar span:nth-child(1) {
    background: #ba1a1a;
}

.booking-widget__bar span:nth-child(2) {
    background: var(--color-lime-dim);
}

.booking-widget__bar span:nth-child(3) {
    background: var(--color-teal);
}

.booking-widget__bar strong {
    margin-left: auto;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.booking-widget__body {
    position: relative;
    min-height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.booking-widget iframe {
    display: block;
    width: 100%;
    min-height: 700px;
    border: 0;
}

.booking-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 48px;
    color: var(--color-ink);
    text-align: center;
}

.booking-placeholder__spinner {
    width: 68px;
    height: 68px;
    border: 5px solid var(--color-lime);
    border-top-color: transparent;
    border-radius: 50%;
    animation: booking-spin 1s linear infinite;
}

@keyframes booking-spin {
    to {
        transform: rotate(360deg);
    }
}

.booking-placeholder h2 {
    margin: 0;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
}

.booking-placeholder p {
    max-width: 410px;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.booking-placeholder .button {
    margin-top: 8px;
}

.booking-note {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
}

.booking-offerings {
    padding-block: 76px;
    background: var(--color-surface);
}

.booking-offerings__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.booking-offering {
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 26px 16px;
    border: 1px solid transparent;
    text-align: center;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.booking-offering:hover,
.booking-offering:focus-visible {
    border-color: var(--color-stroke);
    background: #fff;
    transform: translateY(-2px);
}

.booking-offering span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(198, 207, 0, 0.24);
    color: var(--color-teal);
    font-size: 30px;
    transition: background-color 160ms ease, color 160ms ease;
}

.booking-offering:hover span,
.booking-offering:focus-visible span {
    background: var(--color-teal);
    color: #fff;
}

.booking-offering strong {
    color: #171917;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.legal-hero {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    overflow: hidden;
    padding-block: 148px 72px;
    background: var(--color-dark-soft);
    color: #fff;
    text-align: center;
}

.legal-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 26px 26px;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 42%, rgba(0, 73, 94, 0.24), transparent 58%);
}

.legal-hero__content {
    position: relative;
    z-index: 1;
    max-width: 840px;
}

.legal-hero p {
    margin: 0 0 18px;
    color: var(--color-lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.legal-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    line-height: 0.98;
}

.legal-section {
    background: var(--color-surface);
}

.legal-content {
    max-width: 900px;
}

.legal-content--centered {
    text-align: center;
}

.legal-block {
    padding-block: 34px;
    border-bottom: 1px solid var(--color-stroke);
}

.legal-block--standalone {
    max-width: 720px;
    margin-inline: auto;
    padding: 52px;
    border: 1px solid var(--color-stroke);
    background: #fff;
}

.legal-block:first-child {
    padding-top: 0;
}

.legal-block--standalone:first-child {
    padding-top: 52px;
}

.legal-block h2 {
    margin: 0 0 18px;
    color: var(--color-teal);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.05;
}

.legal-block p,
.legal-block li,
.legal-contact p {
    color: #354146;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}

.legal-block p {
    margin: 0 0 16px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block .button {
    margin-top: 18px;
}

.legal-block ul {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-block strong {
    color: var(--color-teal);
    font-weight: 900;
}

.legal-table {
    display: grid;
    margin-top: 18px;
    border: 1px solid var(--color-stroke);
    background: #fff;
}

.legal-table div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.legal-table div + div {
    border-top: 1px solid var(--color-stroke);
}

.legal-table span {
    padding: 16px 18px;
    color: #354146;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.legal-table span:first-child {
    border-right: 1px solid var(--color-stroke);
    color: var(--color-teal);
    font-weight: 900;
}

.legal-contact {
    margin-top: 34px;
    padding: 26px 30px;
    border-left: 4px solid var(--color-lime);
    background: #fff;
}

.legal-contact p {
    margin: 0;
}

.legal-contact a {
    color: var(--color-teal);
    font-weight: 900;
}

.affiliate-strip {
    background: #fff;
    padding-block: 60px 58px;
    border-bottom: 1px solid var(--color-stroke);
}

.affiliate-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(7vw, 90px);
    flex-wrap: wrap;
}

.affiliate {
    display: grid;
    justify-items: center;
    gap: 13px;
    color: rgba(25, 28, 29, 0.58);
    filter: grayscale(1);
    opacity: 0.72;
    transition: opacity 160ms ease, filter 160ms ease;
}

.affiliate:hover,
.affiliate:focus-visible {
    filter: grayscale(0);
    opacity: 1;
}

.affiliate img {
    width: 104px;
    height: 52px;
    object-fit: contain;
}

.affiliate span {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-lime-dim), var(--color-lime));
    color: #121500;
    padding-block: 84px 0;
}

.site-footer__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image: radial-gradient(circle, #121500 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.site-footer__grid,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 1fr 1.1fr;
    gap: 72px;
}

.footer-wordmark {
    display: inline-block;
    margin-bottom: 24px;
    color: #111;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 900;
    line-height: 0.88;
}

.site-footer__brand p {
    max-width: 290px;
    margin: 0;
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.site-footer__column h2 {
    margin: 0 0 28px;
    color: rgba(18, 21, 0, 0.6);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.site-footer__column ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column a,
.site-footer address {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.55;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: var(--color-teal);
}

.site-footer address {
    font-style: normal;
}

.site-footer address a {
    text-transform: none;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #121500;
    color: var(--color-lime);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.site-footer__column .footer-social-link:hover,
.site-footer__column .footer-social-link:focus-visible {
    background: var(--color-teal);
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 88px;
    padding-block: 28px;
    border-top: 1px solid rgba(18, 21, 0, 0.18);
    color: rgba(18, 21, 0, 0.72);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 700;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 54px;
}

@media (max-width: 1040px) {
    :root {
        --section-lg: 96px;
    }

    .nav-menu {
        gap: 32px;
    }

    .nav-links {
        gap: 26px;
    }

    .hero {
        min-height: 820px;
    }

    .offerings__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .program-card-grid {
        gap: 30px;
    }

    .program-list__inner {
        gap: 108px;
    }

    .program-feature,
    .program-feature--reverse {
        grid-template-columns: 1fr 0.9fr;
        gap: 54px;
    }

    .program-feature__metric strong {
        font-size: 25px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px;
    }

    .about-story__grid,
    .coach-section__grid {
        gap: 56px;
    }

    .coach-photo {
        min-height: 560px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-offerings__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 780px) {
    :root {
        --gutter: 16px;
        --section-lg: 80px;
        --section-md: 64px;
        --site-header-height: 78px;
        --site-logo-width: 122px;
        --site-logo-height: 64px;
    }

    .site-header {
        height: var(--site-header-height);
    }

    .nav-toggle {
        position: relative;
        z-index: 61;
        display: grid;
        gap: 5px;
        width: 42px;
        height: 42px;
        place-content: center;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: transparent;
        color: #fff;
    }

    .nav-toggle__line {
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
    }

    .nav-menu {
        position: fixed;
        inset: 72px 0 0;
        z-index: 60;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 26px;
        padding: 30px 16px;
        background: rgba(17, 17, 17, 0.98);
        transform: translateX(100%);
        transition: transform 200ms ease;
    }

    .nav-menu[data-open="true"] {
        transform: translateX(0);
    }

    .nav-links {
        display: grid;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 18px;
    }

    .nav-link::after {
        bottom: 12px;
        right: auto;
        width: 56px;
    }

    .nav-menu .button {
        width: 100%;
    }

    .hero {
        min-height: 740px;
        padding-top: var(--site-header-height);
    }

    .hero__content {
        margin-top: 0;
    }

    .hero h1 {
        font-size: clamp(48px, 16vw, 74px);
    }

    .hero__eyebrow {
        font-size: 18px;
    }

    .hero__copy {
        font-size: 14px;
        line-height: 1.58;
    }

    .offerings {
        padding-block: 72px 78px;
    }

    .offerings__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 22px;
    }

    .offering__icon {
        width: 64px;
        height: 64px;
    }

    .mission {
        padding-block: 80px;
    }

    .metric-row {
        gap: 34px;
    }

    .programs-preview {
        padding-block: 72px 82px;
    }

    .program-card-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .page-hero {
        min-height: 420px;
        padding-block: 134px 72px;
    }

    .page-hero h1 {
        font-size: clamp(50px, 11vw, 82px);
    }

    .page-hero p {
        font-size: 16px;
    }

    .program-list__inner {
        gap: 86px;
    }

    .program-feature,
    .program-feature--reverse {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .program-feature--reverse .program-feature__media,
    .program-feature--reverse .program-feature__content {
        order: initial;
    }

    .program-feature__content {
        max-width: none;
    }

    .program-feature__media::before,
    .program-feature--reverse .program-feature__media::before {
        inset: 18px -14px -18px 14px;
    }

    .program-feature__content > p:not(.section-label) {
        font-size: 16px;
    }

    .cta-band {
        padding-block: 78px;
    }

    .about-hero {
        min-height: 720px;
        padding-top: var(--site-header-height);
    }

    .about-story__grid,
    .coach-section__grid,
    .about-tech__grid {
        grid-template-columns: 1fr;
    }

    .about-story__content {
        max-width: none;
    }

    .about-photo {
        order: -1;
    }

    .about-tech__intro {
        margin-bottom: 52px;
    }

    .about-tech__grid {
        gap: 48px;
    }

    .coach-photo {
        min-height: 520px;
    }

    .contact-hero {
        min-height: 520px;
        padding-block: 132px 86px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-hero {
        min-height: 720px;
        padding-top: var(--site-header-height);
    }

    .booking-section {
        padding-block: 82px 64px;
    }

    .booking-widget__body,
    .booking-widget iframe {
        min-height: 560px;
    }

    .booking-placeholder {
        padding: 32px 24px;
    }

    .booking-offerings__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card__image {
        margin-bottom: 20px;
    }

    .testimonial-section {
        padding-block: 82px 80px;
    }

    .testimonial-section blockquote p {
        font-size: 25px;
    }

    .testimonial-mark {
        opacity: 0.6;
    }

    .testimonial-mark--left {
        left: 1vw;
    }

    .testimonial-mark--right {
        right: 1vw;
    }

    .affiliate-strip {
        padding-block: 46px;
    }

    .affiliate-strip__inner {
        gap: 32px;
    }

    .site-footer {
        padding-top: 64px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 58px;
    }

    .site-footer__legal {
        gap: 28px;
    }
}

@media (max-width: 460px) {
    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: clamp(42px, 14.5vw, 58px);
    }

    .offerings__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .offering p {
        max-width: 220px;
    }

    .metric-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .mission h2,
    .programs-preview h2 {
        font-size: 36px;
    }

    .affiliate {
        width: 42%;
    }

    .affiliate img {
        width: 92px;
    }

    .page-hero {
        min-height: 380px;
        padding-block: 118px 64px;
    }

    .page-hero h1 {
        font-size: clamp(44px, 15vw, 60px);
    }

    .program-feature__media::before,
    .program-feature--reverse .program-feature__media::before {
        inset: 12px -8px -12px 8px;
    }

    .program-feature__metric {
        left: 14px;
        right: 14px;
        bottom: 14px;
        min-width: 0;
        padding: 14px 16px;
    }

    .program-feature__metric strong {
        font-size: 23px;
    }

    .section-label {
        align-items: flex-start;
        font-size: 11px;
    }

    .section-label span {
        margin-top: 8px;
        width: 34px;
    }

    .program-feature h2 {
        font-size: 36px;
    }

    .about-hero {
        min-height: 640px;
    }

    .about-hero h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .about-story h2,
    .about-tech h2,
    .coach-section h2 {
        font-size: 36px;
    }

    .about-photo::after {
        inset: 12px -8px -12px 8px;
    }

    .coach-photo {
        min-height: 430px;
    }

    .coach-credential {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .coach-credential > span {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .contact-hero h1,
    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-hero__kicker {
        font-size: 15px;
        letter-spacing: 0.12em;
    }

    .contact-hero__content > p:last-child {
        font-size: 15px;
    }

    .location-card,
    .direct-contact-card {
        padding: 30px 24px;
    }

    .booking-hero h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .booking-hero__kicker {
        font-size: 16px;
        letter-spacing: 0.1em;
    }

    .booking-hero__content > p:last-of-type {
        font-size: 15px;
    }

    .booking-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-benefits {
        padding: 24px;
    }

    .booking-widget__bar {
        padding-inline: 14px;
    }

    .booking-widget__bar strong {
        max-width: 170px;
        text-align: right;
    }

    .booking-offerings__grid {
        grid-template-columns: 1fr;
    }

    .legal-hero {
        min-height: 360px;
        padding-block: 120px 58px;
    }

    .legal-table div {
        grid-template-columns: 1fr;
    }

    .legal-table span:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--color-stroke);
        background: var(--color-surface-soft);
    }

    .legal-block--standalone,
    .legal-block--standalone:first-child {
        padding: 34px 24px;
    }

    .site-footer__legal {
        flex-direction: column;
        gap: 12px;
    }
}
