/* ============================================================
   Showeather MMA — showeather.com
   Palette drawn from the club crest:
   ink navy canvas, royal blue band, strike red, paper white
   ============================================================ */
:root {
    --ink: #0b1230;
    --ink-2: #131c45;
    --royal: #2242c8;
    --royal-deep: #1a339c;
    --red: #e01f26;
    --red-deep: #b3151b;
    --paper: #f5f6fa;
    --paper-2: #e9ebf3;
    --steel: #98a0be;
    --line: rgba(152, 160, 190, .22);

    --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
    --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
    --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;

    --skew: -8deg;
    --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--paper);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p a { color: var(--red); }
p a:hover { text-decoration: underline; }

h1, h2, h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: .01em;
    font-weight: 900;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- eyebrow labels ---- */
.eyebrow {
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 15px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 3px;
    background: var(--red);
    transform: skewX(var(--skew));
}
.eyebrow.on-light { color: var(--red-deep); }

/* ---- the strike: skewed red slash behind key words ---- */
.strike-mark {
    position: relative;
    display: inline-block;
    padding: 0 .12em;
}
.strike-mark::before {
    content: "";
    position: absolute;
    inset: .08em -.06em -.02em -.06em;
    background: var(--red);
    transform: skewX(var(--skew));
    z-index: -1;
}

/* ---- buttons: skewed parallelograms, counter-skewed labels ---- */
.btn {
    display: inline-block;
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 17px;
    padding: 15px 34px;
    transform: skewX(var(--skew));
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn > span { display: inline-block; transform: skewX(calc(var(--skew) * -1)); }
.btn:hover { transform: skewX(var(--skew)) translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { border-color: rgba(245, 246, 250, .55); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(245, 246, 250, .08); }
.btn-ghost-dark { border-color: rgba(11, 18, 48, .45); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(11, 18, 48, .06); }
.btn-royal { background: var(--royal); color: #fff; }
.btn-royal:hover { background: var(--royal-deep); }
.btn-small { font-size: 15px; padding: 10px 22px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-nav.scrolled {
    background: rgba(11, 18, 48, .96);
    padding: 8px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}
/* pages with light content at the top get a solid nav from the start */
.solid-nav .site-nav { background: rgba(11, 18, 48, .96); }
.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-badge { height: 62px; width: auto; transition: height .25s ease; }
.nav-wordmark { height: 36px; width: auto; transition: height .25s ease; }
.nav-acg {
    height: 46px; width: auto;
    margin-left: 4px;
    padding-left: 14px;
    border-left: 1px solid rgba(152, 160, 190, .35);
    transition: height .25s ease;
}
.site-nav.scrolled .nav-badge { height: 50px; }
.site-nav.scrolled .nav-wordmark { height: 30px; }
.site-nav.scrolled .nav-acg { height: 38px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 16px;
}
.nav-links a:not(.btn):hover { color: var(--red); }
.nav-phone { color: var(--steel); font-size: 15px; white-space: nowrap; }
.nav-phone i { font-size: 12px; margin-right: 4px; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 24px;
    cursor: pointer;
}

/* ============================================================
   Flash messages
   ============================================================ */
.flash-stack {
    position: fixed;
    top: 84px; left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: min(560px, calc(100% - 32px));
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flash {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    color: var(--ink);
    border-left: 5px solid var(--royal);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
    font-weight: 500;
}
.flash-success { border-left-color: #1a9b4e; }
.flash-success i { color: #1a9b4e; }
.flash-danger { border-left-color: var(--red); }
.flash-danger i { color: var(--red); }
.flash-close {
    margin-left: auto;
    background: none; border: none;
    font-size: 20px; cursor: pointer;
    color: var(--steel);
    line-height: 1;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding: 140px 0 110px;
    background:
        linear-gradient(105deg, rgba(11, 18, 48, .94) 0%, rgba(11, 18, 48, .72) 44%, rgba(11, 18, 48, .28) 100%),
        var(--ink);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}
.hero-home {
    background-image:
        linear-gradient(105deg, rgba(11, 18, 48, .94) 0%, rgba(11, 18, 48, .70) 44%, rgba(11, 18, 48, .22) 100%),
        url("../images/hero.jpg");
}
.hero-content { max-width: 720px; }
.hero h1 {
    font-size: clamp(56px, 9vw, 118px);
    margin: 20px 0 22px;
}
.hero-sub {
    font-size: 19px;
    color: #d9dcea;
    max-width: 560px;
    margin-bottom: 34px;
}
.hero-sub strong { color: #fff; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-affiliate {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-cond);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 14px;
    color: var(--steel);
}
.hero-affiliate img { height: 30px; }

/* page header for inner pages */
.page-head {
    padding: 170px 0 70px;
    background:
        linear-gradient(180deg, rgba(11, 18, 48, .88) 0%, var(--ink) 100%),
        url("../images/facility.jpg") center / cover;
}
.page-head h1 { font-size: clamp(44px, 7vw, 84px); margin-top: 18px; }
.page-head p { max-width: 620px; color: #d9dcea; margin-top: 16px; font-size: 18px; }

/* ============================================================
   Accolade ticker — royal band
   ============================================================ */
.ticker {
    background: var(--royal);
    overflow: hidden;
    padding: 15px 0;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 36s linear infinite;
}
.ticker-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.ticker-group span {
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 17px;
    color: #fff;
    padding: 0 18px;
}
.ticker-group img { height: 22px; opacity: .9; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; flex-wrap: wrap; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 96px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-ink-2 { background: var(--ink-2); }
.section-head { margin-bottom: 52px; }
.section-head h2 { font-size: clamp(40px, 5.5vw, 68px); margin-top: 14px; }
.section-head p { max-width: 620px; margin-top: 16px; color: var(--steel); font-size: 18px; }
.section-light .section-head p { color: #4a5170; }

/* ============================================================
   Founding member section
   ============================================================ */
.founding {
    position: relative;
    background: var(--ink-2);
    overflow: hidden;
}
.founding::after {
    /* the strike: a red bolt slash across the section edge */
    content: "";
    position: absolute;
    top: -80px; bottom: -80px;
    right: max(-140px, calc(50% - 760px));
    width: 320px;
    background: var(--red);
    transform: skewX(var(--skew));
    opacity: .10;
    pointer-events: none;
}
.founding-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: start;
    position: relative;
}
.founding-copy h2 { font-size: clamp(42px, 5.5vw, 72px); margin: 16px 0 20px; }
.founding-copy > p { color: #ccd1e4; font-size: 18px; max-width: 520px; }
.perks { list-style: none; margin: 34px 0 0; display: grid; gap: 22px; }
.perks li { display: flex; gap: 18px; align-items: flex-start; }
.perk-flag {
    flex: none;
    width: 46px; height: 46px;
    background: var(--red);
    transform: skewX(var(--skew));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.perk-flag i { color: #fff; font-size: 18px; transform: skewX(calc(var(--skew) * -1)); }
.perks h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 18px; letter-spacing: 0; line-height: 1.3; }
.perks p { color: var(--steel); font-size: 15.5px; margin-top: 4px; }
.founding-note {
    margin-top: 34px;
    font-family: var(--font-cond);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 15px;
    color: var(--steel);
}
.founding-note i { color: var(--red); margin-right: 8px; }

/* form card */
.form-card {
    background: #fff;
    color: var(--ink);
    padding: 38px 36px 36px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.form-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--red) 0 62%, var(--royal) 62% 100%);
}
.form-card h3 {
    font-size: 30px;
    margin-bottom: 6px;
}
.form-card .form-lede { color: #4a5170; font-size: 15.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13.5px;
    color: #4a5170;
    margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid #c9cede;
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 2px solid var(--royal);
    outline-offset: 0;
    border-color: var(--royal);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.check-pill span {
    display: block;
    text-align: center;
    padding: 11px 8px;
    border: 1.5px solid #c9cede;
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14.5px;
    color: #4a5170;
    transition: all .12s ease;
}
.check-pill input:checked + span {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.check-pill input:focus-visible + span { outline: 2px solid var(--royal); }
.opt-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #4a5170;
    margin: 18px 0 20px;
}
.opt-row input { margin-top: 4px; accent-color: var(--red); }
.form-fine { font-size: 13px; color: #8a90a8; margin-top: 14px; text-align: center; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   Coaches
   ============================================================ */
.coaches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.coach-card {
    background: #fff;
    border-top: 6px solid var(--royal);
    padding: 40px 38px;
    box-shadow: 0 18px 50px rgba(11, 18, 48, .10);
}
.coach-card.coach-red { border-top-color: var(--red); }
.coach-role {
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 14px;
    color: var(--red-deep);
}
.coach-card h3 { font-size: clamp(34px, 4vw, 48px); margin: 10px 0 8px; color: var(--ink); }
.coach-card .coach-bio { color: #4a5170; font-size: 16px; margin-bottom: 24px; }
.accolades { list-style: none; border-top: 1px solid var(--paper-2); }
.accolades li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--paper-2);
    font-family: var(--font-cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 16.5px;
    color: var(--ink);
}
.accolades li::before {
    content: "";
    flex: none;
    width: 9px; height: 9px;
    background: var(--red);
    transform: skewX(var(--skew));
    position: relative;
    top: -1px;
}
.accolades .acc-detail { color: #8a90a8; font-size: 14px; letter-spacing: .04em; margin-left: auto; text-align: right; }

.coach-staff-note {
    margin-top: 32px;
    background: #fff;
    border-left: 6px solid var(--royal);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 18px 50px rgba(11, 18, 48, .08);
}
.coach-staff-note i { color: var(--royal); font-size: 26px; flex: none; }
.coach-staff-note p { color: #4a5170; font-size: 16px; }
.coach-staff-note strong { color: var(--ink); }

/* ============================================================
   Programs
   ============================================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.program-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease;
}
.program-card:hover { transform: translateY(-6px); border-color: var(--red); }
.program-img { aspect-ratio: 3 / 2; overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.program-card:hover .program-img img { transform: scale(1.05); }
.program-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.program-body h3 { font-size: 26px; letter-spacing: .02em; }
.program-body p { color: var(--steel); font-size: 15px; margin: 10px 0 18px; flex: 1; }
.program-link {
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 14.5px;
    color: var(--red);
}
.program-link i { font-size: 12px; margin-left: 6px; transition: transform .15s ease; }
.program-card:hover .program-link i { transform: translateX(4px); }

/* program detail rows (programs page) */
.program-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}
.program-row:last-child { border-bottom: none; }
.program-row-img { position: relative; }
.program-row-img img { width: 100%; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.program-row-img::after {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 2px solid var(--royal);
    z-index: -1;
    transform: skewX(-2deg);
}
.program-row h2 { font-size: clamp(36px, 4.5vw, 56px); margin: 14px 0 16px; }
.program-row p { color: #ccd1e4; margin-bottom: 14px; }
.program-row .muted { color: var(--steel); font-size: 15.5px; }
.program-row .btn { margin-top: 12px; }
.program-row.flip .program-row-img { order: 2; }
.program-row.flip .program-row-img::after { inset: 14px 14px -14px -14px; transform: skewX(2deg); }

/* ============================================================
   Schedule
   ============================================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.schedule-day {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-top: 5px solid var(--red);
    padding: 20px 18px;
}
.schedule-day h3 {
    font-size: 24px;
    margin-bottom: 14px;
    letter-spacing: .03em;
}
.schedule-day ul { list-style: none; display: grid; gap: 12px; }
.schedule-day li { border-left: 3px solid var(--royal); padding-left: 12px; }
.sched-time {
    display: block;
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 14px;
    color: var(--steel);
}
.sched-name { font-weight: 600; font-size: 16.5px; }
.schedule-note {
    margin-top: 34px;
    text-align: center;
    color: var(--steel);
    font-size: 16px;
}
.schedule-note i { color: var(--red); margin-right: 8px; }
@media (max-width: 1020px) {
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .schedule-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Location
   ============================================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.location-info h2 { font-size: clamp(38px, 5vw, 60px); margin: 14px 0 20px; }
.location-lines { list-style: none; display: grid; gap: 16px; margin: 26px 0 30px; }
.location-lines li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; }
.location-lines i { color: var(--red-deep); width: 20px; text-align: center; margin-top: 5px; }
.location-lines a { font-weight: 600; }
.map-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: none;
    box-shadow: 0 18px 50px rgba(11, 18, 48, .18);
    filter: grayscale(.2);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
    background: linear-gradient(100deg, var(--red) 0 58%, var(--red-deep) 58% 100%);
    padding: 72px 0;
    text-align: center;
}
.cta-band h2 { font-size: clamp(36px, 5vw, 62px); color: #fff; }
.cta-band p {
    color: rgba(255, 255, 255, .85);
    margin: 14px auto 30px;
    max-width: 540px;
    font-size: 18px;
}
.cta-band .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.cta-band .btn { background: #fff; color: var(--red-deep); border-color: #fff; }
.cta-band .btn:hover { background: var(--paper); }

/* ============================================================
   Split page (free class / contact)
   ============================================================ */
.split-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.split-media {
    position: relative;
    background: var(--ink) center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}
.split-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(11,18,48,.15) 0%, rgba(11,18,48,.88) 85%);
}
.split-media-inner { position: relative; max-width: 440px; }
.split-media-inner h2 { font-size: clamp(36px, 3.6vw, 54px); margin: 14px 0 12px; }
.split-media-inner p { color: #ccd1e4; }
.split-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 48px 80px;
    background: var(--paper);
    color: var(--ink);
}
.split-form-inner { width: 100%; max-width: 480px; }
.split-form-inner > h1 { font-size: clamp(38px, 4vw, 56px); margin: 14px 0 10px; }
.split-form-inner > .lede { color: #4a5170; margin-bottom: 30px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #070c22; border-top: 1px solid var(--line); }
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 64px 24px 44px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
}
.footer-badge { height: 92px; margin-bottom: 18px; }
.footer-col p { color: var(--steel); font-size: 15px; margin-bottom: 10px; }
.footer-col p i { color: var(--red); width: 18px; margin-right: 6px; }
.footer-col a:hover { color: #fff; }
.footer-affiliate a { color: #ccd1e4; font-weight: 600; }
.footer-acg-link { display: flex; align-items: center; gap: 12px; }
.footer-acg-link span { font-weight: 400; }
.footer-acg-link strong { font-weight: 600; }
.footer-acg { height: 44px; width: auto; }
.footer-col h4 {
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
}
.footer-bottom {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 24px 26px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: #5b6284;
    font-size: 13.5px;
}
.footer-admin a { color: #5b6284; }
.footer-admin a:hover { color: var(--steel); }

/* ============================================================
   Lead-capture helpers
   ============================================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(7, 12, 34, .97);
    border-top: 2px solid var(--red);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
}
.mcta {
    flex: 1;
    text-align: center;
    font-family: var(--font-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 16px;
    padding: 13px 8px;
}
.mcta-red { background: var(--red); color: #fff; }
.mcta-ghost { border: 2px solid rgba(245,246,250,.5); color: var(--paper); }

.slide-prompt {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 95;
    background: #fff;
    color: var(--ink);
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    max-width: 380px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    border-top: 5px solid var(--red);
    animation: slide-in .45s ease;
}
.slide-prompt[hidden] { display: none; }
@keyframes slide-in {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .slide-prompt { animation: none; }
}
.slide-prompt img { height: 62px; flex: none; }
.slide-title { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 18px; }
.slide-sub { font-size: 14px; color: #4a5170; margin: 2px 0 10px; }
.slide-close {
    position: absolute;
    top: 6px; right: 10px;
    background: none; border: none;
    font-size: 20px; color: #8a90a8;
    cursor: pointer;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-phone { display: none; }
}

@media (max-width: 880px) {
    .founding-grid, .coaches-grid, .location-grid, .program-row,
    .split-page { grid-template-columns: 1fr; }
    .program-row.flip .program-row-img { order: 0; }
    .founding-grid { gap: 44px; }
    .split-media { min-height: 320px; padding: 40px 28px; }
    .split-form { padding: 116px 24px 60px; }
    .split-page { min-height: 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }

    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 62px; }
    .slide-prompt { display: none !important; }

    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #0a1029;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 26px;
        gap: 18px;
        border-bottom: 2px solid var(--red);
        box-shadow: 0 24px 40px rgba(0, 0, 0, .55);
    }
    .nav-links.open { display: flex; }
    .site-nav { background: #0a1029; }
}

@media (max-width: 560px) {
    .programs-grid { grid-template-columns: 1fr; }
    .field-row, .check-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; min-height: 0; }
    .section { padding: 68px 0; }
    .form-card { padding: 28px 22px; }
    .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ============================================================
   Join page (plan picker) + welcome page
   ============================================================ */
.join-inner { max-width: 560px; }
.plan-grid { display: grid; gap: 12px; margin: 0 0 22px; }
.plan-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "name price" "blurb blurb";
    gap: 4px 14px;
    padding: 16px 18px 16px 48px;
    background: #fff;
    border: 2px solid #d5d9e6;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.plan-card:hover { border-color: var(--blue); }
.plan-card.is-selected { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,31,38,.15); }
.plan-card input {
    position: absolute; left: 18px; top: 20px;
    width: 18px; height: 18px; accent-color: var(--red);
}
.plan-name { grid-area: name; font-weight: 700; font-size: 17px; }
.plan-price { grid-area: price; font-family: var(--font-cond, 'Barlow Condensed', sans-serif); font-weight: 700; font-size: 18px; color: var(--blue); white-space: nowrap; }
.plan-blurb { grid-area: blurb; color: #4a5170; font-size: 14px; line-height: 1.45; }
.plan-tag {
    display: inline-block; vertical-align: 2px; margin-left: 6px;
    padding: 2px 8px; border-radius: 999px;
    background: var(--red); color: #fff;
    font-family: var(--font-cond, 'Barlow Condensed', sans-serif); font-weight: 700;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.plan-offer { color: var(--red); font-weight: 700; }
.flash { padding: 12px 16px; border-radius: 10px; margin: 0 0 18px; font-size: 15px; }
.flash-danger { background: #fdecec; color: #8c1218; border: 1px solid #f5b5b8; }
.flash a { color: inherit; font-weight: 700; }

.join-next { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.join-step { background: #fff; border-radius: 14px; padding: 28px 24px; color: var(--ink); box-shadow: 0 8px 30px rgba(11,18,48,.08); }
.join-step h3 { margin: 12px 0 8px; font-size: 22px; }
.join-step p { color: #4a5170; margin: 0 0 14px; }
.join-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red); color: #fff; font-weight: 800;
}
@media (max-width: 720px) {
    .join-next { grid-template-columns: 1fr; }
    .plan-card { grid-template-columns: 1fr; grid-template-areas: "name" "price" "blurb"; }
}
