:root {
    --ink: #090a09;
    --ink-soft: #111310;
    --panel: #171915;
    --paper: #f0ece1;
    --paper-soft: #d9d4c7;
    --gold: #c7a15a;
    --gold-light: #dfc17f;
    --gold-dark: #8b6a35;
    --line-dark: rgba(255, 255, 255, .13);
    --line-light: rgba(9, 10, 9, .16);
    --sans: "Manrope", "DM Sans", Arial, sans-serif;
    --container: min(1380px, calc(100vw - 80px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

em {
    font-family: inherit;
    font-style: normal;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--gold-light);
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: none;
}

.page-noise {
    position: fixed;
    z-index: 100;
    inset: 0;
    pointer-events: none;
    opacity: .11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.page-transition {
    position: fixed;
    z-index: 250;
    inset: 0;
    display: grid;
    color: var(--gold-light);
    background:
        linear-gradient(135deg, rgba(199, 161, 90, .12), transparent 42%),
        var(--ink);
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top;
    place-items: center;
    animation: page-enter .82s cubic-bezier(.76, 0, .24, 1) both;
}

.page-transition::before {
    content: "Athletic Culture";
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.page-transition::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    animation: page-progress .72s cubic-bezier(.76, 0, .24, 1) both;
}

.page-transition.is-leaving {
    animation: none;
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform .52s cubic-bezier(.76, 0, .24, 1);
}

.page-transition.is-leaving::after {
    animation: none;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .46s .05s cubic-bezier(.76, 0, .24, 1);
}

@keyframes page-enter {
    0% {
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

@keyframes page-progress {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.site-header {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    align-items: center;
    width: 100%;
    height: 96px;
    padding: 0 40px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: height .35s ease, background .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled,
body:not([data-page="home"]) .site-header.is-scrolled {
    height: 76px;
    background: rgba(9, 10, 9, .92);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 1px solid rgba(199, 161, 90, .7);
    border-radius: 50%;
    place-items: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    padding: 36px 0 32px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 218px;
    padding: 17px 21px;
    color: var(--ink);
    background: var(--gold);
    border: 1px solid var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.button:hover {
    color: var(--gold-light);
    background: transparent;
    transform: translateY(-2px);
}

.button--small {
    min-width: 178px;
    padding: 15px 18px;
}

.button--outline {
    color: inherit;
    background: transparent;
    border-color: currentColor;
}

.button--outline:hover {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
    transition: transform .3s ease;
}

.mobile-menu {
    position: fixed;
    z-index: 70;
    inset: 0;
    visibility: hidden;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    transition: opacity .35s ease, visibility .35s ease;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(680px, calc(100% - 48px));
    height: 100%;
    margin: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 10px 0;
    font-size: clamp(32px, 8vw, 62px);
    font-weight: 700;
    line-height: 1.1;
}

.mobile-menu nav a span {
    color: var(--gold);
    font-size: 10px;
}

.mobile-menu__meta {
    display: flex;
    gap: 24px;
    color: #aaa;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
}

.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 900px;
    height: 100svh;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.hero__media,
.subhero__media {
    position: absolute;
    inset: -12%;
}

.hero__media img,
.subhero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 4, 3, .92) 0%, rgba(3, 4, 3, .62) 42%, rgba(3, 4, 3, .19) 74%),
        linear-gradient(0deg, rgba(3, 4, 3, .76), transparent 48%);
}

.hero__rule {
    position: absolute;
    top: 0;
    left: calc(50% - .5px);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .09);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 80px;
    text-align: center;
}

.hero__eyebrow {
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold-light);
}

.hero__eyebrow > span {
    transform-origin: left center;
    animation: hero-eyebrow-pulse 3.8s 1.1s ease-in-out infinite;
}

.hero-title {
    margin: 0;
    font-size: clamp(78px, 10.2vw, 172px);
    font-weight: 700;
    letter-spacing: -.075em;
    line-height: .74;
    text-transform: uppercase;
}

.hero-title--brand {
    font-size: clamp(82px, 11vw, 186px);
    line-height: .77;
    text-transform: none;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding-right: .08em;
}

.hero-line > span,
.hero-line > em {
    display: block;
    will-change: translate;
}

.hero-line:first-child > span {
    animation: hero-line-drift 7.5s 1.35s ease-in-out infinite;
}

.hero-title--brand .hero-line:last-child > span {
    color: var(--gold-light);
    animation: hero-line-drift-reverse 7.5s 1.7s ease-in-out infinite;
}

.hero-title--brand .hero-line + .hero-line {
    margin-top: .1em;
}

.hero-tagline {
    margin: 34px 0 0;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-line em,
.subhero h1 em,
.membership-hero h1 em,
.contact-hero h1 em,
.section h2 em,
.footer-cta h2 em {
    color: var(--gold-light);
    font-family: var(--sans);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.06em;
    text-transform: none;
}

@keyframes hero-eyebrow-pulse {
    0%,
    100% {
        opacity: .55;
        transform: scaleX(.65);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes hero-line-drift {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 6px -2px;
    }
}

@keyframes hero-line-drift-reverse {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: -5px 2px;
    }
}

.hero__bottom {
    display: grid;
    grid-template-columns: minmax(260px, 470px) auto;
    align-items: end;
    gap: 70px;
    width: min(920px, 82%);
    margin: 44px auto 0;
    text-align: left;
}

.hero__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 15px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    padding: 8px 0;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold);
    transition: transform .25s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.hero-card {
    position: absolute;
    z-index: 3;
    right: 5vw;
    bottom: 9vh;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 22px;
    color: var(--ink);
    background: var(--gold);
}

.hero-card__status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2c8d4a;
    box-shadow: 0 0 0 4px rgba(44, 141, 74, .14);
}

.hero-card strong {
    margin-top: 14px;
    font-size: 27px;
    line-height: 1;
}

.hero-card small {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.scroll-cue i {
    width: 1px;
    height: 45px;
    background: linear-gradient(var(--gold), transparent);
}

.stats-strip {
    color: var(--paper);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
    display: flex;
    min-height: 160px;
    padding: 34px 26px;
    border-right: 1px solid var(--line-dark);
    flex-direction: column;
    justify-content: center;
}

.stats-grid > div:first-child {
    border-left: 1px solid var(--line-dark);
}

.stats-grid strong {
    color: var(--gold-light);
    font-size: 38px;
    letter-spacing: -.05em;
    line-height: 1;
}

.stats-grid strong small {
    font-size: 16px;
}

.stats-grid span {
    margin-top: 12px;
    color: #a8a99f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.section {
    padding: 140px 0;
}

.section--dark {
    color: var(--paper);
    background: var(--ink-soft);
}

.split-intro {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 8%;
}

.section-index {
    margin-top: 50px;
    color: #9f9a8d;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.statement {
    margin-bottom: 58px;
    font-size: clamp(44px, 5.5vw, 82px);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: .98;
}

.split-copy {
    display: grid;
    grid-template-columns: minmax(260px, 520px) 1fr;
    align-items: end;
    gap: 60px;
}

.split-copy p {
    margin: 0;
    color: #5e5d57;
    font-size: 17px;
}

.split-copy p + p {
    align-self: start;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 18px;
    padding-bottom: 140px;
}

.editorial-card {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    color: #fff;
}

.editorial-card--large {
    min-height: 760px;
}

.editorial-card__media,
.editorial-card__overlay {
    position: absolute;
    inset: 0;
}

.editorial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-card__overlay {
    background: linear-gradient(0deg, rgba(5, 6, 5, .85), rgba(5, 6, 5, .05) 75%);
}

.editorial-card__content {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 34px;
    left: 34px;
}

.editorial-card__content > span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.editorial-card__content h3 {
    margin: 14px 60px 0 0;
    font-size: clamp(34px, 4vw, 60px);
    letter-spacing: -.06em;
    line-height: 1;
}

.editorial-card__content i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--ink);
    background: var(--gold);
    font-style: normal;
    place-items: center;
}

.marquee-section {
    overflow: hidden;
    color: var(--ink);
    background: var(--gold);
}

.marquee {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 28px 0;
    white-space: nowrap;
}

.marquee span {
    padding: 0 26px;
    font-size: clamp(40px, 6vw, 86px);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
    text-transform: uppercase;
}

.marquee i {
    font-size: 20px;
    font-style: normal;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    align-items: end;
    gap: 100px;
    margin-bottom: 70px;
}

.section-heading h2,
.reviews__head h2,
.social-copy h2,
.amenities h2,
.faq-grid h2 {
    margin: 0;
    font-size: clamp(46px, 5.3vw, 80px);
    letter-spacing: -.065em;
    line-height: .98;
}

.section-heading > p {
    margin: 0;
    color: #999b92;
}

.service-list {
    border-top: 1px solid var(--line-dark);
}

.service-row {
    display: grid;
    grid-template-columns: 70px minmax(260px, 1fr) minmax(260px, .7fr) 50px;
    align-items: center;
    gap: 24px;
    padding: 42px 10px;
    border-bottom: 1px solid var(--line-dark);
    transition: color .3s ease, background .3s ease, padding .3s ease;
}

.service-row:hover {
    padding-inline: 24px;
    color: var(--ink);
    background: var(--gold);
}

.service-row__number {
    color: var(--gold-light);
    font-size: 10px;
}

.service-row:hover .service-row__number {
    color: var(--ink);
}

.service-row h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 43px);
    letter-spacing: -.05em;
}

.service-row p {
    margin: 0;
    color: #96988f;
    font-size: 13px;
}

.service-row:hover p {
    color: rgba(9, 10, 9, .72);
}

.service-row__arrow {
    font-size: 20px;
    text-align: right;
}

.reviews {
    background: #e8e3d7;
}

.reviews__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}

.rating-badge {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    gap: 2px 18px;
    min-width: 240px;
    padding: 26px;
    color: var(--paper);
    background: var(--ink);
}

.rating-badge strong {
    grid-row: 1 / 3;
    color: var(--gold-light);
    font-size: 58px;
    letter-spacing: -.07em;
    line-height: .9;
}

.rating-badge span {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: .12em;
}

.rating-badge small {
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review-card {
    display: flex;
    min-height: 360px;
    padding: 34px;
    background: var(--paper);
    border: 1px solid rgba(9, 10, 9, .1);
    flex-direction: column;
}

.review-card--gold {
    background: var(--gold);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.review-card__top span {
    color: var(--gold-dark);
    letter-spacing: .16em;
}

.review-card__top small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.review-card blockquote {
    margin: auto 0;
    font-family: var(--sans);
    font-size: clamp(25px, 2.2vw, 34px);
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.28;
}

.review-card footer {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(9, 10, 9, .15);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.social-section {
    color: var(--paper);
    background: var(--ink);
}

.social-grid {
    display: grid;
    grid-template-columns: .75fr 1.1fr;
    align-items: center;
    gap: 10vw;
}

.social-copy > p:not(.eyebrow) {
    max-width: 450px;
    margin: 32px 0;
    color: #a2a39b;
}

.instagram-frame {
    position: relative;
    max-width: 760px;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper);
    transform: rotate(1.1deg);
    transition: transform .5s ease;
}

.instagram-frame:hover {
    transform: rotate(0deg) translateY(-5px);
}

.instagram-frame__bar,
.instagram-frame__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.instagram-frame__bar > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.instagram-frame__bar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.instagram-frame__bar span span {
    display: flex;
    flex-direction: column;
}

.instagram-frame__bar b,
.instagram-frame__bar small {
    display: block;
    line-height: 1.2;
}

.instagram-frame__bar b {
    font-size: 11px;
}

.instagram-frame__bar small {
    color: #777;
    font-size: 9px;
}

.instagram-frame__image {
    width: 100%;
    aspect-ratio: 845 / 655;
    object-fit: cover;
}

.instagram-frame__foot strong {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/*
 * Interaction polish
 * Hover motion is limited to devices with a precise pointer so touch layouts
 * stay calm and predictable.
 */
@media (hover: hover) and (pointer: fine) {
    .brand-mark,
    .brand-copy,
    .button > span:last-child,
    .hero-card,
    .editorial-card__content,
    .editorial-card__content i,
    .service-row__arrow,
    .review-card,
    .rating-badge,
    .values-grid article,
    .values-grid article > span,
    .values-grid p,
    .amenities__list div,
    .program,
    .offer-grid article,
    .offer-grid article > span,
    .offer-grid p,
    .membership-card,
    .contact-direct a,
    .contact-direct a > span {
        transition:
            color .35s ease,
            background-color .35s ease,
            border-color .35s ease,
            box-shadow .35s ease,
            translate .35s cubic-bezier(.2, .8, .2, 1),
            scale .35s cubic-bezier(.2, .8, .2, 1),
            rotate .35s cubic-bezier(.2, .8, .2, 1),
            padding .35s ease;
    }

    .brand:hover .brand-mark {
        rotate: -6deg;
        scale: 1.06;
        box-shadow: 0 0 0 5px rgba(199, 161, 90, .12);
    }

    .brand:hover .brand-copy {
        translate: 4px 0;
    }

    .button:hover > span:last-child {
        translate: 4px -4px;
    }

    .hero-card:hover,
    .rating-badge:hover {
        translate: 0 -7px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
    }

    .editorial-card:hover .editorial-card__content {
        translate: 0 -8px;
    }

    .editorial-card:hover .editorial-card__content i {
        rotate: 45deg;
        scale: 1.08;
    }

    .service-row:hover .service-row__arrow {
        translate: 4px -4px;
        rotate: 5deg;
    }

    .review-card:hover {
        translate: 0 -10px;
        border-color: rgba(139, 106, 53, .48);
        box-shadow: 0 22px 55px rgba(9, 10, 9, .12);
    }

    .values-grid article:hover {
        color: var(--ink);
        background: var(--gold);
        translate: 0 -6px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
    }

    .values-grid article:hover > span,
    .values-grid article:hover p {
        color: rgba(9, 10, 9, .72);
    }

    .amenities__list div:hover {
        padding-inline: 16px;
        background: rgba(199, 161, 90, .12);
    }

    .program:hover {
        translate: 0 -5px;
        box-shadow: 0 28px 70px rgba(9, 10, 9, .2);
    }

    .offer-grid article:hover {
        color: var(--paper);
        background: var(--ink);
        translate: 0 -5px;
        box-shadow: 0 22px 55px rgba(9, 10, 9, .18);
    }

    .offer-grid article:hover > span {
        color: var(--ink);
        background: var(--gold);
        rotate: 8deg;
        scale: 1.06;
    }

    .offer-grid article:hover p {
        color: #aaaca3;
    }

    .membership-card:hover {
        translate: 0 -9px;
        border-color: rgba(139, 106, 53, .45);
        box-shadow: 0 28px 70px rgba(9, 10, 9, .15);
    }

    .contact-direct a:hover {
        background: var(--panel);
    }

    .contact-direct a:hover strong {
        color: var(--gold-light);
    }

    .contact-direct a:hover > span {
        color: var(--gold-light);
        translate: 4px -4px;
    }
}

.footer-cta {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background: #151713;
}

.footer-cta__line {
    position: absolute;
    top: 0;
    right: 14%;
    width: 1px;
    height: 100%;
    background: var(--line-dark);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 540px;
    gap: 60px;
}

.footer-cta h2 {
    margin: 0;
    font-size: clamp(52px, 7.4vw, 112px);
    letter-spacing: -.07em;
    line-height: .88;
}

.circle-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .4s ease;
}

.circle-link:hover {
    transform: rotate(-8deg) scale(1.04);
}

.circle-link b {
    margin-left: 14px;
    font-size: 18px;
}

.site-footer {
    padding: 80px 0 30px;
    color: #bebfb6;
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 7vw;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 12px;
}

.footer-brand p {
    max-width: 340px;
    margin: 28px 0 0;
    color: #777970;
    font-size: 13px;
}

.footer-label {
    margin-bottom: 16px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-grid p {
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 74px;
    padding-top: 24px;
    color: #5f615a;
    border-top: 1px solid var(--line-dark);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Subpages */
.subhero {
    position: relative;
    display: flex;
    min-height: 780px;
    height: 86svh;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    align-items: end;
}

.subhero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 6, 5, .92), rgba(5, 6, 5, .18)), linear-gradient(0deg, rgba(5, 6, 5, .66), transparent 54%);
}

.subhero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 9vh;
}

.subhero h1 {
    margin: 0;
    overflow: hidden;
    font-size: clamp(70px, 9vw, 145px);
    letter-spacing: -.075em;
    line-height: .78;
    text-transform: uppercase;
}

.subhero h1 > * {
    display: inline-block;
}

.subhero__content > p:last-child {
    max-width: 520px;
    margin: 50px 0 0 32%;
    color: rgba(255, 255, 255, .7);
}

.subhero__index {
    position: absolute;
    z-index: 2;
    right: 35px;
    bottom: 35px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    writing-mode: vertical-rl;
}

.image-break {
    position: relative;
    height: 740px;
    overflow: hidden;
}

.image-break::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(5, 6, 5, .55), transparent);
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break__label {
    position: absolute;
    z-index: 2;
    bottom: 55px;
    left: 8vw;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.image-break__label span {
    display: grid;
    width: 90px;
    height: 90px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    place-items: center;
}

.image-break__label strong {
    font-size: 26px;
    letter-spacing: -.04em;
    line-height: 1.05;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.values-grid article {
    min-height: 350px;
    padding: 30px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.values-grid article > span,
.program__content > span,
.membership-card__top,
.form-heading > span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.values-grid h3 {
    margin: 120px 0 16px;
    font-size: 28px;
    letter-spacing: -.04em;
}

.values-grid p {
    margin: 0;
    color: #94968d;
    font-size: 13px;
}

.amenities {
    display: grid;
    grid-template-columns: .75fr 1.3fr;
    gap: 10vw;
}

.amenities__list {
    border-top: 1px solid var(--line-light);
}

.amenities__list div {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-light);
}

.amenities__list span {
    color: var(--gold-dark);
    font-size: 9px;
}

.amenities__list p {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

.training-intro {
    padding-bottom: 80px;
}

.programs {
    padding-bottom: 140px;
}

.program {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 700px;
    margin-bottom: 24px;
    color: var(--paper);
    background: var(--ink);
}

.program--reverse {
    grid-template-columns: .75fr 1.25fr;
}

.program--reverse .program__media {
    order: 2;
}

.program__media {
    min-height: 660px;
    overflow: hidden;
}

.program__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.program:hover .program__media img {
    transform: scale(1.03);
}

.program__content {
    display: flex;
    padding: 60px;
    flex-direction: column;
    justify-content: center;
}

.program__content h2 {
    margin: 24px 0;
    font-size: clamp(44px, 5vw, 72px);
    letter-spacing: -.07em;
    line-height: .9;
}

.program__content p {
    color: #a3a59d;
}

.program__content ul,
.membership-card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.program__content li,
.membership-card li {
    padding: 12px 0;
    border-top: 1px solid var(--line-dark);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.quote-panel {
    color: var(--ink);
    background: var(--gold);
}

.quote-panel p {
    max-width: 1150px;
    margin-bottom: 30px;
    font-family: var(--sans);
    font-size: clamp(42px, 5.5vw, 82px);
    font-style: normal;
    font-weight: 650;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.quote-panel span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.process-line::before {
    position: absolute;
    top: 29px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--line-dark);
}

.process-line article {
    position: relative;
}

.process-line article > span {
    display: grid;
    width: 60px;
    height: 60px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.process-line article div {
    margin-top: 55px;
}

.process-line h3 {
    font-size: 32px;
    letter-spacing: -.04em;
}

.process-line p {
    color: #95978f;
    font-size: 14px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.offer-grid article {
    min-height: 310px;
    padding: 38px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.offer-grid article > span {
    display: grid;
    width: 54px;
    height: 54px;
    color: var(--paper);
    background: var(--ink);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.offer-grid h3 {
    margin: 70px 0 14px;
    font-size: 30px;
    letter-spacing: -.05em;
}

.offer-grid p {
    max-width: 500px;
    margin: 0;
    color: #686761;
}

/* Membership */
.membership-hero {
    position: relative;
    display: flex;
    min-height: 760px;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
    align-items: center;
}

.membership-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 75% 50%, rgba(199, 161, 90, .2), transparent 35%), linear-gradient(115deg, transparent 62%, rgba(255, 255, 255, .025) 62%);
}

.membership-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.membership-hero h1,
.contact-hero h1 {
    margin: 0;
    overflow: hidden;
    font-size: clamp(72px, 9.4vw, 150px);
    letter-spacing: -.08em;
    line-height: .76;
    text-transform: uppercase;
}

.membership-hero h1 > *,
.contact-hero h1 > * {
    display: inline-block;
}

.membership-hero .container > p:last-child {
    max-width: 520px;
    margin: 52px 0 0 35%;
    color: #a6a89f;
}

.membership-hero__orbit {
    position: absolute;
    right: 6vw;
    display: grid;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(199, 161, 90, .45);
    border-radius: 50%;
    place-items: center;
}

.membership-hero__orbit::before,
.membership-hero__orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(199, 161, 90, .16);
    border-radius: 50%;
    inset: -35px;
}

.membership-hero__orbit::after {
    inset: -72px;
}

.membership-hero__orbit span {
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 74px;
    font-style: normal;
    font-weight: 700;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.membership-card {
    position: relative;
    display: flex;
    min-height: 700px;
    padding: 36px;
    background: #e7e2d6;
    border: 1px solid var(--line-light);
    flex-direction: column;
}

.membership-card--featured {
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-30px);
}

.membership-card__tag {
    position: absolute;
    top: 0;
    right: 32px;
    padding: 8px 13px;
    color: var(--ink);
    background: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.membership-card__top {
    display: flex;
    justify-content: space-between;
}

.membership-card h2 {
    margin: 80px 0 22px;
    font-size: clamp(42px, 4vw, 60px);
    letter-spacing: -.07em;
    line-height: .9;
}

.membership-card > p {
    color: #6e6d66;
}

.membership-card--featured > p {
    color: #9fa198;
}

.membership-card ul {
    margin-bottom: 42px;
}

.membership-card:not(.membership-card--featured) li {
    border-color: var(--line-light);
}

.membership-card .button {
    width: 100%;
    margin-top: auto;
}

.membership-card--featured .button--outline {
    color: var(--paper);
}

.membership-note {
    max-width: 680px;
    margin: 50px auto 0;
    color: #696862;
    text-align: center;
}

.faq-section {
    color: var(--paper);
    background: var(--ink);
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.2fr;
    gap: 10vw;
}

.accordion {
    border-top: 1px solid var(--line-dark);
}

.accordion details {
    border-bottom: 1px solid var(--line-dark);
}

.accordion summary,
.legal-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

.accordion summary::-webkit-details-marker,
.legal-section summary::-webkit-details-marker {
    display: none;
}

.accordion summary span,
.legal-section summary span {
    color: var(--gold-light);
    font-size: 22px;
    font-weight: 400;
}

.accordion details p {
    max-width: 650px;
    padding: 0 40px 26px 0;
    color: #999b92;
}

/* Contact */
.contact-hero {
    min-height: 930px;
    padding: 180px 0 110px;
    color: var(--paper);
    background: var(--ink);
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: center;
    gap: 7vw;
}

.contact-copy > p {
    max-width: 590px;
    margin: 54px 0 0;
    color: #a5a79f;
}

.contact-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 50px;
    background: var(--line-dark);
}

.contact-direct a {
    position: relative;
    display: flex;
    padding: 22px;
    background: var(--ink);
    flex-direction: column;
}

.contact-direct small {
    color: var(--gold-light);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-direct strong {
    margin-top: 8px;
    font-size: 13px;
}

.contact-direct a > span {
    position: absolute;
    top: 24px;
    right: 20px;
}

.form-panel {
    min-height: 670px;
    padding: 46px;
    color: var(--ink);
    background: var(--paper);
}

.form-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 44px;
}

.form-heading .eyebrow {
    margin-bottom: 8px;
}

.form-heading h2 {
    margin: 0;
    font-size: 36px;
    letter-spacing: -.055em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-panel label {
    display: block;
    margin-bottom: 24px;
}

.form-panel label > span {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(9, 10, 9, .28);
    border-radius: 0;
    outline: none;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
    border-color: var(--gold-dark);
}

.form-panel textarea {
    resize: vertical;
}

.form-panel .button {
    width: 100%;
    margin-top: 6px;
}

.form-privacy {
    display: block;
    margin-top: 16px;
    color: #818079;
    font-size: 8px;
}

.form-error {
    padding: 11px 14px;
    color: #7a281e;
    background: #f0d6d0;
    font-size: 11px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-success {
    display: flex;
    min-height: 570px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.form-success > span {
    display: grid;
    width: 74px;
    height: 74px;
    margin-bottom: 34px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: 26px;
    place-items: center;
}

.form-success h2 {
    font-size: 52px;
    letter-spacing: -.06em;
    line-height: 1;
}

.form-success .button {
    width: 100%;
    margin-top: 30px;
}

.visit-section {
    background: #e7e2d6;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
}

.visit-card,
.hours-card {
    min-height: 380px;
    padding: 44px;
    border: 1px solid var(--line-light);
}

.visit-card h2 {
    margin: 60px 0 40px;
    font-size: clamp(36px, 4vw, 58px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.hours-card {
    display: flex;
    color: var(--paper);
    background: var(--ink);
    flex-direction: column;
}

.hours-card > div {
    display: flex;
    margin: auto 0;
    flex-direction: column;
}

.hours-card div span {
    color: #999b92;
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hours-card div strong {
    margin-top: 10px;
    color: var(--gold-light);
    font-size: 46px;
    letter-spacing: -.06em;
}

.hours-card > small {
    color: #777970;
}

.legal-section {
    padding: 60px 0 100px;
}

.legal-section details {
    border-bottom: 1px solid var(--line-light);
}

.legal-section details p {
    max-width: 900px;
    padding-bottom: 28px;
    color: #66655f;
    font-size: 13px;
}

@media (max-width: 1180px) {
    :root {
        --container: min(100% - 48px, 1100px);
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
        height: 80px;
        padding: 0 24px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: 10px;
    }

    .hero-card {
        right: 24px;
    }

    .contact-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .membership-hero__orbit {
        right: -50px;
        opacity: .7;
    }
}

@media (max-width: 820px) {
    :root {
        --container: calc(100% - 36px);
    }

    .site-header {
        padding: 0 18px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 760px;
    }

    .hero__content {
        justify-content: center;
        padding-top: 105px;
        padding-bottom: 90px;
    }

    .hero-title--brand {
        font-size: clamp(58px, 17vw, 104px);
        line-height: .79;
    }

    .hero-tagline {
        margin-top: 24px;
        font-size: 10px;
        letter-spacing: .18em;
    }

    .hero__bottom {
        display: block;
        width: 100%;
        margin-top: 34px;
    }

    .hero__bottom p {
        max-width: 520px;
    }

    .hero__actions {
        margin-top: 26px;
        flex-wrap: wrap;
    }

    .hero-card {
        display: none;
    }

    .scroll-cue {
        right: 18px;
        bottom: 24px;
        left: auto;
    }

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

    .stats-grid > div,
    .stats-grid > div:first-child {
        min-height: 130px;
        border-bottom: 1px solid var(--line-dark);
        border-left: 1px solid var(--line-dark);
    }

    .section {
        padding: 90px 0;
    }

    .split-intro,
    .amenities,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .statement {
        font-size: clamp(42px, 11vw, 68px);
    }

    .split-copy {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        padding-bottom: 90px;
    }

    .editorial-card,
    .editorial-card--large {
        min-height: 580px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-row {
        grid-template-columns: 44px 1fr 36px;
    }

    .service-row p {
        display: none;
    }

    .reviews__head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .review-card {
        min-height: 310px;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-cta__inner {
        min-height: 480px;
    }

    .circle-link {
        width: 150px;
        height: 150px;
        flex: 0 0 150px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .subhero {
        min-height: 700px;
    }

    .subhero h1 {
        font-size: clamp(58px, 16vw, 100px);
    }

    .subhero__content > p:last-child {
        margin-left: 0;
    }

    .image-break {
        height: 560px;
    }

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

    .program,
    .program--reverse {
        grid-template-columns: 1fr;
    }

    .program--reverse .program__media {
        order: 0;
    }

    .program__media {
        min-height: 480px;
    }

    .program__content {
        padding: 44px;
    }

    .process-line {
        grid-template-columns: 1fr;
    }

    .process-line::before {
        top: 0;
        bottom: 0;
        left: 29px;
        width: 1px;
        height: auto;
    }

    .process-line article {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 30px;
    }

    .process-line article div {
        margin-top: 0;
    }

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

    .membership-card--featured {
        transform: none;
    }

    .membership-hero .container > p:last-child {
        margin-left: 0;
    }

    .membership-hero__orbit {
        opacity: .25;
    }

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

    .contact-hero {
        padding-top: 150px;
    }

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

@media (max-width: 560px) {
    .brand-copy strong {
        font-size: 11px;
    }

    .mobile-menu__meta,
    .contact-direct {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero {
        min-height: 710px;
    }

    .hero__content {
        padding-top: 96px;
        padding-bottom: 76px;
    }

    .hero-title--brand {
        font-size: 17vw;
    }

    .hero__actions .button {
        width: 100%;
    }

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

    .stats-grid > div {
        padding: 24px 17px;
    }

    .stats-grid strong {
        font-size: 30px;
    }

    .editorial-card,
    .editorial-card--large {
        min-height: 480px;
    }

    .editorial-card__content {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .service-row {
        gap: 8px;
        padding: 28px 4px;
    }

    .review-card {
        padding: 26px;
    }

    .instagram-frame {
        transform: none;
    }

    .footer-cta__inner {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .circle-link {
        width: 130px;
        height: 130px;
        flex-basis: 130px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 26px;
    }

    .footer-bottom {
        gap: 12px;
        flex-direction: column;
    }

    .subhero h1,
    .membership-hero h1,
    .contact-hero h1 {
        font-size: 16vw;
    }

    .subhero__content {
        padding-bottom: 10vh;
    }

    .values-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .values-grid article {
        min-height: 270px;
    }

    .values-grid h3 {
        margin-top: 70px;
    }

    .image-break {
        height: 480px;
    }

    .image-break__label {
        bottom: 28px;
        left: 18px;
    }

    .program__media {
        min-height: 380px;
    }

    .program__content {
        padding: 34px 24px;
    }

    .membership-card {
        min-height: 620px;
        padding: 28px;
    }

    .membership-hero__orbit {
        right: -130px;
    }

    .form-panel {
        padding: 30px 22px;
    }

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

    .visit-card,
    .hours-card {
        min-height: 330px;
        padding: 30px;
    }
}

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