:root {
    --red: #ec344d;
    --red-dark: #c51c34;
    --ink: #171b22;
    --muted: #686e77;
    --line: #e8e8eb;
    --soft: #f8f3f4;
    --paper: #ffffff;
    --dark: #11151a;
    --shadow: 0 22px 60px rgba(17, 21, 26, 0.12);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter Local", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

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

.club-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    box-shadow: 0 1px 0 rgba(17, 21, 26, 0.08);
}

.club-header__top {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 22px;
    font-size: 13px;
    color: #111;
}

.club-header__top a {
    color: var(--ink);
    border-left: 1px solid #d6d6da;
    padding-left: 14px;
}

.club-header__bar {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 22px;
}

.club-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-family: "Inter Display Local", Arial, sans-serif;
    letter-spacing: -0.04em;
    font-size: 26px;
    color: var(--ink);
}

.club-logo__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--red);
    border-radius: 50% 50% 50% 10%;
    font-size: 17px;
    letter-spacing: -0.02em;
    box-shadow: 5px 5px 0 #10151b;
}

.club-logo__text span {
    color: var(--red);
    margin-left: 3px;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.site-nav__link {
    position: relative;
    padding: 22px 0;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
    transform: scaleX(1);
}

.site-nav__join,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav__join {
    color: #fff;
    background: var(--red);
    padding: 17px 28px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.site-nav__join:hover,
.btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 42px;
    border: 0;
    background: var(--ink);
    border-radius: 0;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
    max-width: var(--max);
    margin: 0 auto;
    padding: 86px 22px;
}

.section-soft {
    max-width: none;
    padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
    padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
    background: var(--soft);
}

.section-dark {
    max-width: none;
    padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
    padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
    background: var(--dark);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 20px;
    background: linear-gradient(105deg, var(--red) 0 55%, var(--ink) 55% 100%);
    display: inline-block;
    transform: skewX(-16deg);
}

h1,
h2,
h3 {
    font-family: "Inter Display Local", "Inter Local", Arial, sans-serif;
    margin: 0 0 18px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(24px, 6vw, 58px);
}

h2 {
    font-size: clamp(22px, 4vw, 44px);
}

h3 {
    font-size: 18px;
}

p {
    margin: 0 0 18px;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading h2 span,
.club-lead h1 span {
    color: var(--red);
}

.btn {
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 13px;
}

.btn--red {
    background: var(--red);
    color: #fff;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn--dark {
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
    width: fit-content;
}

.btn--line {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
}

.club-lead {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
  
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.club-lead__shade {
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    background: rgba(236, 52, 77, 0.88);
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
    mix-blend-mode: multiply;
}

.club-lead__panel {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100% - 44px));
    margin-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
    color: #fff;
    padding: 46px 0;
}

.club-lead__panel p {
    max-width: 560px;
    font-size: 18px;
}

.club-lead__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 62px;
}

.gym-finder {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    max-width: 470px;
    align-items: center;
    background: #fff;
    color: var(--ink);
    padding: 22px 26px;
    box-shadow: var(--shadow);
}

.gym-finder i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: #ff9f1c;
    color: #fff;
    font-size: 24px;
}

.gym-finder strong,
.gym-finder span {
    display: block;
}

.gym-finder span {
    color: var(--muted);
    font-size: 14px;
}

.choice-stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 38px 48px;
}

.choice-stage::before {
    content: "";
    position: absolute;
    inset: 95px 0 0;
    border: 1px solid #d6d6dc;
    transform: skewX(-10deg);
    z-index: -1;
}

.choice-card {
    text-align: center;
    background: #fff;
    padding: 0 22px 28px;
}

.choice-card--raised {
    transform: translateY(-16px);
}

.choice-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    margin-bottom: 24px;
}

.choice-card p {
    color: var(--muted);
}

.choice-card a,
.news-main a,
.location-panel__details a,
.inline-cta a {
    color: var(--red);
    font-weight: 800;
}

.training-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
    align-items: center;
    gap: 60px;
}

.training-split__image img {
    max-height: 560px;
    width: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: drop-shadow(0 22px 40px rgba(17, 21, 26, 0.12));
}

.service-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    margin: 34px 0;
}

.service-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    min-height: 72px;
    color: var(--ink);
    background: #fff;
    font-weight: 800;
}

.service-tile i {
    color: var(--red);
    font-size: 24px;
}

.service-tile.is-active {
    color: #fff;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}

.service-tile.is-active i {
    color: #fff;
}

.inline-cta {
    font-size: 18px;
}

.schedule-board__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.schedule-board__grid div {
    min-height: 235px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(17, 21, 26, 0.05);
}

.schedule-board__grid div span {
    display: inline-block;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.schedule-board__note {
    color: #fff;
    background: var(--ink) !important;
}

.schedule-board__note a {
    color: #fff;
    border-bottom: 2px solid var(--red);
    font-weight: 800;
}

.member-voices {
    position: relative;
    overflow: hidden;
   
    background-size: cover;
    background-position: center;
}

.voice-track {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}

.voice-card {
    grid-row: 1;
    grid-column: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.voice-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quote-mark {
    display: block;
    font-family: Georgia, serif;
    font-size: 88px;
    line-height: 0.7;
    color: var(--red);
}

.voice-card p {
    font-size: 22px;
}

.voice-card strong {
    color: var(--red);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.slider-controls button {
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--red);
    color: #fff;
    cursor: pointer;
}

.pass-strip {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 34px;
    align-items: center;
}

.pass-strip__list {
    margin: 0;
    padding: 24px 28px;
    list-style: none;
    background: var(--soft);
    border-left: 5px solid var(--red);
}

.pass-strip__list li {
    margin: 10px 0;
}

.pass-strip__list i,
.benefit-row i,
.wellness-checks i {
    color: var(--red);
    margin-right: 10px;
}

.news-feed__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
}

.news-main img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 22px;
}

.news-stack {
    display: grid;
    gap: 24px;
}

.news-stack div {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: center;
}
.news-stack div div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.news-stack img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.image-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.image-ribbon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.company-wellness {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.75fr);
    gap: 50px;
    align-items: center;
}

.wellness-checks {
    background: #fff;
    padding: 34px;
    border-left: 5px solid var(--red);
}

.location-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
    gap: 34px;
    align-items: stretch;
}

.location-panel__map {
    min-height: 320px;
    color: #fff;
    padding: 40px;

    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.location-panel__map span {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.location-panel__map strong {
    font-size: 34px;
    line-height: 1.05;
    font-family: "Inter Display Local", Arial, sans-serif;
}

.location-panel__details {
    padding: 40px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.club-footer {
    color: #fff;
    background: var(--red);
}

.club-footer__main {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 42px;
    padding: 64px 22px;
}

.club-logo--footer {
    color: #fff;
    margin-bottom: 22px;
}

.club-logo--footer .club-logo__mark {
    background: #fff;
    color: var(--red);
    box-shadow: 5px 5px 0 #11151a;
}

.club-logo--footer .club-logo__text span {
    color: #fff;
}

.club-footer h2 {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.club-footer a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.club-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    font-size: 13px;
}

.club-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    background: #11151a;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 50;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-card {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 70;
    width: min(410px, calc(100vw - 40px));
    display: none;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
}

.cookie-card.is-visible {
    display: grid;
}

.cookie-card p {
    margin: 0;
    font-size: 13px;
}

.cookie-card button {
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    padding: 11px 16px;
    cursor: pointer;
}

/* Inner pages */
.page-lead {
    min-height: 360px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 92px max(22px, calc((100vw - var(--max)) / 2 + 22px));
    background: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead p {
    max-width: 760px;
    font-size: 18px;
}

.page-lead--classes,
.page-lead--events {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead--gallery,
.page-lead--schedule {
    background-image: linear-gradient(120deg, rgba(17,21,26,.85), rgba(236,52,77,.78));
}

.page-lead--team,
.page-lead--about,
.page-lead--contact,
.page-lead--membership,
.page-lead--faq {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.story-grid,
.prep-list,
.request-section,
.next-steps,
.contact-details,
.support-route {
    display: grid;
    gap: 36px;
}

.story-grid,
.prep-list,
.request-section {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.story-grid img,
.prep-list img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.ledger-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ledger-list p,
.next-steps p,
.contact-details div,
.role-board,
.calendar-note,
.support-route {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    max-width: 890px;
    margin: 0 auto 40px;
}

.ledger-list strong,
.ledger-list span,
.next-steps strong,
.next-steps span {
    display: block;
}

.ledger-list span,
.next-steps span {
    color: var(--muted);
}

.ops-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.class-tabs {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
}

.tabs-nav {
    display: grid;
    gap: 12px;
    align-self: start;
}

.tabs-nav button {
    text-align: left;
    border: 1px solid var(--line);
    background: #fff;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 800;
}

.tabs-nav button.is-active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.tab-panel {
    display: none;
    min-height: 260px;
    padding: 44px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.tab-panel.is-active {
    display: block;
}

.intensity-board > div,
.plan-grid,
.rhythm-cards,
.coach-grid,
.contact-details,
.event-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.intensity-board div,
.plan-grid div,
.rhythm-cards div,
.coach-grid div,
.event-list div {
    background: #fff;
    color: var(--ink);
    padding: 28px;
    border: 1px solid var(--line);
}

.intensity-board div span,
.event-list span {
    color: var(--red);
    font-weight: 900;
}

.plan-grid .is-featured {
    background: var(--red);
    color: #fff;
    transform: translateY(-14px);
}

.join-flow ol {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
}

.join-flow li {
    background: #fff;
    padding: 28px;
    counter-increment: step;
    border-left: 5px solid var(--red);
}

.join-flow li span {
    display: block;
    font-weight: 900;
    margin-bottom: 12px;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-row p {
    border: 1px solid var(--line);
    padding: 22px;
}

.week-matrix table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
}

.week-matrix th,
.week-matrix td {
    text-align: left;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
}

.week-matrix th {
    background: var(--ink);
    color: #fff;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 250px;
    gap: 18px;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-mosaic .wide {
    grid-row: span 2;
}

.space-types > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.space-types p {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.18);
    margin: 0;
}

.coach-grid div img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    margin: -28px -28px 24px;
    max-width: calc(100% + 56px);
}

.role-board ul,
.prep-list ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.faq-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
}

.faq-item {
    border: 1px solid var(--line);
    background: var(--soft);
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 22px 24px;
    font-weight: 900;
    cursor: pointer;
}

.faq-item button i {
    color: var(--red);
    transition: transform 160ms ease;
}

.faq-item.is-open button i {
    transform: rotate(90deg);
}

.faq-item > div {
    display: none;
    padding: 0 24px 22px;
    color: var(--muted);
}

.faq-item.is-open > div {
    display: block;
}

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

.contact-details div i {
    color: var(--red);
    font-size: 28px;
    margin-bottom: 18px;
}

.club-form {
    display: grid;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px;
    box-shadow: var(--shadow);
}

.club-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.club-form input,
.club-form select,
.club-form textarea {
    width: 100%;
    border: 1px solid #d6d8de;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    outline: none;
}

.club-form input:focus,
.club-form select:focus,
.club-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(236, 52, 77, 0.12);
}

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

.consent-line {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-weight: 600 !important;
    color: var(--muted);
}

.consent-line input {
    width: auto;
    margin-top: 5px;
}

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

.form-status {
    margin: 0;
    font-weight: 800;
}

.form-status.is-success {
    color: #157347;
}

.form-status.is-error {
    color: var(--red-dark);
}

.next-steps > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.legal-lead {
    max-width: var(--max);
    padding-bottom: 40px;
}

.legal-lead h1 {
    color: var(--ink);
}

.legal-content {
    padding-top: 0;
    display: grid;
    gap: 18px;
}

.legal-block {
    border-left: 5px solid var(--red);
    background: #fff;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(17, 21, 26, 0.06);
}

.legal-block h2,
.legal-support h2 {
    font-size: 26px;
}

@media (max-width: 1080px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        padding: 10px 22px 22px;
        box-shadow: 0 22px 50px rgba(17,21,26,.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__link {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav__link::after {
        display: none;
    }

    .site-nav__join {
        margin-top: 12px;
        text-align: center;
    }

    .club-header__bar {
        min-height: 72px;
    }

    .club-lead__shade {
        width: 72%;
    }

    .schedule-board__grid,
    .contact-details,
    .space-types > div {
        grid-template-columns: repeat(2, 1fr);
    }

    .pass-strip,
    .news-feed__layout,
    .company-wellness,
    .location-panel,
    .story-grid,
    .prep-list,
    .request-section {
        grid-template-columns: 1fr;
    }

    .choice-stage,
    .intensity-board > div,
    .plan-grid,
    .rhythm-cards,
    .coach-grid,
    .event-list,
    .benefit-row,
    .join-flow ol,
    .ledger-list,
    .next-steps > div {
        grid-template-columns: 1fr;
    }

    .choice-card--raised,
    .plan-grid .is-featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .club-header__top {
        display: none;
    }

    .club-logo {
        font-size: 22px;
    }

    .club-logo__mark {
        width: 38px;
        height: 38px;
    }

    .club-lead {
        min-height: 650px;
    }

    .club-lead__shade {
        width: 100%;
        clip-path: none;
        opacity: 0.9;
    }

    .club-lead__actions {
        margin-bottom: 30px;
    }

    .gym-finder {
        grid-template-columns: 1fr;
    }

    .section-pad,
    .section-soft,
    .section-dark {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .choice-stage {
        padding: 0;
    }

    .choice-stage::before {
        display: none;
    }

    .service-tiles,
    .class-tabs,
    .faq-board,
    .form-row,
    .club-footer__main,
    .club-footer__bottom,
    .image-ribbon,
    .gallery-mosaic,
    .contact-details,
    .schedule-board__grid,
    .space-types > div {
        grid-template-columns: 1fr;
    }

    .news-stack div {
        grid-template-columns: 1fr;
    }

    .image-ribbon img,
    .gallery-mosaic img,
    .gallery-mosaic .wide {
        height: 230px;
        grid-row: auto;
    }

    .story-grid img,
    .prep-list img,
    .training-split__image img {
        height: 340px;
    }

    .cookie-card {
        grid-template-columns: 1fr;
    }

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

/* Applied variation patch: first visit board, footer variants, legal layouts */
.first-visit-board {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
    gap: 34px;
    align-items: stretch;
}

.first-visit-board__intro {
    background: var(--ink);
    color: #fff;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.first-visit-board__intro p {
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
}

.first-visit-board__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-auto-rows: minmax(150px, auto);
    gap: 18px;
}

.visit-tile {
    background: #fff;
    border: 1px solid var(--line);
    padding: 26px;
    box-shadow: 0 16px 36px rgba(17, 21, 26, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-tile i {
    color: var(--red);
    font-size: 30px;
    margin-bottom: 18px;
}

.visit-tile h3 {
    font-size: 24px;
}

.visit-tile p,
.visit-tile span {
    color: var(--muted);
    margin: 0;
}

.visit-tile--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.visit-tile--wide img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.visit-tile--wide div {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-tile--wide strong,
.visit-tile--accent strong {
    font-family: "Inter Display Local", "Inter Local", Arial, sans-serif;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.visit-tile--dark {
    background: var(--dark);
    color: #fff;
}

.visit-tile--dark p {
    color: rgba(255,255,255,0.75);
}

.visit-tile--accent {
    background: var(--red);
    color: #fff;
}

.visit-tile--accent span {
    color: rgba(255,255,255,0.82);
}

.club-footer--home {
    background: linear-gradient(135deg, var(--red), #b91f34);
}

.club-footer--classes,
.club-footer--schedule {
    background: #14181e;
}

.club-footer--membership {
    background: linear-gradient(135deg, #11151a, #ec344d);
}

.club-footer--contact {
    background: linear-gradient(135deg, #ec344d 0%, #ec344d 58%, #11151a 58%, #11151a 100%);
}

.club-footer--legal {
    background: #101419;
}

.club-footer--legal .club-footer__main {
    grid-template-columns: 1fr 1fr 0.9fr;
    padding-top: 46px;
    padding-bottom: 42px;
}

.club-footer--legal .club-logo__mark {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.club-footer--legal .club-logo {
    font-size: 22px;
}

.club-footer--standard {
    background: var(--red);
}

.member-voices {
    background-image: linear-gradient(rgba(17, 21, 26, 0.92), rgba(17, 21, 26, 0.92));
}

.location-panel__map {
    background-image: linear-gradient(135deg, rgba(236, 52, 77, 0.92), rgba(17, 21, 26, 0.88)),;
}

.page-lead--about {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead--contact {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead--membership {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead--classes,
.page-lead--events {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.page-lead--gallery,
.page-lead--schedule {
    background-image: linear-gradient(120deg, rgba(17,21,26,.85), rgba(236,52,77,.78));
}

.page-lead--team,
.page-lead--faq {
    background-image: linear-gradient(120deg, rgba(17,21,26,.88), rgba(236,52,77,.80));
}

.privacy-table h2,
.terms-process h2,
.storage-note h2,
.cookie-controls h2,
.dmca-checklist h2,
.legal-support--compact h2 {
    font-size: 30px;
}

.privacy-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
}

.privacy-table th,
.privacy-table td {
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    padding: 20px 22px;
}

.privacy-table th {
    background: var(--ink);
    color: #fff;
}

.terms-process ol,
.refund-timeline ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.terms-process ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.terms-process li {
    background: #fff;
    border-top: 6px solid var(--red);
    padding: 28px;
    box-shadow: 0 14px 34px rgba(17,21,26,.06);
}

.terms-process li span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    margin-bottom: 24px;
}

.storage-note,
.dmca-checklist {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.storage-note > div,
.storage-note div,
.dmca-checklist > div,
.dmca-checklist div {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    box-shadow: 0 14px 34px rgba(17,21,26,.06);
}

.storage-note div,
.dmca-checklist div {
    background: var(--ink);
    color: #fff;
}

.storage-note div p,
.dmca-checklist div p {
    color: rgba(255,255,255,.76);
}

.refund-timeline ol {
    position: relative;
    display: grid;
    gap: 16px;
    max-width: 900px;
}

.refund-timeline li {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    background: #fff;
    border-left: 5px solid var(--red);
    padding: 24px 28px;
    box-shadow: 0 14px 34px rgba(17,21,26,.05);
}

.refund-timeline li span {
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.refund-timeline li p {
    margin: 0;
}

.dmca-checklist ul {
    margin: 0;
    padding-left: 20px;
}

.dmca-checklist li {
    margin: 12px 0;
}

.legal-support--compact {
    display: block;
}

@media (max-width: 1080px) {
    .first-visit-board,
    .storage-note,
    .dmca-checklist {
        grid-template-columns: 1fr;
    }

    .first-visit-board__intro {
        clip-path: none;
        min-height: auto;
    }

    .terms-process ol,
    .club-footer--legal .club-footer__main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .first-visit-board__grid,
    .visit-tile--wide,
    .terms-process ol,
    .refund-timeline li,
    .club-footer--legal .club-footer__main {
        grid-template-columns: 1fr;
    }

    .first-visit-board__intro,
    .visit-tile,
    .visit-tile--wide div,
    .storage-note > div,
    .storage-note div,
    .dmca-checklist > div,
    .dmca-checklist div {
        padding: 26px;
    }

    .privacy-table {
        overflow-x: auto;
    }

    .privacy-table table {
        min-width: 720px;
    }
}
