@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
    --black: #000;
    --dark: #080808;
    --dark-gray: #111;
    --panel: #151515;
    --white: #fff;
    --muted: #a8a8a8;
    --orange: #f5a019;
    --orange-dark: #c97900;
    --line: rgba(255, 255, 255, 0.13);
    --display: "Barlow Condensed", sans-serif;
    --body: "Inter", sans-serif;
}

body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(245, 160, 25, 0.14), transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(255, 208, 169, 0.05), transparent 22%),
        linear-gradient(180deg, #111 0%, #050505 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-panel {
    display: grid;
    align-content: center;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: clamp(28px, 5vw, 56px);
    background: transparent;
}

.page-loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.page-loader-brand img {
    width: min(260px, 62vw);
    height: auto;
    object-fit: contain;
}

.page-loader-copy {
    max-width: 760px;
    margin: 30px auto 0;
    text-align: center;
}

.page-loader-kicker {
    margin: 0;
    color: var(--orange);
    font: 700 11px/1.2 var(--body);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.page-loader-copy h2 {
    margin: 14px 0 0;
    color: #fff;
    font: 400 clamp(2.6rem, 8vw, 5.8rem)/0.92 "Bebas Neue", Impact, sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.page-loader-status {
    width: min(760px, calc(100vw - 48px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 34px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font: 700 11px/1.2 var(--body);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-loader-percent {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.page-loader-bar {
    position: relative;
    width: min(760px, calc(100vw - 48px));
    height: 14px;
    margin: 12px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.page-loader-bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(var(--loader-progress, 0) * 1%);
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(245, 160, 25, 0.82), rgba(255, 208, 169, 1));
    box-shadow: 0 0 22px rgba(245, 160, 25, 0.32);
    transition: width .22s ease;
}

.page-loader-note {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    font: 500 12px/1.6 var(--body);
}

/* Final 3D dumbbell layer overrides; these must follow the original hero image rules. */
.hero-visual .visual-disc {
    inset: -2%;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    place-items: center;
    perspective: 1100px;
    transform-style: preserve-3d;
}

.hero-visual .visual-disc::after {
    display: none;
}

.hero-visual .visual-disc .dumbbell-3d {
    position: relative;
    width: 116%;
    height: 116%;
    transform: translate3d(var(--dumbbell-x, 0px), var(--dumbbell-y, 0px), 0) rotateX(var(--dumbbell-rx, 0deg)) rotateY(var(--dumbbell-ry, 0deg)) rotateZ(-7deg) scale(1.02);
    transform-style: preserve-3d;
    will-change: transform;
    animation: dumbbellFloat 5.5s ease-in-out infinite alternate;
}

.hero-visual .visual-disc .dumbbell-3d img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: none;
}

.hero-visual .visual-disc .dumbbell-main {
    z-index: 3;
    transform: translateZ(34px);
    filter: saturate(.86) contrast(1.08) brightness(.96) drop-shadow(0 38px 34px rgba(0, 0, 0, .72)) drop-shadow(0 0 22px rgba(95, 110, 255, .2));
}

.hero-visual .visual-disc .depth-near {
    z-index: 2;
    transform: translate3d(calc(var(--depth-x, -8px) + 4px), calc(var(--depth-y, 9px) - 4px), 15px) scale(.997);
    filter: saturate(.7) brightness(.4) contrast(1.25);
    opacity: .62;
}

.hero-visual .visual-disc .depth-far {
    z-index: 1;
    transform: translate3d(var(--depth-x, -8px), var(--depth-y, 9px), -6px) scale(.99);
    filter: saturate(.65) brightness(.22) contrast(1.3) blur(.5px);
    opacity: .5;
}

@media (max-width: 760px) {
    .hero-visual .visual-disc .dumbbell-3d {
        width: 108%;
        height: 108%;
    }
}

/* Keep the product outside the rotating rings while preserving hero motion. */
.hero-visual .visual-disc {
    inset: -2%;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    place-items: center;
    pointer-events: none;
    perspective: 1100px;
    transform-style: preserve-3d;
}

.hero-visual .visual-disc:after {
    display: none;
}

.dumbbell-3d {
    position: relative;
    width: 116%;
    height: 116%;
    transform: translate3d(var(--dumbbell-x, 0px), var(--dumbbell-y, 0px), 0) rotateX(var(--dumbbell-rx, 0deg)) rotateY(var(--dumbbell-ry, 0deg)) rotateZ(-7deg) scale(1.02);
    transform-style: preserve-3d;
    will-change: transform;
    animation: dumbbellFloat 5.5s ease-in-out infinite alternate;
}

.dumbbell-3d img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.dumbbell-main {
    z-index: 3;
    transform: translateZ(34px);
    filter: saturate(.86) contrast(1.08) brightness(.96) drop-shadow(0 38px 34px rgba(0, 0, 0, .72)) drop-shadow(0 0 22px rgba(95, 110, 255, .2));
    transition: filter .25s ease;
}

.dumbbell-depth {
    mix-blend-mode: multiply;
    opacity: .68;
    filter: saturate(.75) brightness(.3) contrast(1.25) blur(.3px);
}

.depth-near {
    z-index: 2;
    transform: translate3d(calc(var(--depth-x, -8px) + 4px), calc(var(--depth-y, 9px) - 4px), 15px) scale(.997);
}

.depth-far {
    z-index: 1;
    transform: translate3d(var(--depth-x, -8px), var(--depth-y, 9px), -6px) scale(.99);
    opacity: .42;
}

.dumbbell-shine {
    position: absolute;
    z-index: 4;
    inset: 13%;
    border-radius: 50%;
    transform: translate3d(var(--shine-x, -20px), var(--shine-y, -18px), 48px);
    background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .35), rgba(151, 163, 255, .12) 23%, transparent 54%);
    mix-blend-mode: screen;
    opacity: .7;
    filter: blur(8px);
    pointer-events: none;
}

.hero-visual.pointer-active .dumbbell-main {
    filter: saturate(1) contrast(1.12) brightness(1.04) drop-shadow(0 46px 40px rgba(0, 0, 0, .8)) drop-shadow(0 0 34px rgba(95, 110, 255, .3));
}

.hero-visual .visual-readout,
.hero-visual .visual-wave {
    mix-blend-mode: screen;
}

@keyframes dumbbellFloat {
    from {
        transform: translate3d(calc(var(--dumbbell-x, 0px) - 8px), calc(var(--dumbbell-y, 0px) + 7px), 0) rotateX(var(--dumbbell-rx, 0deg)) rotateY(var(--dumbbell-ry, 0deg)) rotateZ(-9deg) scale(1);
    }

    to {
        transform: translate3d(calc(var(--dumbbell-x, 0px) + 8px), calc(var(--dumbbell-y, 0px) - 10px), 24px) rotateX(var(--dumbbell-rx, 0deg)) rotateY(var(--dumbbell-ry, 0deg)) rotateZ(-3deg) scale(1.06);
    }
}

@media (max-width: 760px) {
    .dumbbell-3d {
        width: 108%;
        height: 108%;
    }
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--body);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99;
    opacity: 0.035;
    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
    height: 88px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        top .22s cubic-bezier(.22, 1, .36, 1),
        left .22s cubic-bezier(.22, 1, .36, 1),
        width .22s cubic-bezier(.22, 1, .36, 1),
        height .22s cubic-bezier(.22, 1, .36, 1),
        padding .22s cubic-bezier(.22, 1, .36, 1),
        background-color .28s ease,
        border-color .28s ease,
        box-shadow .28s ease,
        backdrop-filter .28s ease,
        -webkit-backdrop-filter .28s ease,
        opacity .28s ease,
        transform .28s cubic-bezier(.2, .8, .2, 1);
    will-change: background-color, border-color, box-shadow, backdrop-filter, opacity, transform;
}

.site-header.scrolled {
    height: 72px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(14px);
    border-color: var(--line);
    transform: translateY(0) scale(1);
}

.logo {
    display: flex;
    width: 100px;
    align-items: center;
    flex: 0 0 auto;
    transition: width .3s ease, transform .3s ease;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: inherit;
}

.site-header.scrolled .logo {
    width: 64px;
}


.logo-type small {
    display: block;
    width: 70px;
}

.nav {
    display: flex;
    gap: 2.3vw;
    margin: auto;
}

.nav a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #d0d0d0;
    position: relative;
    transition: 0.25s;
}

.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.25s;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

.nav a:hover:after,
.nav a.active:after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--orange);
    color: #080808;
    min-height: 56px;
    padding: 0 28px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    border: 1px solid var(--orange);
    cursor: pointer;
    transition: 0.25s;
    clip-path: polygon(0 0,
            calc(100% - 11px) 0,
            100% 11px,
            100% 100%,
            11px 100%,
            0 calc(100% - 11px));
}

.btn:hover {
    background: #ffb437;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 160, 25, 0.2);
}

.btn-small {
    min-height: 45px;
    padding: 0 20px;
    gap: 17px;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 52;
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 25px;
}

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

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

.hero {
    min-height: 100svh;
    position: relative;
    background: #050505;
    display: flex;
    align-items: center;
    padding: 130px 7vw 145px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0 0 0 38%;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.15) 40%),
        linear-gradient(0deg, #050505 0%, transparent 38%),
        url("assets/images/hero.jpg") center/cover no-repeat;
    filter: saturate(0.6) contrast(1.12);
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 38%,
            rgba(245, 160, 25, 0.13),
            transparent 26%),
        linear-gradient(90deg, transparent 60%, rgba(9, 4, 4, 0.5));
}

.hero-shape {
    position: absolute;
    left: -6vw;
    top: 14%;
    width: 42vw;
    height: 42vw;
    border: 1px solid rgba(245, 160, 25, 0.13);
    transform: rotate(45deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 2.4px;
    color: var(--orange);
    margin-bottom: 24px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.hero-kicker span {
    height: 2px;
    width: 30px;
    background: var(--orange);
}

h1,
h2,
h3 {
    font-family: var(--display);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(66px, 8.2vw, 132px);
    line-height: 0.76;
    letter-spacing: -0.055em;
    font-weight: 900;
}

h1>span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);
}

h1 em,
h2 em {
    font-style: italic;
    color: var(--orange);
}

.hero-copy {
    max-width: 520px;
    margin: 35px 0 32px;
    color: #c1c1c1;
    line-height: 1.7;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.hero-stats {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 105px;
    border-top: 1px solid var(--line);
    padding-left: 38%;
}

.hero-stats>div {
    padding: 20px 2.2vw;
    border-left: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    font: 800 34px/1 var(--display);
    color: var(--orange);
}

.hero-stats span {
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c4c4c4;
    max-width: 78px;
}

.hero-side-label {
    position: absolute;
    right: 22px;
    top: 45%;
    z-index: 4;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 3px;
    color: #8e8e8e;
}

.scroll-cue {
    position: absolute;
    z-index: 4;
    bottom: 26px;
    left: 7vw;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #999;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 2px;
}

.scroll-cue i {
    display: block;
    width: 70px;
    height: 1px;
    background: var(--orange);
}

.section {
    padding: 125px 7vw;
}

.section-head {
    margin-bottom: 62px;
}

.section-head h2,
.schedule h2,
.results h2,
.faq-intro h2,
.contact h2,
.footer h2 {
    font-size: clamp(52px, 6.3vw, 98px);
    line-height: 0.84;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.head-copy {
    max-width: 430px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.about {
    background: #0b0b0b;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 580px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 50%);
}

.image-stamp {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    width: 135px;
    height: 135px;
    background: var(--orange);
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(-8deg);
}

.image-stamp strong {
    font: 900 28px/0.8 var(--display);
}

.image-stamp span {
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.about-features {
    border-top: 1px solid var(--line);
}

.feature-row {
    min-height: 145px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;
    padding: 20px 30px;
    transition: 0.25s;
}

.feature-row:hover {
    background: #131313;
    padding-left: 40px;
}

.feature-row>span {
    font: 700 12px var(--display);
    color: var(--orange);
}

.feature-row h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.feature-row p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--muted);
}

.feature-row b {
    font-size: 20px;
    color: var(--orange);
}

.marquee {
    overflow: hidden;
    background: var(--orange);
    color: #000;
    padding: 16px 0;
    transform: rotate(-1.2deg) scale(1.02);
    position: relative;
    z-index: 2;
}

.marquee div {
    font: 900 23px/1 var(--display);
    white-space: nowrap;
    letter-spacing: 1px;
    animation: marquee 28s linear infinite;
}

.marquee i {
    margin: 0 22px;
    font-style: normal;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.why-section {
    background: #080808;
}

.why-grid {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.why-card {
    min-height: 340px;
    padding: 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: 0.35s;
}

.why-card:hover {
    background: var(--orange);
    color: #000;
    transform: translateY(-8px);
}

.why-card:hover p,
.why-card:hover .card-num {
    color: #222;
}

.card-num {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #666;
    font: 700 12px var(--display);
}

.line-icon {
    font: 700 52px/1 var(--display);
    color: var(--orange);
    margin: 40px 0 70px;
}

.why-card:hover .line-icon {
    color: #000;
}

.why-card h3 {
    font-size: 27px;
    line-height: 1;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.programs {
    background: #0c0c0c;
}

.program-grid {}

.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.program-large {
    grid-row: span 2;
}

.program-card img {
    filter: grayscale(1) brightness(0.65);
    transition: 0.6s;
}

.program-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.96), transparent 65%);
}

.program-card:hover img {
    transform: scale(1.06);
    filter: grayscale(0.2) brightness(0.72);
}

.program-card:hover:after {
    background: linear-gradient(0deg, rgba(201, 121, 0, 0.75), transparent 72%);
}

.program-overlay {
    position: absolute;
    z-index: 2;
    inset: auto 25px 25px;
}

.program-overlay>span {
    font: 700 11px var(--display);
    color: var(--orange);
}

.program-overlay h3 {
    font-size: 38px;
    line-height: 0.9;
    margin: 8px 0;
}

.program-large h3 {
    font-size: 55px;
}

.program-overlay p {
    font-size: 11px;
    line-height: 1.55;
    color: #bbb;
    max-width: 290px;
    margin-bottom: 13px;
}

.program-overlay a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
}

.schedule {
    background: var(--orange);
    color: #080808;
}

.schedule-wrap {}

.schedule-intro>p:not(.eyebrow) {
    max-width: 360px;
    line-height: 1.7;
    font-size: 14px;
    margin: 28px 0;
}

.schedule .eyebrow {
    color: #322000;
}

.text-link {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid;
    padding-bottom: 8px;
}

.schedule-list {
    border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.class-row {
    min-height: 78px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    transition: 0.2s;
}

.class-row:hover {
    padding-left: 15px;
    background: rgba(0, 0, 0, 0.06);
}

.class-row span {
    font: 800 12px var(--display);
}

.class-row strong {
    font: 800 24px var(--display);
    text-transform: uppercase;
}

.class-row small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.class-row b {
    font: 700 16px var(--display);
}

.trainers {
    background: #080808;
}

.trainer-grid {}

.trainer-card {
    height: 490px;
    position: relative;
    overflow: hidden;
    background: #171717;
    border-radius: 28px;
}

.trainer-card img {
    filter: grayscale(1);
    transition: 0.5s;
}

.trainer-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95), transparent 58%);
    transition: 0.3s;
}

.trainer-card:hover img {
    filter: grayscale(0.25);
    transform: scale(1.04);
}

.trainer-card:hover:after {
    background: linear-gradient(0deg, rgba(201, 121, 0, 0.85), transparent 70%);
}

.trainer-card>div {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 24px;
    right: 24px;
}

.trainer-card p {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--orange);
}

.trainer-card h3 {
    font-size: 32px;
    margin: 4px 0 13px;
}

.trainer-card a {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.2px;
    opacity: 0;
    transition: 0.3s;
}

.trainer-card:hover a {
    opacity: 1;
}

.trainer-card:hover p {
    color: #111;
}

.pricing {
    background: #101010;
}

.billing-pill {
    border: 1px solid var(--line);
    padding: 7px;
    display: flex;
    gap: 7px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.billing-pill span {
    padding: 9px 13px;
}

.billing-pill span:first-child {
    background: var(--orange);
    color: #000;
    font-weight: 800;
}

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

.price-card {
    padding: 42px;
    border: 1px solid var(--line);
    position: relative;
}

.price-card+.price-card {
    border-left: 0;
}

.price-card.popular {
    border: 2px solid var(--orange);
    background: #15130e;
    transform: translateY(-14px);
    padding-bottom: 56px;
}

.popular-tag {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--orange);
    color: #000;
    padding: 8px 13px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plan {
    font: 700 12px var(--display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
}

.price {
    font: 800 86px/0.9 var(--display);
    margin: 35px 0 20px;
}

.price sup {
    font-size: 26px;
    vertical-align: top;
    line-height: 1.5;
}

.price small {
    font: 500 11px var(--body);
    color: #999;
    letter-spacing: 0.5px;
}

.plan-copy {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    min-height: 60px;
}

.price-card ul {
    list-style: none;
    margin: 25px 0 34px;
    border-top: 1px solid var(--line);
}

.price-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    color: #ccc;
}

.price-card li:before {
    content: "✓";
    color: var(--orange);
    margin-right: 10px;
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
}

.results {
    min-height: 820px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 7vw;
    overflow: hidden;
}

.results-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.78) 40%,
            rgba(0, 0, 0, 0.18) 72%),
        url("assets/images/results.jpg") center/cover;
}

.results-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.results-content p:not(.eyebrow) {
    max-width: 470px;
    color: #aaa;
    line-height: 1.75;
    margin: 28px 0;
}

.results-stats {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.results-stats div {
    padding: 30px 3vw;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 15px;
}

.results-stats strong {
    font: 800 43px var(--display);
    color: var(--orange);
}

.results-stats span {
    font-size: 9px;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1px;
    max-width: 80px;
}

.gallery {
    background: #0b0b0b;
}

.gallery-filters {
    display: flex;
    gap: 18px;
}

.gallery-filters button {
    border: 0;
    background: none;
    color: #777;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1.3px;
    font-weight: 800;
    cursor: pointer;
    padding-bottom: 7px;
    border-bottom: 1px solid transparent;
}

.gallery-filters button.active {
    color: var(--orange);
    border-color: var(--orange);
}

.gallery-grid {}

.gallery-grid figure {
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    min-height: 100%;
}

.gallery-open {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-grid figure.filtered {
    opacity: 0.12;
    filter: grayscale(1);
}

.gallery-grid figure {
    min-height: 100%;
}

.gallery-grid img {
    filter: grayscale(0.8) brightness(0.72);
    transition: 0.5s;
}

.gallery-grid figure:hover img {
    filter: grayscale(0) brightness(0.8);
    transform: scale(1.04);
}

.gallery-grid figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    text-transform: uppercase;
    font: 700 15px var(--display);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.gallery-grid figure:hover figcaption {
    opacity: 1;
    transform: none;
}

.gallery-grid figcaption span {
    color: var(--orange);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-image {
    max-width: min(92vw, 1280px);
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 15, 15, 0.7);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 16px;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    text-align: center;
}

.testimonials {
    background: #080808;
}

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

blockquote {
    margin: 0;
    border: 1px solid var(--line);
    padding: 35px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

blockquote+blockquote {
    border-left: 0;
}

blockquote.featured {
    background: var(--orange);
    color: #000;
    transform: translateY(-15px);
}

.stars {
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 3px;
}

.featured .stars {
    color: #000;
}

blockquote>p {
    font: 600 24px/1.4 var(--display);
    text-transform: uppercase;
}

blockquote footer {
    display: flex;
    align-items: center;
    gap: 13px;
}

blockquote footer>span {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #252525;
    display: grid;
    place-items: center;
    font: 700 14px var(--display);
    color: #fff;
}

.featured footer>span {
    background: #000;
}

blockquote footer strong,
blockquote footer small {
    display: block;
}

blockquote footer strong {
    font: 700 15px var(--display);
    text-transform: uppercase;
}

blockquote footer small {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    opacity: 0.65;
}

.faq-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 8vw;
    background: #101010;
}

.faq-intro>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 13px;
    margin: 25px 0;
}

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

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

summary {
    list-style: none;
    cursor: pointer;
    padding: 27px 0;
    font: 700 22px var(--display);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary span {
    color: var(--orange);
    font-size: 24px;
    transition: 0.25s;
}

details[open] summary span {
    transform: rotate(45deg);
}

details p {
    padding: 0 50px 27px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--orange);
    color: #080808;
}

.contact-side {
    padding: 120px 7vw;
}

.contact-side .eyebrow {
    color: #3a2400;
}

.contact-side>p:not(.eyebrow) {
    max-width: 500px;
    line-height: 1.7;
    margin: 30px 0;
}

.contact h2 em {
    color: #080808;
    -webkit-text-stroke: 1px #080808;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 25px;
}

.contact-info a,
.contact-info span {
    font-size: 11px;
    font-weight: 700;
}

.join-form {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #101010;
    color: #fff;
    padding: 28px;
}

.field {
    border-bottom: 1px solid #3a3a3a;
    padding: 13px 0;
    margin-bottom: 18px;
}

.field label {
    display: block;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    font-size: 13px;
    resize: none;
}

.field select option {
    background: #111;
}

.form-row {}

.join-form .btn {
    width: 100%;
    margin-top: 14px;
}

.join-form:before {
    content: "";
    position: absolute;
    inset: auto -20% -40% 40%;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 177, 73, 0.12), transparent 68%);
    pointer-events: none;
}

.form-note {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 14px;
}

.form-success {
    display: none;
    background: #183319;
    color: #b7ffba;
    border: 1px solid #2f6332;
    padding: 15px;
    margin-top: 16px;
    font-size: 11px;
    text-align: center;
}

.join-form.submitted .form-success {
    display: block;
}

.footer {
    background: #050505;
    padding: 80px 7vw 25px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    width: 120px;
}

.footer-top h2 {
    font-size: clamp(42px, 5vw, 75px);
}

.circle-link {
    width: 58px;
    height: 58px;
    border: 1px solid var(--orange);
    color: var(--orange);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 24px;
}

.footer-grid {
    padding: 55px 0;
}

.footer-grid>div {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.footer-grid p {
    font-size: 12px;
    line-height: 1.7;
    color: #888;
    max-width: 280px;
}

.footer-grid strong {
    font: 700 16px var(--display);
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.footer-grid a,
.footer-grid span {
    font-size: 10px;
    color: #929292;
}

.footer-grid a:hover {
    color: #fff;
}

.socials {
    display: flex !important;
    flex-direction: row !important;
    margin-top: 10px;
}

.socials a {
    width: 33px;
    height: 33px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
}

.socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #555;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.why-card:nth-child(2),
.program-card:nth-child(2),
.trainer-card:nth-child(2) {
    transition-delay: 0.08s;
}

.why-card:nth-child(3),
.program-card:nth-child(3),
.trainer-card:nth-child(3) {
    transition-delay: 0.16s;
}

.why-card:nth-child(4),
.trainer-card:nth-child(4) {
    transition-delay: 0.24s;
}

@media (max-width: 1050px) {
    .site-header {
        padding: 0 25px;
    }

    .nav {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: rgba(5, 5, 5, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.45s;
        z-index: 60;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        display: none;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(10, 10, 10, 0.72);
        color: #fff;
        font-size: 34px;
        line-height: 1;
        z-index: 2;
    }

    .nav.open .nav-close {
        display: grid;
    }

    .nav a {
        font: 800 34px var(--display);
    }

    .header-cta {
        margin-left: auto;
        margin-right: 15px;
    }

    .menu-toggle {
        display: block;
        z-index: 61;
    }

    .hero {
        padding-left: 5vw;
    }

    .hero-bg {
        inset: 0 0 0 23%;
    }

    .hero-stats {
        padding-left: 25%;
    }

    .section {
        padding: 100px 5vw;
    }

    .why-grid {}

    .trainer-grid {}

    .price-card {
        padding: 32px 25px;
    }

    .contact-side {
        padding: 90px 5vw;
    }

    .join-form {
        padding: 28px;
    }

    .footer {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

@media (min-width: 1051px) {
    .nav-close {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        padding: 0 16px;
        justify-content: space-between;
    }

    .site-header .logo {
        margin-right: 0;
        flex: 0 0 100px;
    }

    .header-cta {
        display: none;
    }

    .logo-mark {
        width: 37px;
        height: 37px;
    }

    .hero {
        min-height: 860px;
        padding: 115px 22px 190px;
        align-items: flex-start;
    }

    .hero-bg {
        inset: 0;
        background: linear-gradient(0deg, #050505 9%, rgba(5, 5, 5, 0.2) 70%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent),
            url("assets/images/hero.jpg") 62% center/cover;
    }

    .hero:after {
        background: linear-gradient(0deg, #050505 0%, transparent 45%);
    }

    h1 {
        font-size: 65px;
        line-height: 0.81;
    }

    .hero-copy {
        font-size: 13px;
        max-width: 330px;
        margin: 26px 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 220px;
    }

    .hero-stats {
        padding: 0;
        min-height: auto;
    }

    .hero-stats>div {
        min-height: 76px;
        padding: 12px 20px;
    }

    .hero-stats strong {
        font-size: 27px;
    }

    .scroll-cue,
    .hero-side-label {
        display: none;
    }

    .section {
        padding: 82px 22px;
    }

    .section-head {
        margin-bottom: 42px;
    }

    .section-head h2,
    .schedule h2,
    .results h2,
    .faq-intro h2,
    .contact h2 {
        font-size: 54px;
    }

    .head-copy {
        margin-top: 22px;
    }

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

    .about-image {
        height: 420px;
    }

    .feature-row {
        padding: 15px;
        grid-template-columns: 40px 1fr 20px;
        min-height: 125px;
    }

    .feature-row h3 {
        font-size: 24px;
    }

    .marquee div {
        font-size: 18px;
    }

    .why-grid {}

    .why-card {
        min-height: 270px;
    }

    .line-icon {
        margin: 25px 0 55px;
    }

    .program-grid {}

    .program-large {
        grid-row: auto;
    }

    .program-large h3 {
        font-size: 40px;
    }

    .schedule-wrap {}

    .schedule-intro {
        margin-bottom: 40px;
    }

    .class-row {}

    .class-row small {}

    .class-row strong {
        font-size: 19px;
    }

    .trainer-grid {}

    .trainer-card {
        height: 380px;
    }

    .trainer-card h3 {
        font-size: 25px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-card+.price-card {
        border-left: 1px solid var(--line);
    }

    .price-card.popular {
        transform: none;
    }

    .results {
        min-height: 850px;
        padding: 80px 22px 260px;
        align-items: flex-start;
    }

    .results-bg {
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.3) 70%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent),
            url("assets/images/results.jpg") 60% center/cover;
    }

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

    .results-stats div {
        padding: 18px;
    }

    .results-stats strong {
        font-size: 35px;
    }

    .gallery-filters {
        margin-top: 25px;
    }

    .gallery-grid {}

    .gallery-grid .wide {}

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    blockquote+blockquote {
        border-left: 1px solid var(--line);
    }

    blockquote.featured {
        transform: none;
    }

    .faq-section {
        grid-template-columns: 1fr;
    }

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

    .contact-side {
        padding: 82px 22px;
    }

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

    .join-form {
        padding: 24px;
    }

    .footer-top {}

    .footer-top h2 {
        order: 3;
        width: 100%;
    }

    .footer-grid {}

    .footer-grid>div:first-child {}

    .footer-bottom {}
}

@media (max-width: 460px) {
    .trainer-grid {}

    .trainer-card {
        height: 460px;
    }

    .ref-trainer-card {
        height: 460px;
    }

    .gallery-grid {}

    .gallery-grid figure {
        height: 280px;
        margin-bottom: 10px;
    }

    .gallery-grid .tall {
        height: 420px;
    }

    .form-row {}

    .footer-grid {}

    .footer-grid>div:first-child {}

    .hero-stats span {
        font-size: 8px;
    }

    .hero-stats strong {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *:before,
    *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1050px) {
    .nav {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.45s, opacity 0.3s, visibility 0.45s;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Reference-led hero: framed technical interface with kinetic central visual. */
.hero {
    height: 70vh;
    min-height: 700px;
    padding: 5vh 5vw 5vh;
    display: block;
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto -8% -32% 42%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(245, 160, 25, 0.6), transparent 62%);
    filter: blur(25px);
    z-index: 0;
}

.hero-landscape {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-landscape i {
    position: absolute;
    display: block;
    background: url("assets/images/hero.jpg") center/cover;
    filter: grayscale(1) contrast(1.4) brightness(0.34);
    clip-path: polygon(7% 22%, 63% 0, 100% 51%, 72% 100%, 0 83%);
}

.hero-landscape i:nth-child(1) {
    width: 30vw;
    height: 24vw;
    left: -8vw;
    bottom: -6vw;
    transform: rotate(8deg);
}

.hero-landscape i:nth-child(2) {
    width: 26vw;
    height: 16vw;
    top: -10vw;
    left: 37vw;
    transform: rotate(-4deg);
}

.hero-landscape i:nth-child(3) {
    width: 19vw;
    height: 16vw;
    right: -8vw;
    bottom: -3vw;
    transform: rotate(-17deg);
}

.hero-stage {
    --mx: 0px;
    --my: 0px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 60vh;
    min-height: 620px;
    margin: 0 auto;
    background: #030303;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.hero-stage:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 56% 47%,
            rgba(245, 160, 25, 0.08),
            transparent 21%),
        linear-gradient(130deg, transparent 65%, rgba(245, 160, 25, 0.035));
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom,
            transparent 2%,
            #000 20%,
            #000 80%,
            transparent);
}

.site-header {
    top: calc(7vh + 13px);
    left: 8vw;
    width: 84vw;
    height: 48px;
    padding: 0;
    border: 0;
    z-index: 50;
}

.site-header.scrolled {
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    padding: 0 4vw;
}

.site-header .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
}

.site-header .logo-type {
    font-size: 19px;
}

.site-header .logo-type small {
    font-size: 7px;
    letter-spacing: 5px;
}

.site-header .nav {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 11px 18px;
    gap: 18px;
}

.site-header .nav a {
    font-size: 12px;
    letter-spacing: 0.9px;
    color: #7d7d7d;
}

.site-header .nav a:after {
    bottom: -5px;
    height: 1px;
}

.site-header .header-cta {
    min-height: 35px;
    padding: 0 18px;
    font-size: 9px;
    clip-path: none;
    border-radius: 4px;
    background: #ffd0a9;
    border-color: #ffd0a9;
}

.site-header .header-cta:hover {
    background: var(--orange);
}

.hero-corner-label {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #6e6e6e;
    font: 700 7px/1 var(--body);
    letter-spacing: 1.3px;
}

.hero-content {
    position: absolute;
    left: 8%;
    top: 22%;
    z-index: 5;
    max-width: 410px;
    animation: heroContentIn 0.9s 0.15s both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-brand {
    font: 800 10px/1 var(--body);
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 38px;
}

.hero-kicker {
    font-size: 7px;
    letter-spacing: 1.5px;
    color: #8b8b8b;
    margin-bottom: 11px;
}

.hero-kicker span {
    width: 18px;
    height: 1px;
}

.hero-content h1 {
    font-size: clamp(42px, 4.3vw, 70px);
    line-height: 0.85;
    letter-spacing: 0;
}

.hero-content h1>span {
    color: #fff;
    -webkit-text-stroke: 0;
}

.hero-content h1 em {
    font-size: 0.82em;
}

.hero-copy {
    font-size: 10px;
    line-height: 1.6;
    max-width: 310px;
    margin: 20px 0;
}

.hero-actions {
    gap: 8px;
}

.hero-actions .btn {
    min-height: 37px;
    padding: 0 17px;
    gap: 15px;
    font-size: 8px;
    letter-spacing: 1px;
    clip-path: none;
    border-radius: 3px;
}

.hero-actions .btn-ghost {
    border-color: #2c2c2c;
    color: #aaa;
}

.hero-visual {
    position: absolute;
    z-index: 3;
    left: 52%;
    top: 47%;
    width: min(36vw, 500px);
    aspect-ratio: 1;
    transform: translate(calc(-50% + var(--mx)), calc(-50% + var(--my)));
    transition: transform 0.35s ease;
    animation: visualIn 1.1s 0.25s both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.visual-disc {
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    overflow: hidden;
    background: #080808;
    border: 1px solid #272727;
    box-shadow: 0 0 0 7px #090909, 0 0 0 9px #262626, 0 30px 60px #000;
}

.visual-disc:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 40%),
        radial-gradient(circle, transparent 42%, rgba(0, 0, 0, 0.7));
    box-shadow: inset 0 0 55px #000;
}

.visual-disc img {
    filter: grayscale(1) contrast(1.22) brightness(0.72);
    transform: scale(1.2);
    animation: athleteDrift 8s ease-in-out infinite alternate;
}

.visual-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    animation: orbitSpin 14s linear infinite;
}

.orbit-one {
    inset: 7%;
    border-right-color: var(--orange);
    border-left-color: #555;
}

.orbit-two {
    inset: 1%;
    border-style: dashed;
    opacity: 0.45;
    animation-direction: reverse;
    animation-duration: 22s;
}

.visual-tick {
    position: absolute;
    background: var(--orange);
    box-shadow: 0 0 18px rgba(245, 160, 25, 0.8);
}

.tick-one {
    width: 4px;
    height: 27px;
    right: 6.5%;
    top: 45%;
}

.tick-two {
    height: 4px;
    width: 27px;
    left: 12%;
    bottom: 17%;
}

.visual-readout {
    position: absolute;
    z-index: 3;
    left: 43%;
    top: 42%;
    color: #fff;
    display: grid;
    grid-template-columns: auto 25px;
    align-items: end;
    gap: 7px;
}

.visual-readout b {
    font: 300 35px/1 var(--display);
}

.visual-readout i {
    height: 2px;
    background: var(--orange);
    margin-bottom: 7px;
}

.visual-readout span {
    grid-column: 1/3;
    font-size: 5px;
    letter-spacing: 1.2px;
    color: #999;
}

.visual-wave {
    position: absolute;
    z-index: 3;
    left: 38%;
    top: 56%;
    display: flex;
    gap: 4px;
    align-items: center;
}

.visual-wave i {
    width: 2px;
    height: 7px;
    background: #fff;
}

.visual-wave i:nth-child(2),
.visual-wave i:nth-child(6) {
    height: 15px;
}

.visual-wave i:nth-child(3),
.visual-wave i:nth-child(5) {
    height: 4px;
}

.visual-wave i:nth-child(4) {
    height: 21px;
    background: var(--orange);
}

.hero-access-card {
    position: absolute;
    z-index: 5;
    right: 3%;
    top: 8%;
    width: 110px;
    height: 118px;
    border: 1px solid #1c1c1c;
    background: linear-gradient(145deg, #101010, #090909);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 11px;
    color: #777;
}

.hero-access-card>span {
    font-size: 6px;
    letter-spacing: 1px;
}

.hero-access-card strong {
    font-size: 6px;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.pixel-heart {
    font-size: 27px;
    color: #fff;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
    animation: pulseMark 2s ease-in-out infinite;
}

.hero-tech-label {
    position: absolute;
    z-index: 5;
    color: #777;
    font-size: 6px;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

.label-right {
    right: 10%;
    top: 49%;
}

.label-bottom {
    right: 4%;
    bottom: 15%;
}

.scroll-cue {
    left: 4%;
    bottom: 14%;
    font-size: 6px;
    letter-spacing: 1.3px;
}

.scroll-cue i {
    width: 34px;
}

.pixel-mark {
    position: absolute;
    z-index: 4;
    left: 43%;
    bottom: 13%;
    width: 160px;
    display: grid;
    grid-template-columns: repeat(6, 14px);
    gap: 6px;
    transform: translateX(var(--mx));
}

.pixel-mark i {
    height: 12px;
    background: #fff;
}

.pixel-mark i:nth-child(1),
.pixel-mark i:nth-child(6),
.pixel-mark i:nth-child(8),
.pixel-mark i:nth-child(11) {
    opacity: 0;
}

.pixel-mark i:nth-child(3),
.pixel-mark i:nth-child(10) {
    width: 30px;
}

.hero-stats {
    left: auto;
    right: 3%;
    bottom: 3%;
    width: 48%;
    min-height: 62px;
    padding-left: 0;
    border: 1px solid #171717;
    border-radius: 28px;
    background: #070707;
    overflow: hidden;
}

.hero-stats>div {
    border-color: #171717;
    background: transparent;
}

.hero-stats>div:first-child {
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.hero-stats>div:last-child {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}

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

.hero-stats span {
    font-size: 12px;
    letter-spacing: 0.7px;
}

.hero-side-label {
    display: none;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateX(-34px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@keyframes visualIn {
    from {
        opacity: 0;
        transform: translate(-50%, -44%) scale(0.72) rotate(-12deg);
    }

    to {
        opacity: 1;
        transform: translate(calc(-50% + var(--mx)), calc(-50% + var(--my))) scale(1);
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes athleteDrift {
    to {
        transform: scale(1.26) translateX(-2%);
    }
}

@keyframes pulseMark {
    50% {
        transform: scale(0.78);
        color: var(--orange);
    }
}

@media (max-width: 1050px) {
    .site-header {
        top: calc(7vh + 10px);
        left: 8vw;
        width: 84vw;
    }

    .site-header .nav {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        padding: 0;
        border: 0;
        border-radius: 0;
        z-index: 70;
    }

    .site-header .nav.open {
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
    }

    body.menu-open .site-header,
    body.menu-open .site-header.scrolled {
        inset: 0;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        padding: 0 22px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.menu-open .site-header {
        background: transparent;
    }

    .hero-content {
        left: 6%;
        max-width: 330px;
    }

    .hero-visual {
        left: 61%;
        width: 46vw;
    }

    .hero-access-card {
        display: none;
    }

    .label-right {
        display: none;
    }

    .hero-stats {
        width: 92%;
        border-radius: 24px;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: calc(7vh + 50px);
        left: 14px;
        width: calc(100% - 45px);
        height: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-header.scrolled {
        top: 0;
        left: 0;
        width: 100%;
        height: 68px;
        padding: 0 16px;
        justify-content: space-between;
    }

    body:not([data-page="home"]) .site-header.scrolled {
        background: rgba(10, 10, 10, 0.92);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
    }

    .site-header .logo {
        width: 100px;
        flex: 0 0 100px;
        margin: 0;
    }

    .site-header.scrolled .logo {
        width: 72px;
        flex: 0 0 72px;
    }

    .site-header .header-cta {
        display: none;
    }

    .site-header .nav {
        margin: 0;
    }

    .site-header .menu-toggle {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        margin: 0 0 0 auto;
        z-index: 61;
    }

    .hero {
        height: 100svh;
        min-height: 760px;
        padding: 68px 14px 18px;
        background: linear-gradient(150deg, #dad8d4 0%, #f5b26c 100%);
    }

    .hero-landscape i:nth-child(1) {
        width: 58vw;
        height: 44vw;
        left: -20vw;
    }

    .hero-landscape i:nth-child(2) {
        width: 55vw;
        height: 35vw;
        top: -13vw;
    }

    .hero-stage {
        height: calc(100svh - 86px);
        min-height: 674px;
    }

    .hero-corner-label {
        top: 17px;
        left: 14px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        top: 120px;
        max-width: none;
    }

    .hero-brand {
        margin-bottom: 22px;
    }

    .hero-content h1 {
        font-size: 48px;
        max-width: 440px;
    }

    .hero-copy {
        max-width: 295px;
        margin: 16px 0;
    }

    .hero-actions {
        width: 100%;
        flex-direction: row;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 130px;
    }

    .hero-visual {
        left: 67%;
        top: 62%;
        width: 82vw;
        max-width: 390px;
        opacity: 0.62;
    }

    .visual-readout {
        display: none;
    }

    .hero-tech-label,
    .pixel-mark,
    .scroll-cue {
        display: none;
    }

    .hero-stats {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        min-height: 112px;
        border-radius: 24px;
    }

    .hero-stats>div {
        min-height: 54px;
    }

    .hero-stats>div:first-child {
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
    }

    .hero-stats>div:last-child {
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .hero-stats strong {
        font-size: 20px;
    }

    .hero-stats span {
        font-size: 6px;
    }
}

@media (max-width: 430px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 9px;
    }

    .hero-actions .btn {
        min-width: 120px;
        padding: 0 12px;
    }

    .hero-visual {
        top: 65%;
        left: 50%;
        width: 84vw;
    }

    .hero-brand {
        font-size: 8px;
    }
}

/* Cascade lock for the layered 3D product visual. */
.hero-visual .visual-disc {
    inset: -2%;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    place-items: center;
    perspective: 1100px;
    transform-style: preserve-3d
}

.hero-visual .visual-disc::after {
    display: none
}

.hero-visual .visual-disc .dumbbell-3d {
    position: relative;
    width: 116%;
    height: 116%;
    transform: translate3d(var(--dumbbell-x, 0), var(--dumbbell-y, 0), 0) rotateX(var(--dumbbell-rx, 0deg)) rotateY(var(--dumbbell-ry, 0deg)) rotateZ(-7deg) scale(1.02);
    transform-style: preserve-3d;
    will-change: transform;
    animation: dumbbellFloat 5.5s ease-in-out infinite alternate
}

.hero-visual .visual-disc .dumbbell-3d img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: none
}

.hero-visual .visual-disc .dumbbell-main {
    z-index: 3;
    transform: translateZ(34px);
    filter: saturate(.86) contrast(1.08) brightness(.96) drop-shadow(0 38px 34px rgba(0, 0, 0, .72)) drop-shadow(0 0 22px rgba(95, 110, 255, .2))
}

.hero-visual .visual-disc .depth-near {
    z-index: 2;
    transform: translate3d(calc(var(--depth-x, -8px) + 4px), calc(var(--depth-y, 9px) - 4px), 15px) scale(.997);
    filter: saturate(.7) brightness(.4) contrast(1.25);
    opacity: .62
}

.hero-visual .visual-disc .depth-far {
    z-index: 1;
    transform: translate3d(var(--depth-x, -8px), var(--depth-y, 9px), -6px) scale(.99);
    filter: saturate(.65) brightness(.22) contrast(1.3) blur(.5px);
    opacity: .5
}

.hero-visual.pointer-active .visual-disc .dumbbell-main {
    filter: saturate(1) contrast(1.12) brightness(1.04) drop-shadow(0 46px 40px rgba(0, 0, 0, .8)) drop-shadow(0 0 34px rgba(95, 110, 255, .3))
}

@media(max-width:760px) {
    .hero-visual .visual-disc .dumbbell-3d {
        width: 108%;
        height: 108%
    }
}

/* Real GLB hero dumbbell. */
.hero-visual .visual-disc .glb-model-shell {
    position: relative;
    width: 132%;
    height: 132%;
    transform: translate3d(var(--dumbbell-x, 0), var(--dumbbell-y, 0), 18px) rotateZ(-5deg);
    transform-style: preserve-3d;
    animation: modelFloat 5.5s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-visual model-viewer {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    --progress-bar-color: var(--orange);
    pointer-events: none;
    filter: drop-shadow(0 38px 32px rgba(0, 0, 0, .82)) drop-shadow(0 0 24px rgba(245, 160, 25, .2));
    transition: filter .25s ease;
}

.hero-visual model-viewer::part(default-progress-bar) {
    background-color: var(--orange);
    height: 2px
}

.hero-visual.pointer-active model-viewer {
    filter: drop-shadow(0 46px 38px rgba(0, 0, 0, .88)) drop-shadow(0 0 34px rgba(245, 160, 25, .34));
}

.model-floor-shadow {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 12%;
    height: 10%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .75);
    filter: blur(18px);
    transform: translateZ(-20px) scaleX(1.2);
    pointer-events: none;
}

@keyframes modelFloat {
    from {
        transform: translate3d(calc(var(--dumbbell-x, 0px) - 7px), calc(var(--dumbbell-y, 0px) + 7px), 8px) rotateZ(-7deg)
    }

    to {
        transform: translate3d(calc(var(--dumbbell-x, 0px) + 7px), calc(var(--dumbbell-y, 0px) - 10px), 32px) rotateZ(-2deg)
    }
}

@media(max-width:760px) {
    .hero-visual .visual-disc .glb-model-shell {
        width: 124%;
        height: 124%
    }
}

/* Final GLB hero composition: make the real dumbbell the dominant object. */
.hero-stage .hero-visual {
    left: 50%;
    top: 50%;
    width: min(33vw, 400px);
    z-index: 7;
}

.hero-stage .visual-disc {
    inset: -18%;
}

.hero-stage .glb-model-shell {
    width: 156%;
    height: 156%;
    transform: translate3d(var(--dumbbell-x, 0px), var(--dumbbell-y, 0px), 20px) rotateZ(-4deg);
}

.hero-stage model-viewer {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 50px 42px rgba(0, 0, 0, .9)) drop-shadow(0 0 36px rgba(245, 160, 25, .24));
}

.hero-stage .visual-readout,
.hero-stage .visual-wave {
    z-index: 9;
}

.hero-stage .hero-content {
    z-index: 8;
}

.hero-stage .hero-stats {
    z-index: 10;
    bottom: 4%;
}

@keyframes modelFloat {
    from {
        transform: translate3d(calc(var(--dumbbell-x, 0px) - 8px), calc(var(--dumbbell-y, 0px) + 7px), 16px) rotateZ(-5deg);
    }

    to {
        transform: translate3d(calc(var(--dumbbell-x, 0px) + 8px), calc(var(--dumbbell-y, 0px) - 10px), 38px) rotateZ(-1deg);
    }
}

@media(max-width:1050px) {
    .hero-stage .hero-visual {
        left: 72%;
        top: 52%;
        width: 30vw;
    }
}

@media(max-width:760px) {
    .hero-stage .hero-visual {
        left: 53%;
        top: 68%;
        width: 62vw;
        opacity: 1;
    }

    .hero-stage .glb-model-shell {
        width: 138%;
        height: 138%;
    }

    .hero-stage .hero-stats {
        bottom: 12px;
    }
}

.page-hero {
    min-height: 72vh;
    padding: 180px 7vw 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 177, 73, 0.18), transparent 32%),
        linear-gradient(145deg, #080808 0%, #121212 52%, #080808 100%);
}

.page-hero:before,
.page-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: .5;
}

.page-hero:before {
    width: 380px;
    height: 380px;
    right: -90px;
    top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero:after {
    width: 220px;
    height: 220px;
    left: -30px;
    bottom: 20px;
    border: 1px solid rgba(255, 177, 73, 0.24);
}

.page-hero-wrap {
    position: relative;
    z-index: 1;
}

.page-hero-copy h1 {
    font-size: clamp(58px, 8vw, 106px);
    line-height: .9;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero-copy h1 em {
    color: var(--orange);
    font-style: italic;
}

.page-hero-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.page-hero-actions,
.section-actions,
.page-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.page-hero-card,
.glass-panel {
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.page-hero-card {
    padding: 34px;
    border-radius: 28px;
}

.page-hero-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.page-hero-card h3,
.detail-sidebar h3,
.content-card h3,
.article-body h3,
.article-card h3,
.equipment-card h3,
.contact-card h3,
.legal-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-hero-card p,
.content-card p,
.detail-sidebar p,
.article-body p,
.article-body li,
.timeline-card p,
.list-card li,
.legal-content p,
.legal-content li,
.article-card p,
.equipment-card p,
.contact-card p,
.legal-card p {
    color: var(--muted);
    line-height: 1.75;
}

.mini-stats,
.metric-grid,
.equipment-metrics,
.timeline-stack,
.stack-list,
.detail-list,
.contact-list,
.legal-list,
.article-grid,
.policy-grid,
.equipment-grid {}

.mini-stats {
    margin-top: 22px;
}

.mini-stats div,
.metric-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.mini-stats strong,
.metric-card strong,
.equipment-metrics strong {
    color: var(--orange);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.mini-stats span,
.metric-card span,
.equipment-metrics span {
    color: #e6e6e6;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.page-section {
    padding: 100px 7vw;
}

.content-grid,
.split-grid,
.detail-layout,
.contact-layout,
.legal-layout {}

.content-grid {}

.split-grid,
.detail-layout,
.contact-layout,
.legal-layout {}

.article-grid {}

.equipment-grid,
.policy-grid {}

.home-equipment-grid {}

.content-card,
.timeline-card,
.detail-sidebar,
.article-card,
.legal-card,
.equipment-card,
.contact-card,
.list-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #101010;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 100%;
}

.contact-card .contact-list {
    margin-top: auto;
}

.contact-card .btn {
    margin-top: 10px;
}

.join-form-contact {
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #161616;
}

body[data-page="contact"] .join-form-contact .field {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

body[data-page="contact"] .join-form-contact .field label {
    color: #a7a7a7;
    font-size: .78rem;
    letter-spacing: 0;
    text-transform: none;
}

body[data-page="contact"] .join-form-contact .field input,
body[data-page="contact"] .join-form-contact .field select,
body[data-page="contact"] .join-form-contact .field textarea {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
}

body[data-page="contact"] .join-form-contact .field input,
body[data-page="contact"] .join-form-contact .field select {
    height: 52px;
}

body[data-page="contact"] .join-form-contact .field textarea {
    min-height: 122px;
}

body[data-page="contact"] .join-form-contact .btn {
    margin-top: auto;
}

.content-card:before,
.timeline-card:before,
.article-card:before,
.equipment-card:before,
.contact-card:before,
.legal-card:before {
    content: "";
    position: absolute;
    inset: auto -20% -40% 40%;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 177, 73, 0.12), transparent 68%);
    pointer-events: none;
}

.content-card span,
.article-meta,
.detail-meta,
.equipment-tag,
.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.content-card ul,
.list-card ul,
.legal-content ul,
.legal-content ol,
.article-body ul {
    padding-left: 20px;
}

.content-card li,
.list-card li {
    margin-bottom: 10px;
    color: var(--muted);
}

.timeline-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    text-transform: uppercase;
}

.image-panel {
    border-radius: 28px;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
}

.image-panel img,
.article-card img,
.equipment-card img,
.trainer-detail-hero img,
.blog-hero-card img,
.program-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-layout {}

.detail-layout {}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 108px;
    height: 100%;
}

.detail-sidebar .detail-list {
    margin-bottom: auto;
}

.detail-sidebar .btn,
.detail-sidebar .btn-ghost {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}

.stories-shell {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 177, 73, 0.08), rgba(255, 255, 255, 0.02));
}

.stories-track {
    display: flex;
    transition: transform .6s ease;
}

.story-slide {
    min-width: 100%;
    padding: 42px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(240px, .75fr);
    gap: 26px;
    align-items: center;
}

.story-slide blockquote {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}

.story-slide p {
    color: var(--muted);
    margin-top: 18px;
    line-height: 1.8;
}

.story-profile {
    border-left: 1px solid var(--line);
    padding-left: 26px;
}

.story-profile strong {
    display: block;
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 8px;
}

.stories-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.stories-nav .story-buttons {
    display: flex;
    gap: 12px;
}

.stories-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.gallery-grid .gallery-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.gallery-grid figure {
    position: relative;
}

.gallery-grid figure figcaption {
    position: relative;
    z-index: 3;
}

.article-card img,
.equipment-card img {
    height: 250px;
    border-radius: 28px;
    margin-bottom: 20px;
}

.trainer-detail-hero,
.blog-hero-card,
.program-feature-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f0f0f;
}

.trainer-detail-hero img,
.blog-hero-card img,
.program-feature-card img {
    height: 520px;
}

.article-body,
.legal-content {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #0f0f0f;
    padding: 34px;
}

.article-body h2,
.legal-content h2 {
    font-size: 40px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.article-body h3,
.legal-content h3 {
    margin-top: 26px;
}

.detail-list li,
.contact-list li,
.legal-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list strong,
.contact-list strong,
.legal-list strong {
    color: #fff;
}

.equipment-purpose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 177, 73, 0.2);
    color: #ffe0b3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}

.wa-card {
    display: flex;
    align-items: stretch;
    padding: 24px 28px;
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(17, 17, 17, 0.9));
    min-height: 100%;
}

.about-end-grid {}

.about-end-grid>* {
    height: 100%;
}

.wa-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
}

.wa-card-bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.wa-card h2 {
    margin-bottom: 14px;
}

.wa-card .btn {
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 18px;
}

.wa-card p {
    margin-bottom: 0;
}

.page-links a {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: #ddd;
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.contact-card a:not(.btn):not(.btn-ghost),
.legal-card a:not(.btn):not(.btn-ghost) {
    color: var(--orange);
    font-weight: 700;
}

@media (max-width: 1100px) {

    .page-hero-wrap,
    .content-grid,
    .split-grid,
    .detail-layout,
    .contact-layout,
    .legal-layout,
    .article-grid,
    .equipment-grid,
    .policy-grid {}

    .detail-sidebar {
        position: static;
    }

    .story-slide {
        grid-template-columns: 1fr;
    }

    .story-profile {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 20px;
    }

    .gallery-grid {}

    .about-end-grid {}
}

@media (max-width: 760px) {
    .page-hero {
        padding: 180px 14px 54px;
        min-height: auto;
    }

    .page-section {
        padding: 78px 14px;
    }

    .page-hero-copy h1 {
        font-size: 48px;
    }

    .page-hero-card,
    .content-card,
    .timeline-card,
    .detail-sidebar,
    .article-card,
    .legal-card,
    .equipment-card,
    .contact-card,
    .article-body,
    .legal-content {
        padding: 22px;
        border-radius: 28px;
    }

    .page-hero-card img,
    .article-card img,
    .equipment-card img {
        height: 220px;
    }

    .trainer-detail-hero img,
    .blog-hero-card img,
    .program-feature-card img {
        height: 320px;
    }

    .story-slide {
        padding: 24px;
    }

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

    .wa-card-content {
        width: 100%;
    }

    .gallery-grid {}
}

body[data-page="home"] {
    background: #050505;
}

body[data-page="home"] .site-header.scrolled,
body[data-page="home"].menu-open .site-header,
body[data-page="home"].menu-open .site-header.scrolled {
    background: rgba(12, 12, 12, 0.78);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body:not([data-page="home"]) {
    background:
        radial-gradient(circle at top right, rgba(245, 197, 66, 0.1), transparent 28%),
        #050505;
}

body:not([data-page="home"]) .site-header,
body:not([data-page="home"]) .site-header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
}

body:not([data-page="home"]) .site-header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

body:not([data-page="home"]) .page-hero {
    min-height: 46vh;
    padding: 208px 11vw 70px;
    margin-top: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(245, 197, 66, 0.18), transparent 30%),
        linear-gradient(145deg, #080808 0%, #121212 52%, #080808 100%);
}

body:not([data-page="home"]) .page-hero-wrap {
    margin-top: 0;
}

body[data-page="about"] .page-hero-wrap {
    max-width: 920px;
    text-align: center;
}

body[data-page="about"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/gym-interior.jpg") center/cover no-repeat;
    place-items: center;
}

body[data-page="about"] .page-hero-copy {
    max-width: 860px;
}

body[data-page="about"] .page-hero-copy p {
    margin-left: auto;
    margin-right: auto;
}

body[data-page="about"] .page-hero-actions {
    justify-content: center;
    gap: 14px;
}

@media (min-width: 992px) {
    body[data-page="about"] .about-end-grid .page-hero-card,
    body[data-page="about"] .about-end-grid .wa-card {
        min-height: 620px;
    }

    body[data-page="about"] .about-end-grid .page-hero-card img {
        height: 250px;
    }
}

body[data-page="equipment"] .page-hero,
body[data-page="trainers"] .page-hero,
body[data-page="pricing"] .page-hero,
body[data-page="gallery"] .page-hero,
body[data-page="contact"] .page-hero,
body[data-page="trainer-detail"] .page-hero,
body[data-page="blog-detail"] .page-hero,
body[data-page="blogs"] .page-hero,
body[data-page="faqs"] .page-hero,
body[data-page="privacy"] .page-hero,
body[data-page="terms"] .page-hero {
    place-items: center;
}

body[data-page="equipment"] .page-hero-wrap,
body[data-page="trainers"] .page-hero-wrap,
body[data-page="pricing"] .page-hero-wrap,
body[data-page="gallery"] .page-hero-wrap,
body[data-page="contact"] .page-hero-wrap,
body[data-page="trainer-detail"] .page-hero-wrap,
body[data-page="blog-detail"] .page-hero-wrap,
body[data-page="blogs"] .page-hero-wrap,
body[data-page="faqs"] .page-hero-wrap,
body[data-page="privacy"] .page-hero-wrap,
body[data-page="terms"] .page-hero-wrap {
    max-width: 920px;
    text-align: center;
}

body[data-page="equipment"] .page-hero-copy,
body[data-page="trainers"] .page-hero-copy,
body[data-page="pricing"] .page-hero-copy,
body[data-page="gallery"] .page-hero-copy,
body[data-page="contact"] .page-hero-copy,
body[data-page="trainer-detail"] .page-hero-copy,
body[data-page="blog-detail"] .page-hero-copy,
body[data-page="blogs"] .page-hero-copy,
body[data-page="faqs"] .page-hero-copy,
body[data-page="privacy"] .page-hero-copy,
body[data-page="terms"] .page-hero-copy {
    max-width: 860px;
}

body[data-page="equipment"] .page-hero-copy p,
body[data-page="trainers"] .page-hero-copy p,
body[data-page="pricing"] .page-hero-copy p,
body[data-page="gallery"] .page-hero-copy p,
body[data-page="contact"] .page-hero-copy p,
body[data-page="trainer-detail"] .page-hero-copy p,
body[data-page="blog-detail"] .page-hero-copy p,
body[data-page="blogs"] .page-hero-copy p,
body[data-page="faqs"] .page-hero-copy p,
body[data-page="privacy"] .page-hero-copy p,
body[data-page="terms"] .page-hero-copy p {
    margin-left: auto;
    margin-right: auto;
}

body[data-page="equipment"] .page-hero-actions,
body[data-page="trainers"] .page-hero-actions,
body[data-page="pricing"] .page-hero-actions,
body[data-page="gallery"] .page-hero-actions,
body[data-page="contact"] .page-hero-actions,
body[data-page="trainer-detail"] .page-hero-actions,
body[data-page="blog-detail"] .page-hero-actions,
body[data-page="blogs"] .page-hero-actions,
body[data-page="faqs"] .page-hero-actions,
body[data-page="privacy"] .page-hero-actions,
body[data-page="terms"] .page-hero-actions {
    justify-content: center;
}

body[data-page="equipment"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/gallery-1.jpg") center/cover no-repeat;
}

body[data-page="trainers"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/trainer-1.jpg") center/cover no-repeat;
}

body[data-page="pricing"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/gallery-3.jpg") center/cover no-repeat;
}

body[data-page="gallery"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/gym-interior.jpg") center/cover no-repeat;
}

body[data-page="contact"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/results.jpg") center/cover no-repeat;
}

body[data-page="trainer-detail"][data-trainer="alex"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/trainer-1.jpg") center/cover no-repeat;
}

body[data-page="trainer-detail"][data-trainer="maya"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/trainer-2.jpg") center/cover no-repeat;
}

body[data-page="trainer-detail"][data-trainer="ryan"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/trainer-3.jpg") center/cover no-repeat;
}

body[data-page="trainer-detail"][data-trainer="sara"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/trainer-4.jpg") center/cover no-repeat;
}

body[data-page="blogs"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/bodybuilding.jpg") center/cover no-repeat;
}

body[data-page="blog-detail"][data-blog="fat-loss"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/cardio.jpg") center/cover no-repeat;
}

body[data-page="blog-detail"][data-blog="diet-plan"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/results.jpg") center/cover no-repeat;
}

body[data-page="blog-detail"][data-blog="recovery"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/bodybuilding.jpg") center/cover no-repeat;
}

body[data-page="faqs"] .page-hero,
body[data-page="privacy"] .page-hero,
body[data-page="terms"] .page-hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
        url("assets/images/gym-interior.jpg") center/cover no-repeat;
}

body[data-page="trainer-detail"] .trainer-detail-hero,
body[data-page="blog-detail"] .blog-hero-card,
body[data-page="blogs"] .page-hero-card,
body[data-page="faqs"] .page-hero-card,
body[data-page="privacy"] .page-hero-card,
body[data-page="terms"] .page-hero-card {
    display: none;
}

body:not([data-page="home"]) .page-hero-copy h1,
body:not([data-page="home"]) .section-head h2,
body:not([data-page="home"]) .page-hero-card h3,
body:not([data-page="home"]) .content-card h3,
body:not([data-page="home"]) .timeline-card strong,
body:not([data-page="home"]) .detail-sidebar h3,
body:not([data-page="home"]) .article-card h3,
body:not([data-page="home"]) .article-body h2,
body:not([data-page="home"]) .article-body h3,
body:not([data-page="home"]) .equipment-card h3,
body:not([data-page="home"]) .contact-card h3,
body:not([data-page="home"]) .legal-card h3,
body:not([data-page="home"]) .legal-content h2,
body:not([data-page="home"]) .legal-content h3 {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body:not([data-page="home"]) .page-hero-copy h1,
body:not([data-page="home"]) .section-head h2 {
    font-size: clamp(3.4rem, 8vw, 6.8rem);
    line-height: .92;
}

body:not([data-page="home"]) .page-hero-card,
body:not([data-page="home"]) .content-card,
body:not([data-page="home"]) .timeline-card,
body:not([data-page="home"]) .detail-sidebar,
body:not([data-page="home"]) .article-card,
body:not([data-page="home"]) .legal-card,
body:not([data-page="home"]) .equipment-card,
body:not([data-page="home"]) .contact-card,
body:not([data-page="home"]) .article-body,
body:not([data-page="home"]) .legal-content,
body:not([data-page="home"]) .wa-card,
body:not([data-page="home"]) .stories-shell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #111;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

body:not([data-page="home"]) .page-hero-card,
body:not([data-page="home"]) .article-card,
body:not([data-page="home"]) .equipment-card,
body:not([data-page="home"]) .trainer-detail-hero,
body:not([data-page="home"]) .blog-hero-card,
body:not([data-page="home"]) .program-feature-card {
    overflow: hidden;
}

body:not([data-page="home"]) .page-hero-card img,
body:not([data-page="home"]) .article-card img,
body:not([data-page="home"]) .equipment-card img {
    border-radius: 20px;
}

body:not([data-page="home"]) .trainer-detail-hero img {
    height: clamp(290px, 24vw, 340px);
}

body:not([data-page="home"]) .trainer-detail-hero {
    margin-top: 8px;
}

body:not([data-page="home"]) .eyebrow,
body:not([data-page="home"]) .content-card span,
body:not([data-page="home"]) .article-meta,
body:not([data-page="home"]) .detail-meta,
body:not([data-page="home"]) .equipment-tag,
body:not([data-page="home"]) .legal-kicker {
    color: #f5c542;
    letter-spacing: .14em;
}

body:not([data-page="home"]) .head-copy,
body:not([data-page="home"]) .page-hero-copy p,
body:not([data-page="home"]) .page-hero-card p,
body:not([data-page="home"]) .content-card p,
body:not([data-page="home"]) .timeline-card p,
body:not([data-page="home"]) .article-card p,
body:not([data-page="home"]) .article-body p,
body:not([data-page="home"]) .article-body li,
body:not([data-page="home"]) .equipment-card p,
body:not([data-page="home"]) .contact-card p,
body:not([data-page="home"]) .legal-card p,
body:not([data-page="home"]) .legal-content p,
body:not([data-page="home"]) .legal-content li {
    color: #a7a7a7;
}

body:not([data-page="home"]) .btn,
body:not([data-page="home"]) .btn-small,
body:not([data-page="home"]) .btn-ghost,
body:not([data-page="home"]) .header-cta {
    min-height: 46px;
    border-radius: 8px;
    clip-path: none;
    text-transform: uppercase;
    letter-spacing: .08em;
}

body:not([data-page="home"]) .btn,
body:not([data-page="home"]) .header-cta {
    background: #f5c542;
    border-color: #f5c542;
    color: #000;
}

body:not([data-page="home"]) .btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body:not([data-page="home"]) .footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(245, 197, 66, 0.09), transparent 20%),
        #070707;
}

body[data-page="home"] .btn,
body[data-page="home"] .btn-small,
body[data-page="home"] .btn-ghost,
body[data-page="home"] .header-cta {
    min-height: 46px;
    border-radius: 8px;
    clip-path: none;
    text-transform: uppercase;
    letter-spacing: .08em;
}

body[data-page="home"] .btn,
body[data-page="home"] .header-cta {
    background: #f5c542;
    border-color: #f5c542;
    color: #000;
}

body[data-page="home"] .btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body[data-page="home"] .btn:hover,
body[data-page="home"] .header-cta:hover {
    background: #d79d18;
    border-color: #d79d18;
}

body[data-page="home"] .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ref-section,
.ref-section-tight {
    position: relative;
    padding: 110px max(24px, calc((100vw - 1180px) / 2));
    background: #0e0e0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ref-section:nth-of-type(odd) {
    background: #050505;
}

.ref-section-tight {
    background: #050505;
}

.ref-stats.ref-section-tight {
    position: relative;
    z-index: 5;
    margin-top: -128px;
    padding-top: 0;
    padding-bottom: 92px;
    background: linear-gradient(180deg, transparent 0, #050505 112px);
}

.ref-stats-grid,
.ref-trainer-grid,
.ref-timing-grid,
.ref-pricing-grid,
.ref-review-grid {}

.ref-stats-grid {}

.ref-stat-card,
.ref-timing-card,
.ref-pricing-card,
.ref-review-card,
.ref-trainer-card,
.ref-contact-form,
.ref-accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #161616;
}

.ref-stat-card {
    min-height: 156px;
    padding: 28px;
}

.ref-stat-card strong,
.ref-timing-card strong,
.ref-pricing-card h3,
.ref-map-label strong,
.ref-section-title,
.ref-media-card h3,
.ref-trainer-card h3 {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.ref-stat-card strong {
    display: block;
    color: #f5c542;
    font-size: 4.2rem;
    line-height: .92;
}

.ref-stat-card span:last-child {
    display: block;
    margin-top: 12px;
    color: #a7a7a7;
    font-weight: 800;
    text-transform: uppercase;
}

.ref-marquee {
    overflow: hidden;
    padding: 24px 0;
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    background: #f5c542;
    color: #000;
}

.ref-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.ref-marquee span {
    padding-right: 28px;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 2.2rem;
    white-space: nowrap;
}

.ref-intro {
    max-width: 720px;
    margin-bottom: 42px;
}

.ref-intro-split {
    max-width: none;
    width: 100%;
}

.ref-intro-split>div {
    min-width: 0;
}

.ref-faq-intro {
    width: 100%;
}

.ref-grid {}

.ref-grid-about {
    align-items: center;
}

.ref-section-title {
    margin: 0;
    font-size: 5.2rem;
    line-height: .9;
    text-transform: uppercase;
    color: #fff;
}

.ref-copy p,
.ref-section-copy {
    margin: 0;
    color: #a7a7a7;
    line-height: 1.75;
}

.ref-section-link {
    min-height: 46px;
    padding: 0 18px;
    margin-top: 0;
    white-space: nowrap;
    align-self: flex-start;
}

.ref-about-link {
    display: inline-flex;
    margin-top: 34px;
    margin-left: auto;
}

.ref-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.ref-tags span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.04);
}

.ref-media-grid {}

.ref-media-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #161616;
}

.ref-media-card:nth-child(1),
.ref-media-card:nth-child(2) {
    grid-column: span 3;
}

.ref-media-card:nth-child(n + 3) {
    grid-column: span 2;
    min-height: 360px;
}

.ref-media-card::after,
.ref-gallery-item::after,
.ref-trainer-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.82));
    pointer-events: none;
}

.ref-media-card img,
.ref-gallery-item img,
.ref-trainer-photo img {
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, filter .75s ease;
}

.ref-media-card:hover img,
.ref-gallery-item:hover img,
.ref-trainer-card:hover img {
    filter: saturate(1.16) contrast(1.08);
    transform: scale(1.08) skewX(-1deg);
}

.ref-media-card div {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
}

.ref-media-card span,
.ref-trainer-card span,
.ref-pricing-card span,
.ref-map-label span {
    color: #f5c542;
    font-weight: 900;
    text-transform: uppercase;
}

.ref-media-card h3,
.ref-trainer-card h3,
.ref-pricing-card h3 {
    margin: 8px 0 0;
    font-size: 3rem;
    line-height: 1;
}

.ref-card-link {
    display: inline-flex;
    margin-top: 14px;
    color: #f5c542;
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ref-trainer-grid {}

.ref-pricing-grid,
.ref-review-grid {}

.ref-trainer-card {
    display: flex;
    flex-direction: column;
    height: 490px;
    overflow: hidden;
    padding: 14px 14px 24px;
}

.ref-trainer-photo {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
}

.ref-trainer-card span {
    display: block;
    min-height: 42px;
    margin: 18px 0 0;
    font-size: .78rem;
}

.ref-trainer-card p {
    margin-bottom: 0;
}

.ref-trainer-card .ref-card-link {
    margin-top: auto;
}

.ref-trainer-card p,
.ref-pricing-card p,
.ref-review-card p {
    color: #a7a7a7;
    line-height: 1.65;
}

.ref-timing-grid {}

.ref-timing-card {
    display: grid;
    min-height: 168px;
    align-content: space-between;
    padding: 24px;
}

.ref-timing-card span {
    color: #a7a7a7;
    font-weight: 900;
    text-transform: uppercase;
}

.ref-timing-card strong {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
}

.ref-timing-closed strong {
    color: #d79d18;
}

.ref-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 28px;
}

.ref-pricing-featured {
    border-color: rgba(245, 197, 66, 0.48);
    background: linear-gradient(160deg, rgba(245, 197, 66, 0.16), rgba(255, 59, 48, 0.06)), #161616;
}

.ref-pricing-card em {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 10px;
    border-radius: 28px;
    color: #000;
    background: #f5c542;
    font-size: .75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.ref-pricing-card h3 {
    margin-top: 26px;
    color: #fff;
    font-size: 4.3rem;
}

.ref-pricing-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.ref-review-card {
    min-height: 236px;
    padding: 28px;
}

.review-carousel-shell {
    position: relative;
}

.carousel-inner {
    padding: 2px 2px 10px;
}

.review-carousel-shell .carousel-item {
    transition: transform .6s ease-in-out;
}

.review-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.review-carousel-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: .25s ease;
}

.review-carousel-button:hover {
    border-color: rgba(255, 177, 73, 0.4);
    color: var(--orange);
    transform: translateY(-1px);
}

.ref-review-card strong {
    color: #f5c542;
}

.ref-accordion {
    display: grid;
    gap: 10px;
}

.ref-accordion-item button {
    position: relative;
    width: 100%;
    padding: 22px 56px 22px 22px;
    border: 0;
    color: #fff;
    background: transparent;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.ref-accordion-item button::before,
.ref-accordion-item button::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 16px;
    height: 2px;
    content: "";
    background: #f5c542;
    transition: transform .28s ease;
}

.ref-accordion-item button::after {
    transform: rotate(90deg);
}

.ref-accordion-item button[aria-expanded="true"]::after {
    transform: rotate(0deg);
}

.ref-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
}

.ref-accordion-panel p {
    margin: 0;
    padding: 0 22px 22px;
    color: #a7a7a7;
    line-height: 1.65;
}

.ref-gallery-grid {
    grid-auto-flow: dense;
}

.ref-gallery-item {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #161616;
    cursor: pointer;
    padding: 0;
}

.ref-gallery-tall {
    grid-row: span 2;
    min-height: 576px;
}

.ref-gallery-wide {
    grid-column: span 2;
}

.ref-map-card {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.13), rgba(255, 59, 48, 0.08)), #111;
}

.ref-map-grid {
    position: absolute;
    inset: -40px;
    opacity: .52;
    background: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: rotate(-8deg) scale(1.1);
}

.ref-map-card::before,
.ref-map-card::after {
    position: absolute;
    content: "";
    background: rgba(245, 197, 66, 0.42);
}

.ref-map-card::before {
    top: 42%;
    left: -10%;
    width: 120%;
    height: 8px;
    transform: rotate(-14deg);
}

.ref-map-card::after {
    top: -6%;
    left: 54%;
    width: 8px;
    height: 118%;
    transform: rotate(18deg);
}

.ref-map-pin {
    position: absolute;
    top: 44%;
    left: 56%;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 8px solid #f5c542;
    border-radius: 50% 50% 50% 0;
    background: #d79d18;
    box-shadow: 0 0 0 14px rgba(245, 197, 66, 0.12);
    transform: rotate(-45deg);
}

.ref-map-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.68);
    backdrop-filter: blur(18px);
}

.ref-map-label strong {
    display: block;
    margin-top: 8px;
    font-size: 2.6rem;
}

.ref-contact-lines {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.ref-contact-lines a {
    width: fit-content;
    color: #f5c542;
    font-size: 1.1rem;
    font-weight: 900;
}

.ref-contact-form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.ref-contact-form label {
    display: grid;
    gap: 8px;
}

.ref-contact-form span {
    color: #a7a7a7;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ref-contact-form input,
.ref-contact-form select,
.ref-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    outline: none;
}

.ref-contact-form input,
.ref-contact-form select {
    height: 52px;
    padding: 0 14px;
}

.ref-contact-form textarea {
    min-height: 122px;
    resize: vertical;
    padding: 14px;
}

.ref-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 910;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #051106;
    background: #26d366;
    box-shadow: 0 14px 40px rgba(38, 211, 102, 0.28);
    font-weight: 900;
}

.ref-lightbox {
    position: fixed;
    inset: 0;
    z-index: 980;
    display: grid;
    place-items: center;
    padding: 42px;
    background: rgba(0, 0, 0, 0.88);
}

.ref-lightbox[hidden] {
    display: none;
}

.ref-lightbox-image {
    max-width: min(1080px, 90vw);
    max-height: 82vh;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    object-fit: contain;
}

.ref-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.ref-lightbox-close::before,
.ref-lightbox-close::after {
    position: absolute;
    top: 21px;
    left: 14px;
    width: 18px;
    height: 2px;
    content: "";
    background: #fff;
}

.ref-lightbox-close::before {
    transform: rotate(45deg);
}

.ref-lightbox-close::after {
    transform: rotate(-45deg);
}

@media (max-width: 1040px) {

    .ref-grid,
    .ref-grid-about {}

    .ref-stats-grid,
    .ref-timing-grid {}

    .ref-media-grid,
    .ref-trainer-grid,
    .ref-pricing-grid,
    .ref-review-grid,
    .ref-gallery-grid {}

    .home-equipment-grid {}

    .ref-media-card,
    .ref-media-card:nth-child(1),
    .ref-media-card:nth-child(2),
    .ref-media-card:nth-child(n + 3) {
        grid-column: span 1;
        min-height: 340px;
    }
}

@media (max-width: 720px) {

    .ref-section,
    .ref-section-tight {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .ref-section-title {
        font-size: 3.2rem;
    }

    .ref-intro-split {}

    .ref-section-link {
        width: fit-content;
    }

    .ref-about-link {
        margin-left: 0;
    }

    .ref-stats-grid,
    .ref-media-grid,
    .home-equipment-grid,
    .ref-trainer-grid,
    .ref-timing-grid,
    .ref-pricing-grid,
    .ref-review-grid,
    .ref-gallery-grid {}

    .ref-stat-card {
        min-height: 132px;
    }

    .ref-media-card,
    .ref-media-card:nth-child(1),
    .ref-media-card:nth-child(2),
    .ref-media-card:nth-child(n + 3) {
        min-height: 320px;
    }

    .ref-gallery-item,
    .ref-gallery-tall,
    .ref-gallery-wide {
        min-height: 300px;
    }

    .ref-pricing-card h3 {
        font-size: 3.5rem;
    }

    .ref-map-card {
        min-height: 360px;
    }

    .ref-lightbox {
        padding: 18px;
    }

}
