.gym-hero,
.gym-section {
    --gym-accent: #15834f;
    --gym-accent-dark: #0d633b;
    --gym-accent-soft: #edf8f2;
    --gym-navy: #001d40;
    --gym-muted: #586a7e;
    --gym-border: #dbe5ec;
}

.gym-hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
    background: var(--color-bg);
}

.gym-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
    align-items: center;
    gap: 52px;
}

.gym-hero-content,
.gym-hero-visual {
    min-width: 0;
}

.gym-hero-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.gym-eyebrow {
    margin-bottom: 9px;
    color: var(--gym-accent-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.gym-hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--gym-navy);
    font-size: clamp(2.55rem, 5vw, 4.15rem);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.045em;
}

@media (min-width: 993px) {
    .gym-hero h1 {
        white-space: nowrap;
        font-size: clamp(2.25rem, 3.9vw, 3.45rem);
        letter-spacing: -.06em;
    }
}

.gym-hero-lead {
    max-width: 720px;
    margin-bottom: 30px;
    color: #465a70;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.gym-opening-note {
    margin: 1rem 0 0;
    padding: .75rem 1rem;
    border-left: 3px solid var(--color-accent, #01a7e3);
    background: rgba(1, 167, 227, .08);
    color: inherit;
}

.gym-google-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin: 0 0 35px;
    padding: 10px 18px;
    border: 1px solid rgba(0, 0, 0, .03);
    border-radius: 50px;
    background: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    color: var(--gym-navy);
}

.gym-google-proof-stars {
    display: flex;
    gap: 2px;
}

.gym-google-proof-stars svg {
    display: block;
}

.gym-google-proof-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
    border-left: 1px solid #e2e8f0;
    color: #64748b;
    font-size: .95rem;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

.gym-google-proof-score {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 800;
}

.gym-google-proof-label svg {
    transition: transform var(--transition-speed) ease;
}

.gym-google-proof:hover .gym-google-proof-label,
.gym-google-proof:focus-visible .gym-google-proof-label {
    color: var(--gym-accent-dark);
}

.gym-google-proof:hover .gym-google-proof-label svg,
.gym-google-proof:focus-visible .gym-google-proof-label svg {
    transform: translate(2px, -2px);
}

.gym-hero-visual {
    position: relative;
    min-width: 0;
    z-index: 1;
}

@media (min-width: 993px) {
    .gym-hero-visual { transform: translateY(36px); }
}

.gym-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    margin: 30px 0 34px;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(0, 29, 64, .055);
}

.gym-trust-list li {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 16px 18px;
}

.gym-trust-list li:nth-child(odd) {
    border-right: 1px solid #e5ebf0;
}

.gym-trust-list li:nth-child(-n+2) {
    border-bottom: 1px solid #e5ebf0;
}

.gym-trust-list strong {
    color: var(--gym-navy);
    font-size: 1rem;
}

.gym-trust-list span {
    color: var(--gym-muted);
    font-size: .87rem;
}

.gym-actions,
.gym-inline-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.gym-btn-secondary {
    border-color: #b9c9d8;
    background: var(--color-white);
    color: #004b9b;
}

.gym-btn-secondary:hover,
.gym-btn-secondary:focus-visible {
    border-color: var(--color-primary);
    background: #edf6ff;
    transform: translateY(-2px);
}

.gym-hero-visual {
    isolation: isolate;
}

.gym-hero-visual img,
.gym-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gym-hero-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 30, 64, .15);
    animation: gymHeroFadeZoom .8s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes gymHeroFadeZoom {
    from { opacity: 0; transform: scale(.97); }
    to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .gym-hero-visual img { animation: none; }
}

.gym-hero-visual::before {
    position: absolute;
    z-index: 1;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    content: "";
    opacity: .08;
}

.gym-hero-visual--fallback {
    min-height: 390px;
}

.gym-hero-summary {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 44px;
    overflow: hidden;
    border: 1px solid #d3e0e9;
    border-top: 4px solid var(--gym-accent);
    border-radius: 24px;
    background: var(--color-white);
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 29, 64, .09);
}

.gym-hero-summary-mark {
    color: var(--gym-navy);
    font-size: clamp(5.5rem, 12vw, 8.5rem);
    font-weight: 850;
    line-height: .85;
    letter-spacing: -.08em;
}

.gym-hero-summary strong {
    margin-top: 20px;
    color: var(--gym-navy);
    font-size: 1.28rem;
}

.gym-hero-summary p {
    margin-top: 8px;
    color: var(--gym-muted);
}

.gym-hero-summary > div {
    display: flex;
    margin-top: 34px;
    gap: 9px;
}

.gym-hero-summary > div span {
    width: 42px;
    height: 5px;
    border-radius: 99px;
    background: var(--gym-accent);
}

.gym-hero-summary > div span:nth-child(2) { background: var(--color-secondary); }
.gym-hero-summary > div span:nth-child(3) { background: var(--gym-navy); }

.gym-section {
    padding: clamp(68px, 8vw, 104px) 0;
    scroll-margin-top: 106px;
    background: var(--color-white);
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.gym-section--soft {
    background: #f4f7f9;
}

.gym-section-heading {
    max-width: 780px;
    margin-bottom: clamp(30px, 5vw, 46px);
}

.gym-section-heading--compact {
    margin-bottom: 20px;
}

.gym-section-heading h2,
.gym-small-group h2,
.gym-info-row h2,
.gym-lara-card h2,
.gym-final-card h2,
.gym-trial-card h2 {
    color: var(--gym-navy);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.gym-section-heading > p:last-child,
.gym-small-group p,
.gym-info-row p,
.gym-lara-main > p:not(.gym-eyebrow):not(.gym-opening-date),
.gym-final-card p,
.gym-trial-card p,
.gym-split > div > p {
    margin-top: 13px;
    color: var(--gym-muted);
    font-size: clamp(1rem, 2vw, 1.08rem);
    line-height: 1.72;
}

.gym-model-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gym-model-card,
.gym-visibility-grid article,
.gym-schedule-card,
.gym-development-grid article,
.gym-coach-card,
.gym-review-grid article {
    min-width: 0;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 10px 28px rgba(0, 29, 64, .045);
}

.gym-model-card {
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 26px 24px;
}

.gym-icon,
.gym-placeholder-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--gym-accent-soft);
    color: var(--gym-accent-dark);
}

.gym-model-card h3,
.gym-visibility-grid h3,
.gym-schedule-card h3,
.gym-data-panel h3,
.gym-development-grid h3 {
    color: var(--gym-navy);
}

.gym-model-card h3 {
    margin-top: 20px;
    font-size: 1.17rem;
}

.gym-model-card > p {
    margin: 10px 0 18px;
    color: var(--gym-muted);
    line-height: 1.66;
}

.gym-model-card .gym-text-link {
    margin-top: auto;
}

.gym-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #00509f;
    font-weight: 750;
    line-height: 1.4;
}

.gym-text-link:hover,
.gym-text-link:focus-visible {
    color: var(--gym-accent-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gym-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    counter-reset: gym-steps;
}

.gym-steps li {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 10px 28px rgba(0, 29, 64, .045);
}

.gym-steps li:not(:last-child)::after {
    content: none;
}

.gym-step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gym-accent);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--gym-accent-dark);
    font-weight: 800;
}

.gym-steps h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.gym-steps p {
    color: var(--gym-muted);
    font-size: .94rem;
    line-height: 1.58;
}

.gym-coach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gym-coach-card {
    overflow: hidden;
}

.gym-coach-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--gym-accent-soft);
}

.gym-coach-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gym-coach-photo--placeholder {
    display: grid;
    place-items: center;
    color: var(--gym-accent-dark);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
}

.gym-coach-content {
    padding: 20px;
}

.gym-coach-content h3 {
    margin: 0;
    color: var(--gym-navy);
    font-size: 1.18rem;
}

.gym-coach-role {
    min-height: 2.8em;
    margin: 7px 0 16px;
    color: var(--gym-accent-dark);
    font-weight: 750;
    line-height: 1.4;
}

.gym-coach-details {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--gym-border);
}

.gym-coach-details div {
    display: grid;
    gap: 2px;
}

.gym-coach-details dt {
    color: var(--gym-muted);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gym-coach-details dd {
    margin: 0;
    color: var(--gym-navy);
    font-size: .9rem;
    line-height: 1.45;
}

.gym-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(40px, 7vw, 84px);
}

.gym-split--reverse .gym-media { order: 0; }

.gym-group-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0;
}

.gym-group-chips span {
    padding: 8px 13px;
    border: 1px solid #cfe0d7;
    border-radius: 999px;
    background: var(--gym-accent-soft);
    color: #165b3a;
    font-size: .9rem;
    font-weight: 700;
}

.gym-note {
    padding: 16px 18px;
    border-left: 3px solid var(--gym-accent);
    border-radius: 0 10px 10px 0;
    background: #f2f7f4;
    font-size: .94rem !important;
}

.gym-media {
    display: flex;
    aspect-ratio: 3 / 2;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 20px;
    background: #edf3f6;
    box-shadow: 0 16px 38px rgba(0, 29, 64, .08);
}

.gym-media--placeholder {
    padding: 30px;
    text-align: center;
}

.gym-media--placeholder strong {
    max-width: 330px;
    margin-top: 17px;
    color: var(--gym-navy);
    font-size: 1.12rem;
}

.gym-media--placeholder p {
    margin-top: 7px;
    color: #728093;
    font-size: .9rem;
}

.gym-small-group {
    background: var(--gym-navy);
}

.gym-small-group-grid {
    display: grid;
    grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: clamp(42px, 8vw, 105px);
}

.gym-small-group .gym-eyebrow { color: #65d9a1; }
.gym-small-group h2,
.gym-small-group p { color: var(--color-white); }
.gym-small-group p { max-width: 740px; color: #c8d5e2; }

.gym-big-number {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-top: 3px solid #54d298;
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    color: var(--color-white);
}

.gym-big-number strong {
    margin: 5px 0;
    font-size: clamp(5rem, 11vw, 8rem);
    line-height: .9;
    letter-spacing: -.08em;
}

.gym-big-number span {
    color: #d3dfeb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.gym-check-list {
    display: grid;
    margin-top: 24px;
    gap: 12px;
}

.gym-check-list li,
.gym-facility-list li,
.gym-lara-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #3f5369;
    line-height: 1.55;
}

.gym-check-list li > span,
.gym-facility-list li > span,
.gym-lara-features li > span {
    display: inline-flex;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--gym-accent-soft);
    color: var(--gym-accent-dark);
}

.gym-check-list--light {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
}

.gym-check-list--light li { color: #e3ecf4; }
.gym-check-list--light li > span { background: rgba(84, 210, 152, .15); color: #6be0a8; }

.gym-visibility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gym-visibility-grid article {
    position: relative;
    padding: 30px;
}

.gym-location-label {
    margin: 19px 0 5px;
    color: var(--gym-accent-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gym-visibility-grid h3 { font-size: 1.25rem; }
.gym-visibility-grid article > p:last-child { margin-top: 9px; color: var(--gym-muted); line-height: 1.65; }

.gym-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gym-schedule-card { overflow: hidden; }

.gym-schedule-card header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border-bottom: 1px solid #e2e9ef;
}

.gym-schedule-card h3 { font-size: 1.05rem; }

.gym-schedule-card ul { padding: 4px 20px 14px; }

.gym-schedule-card li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid #e8edf1;
}

.gym-schedule-card li:last-child { border-bottom: 0; }

.gym-schedule-card time {
    color: var(--gym-navy);
    font-weight: 800;
}

.gym-schedule-card li span { color: #4d6075; }

.gym-schedule-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 3px solid var(--gym-accent);
    border-radius: 0 12px 12px 0;
    background: var(--color-white);
    color: #52657a;
    line-height: 1.6;
}

.gym-schedule-footer p:first-child { max-width: 790px; }
.gym-schedule-footer p:last-child { flex: 0 0 auto; white-space: nowrap; }

.gym-trial-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.gym-trial-card,
.gym-final-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, .85fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(30px, 5vw, 50px);
    border: 1px solid #cfe1d7;
    border-top: 3px solid var(--gym-accent);
    border-radius: 22px;
    background: var(--gym-accent-soft);
}

.gym-trial-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gym-trial-flow span {
    padding: 9px 10px;
    border: 1px solid #c8ded2;
    border-radius: 8px;
    background: var(--color-white);
    color: #21553c;
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
}

.gym-data-panel,
.gym-info-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 26px 28px;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 16px;
    background: #f7fafb;
}

.gym-data-panel p {
    margin-top: 5px;
    color: var(--gym-muted);
    line-height: 1.6;
}

.gym-facility-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 24px 0 26px;
}

.gym-info-row {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: clamp(28px, 5vw, 46px);
}

.gym-info-row > div:first-child { max-width: 780px; }

.gym-info-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px;
}

.gym-price-table-wrap {
    overflow: hidden;
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(0, 29, 64, .05);
}

.gym-price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

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

.gym-price-table th,
.gym-price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gym-border);
}

.gym-price-table thead th {
    background: #f2f7f9;
    color: var(--gym-navy);
    font-size: .8rem;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.gym-price-table tbody th { color: var(--gym-navy); }
.gym-price-table tbody td { color: var(--gym-muted); }
.gym-price-table tbody strong { color: #176d43; font-size: 1.05rem; }
.gym-price-table tbody tr:last-child > * { border-bottom: 0; }

.gym-price-note {
    margin: 16px 0 0;
    color: var(--gym-muted);
    font-size: .91rem;
    line-height: 1.6;
}

.gym-branch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gym-branch-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--gym-border);
    border-top: 3px solid var(--gym-accent);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(0, 29, 64, .05);
}

.gym-branch-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gym-branch-heading h3 {
    margin-top: 3px;
    color: var(--gym-navy);
    font-size: clamp(1.15rem, 2.5vw, 1.38rem);
    line-height: 1.32;
}

.gym-branch-details {
    display: grid;
    gap: 14px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--gym-border);
}

.gym-branch-details div { display: grid; gap: 2px; }
.gym-branch-details dt { color: var(--gym-muted); font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.gym-branch-details dd { margin: 0; color: var(--gym-navy); line-height: 1.55; overflow-wrap: anywhere; }
.gym-branch-details a { color: var(--color-primary); font-size: 1.05rem; font-weight: 800; }

.gym-branch-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.gym-development-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.gym-development-grid article { padding: 22px 20px; }

.gym-development-grid article > span {
    color: var(--gym-accent);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.gym-development-grid h3 { margin: 13px 0 8px; font-size: 1.04rem; }
.gym-development-grid p { color: var(--gym-muted); font-size: .91rem; line-height: 1.58; }

.gym-review-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0 10px;
    padding: 18px 20px;
    border: 1px solid var(--gym-border);
    border-top: 3px solid #f4aa22;
    border-radius: 15px;
    background: var(--color-white);
}

.gym-review-summary > strong {
    grid-row: 1 / 3;
    color: var(--gym-navy);
    font-size: 2.25rem;
    line-height: 1;
}

.gym-review-summary > span { color: var(--gym-muted); font-size: .86rem; font-weight: 750; }
.gym-review-summary .gym-text-link { grid-column: 1 / -1; margin-top: 11px; font-size: .87rem; }

.gym-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gym-review-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 26px;
}

.gym-review-stars {
    color: #e68b00;
    letter-spacing: .12em;
}

.gym-review-card blockquote {
    margin: 16px 0 22px;
    color: #35475b;
    line-height: 1.7;
}

.gym-review-card footer {
    display: grid;
    gap: 2px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gym-border);
}

.gym-review-card footer strong { color: var(--gym-navy); }
.gym-review-card footer span { color: var(--gym-muted); font-size: .82rem; }

.gym-review-note {
    margin: 17px 0 0;
    color: var(--gym-muted);
    font-size: .9rem;
}

.gym-lara-section {
    background: var(--gym-navy);
}

.gym-lara-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: clamp(40px, 7vw, 84px);
    padding: clamp(32px, 6vw, 62px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-top: 3px solid #5ed89f;
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
}

.gym-lara-card .gym-eyebrow { color: #69dda6; }
.gym-lara-card h2 { color: var(--color-white); }
.gym-lara-main > p:not(.gym-eyebrow):not(.gym-opening-date) { color: #cbd8e4; }

.gym-opening-date {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--color-white);
    font-weight: 650;
}

.gym-opening-date > span:first-child {
    display: inline-flex;
    color: #6ce0a9;
}

.gym-opening-date time {
    display: block;
    color: #82e9b8;
    font-weight: 800;
}

.gym-lara-main > .gym-lara-schedule-note {
    margin: -8px 0 24px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #e5edf4;
    font-size: .9rem;
}

.gym-lara-features {
    display: grid;
    align-content: center;
    gap: 14px;
}

.gym-lara-features li { color: #e2ebf3; }
.gym-lara-features li > span { background: rgba(84, 210, 152, .15); color: #6de0a9; }

.gym-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(36px, 7vw, 84px);
}

.gym-faq-layout .gym-section-heading {
    position: sticky;
    top: 120px;
}

.gym-faq-list { border-top: 1px solid #d9e3e9; }

.gym-faq-list details { border-bottom: 1px solid #d9e3e9; }

.gym-faq-list summary {
    position: relative;
    padding: 20px 42px 20px 2px;
    color: var(--gym-navy);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.gym-faq-list summary::-webkit-details-marker { display: none; }

.gym-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 26px;
    height: 26px;
    border: 1px solid #c8d7e0;
    border-radius: 50%;
    color: var(--gym-accent-dark);
    content: '+';
    font-size: 1.15rem;
    line-height: 23px;
    text-align: center;
    transform: translateY(-50%);
}

.gym-faq-list details[open] summary::after { content: '−'; }

.gym-faq-list details > div {
    padding: 0 42px 21px 2px;
    color: var(--gym-muted);
    line-height: 1.7;
}

.gym-faq-list details .gym-text-link { margin-top: 10px; }

.gym-final-section { padding-top: 20px; }

.gym-final-card {
    grid-template-columns: minmax(0, 1fr) auto;
    border-color: #d5e4ed;
    border-top-color: var(--color-secondary);
    background: #eef7fd;
}

@media (max-width: 1050px) {
    .gym-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr); gap: 42px; }
    .gym-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gym-model-card { min-height: 0; }
    .gym-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
    .gym-coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gym-development-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gym-trial-card { grid-template-columns: minmax(0, 1fr) minmax(230px, .7fr); }
    .gym-trial-card .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
    .gym-hero { padding-top: 42px; }
    .gym-hero-grid,
    .gym-split,
    .gym-small-group-grid,
    .gym-lara-card,
    .gym-faq-layout,
    .gym-info-row,
    .gym-final-card {
        grid-template-columns: 1fr;
    }
    .gym-hero-visual { max-width: 680px; }
    .gym-small-group-grid { gap: 34px; }
    .gym-big-number { max-width: 330px; }
    .gym-schedule-grid { grid-template-columns: 1fr; }
    .gym-schedule-footer { flex-direction: column; gap: 8px; }
    .gym-schedule-footer p:last-child { white-space: normal; }
    .gym-data-panel { grid-template-columns: auto minmax(0, 1fr); }
    .gym-data-panel .gym-text-link { grid-column: 2; }
    .gym-faq-layout .gym-section-heading { position: static; }
    .gym-info-actions { align-items: flex-start; }
    .gym-branch-grid { grid-template-columns: 1fr; }
    .gym-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .gym-section { padding: 62px 0; scroll-margin-top: 88px; contain-intrinsic-size: 1px 960px; }
    .gym-hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .gym-hero h1 { overflow-wrap: anywhere; }
    .gym-google-proof { align-items: flex-start; }
    .gym-actions { align-items: stretch; flex-direction: column; }
    .gym-actions .btn { width: 100%; padding-inline: 18px; }
    .gym-hero-visual--fallback,
    .gym-hero-summary { min-height: 310px; }
    .gym-model-grid,
    .gym-steps,
    .gym-visibility-grid,
    .gym-development-grid,
    .gym-check-list--light,
    .gym-facility-list {
        grid-template-columns: 1fr;
    }
    .gym-steps { gap: 14px; }
    .gym-steps li { padding: 20px; }
    .gym-coach-grid { grid-template-columns: 1fr; }
    .gym-coach-card { display: grid; grid-template-columns: 124px minmax(0, 1fr); align-items: stretch; }
    .gym-coach-photo { height: auto; min-height: 190px; aspect-ratio: auto; align-self: stretch; }
    .gym-coach-role { min-height: 0; }
    .gym-media { border-radius: 16px; }
    .gym-trial-card { grid-template-columns: 1fr; }
    .gym-trial-card .btn { grid-column: auto; width: 100%; padding-inline: 16px; }
    .gym-trial-flow { grid-template-columns: 1fr 1fr; }
    .gym-data-panel { grid-template-columns: 1fr; padding: 24px 22px; }
    .gym-data-panel .gym-text-link { grid-column: auto; }
    .gym-info-actions { align-items: stretch; }
    .gym-info-actions .btn { width: 100%; }
    .gym-price-table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
    .gym-price-table thead { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
    .gym-price-table,
    .gym-price-table tbody,
    .gym-price-table tr,
    .gym-price-table th,
    .gym-price-table td { display: block; width: 100%; }
    .gym-price-table tbody { display: grid; gap: 14px; }
    .gym-price-table tr { padding: 19px; border: 1px solid var(--gym-border); border-top: 3px solid var(--gym-accent); border-radius: 15px; background: var(--color-white); }
    .gym-price-table th,
    .gym-price-table td { display: grid; grid-template-columns: minmax(96px, .45fr) minmax(0, 1fr); gap: 12px; padding: 7px 0; border: 0; }
    .gym-price-table th::before,
    .gym-price-table td::before { color: var(--gym-muted); font-size: .72rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; content: attr(data-label); }
    .gym-branch-actions { align-items: stretch; flex-direction: column; }
    .gym-branch-actions .btn { width: 100%; }
    .gym-lara-card .btn,
    .gym-final-card .btn { width: 100%; padding-inline: 16px; }
}

@media (max-width: 480px) {
    .gym-google-proof {
        max-width: 100%;
        gap: 5px;
        padding: 9px 7px;
        white-space: nowrap;
    }

    .gym-google-proof-stars { gap: 0; }
    .gym-google-proof-stars svg { width: 19px; height: 19px; }
    .gym-google-proof-label { gap: 4px; padding-left: 7px; font-size: 1rem; }
}

@media (max-width: 390px) {
    .gym-trust-list { grid-template-columns: 1fr; }
    .gym-trust-list li:nth-child(odd) { border-right: 0; }
    .gym-trust-list li:not(:last-child) { border-bottom: 1px solid #e5ebf0; }
    .gym-trial-flow { grid-template-columns: 1fr; }
    .gym-schedule-card li { grid-template-columns: 58px minmax(0, 1fr); }
    .gym-coach-card { grid-template-columns: 108px minmax(0, 1fr); }
    .gym-coach-photo { min-height: 172px; }
}

@media (prefers-reduced-motion: reduce) {
    .gym-btn-secondary { transition: none; }
}
