/* ═══════════════════════════════════════════════════════════
   Club de Golf VIP — Mobile-first stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg: #f7f3eb;
    --bg-elevated: #efe8dc;
    --surface: #fffcf7;
    --surface-2: #e8e0d4;
    --border: rgba(26, 61, 46, 0.12);
    --text: #1a241c;
    --muted: #5c655e;
    --accent: #1a3d2e;
    --accent-bright: #245a42;
    --accent-light: #3d7a5c;
    --accent-dim: rgba(26, 61, 46, 0.1);
    --accent-glow: rgba(26, 61, 46, 0.2);
    --gold: #c98a00;
    --gold-light: #e0a010;
    --gold-dim: rgba(201, 138, 0, 0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --header-h: 60px;
    --header-offset: calc(var(--header-h) + var(--safe-top));
    --marquee-h: 46px;
    --cta-h: 68px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
    --touch: 48px;
    --shadow: 0 8px 24px rgba(26, 61, 46, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 61, 46, 0.12);
    --header-bg: rgba(247, 243, 235, 0.94);
    --cta-bar-bg: rgba(255, 252, 247, 0.96);
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0c1210;
    --bg-elevated: #141c18;
    --surface: #1a2420;
    --surface-2: #222e28;
    --border: rgba(232, 224, 212, 0.12);
    --text: #efeae2;
    --muted: #a3aea6;
    --accent: #3d8f6a;
    --accent-bright: #4eaa7f;
    --accent-light: #6fc49a;
    --accent-dim: rgba(61, 143, 106, 0.14);
    --accent-glow: rgba(61, 143, 106, 0.24);
    --gold: #e0a010;
    --gold-light: #f0b820;
    --gold-dim: rgba(224, 160, 16, 0.14);
    --header-bg: rgba(12, 18, 16, 0.92);
    --cta-bar-bg: rgba(12, 18, 16, 0.96);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

html:has(body.home-page) {
    scroll-padding-top: calc(var(--header-offset) + 12px);
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    font-size: 16px;
    padding-bottom: calc(1.25rem + var(--safe-bottom));
    overflow-x: hidden;
}

body.home-page {
    padding-bottom: calc(var(--cta-h) + var(--safe-bottom));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; -webkit-tap-highlight-color: transparent; }

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.narrow { max-width: 720px; margin-inline: auto; }
.center { text-align: center; }

/* ── HEADER (mobile) ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding-top: var(--safe-top);
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: rgba(2, 104, 179, 0.12);
}

body.home-page .site-header:not(.is-scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.home-page .site-header:not(.is-scrolled) .brand,
body.home-page .site-header:not(.is-scrolled) .brand-line.accent {
    color: #fff;
}

body.home-page .site-header:not(.is-scrolled) .brand-logo--on-light {
    opacity: 0;
}

body.home-page .site-header:not(.is-scrolled) .brand-logo--on-dark {
    opacity: 1;
}

body.home-page .site-header:not(.is-scrolled) .brand-icon img {
    filter: brightness(1.05);
}

body.home-page .site-header:not(.is-scrolled) .desktop-nav > a {
    color: rgba(255, 255, 255, 0.85);
}

body.home-page .site-header:not(.is-scrolled) .desktop-nav > a:hover {
    color: #fff;
}

body.home-page .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

body.home-page .site-header:not(.is-scrolled) .btn-lang,
body.home-page .site-header:not(.is-scrolled) .btn-login-header,
body.home-page .site-header:not(.is-scrolled) .btn-theme,
body.home-page .site-header:not(.is-scrolled) .btn-hero-mute {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

body.home-page .site-header:not(.is-scrolled) .admin-profile-trigger {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

body.home-page .site-header:not(.is-scrolled) .admin-profile-avatar-fallback {
    color: #fff;
}

body.home-page .site-header:not(.is-scrolled) .admin-profile-trigger:hover,
body.home-page .site-header:not(.is-scrolled) .admin-profile-menu.is-open .admin-profile-trigger {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.32);
}

body.home-page .site-header:not(.is-scrolled) .desktop-nav.portal-member-nav > a.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

body.home-page .site-header:not(.is-scrolled) .btn-reserve-header,
body.home-page .site-header:not(.is-scrolled) .btn-reserve-mobile {
    background: var(--accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    font-weight: 800;
}

body.home-page .site-header:not(.is-scrolled) .btn-reserve-header:hover,
body.home-page .site-header:not(.is-scrolled) .btn-reserve-mobile:hover {
    background: var(--accent-bright, #245443);
}

/* Hero intro overlay dims the video — keep the header crisp and readable */
body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) {
    background: linear-gradient(
        180deg,
        rgba(6, 10, 9, 0.88) 0%,
        rgba(6, 10, 9, 0.62) 72%,
        rgba(6, 10, 9, 0) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .desktop-nav > a {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    font-weight: 700;
}

body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .desktop-nav > a:hover {
    color: #fff;
}

body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .brand-logos,
body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .brand-icon img {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .btn-lang,
body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .btn-login-header,
body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .btn-theme,
body.home-page:has(.gz-hero.is-downloading, .gz-hero.is-buffering, .gz-hero.is-loading, .gz-hero.is-ready-to-play) .site-header:not(.is-scrolled) .btn-hero-mute {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.header-inner,
.header-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: var(--header-h);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--text);
    min-height: var(--touch);
    flex: 1;
    min-width: 0;
}

.brand--wordmark {
    gap: 0.55rem;
    flex: 0 0 auto;
}

.brand-logos {
    display: grid;
    align-items: center;
    justify-items: start;
    line-height: 0;
    flex-shrink: 0;
    width: auto;
    max-width: min(200px, 46vw);
}

.brand-logo {
    grid-area: 1 / 1;
    display: block;
    height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.brand-logo--on-dark {
    opacity: 0;
}

[data-theme="dark"] .brand-logo--on-light {
    opacity: 0;
}

[data-theme="dark"] .brand-logo--on-dark {
    opacity: 1;
}

.brand-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }

.brand-line {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-line.accent { color: var(--accent); font-size: 0.78rem; }

.btn-reserve-mobile {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 40px;
    padding: 0.5rem 0.85rem 0.5rem 0.95rem;
    background: var(--accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

a.btn-reserve-mobile:link,
a.btn-reserve-mobile:visited,
a.btn-reserve-mobile:hover,
a.btn-reserve-mobile:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .header-bar {
        justify-content: space-between;
    }

    .brand,
    .brand--wordmark {
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-actions .btn-login-header,
    .header-actions .btn-reserve-header,
    .header-actions .btn-reserve-mobile,
    .header-actions .lang-desktop,
    .header-actions .theme-desktop,
    .header-actions .btn-theme,
    .header-actions .btn-hero-mute {
        display: none !important;
    }
}

.lang-desktop,
.btn-login-desktop,
.btn-reserve-desktop { display: none; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: var(--touch);
    height: var(--touch);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav hidden on mobile */
.desktop-nav { display: none; }

/* Mobile nav drawer */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 250;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    z-index: 300;
    display: flex;
    flex-direction: column;
    padding: calc(var(--safe-top) + 1rem) 1.25rem calc(1.5rem + var(--safe-bottom));
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

body.nav-open .mobile-nav { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-close {
    width: var(--touch);
    height: var(--touch);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: var(--touch);
    padding: 0.35rem 0;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:active { color: var(--accent); }

.mobile-nav a.is-active {
    color: var(--accent);
    font-weight: 700;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-prefs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.mobile-nav-prefs .mobile-nav-pref-item,
.mobile-nav-prefs .lang-form {
    flex: 0 0 auto;
}

.mobile-nav-prefs .btn-lang,
.mobile-nav-prefs .btn-theme,
.mobile-nav-prefs .btn-hero-mute {
    min-height: 36px;
    min-width: 36px;
}

/* Sticky mobile CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    display: flex;
    gap: 0.5rem;
    padding: 0.65rem max(1rem, env(safe-area-inset-right, 0px)) calc(0.65rem + var(--safe-bottom)) max(1rem, env(safe-area-inset-left, 0px));
    background: var(--cta-bar-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    transition: transform 0.3s;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.mobile-cta-bar.is-hidden { transform: translateY(110%); }

.mobile-cta-bar .mobile-cta-primary,
.mobile-cta-bar .mobile-cta-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch);
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-cta-bar .mobile-cta-primary {
    background: var(--accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    flex: 1.4;
}

.mobile-cta-bar a.mobile-cta-primary:link,
.mobile-cta-bar a.mobile-cta-primary:visited,
.mobile-cta-bar a.mobile-cta-primary:hover,
.mobile-cta-bar a.mobile-cta-primary:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mobile-cta-bar .mobile-cta-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .mobile-cta-bar,
    .btn-reserve-mobile,
    .nav-toggle,
    .nav-overlay,
    .mobile-nav { display: none !important; }

    .header-bar { height: 68px; gap: 1rem; }

    .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }

    .desktop-nav > a {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--muted);
        transition: color 0.15s;
        white-space: nowrap;
    }

    .desktop-nav > a:hover { color: var(--accent); }

    .desktop-nav.portal-member-nav {
        gap: 0.15rem;
    }

    .desktop-nav.portal-member-nav > a {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        padding: 0.5rem 0.85rem;
        border-radius: 8px;
        color: var(--muted);
        background: transparent;
        min-height: 0;
        flex: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-nav.portal-member-nav > a:hover {
        color: var(--text);
        background: rgba(0, 0, 0, 0.04);
    }

    .desktop-nav.portal-member-nav > a.is-active {
        color: var(--accent);
        background: rgba(46, 77, 61, 0.1);
        font-weight: 700;
    }

    [data-theme="dark"] .desktop-nav.portal-member-nav > a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    [data-theme="dark"] .desktop-nav.portal-member-nav > a.is-active {
        background: rgba(46, 77, 61, 0.22);
    }

    .lang-desktop,
    .btn-login-desktop,
    .btn-reserve-desktop { display: flex; }

    .header-actions { gap: 0.55rem; }

    .brand,
    .brand--wordmark {
        flex: 0 0 auto;
    }

    .brand-logos {
        max-width: none;
    }

    .brand-logo {
        height: 40px;
        max-width: none;
    }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: var(--touch);
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    touch-action: manipulation;
}

.btn:active { transform: scale(0.98); }
.btn-external-icon {
    flex-shrink: 0;
    margin-top: -1px;
    opacity: 0.88;
}
.btn-lg { min-height: 52px; font-size: 0.95rem; padding-inline: 1.5rem; }
.btn-sm { min-height: 40px; font-size: 0.78rem; padding: 0.5rem 1rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--accent); color: #fff; -webkit-text-fill-color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-bright); color: #fff; -webkit-text-fill-color: #fff; }
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.btn.btn-primary.btn-form-submit {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.btn-outline { background: transparent; color: var(--text); border-color: rgba(0, 0, 0, 0.18); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

.btn-save { background: #0d8a45; color: #fff; border-color: #0d8a45; }
.btn-save:hover { background: #0a7a3f; border-color: #0a7a3f; }

.btn-cancel { background: #c62828; color: #fff; border-color: #c62828; }
.btn-cancel:hover { background: #b71c1c; border-color: #b71c1c; color: #fff; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111;
    border-color: var(--gold);
}

.btn-lang {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    min-height: 36px;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 36px;
    height: auto;
    min-height: 36px;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.btn-theme:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-dim);
}

.btn-theme .theme-icon {
    width: 16px;
    height: 16px;
}

.btn-theme-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: var(--touch);
}

.btn-theme-mobile .theme-toggle-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-icon { display: block; }
.theme-icon-moon { display: none; }

[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: block; }

.btn-login-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
}

.btn-login-header:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-reserve-header {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    background: var(--accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
    padding: 0.4rem 0.85rem 0.4rem 1.05rem;
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    line-height: 1.15;
    overflow: hidden;
}

a.btn-reserve-header:link,
a.btn-reserve-header:visited,
a.btn-reserve-header:hover,
a.btn-reserve-header:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.btn-reserve-header small {
    font-size: 0.55rem;
    font-weight: 600;
    opacity: 0.8;
}

.btn-reserve-label {
    display: inline-block;
}

.btn-reserve-ball {
    width: 1.55rem;
    height: 1.55rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
    transform-origin: center;
    will-change: transform;
}

.btn-reserve-mobile .btn-reserve-ball {
    width: 1.1rem;
    height: 1.1rem;
}

.mobile-cta-primary.js-reserve-roll {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    overflow: hidden;
}

.mobile-cta-primary .btn-reserve-ball {
    width: 1.2rem;
    height: 1.2rem;
}

/* Single continuous roll — triggered via .is-rolling (mouseenter), not :hover */
.js-reserve-roll.is-rolling .btn-reserve-ball {
    animation: reserve-ball-roll 0.65s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes reserve-ball-roll {
    from {
        transform: translateX(0) rotate(0deg);
    }
    to {
        transform: translateX(0.7rem) rotate(360deg);
    }
}

/* Plan CTAs — ball rests on floor; fly to ~70% → bounce ×3 → roll-to-stop */
a.btn.js-plan-roll {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    padding-left: 2.6rem;
    padding-right: 2.6rem;
}

a.btn.js-plan-roll.is-animating .btn-reserve-label {
    opacity: 0;
    visibility: hidden;
}

a.btn.js-plan-roll .btn-reserve-ball {
    position: absolute;
    left: 0.7rem;
    top: auto;
    bottom: 0.3rem;
    width: 1.55rem;
    height: 1.55rem;
    margin-top: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate3d(0, 0, 0) rotate(0deg);
    will-change: transform;
}

a.btn.js-plan-roll .btn-reserve-ball.is-hit-out {
    animation: plan-ball-hit-out 1.5s linear forwards;
}

a.btn.js-plan-roll .btn-reserve-ball.is-hit-back {
    animation: plan-ball-hit-back 1.5s linear forwards;
}

/* Hold position between hover hits */
a.btn.js-plan-roll .btn-reserve-ball.is-at-right {
    transform: translate3d(var(--plan-roll-x, 12rem), 0, 0) rotate(720deg);
}

/*
  Rest / floor = translateY(0) at bottom.
  Negative Y = airborne. Fly to ~70%, then 3 decaying bounces, then roll to stop.
*/
@keyframes plan-ball-hit-out {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    /* Launch off the floor */
    8% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.18), -10px, 0) rotate(160deg);
    }
    /* Apex of flight toward 70% */
    28% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.52), -16px, 0) rotate(380deg);
    }
    /* Still airborne approaching 70% */
    38% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.66), -8px, 0) rotate(480deg);
    }
    /* First floor impact ~70% */
    44% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.70), 0, 0) rotate(520deg);
    }
    /* Bounce 1 */
    52% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.76), -11px, 0) rotate(580deg);
    }
    58% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.80), 0, 0) rotate(620deg);
    }
    /* Bounce 2 */
    66% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.86), -6px, 0) rotate(660deg);
    }
    72% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.90), 0, 0) rotate(680deg);
    }
    /* Bounce 3 */
    78% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.93), -3px, 0) rotate(695deg);
    }
    83% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.95), 0, 0) rotate(705deg);
    }
    /* Roll to stop */
    100% {
        transform: translate3d(var(--plan-roll-x, 12rem), 0, 0) rotate(720deg);
    }
}

@keyframes plan-ball-hit-back {
    0% {
        transform: translate3d(var(--plan-roll-x, 12rem), 0, 0) rotate(720deg);
    }
    8% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.82), -10px, 0) rotate(560deg);
    }
    28% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.48), -16px, 0) rotate(340deg);
    }
    38% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.34), -8px, 0) rotate(240deg);
    }
    /* First floor impact ~30% from left (= 70% of reverse travel) */
    44% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.30), 0, 0) rotate(200deg);
    }
    52% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.24), -11px, 0) rotate(140deg);
    }
    58% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.20), 0, 0) rotate(100deg);
    }
    66% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.14), -6px, 0) rotate(60deg);
    }
    72% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.10), 0, 0) rotate(40deg);
    }
    78% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.07), -3px, 0) rotate(25deg);
    }
    83% {
        transform: translate3d(calc(var(--plan-roll-x, 12rem) * 0.05), 0, 0) rotate(15deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

a.btn.js-plan-roll .btn-reserve-label {
    position: relative;
    z-index: 0;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .js-reserve-roll.is-rolling .btn-reserve-ball {
        animation: none;
    }

    a.btn.js-plan-roll.is-animating .btn-reserve-label {
        opacity: 1;
        visibility: visible;
    }

    a.btn.js-plan-roll .btn-reserve-ball.is-hit-out,
    a.btn.js-plan-roll .btn-reserve-ball.is-hit-back {
        animation: none;
    }
}

/* ── GOLFZON HERO (PageHeadingVideo) ── */
.gz-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100svh - var(--marquee-h));
    min-height: 32rem;
    color: #fff;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-offset));
    background: #0b1210;
}

.gz-hero-poster,
.gz-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gz-hero-poster {
    background: #0b1210;
    opacity: 1;
    transition: opacity 0.55s ease;
}

/* Dim the still while the heartbeat intro / play CTA is on screen */
.gz-hero.is-loading .gz-hero-poster,
.gz-hero.is-buffering .gz-hero-poster,
.gz-hero.is-downloading .gz-hero-poster,
.gz-hero.is-ready-to-play .gz-hero-poster {
    opacity: 0.6;
}

.gz-hero.is-loading .gz-hero-video,
.gz-hero.is-buffering .gz-hero-video,
.gz-hero.is-downloading .gz-hero-video {
    opacity: 0 !important;
}

.gz-hero-video {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.gz-hero.is-video-ready .gz-hero-video {
    opacity: 1;
}

.gz-hero-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gz-hero-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 2;
    transition: background 0.55s ease;
}

.gz-hero.is-loading .gz-hero-scrim,
.gz-hero.is-buffering .gz-hero-scrim,
.gz-hero.is-downloading .gz-hero-scrim,
.gz-hero.is-ready-to-play .gz-hero-scrim {
    background: rgba(0, 0, 0, 0.42);
}

.gz-hero-wrapper {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    min-height: 0;
    padding-top: var(--header-offset);
}

.gz-hero-content {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    height: 100%;
    padding: 2.5rem 1rem 1.25rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gz-hero-cta-stage {
    position: relative;
    display: grid;
    place-items: center;
    z-index: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.gz-hero-copy {
    display: block;
    max-width: 100%;
    grid-row: 2;
    justify-self: center;
    z-index: 3;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.gz-hero.is-playing .gz-hero-copy {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

.gz-hero-tagline {
    margin: 0;
    color: #fff;
    font-size: clamp(1.05rem, 2.6vw, 1.35rem);
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
    box-sizing: border-box;
    width: fit-content;
    max-width: min(100%, 42rem);
    padding: 0.85rem 1.15rem;
    /* Frosted glass via blur only — no solid fill */
    background: transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    text-wrap: balance;
    white-space: normal;
    overflow-wrap: break-word;
}

.gz-hero.is-playing .gz-hero-scrim {
    background: rgba(0, 0, 0, 0.12);
}

.gz-hero-fullscreen {
    appearance: none;
    position: absolute;
    right: clamp(0.75rem, 3vw, 1.25rem);
    bottom: clamp(0.75rem, 3vw, 1.25rem);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(8, 14, 12, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, border-color 0.2s ease, background 0.2s ease;
}

.gz-hero-fullscreen svg {
    grid-area: 1 / 1;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
}

.gz-hero-fullscreen .gz-hero-fullscreen-exit {
    display: none;
}

.gz-hero-fullscreen.is-active .gz-hero-fullscreen-enter {
    display: none;
}

.gz-hero-fullscreen.is-active .gz-hero-fullscreen-exit {
    display: block;
}

.gz-hero-fullscreen:hover,
.gz-hero-fullscreen:focus-visible {
    border-color: rgba(224, 160, 16, 0.65);
    background: rgba(8, 14, 12, 0.72);
    outline: none;
}

.gz-hero.is-playing.is-controls-visible .gz-hero-fullscreen:not([hidden]),
.gz-hero-fullscreen:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.gz-hero-fullscreen[hidden] {
    display: none !important;
}

.gz-hero-seek {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 0.65rem 1rem 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gz-hero.is-playing.is-controls-visible .gz-hero-seek:not([hidden]),
.gz-hero-seek:focus-within {
    pointer-events: auto;
    opacity: 1;
}

.gz-hero-seek[hidden] {
    display: none !important;
}

.gz-hero-seek-range {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 0.35rem;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    accent-color: var(--accent);
}

.gz-hero-seek-range::-webkit-slider-runnable-track {
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.gz-hero-seek-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    margin-top: -0.3rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gz-hero-seek-range::-moz-range-track {
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.gz-hero-seek-range::-moz-range-thumb {
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gz-hero:fullscreen .gz-hero-seek,
.gz-hero:-webkit-full-screen .gz-hero-seek {
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
}

.gz-hero:fullscreen,
.gz-hero:-webkit-full-screen {
    height: 100%;
    width: 100%;
    max-height: none;
    margin: 0;
}

.gz-hero:fullscreen .gz-hero-video,
.gz-hero:-webkit-full-screen .gz-hero-video {
    object-fit: contain;
}

.gz-hero:fullscreen .gz-hero-copy,
.gz-hero:-webkit-full-screen .gz-hero-copy {
    opacity: 0;
    pointer-events: none;
}

/* Countdown loader and play/pause controls share the same center slot */
.gz-hero-loader,
.gz-hero-start,
.gz-hero-pause {
    grid-area: 1 / 1;
}

.gz-hero-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 1;
}

.gz-hero.is-ready-to-play .gz-hero-loader,
.gz-hero.is-playing .gz-hero-loader {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.gz-hero-loader-core {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 82%;
    display: grid;
    place-items: center;
    animation: gz-hero-heartbeat 1s ease-in-out infinite;
    will-change: transform;
}

.gz-hero-loader-orb {
    position: relative;
    width: clamp(220px, 48vw, 360px);
    height: clamp(220px, 48vw, 360px);
    display: grid;
    place-items: center;
}

.gz-hero-loader-ball {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 42px rgba(201, 138, 0, 0.55));
}

.gz-hero-loader-ring {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 2px solid rgba(224, 160, 16, 0.4);
    pointer-events: none;
}

.gz-hero-loader-ring--a {
    animation: gz-hero-ring 1s ease-out infinite;
}

.gz-hero-loader-ring--b {
    animation: gz-hero-ring 1s ease-out infinite 0.5s;
}

.gz-hero.is-bridge-beat .gz-hero-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gz-hero.is-bridge-beat .gz-hero-loader-orb {
    opacity: 0;
    visibility: hidden;
}

.gz-hero-countdown {
    position: absolute;
    inset: 0;
    z-index: 3;
    margin: 0;
    display: grid;
    place-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4.25rem, 14vw, 7rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #fff;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.35),
        0 10px 28px rgba(0, 0, 0, 0.55);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.gz-hero-countdown.is-tick {
    animation: gz-hero-count-pop 0.45s ease;
}

.gz-hero-countdown.is-waiting {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: none;
    opacity: 0.95;
    padding: 0 12%;
    text-align: center;
}

.gz-hero-countdown.is-loading-dots {
    animation: gz-hero-dots-pulse 1.1s ease-in-out infinite;
}

.gz-hero.is-downloading .gz-hero-loader-orb {
    width: clamp(72px, 18vw, 96px);
    height: clamp(72px, 18vw, 96px);
}

.gz-hero.is-downloading .gz-hero-loader-core {
    width: 100%;
    height: 100%;
    animation: none;
}

.gz-hero.is-downloading .gz-hero-loader-ball,
.gz-hero.is-downloading .gz-hero-loader-ring {
    opacity: 0;
    visibility: hidden;
}

.gz-hero.is-downloading .gz-hero-countdown.is-loading-dots {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    font-size: clamp(2rem, 6vw, 2.75rem);
    letter-spacing: 0.28em;
    padding: 0;
}

.gz-hero.is-downloading .gz-hero-loader-ring--a {
    animation-duration: 0.85s;
}

.gz-hero.is-downloading .gz-hero-loader-ring--b {
    animation-duration: 0.85s;
}

@keyframes gz-hero-dots-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1); }
}

.gz-hero-start,
.gz-hero-pause {
    appearance: none;
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(3.25rem, 8vw, 3.75rem);
    height: clamp(3.25rem, 8vw, 3.75rem);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(8, 14, 12, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.2s ease,
        background 0.2s ease;
    z-index: 2;
}

.gz-hero-start:hover,
.gz-hero-start:focus-visible,
.gz-hero-pause:hover,
.gz-hero-pause:focus-visible {
    border-color: rgba(224, 160, 16, 0.65);
    background: rgba(8, 14, 12, 0.72);
    outline: none;
}

.gz-hero.is-loading .gz-hero-start,
.gz-hero.is-loading .gz-hero-pause,
.gz-hero.is-buffering .gz-hero-start,
.gz-hero.is-buffering .gz-hero-pause,
.gz-hero.is-downloading .gz-hero-start,
.gz-hero.is-downloading .gz-hero-pause,
.gz-hero.is-loading .gz-hero-control,
.gz-hero.is-buffering .gz-hero-control,
.gz-hero.is-downloading .gz-hero-control {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.gz-hero.is-ready-to-play:not(.is-loading):not(.is-buffering) .gz-hero-start {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gz-hero.is-playing.is-paused.is-controls-visible .gz-hero-start {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gz-hero.is-playing.is-paused .gz-hero-start {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.gz-hero.is-playing:not(.is-paused) .gz-hero-start {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.gz-hero-pause {
    opacity: 0;
    pointer-events: none;
}

.gz-hero.is-playing.is-controls-visible:not(.is-paused) .gz-hero-pause {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gz-hero.is-playing.is-paused .gz-hero-pause {
    opacity: 0;
    pointer-events: none;
}

.gz-hero-start-icon,
.gz-hero-pause-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: auto;
    height: auto;
    border: 0;
    background: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.gz-hero-start-icon svg,
.gz-hero-pause-icon svg {
    width: clamp(1.15rem, 3.2vw, 1.45rem);
    height: auto;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.gz-hero-start:hover .gz-hero-start-icon,
.gz-hero-start:focus-visible .gz-hero-start-icon,
.gz-hero-pause:hover .gz-hero-pause-icon,
.gz-hero-pause:focus-visible .gz-hero-pause-icon {
    transform: scale(1.08);
}

.gz-hero-start-icon svg {
    margin-left: 4px;
}

.gz-hero-start-label {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.btn-hero-mute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 36px;
    height: auto;
    min-height: 36px;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.btn-hero-mute:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-dim);
}

.btn-hero-mute .gz-icon-muted { display: none; }
.btn-hero-mute.is-muted .gz-icon-unmuted { display: none; }
.btn-hero-mute.is-muted .gz-icon-muted { display: block; }

.btn-hero-mute[hidden] {
    display: none !important;
}

@keyframes gz-hero-heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.16); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@keyframes gz-hero-ring {
    0% { transform: scale(0.72); opacity: 0.55; }
    70% { opacity: 0.12; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes gz-hero-count-pop {
    0% { transform: scale(0.7); opacity: 0.35; }
    55% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .gz-hero-loader-core,
    .gz-hero-loader-ring,
    .gz-hero-countdown.is-tick,
    .gz-hero-countdown.is-loading-dots {
        animation: none !important;
    }
}

@media (max-height: 720px) {
    .gz-hero {
        min-height: 0;
    }

    .gz-hero-content {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
    }
}

/* Portrait/narrow viewports: show full video frame instead of heavy cover crop */
@media (max-width: 1023px) {
    .gz-hero-poster,
    .gz-hero-video {
        object-fit: contain;
        object-position: center center;
    }

    .gz-hero-video {
        background: #0b1210;
    }
}

@media (min-width: 1024px) {
    .gz-hero-content {
        align-items: stretch;
        justify-items: start;
        text-align: left;
        margin: 0;
        max-width: min(100%, 72rem);
        padding-bottom: 1.5rem;
    }

    .gz-hero-cta-stage {
        justify-self: center;
    }

    .gz-hero-copy {
        justify-self: start;
    }
}

/* ── GOLFZON VIDEO MODULE (Morning Dew) ── */
.gz-video-module {
    background: var(--accent);
    color: #fff;
    padding: 1rem 0 2.5rem;
}

.gz-video-module-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.gz-video-module-copy {
    text-align: center;
    max-width: 620px;
}

.gz-video-module-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.65rem, 4.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.gz-video-module-desc {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 1.5rem;
    opacity: 0.95;
}

.gz-video-module-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gz-video-module-media {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 16 / 10;
}

.gz-video-module-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.gz-video-module-player {
    position: absolute;
    inset: 8% 10% 12%;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}

.gz-video-module-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gz-video-module-media--plain .gz-video-module-player {
    inset: 0;
    border-radius: 8px;
}

.gz-video-module-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 1024px) {
    .gz-video-module-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
        align-items: center;
    }

    .gz-video-module-copy {
        text-align: left;
        max-width: none;
    }

    .gz-video-module-buttons {
        justify-content: flex-start;
    }

    .gz-video-module-media {
        width: 100%;
        max-width: 620px;
        justify-self: end;
    }
}

.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

.section-eyebrow.center { text-align: center; }

/* Feature marquee */
.feature-marquee {
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 0.85rem 0;
    overflow: hidden;
}

.feature-marquee--hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--marquee-h);
    max-height: var(--marquee-h);
    border: none;
    background: var(--accent);
    padding: 0;
    box-shadow: 0 4px 16px rgba(26, 61, 46, 0.18);
    overflow: hidden;
}

.feature-marquee--hero .marquee-viewport {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    contain: layout paint;
}

.feature-marquee--hero .marquee-track {
    align-items: center;
    flex-wrap: nowrap;
}

.feature-marquee--hero .marquee-item {
    color: #fff;
    line-height: 1.2;
    flex-shrink: 0;
}

.feature-marquee--hero .marquee-dot {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-viewport {
    overflow: hidden;
    max-width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
    padding-inline: 1rem;
    will-change: transform;
}

.marquee-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--text);
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.45rem;
    opacity: 0.85;
}

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

/* Showcase */
.showcase-section {
    background: var(--bg);
    padding-top: 3.5rem;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.showcase-grid > .showcase-media {
    order: -1;
    width: 100%;
}

.showcase-grid > .showcase-copy {
    order: 1;
    width: 100%;
}

.showcase-media {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.showcase-media img,
.showcase-media video,
.showcase-media picture {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.showcase-media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(2, 104, 179, 0.25);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.showcase-copy h2,
.showcase-copy h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.simulator-cta {
    background: var(--bg);
    text-align: center;
}

.simulator-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.75rem;
}

.simulator-cta p {
    color: var(--muted);
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.showcase-copy > p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.showcase-actions .btn {
    flex: 1 1 11rem;
}

.showcase-actions--fit {
    justify-content: flex-end;
}

.showcase-actions--fit .btn {
    flex: 0 0 auto;
    width: auto;
}

.showcase-aside-link {
    margin: 0;
    text-align: right;
}

.showcase-text-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 0.15s ease;
}

.showcase-text-link:hover {
    color: var(--accent-bright);
}

.store-badge-actions {
    align-items: center;
    gap: 0.35rem 0.75rem;
}

.store-badge-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.store-badge-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.store-badge-link img {
    display: block;
    height: 40px;
    width: auto;
}

/* Official Google badge PNGs include large transparent padding */
.store-badge-link--google {
    overflow: hidden;
    max-height: 40px;
}

.store-badge-link--google img {
    height: 58px;
    margin: -9px -10px;
}

.gz-tour-media-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    align-items: center;
}

.gz-tour-media-stack .showcase-media {
    width: 100%;
}

.gz-tour-media-stack .store-badge-actions {
    justify-content: center;
    width: 100%;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.showcase-list li {
    padding: 0.45rem 0 0.45rem 1.45rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.45;
}

.showcase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

#mobile-app .showcase-list {
    margin-bottom: 1rem;
}

#mobile-app .showcase-list li {
    padding: 0.18rem 0 0.18rem 1.45rem;
    line-height: 1.35;
    font-size: 0.9rem;
}

.modal-panel--app-data {
    width: min(100%, 520px);
}

.modal-panel--app-data .showcase-list {
    margin-bottom: 0;
}

.modal-panel--app-data .showcase-list li {
    padding: 0.35rem 0 0.35rem 1.45rem;
}

#mobile-app .app-data-actions {
    margin-top: 0.25rem;
    align-items: center;
    justify-content: flex-start;
}

#mobile-app .app-data-actions .app-data-see-more {
    flex: 0 0 auto;
    width: auto;
}

#tour .tour-actions {
    margin-top: 0.25rem;
    align-items: center;
    justify-content: flex-start;
}

#tour .tour-actions .btn {
    flex: 0 0 auto;
    width: auto;
}

@media (max-width: 1023px) {
    #mobile-app .app-data-actions {
        justify-content: center;
    }

    #mobile-app .app-data-actions .app-data-see-more {
        flex: 0 0 100%;
        align-self: center;
    }

    #tour .tour-actions {
        justify-content: center;
    }
}

/* GOLFZON Tour */
.gz-tour-section {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
    padding-top: 3.5rem;
}

.gz-tour-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Mobile: image always above copy, regardless of HTML order */
.gz-tour-grid > .gz-tour-media,
.gz-tour-grid > .showcase-media,
.gz-tour-grid > .gz-tour-media-stack {
    order: -1;
    width: 100%;
}

.gz-tour-grid > .gz-tour-copy {
    order: 1;
    width: 100%;
}

@media (min-width: 1024px) {
    .gz-tour-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .gz-tour-grid > .gz-tour-media,
    .gz-tour-grid > .showcase-media,
    .gz-tour-grid > .gz-tour-media-stack {
        order: 2;
        width: auto;
    }

    .gz-tour-grid > .gz-tour-copy {
        order: 0;
        width: auto;
    }

    .gz-tour-grid--media-start > .gz-tour-media,
    .gz-tour-grid--media-start > .showcase-media,
    .gz-tour-grid--media-start > .gz-tour-media-stack {
        order: 0;
    }

    .gz-tour-grid--media-start > .gz-tour-copy {
        order: 1;
    }
}

/* Feature carousel (Zero Latency + 300+ Courses) */
.feature-carousel {
    position: relative;
    /* Side gutters reserve space for the arrows so they never overlap content */
    padding-inline: 3.25rem;
}

.feature-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.feature-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.feature-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    /* All slides share the tallest slide's height (flex row) — center content */
    display: flex;
    align-items: center;
}

.feature-carousel-slide > .gz-tour-grid {
    width: 100%;
}

.feature-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 12, 27, 0.12);
    transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

[data-theme="dark"] .feature-carousel-arrow {
    background: rgba(20, 26, 38, 0.9);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.feature-carousel-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

.feature-carousel-arrow:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(2, 104, 179, 0.35);
}

.feature-carousel-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.feature-carousel-arrow:active {
    transform: translateY(-50%) scale(0.94);
}

.feature-carousel-arrow--prev {
    left: 0;
}

.feature-carousel-arrow--next {
    right: 0;
}

@media (min-width: 1024px) {
    .feature-carousel {
        padding-inline: 4.25rem;
    }
}

@media (max-width: 560px) {
    .feature-carousel {
        padding-inline: 2.5rem;
    }

    .feature-carousel-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }

    .feature-carousel-arrow svg {
        width: 1.1rem;
        height: 1.1rem;
    }
}

.feature-carousel-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.feature-carousel-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    max-width: 100%;
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-md, 0.75rem);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-carousel-tab:hover {
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-1px);
}

.feature-carousel-tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.feature-carousel-tab-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.1;
}

.feature-carousel-tab.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(2, 104, 179, 0.28);
}

[data-theme="dark"] .feature-carousel-tab {
    background: var(--bg-elevated);
}

@media (max-width: 560px) {
    .feature-carousel-tab {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-carousel-track {
        transition: none;
    }
}

/* Stats band */
.stats-band {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
    border-block: 1px solid var(--border);
}

.stats-band-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 2rem;
    line-height: 1.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card > span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.stat-card p {
    margin: 0;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.4;
}

.stats-source {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 1.5rem 0 0;
}

.stats-source a { color: var(--accent); }

/* Testimonials */
.testimonials-section {
    background: var(--bg-elevated);
}

.testimonials-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.55rem, 4.5vw, 2.25rem) !important;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.75rem !important;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem;
}

.testimonial-card p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
}

.testimonial-card p::before { content: '\201C'; color: var(--accent); font-style: normal; font-weight: 800; }
.testimonial-card p::after { content: '\201D'; color: var(--accent); font-style: normal; font-weight: 800; }

.testimonial-card footer {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.testimonial-featured {
    border-color: rgba(2, 104, 179, 0.35);
    background: linear-gradient(135deg, rgba(2, 104, 179, 0.06), var(--surface));
}

@media (min-width: 768px) {
    .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .showcase-grid > .showcase-media,
    .showcase-grid > .showcase-copy {
        order: unset;
        width: auto;
    }

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

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

    .testimonial-featured { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .feature-marquee--hero .marquee-viewport {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .feature-marquee--hero .marquee-viewport::-webkit-scrollbar {
        display: none;
    }

    .marquee-track {
        animation: none;
        flex-wrap: nowrap;
        width: max-content;
        transform: none;
    }
}

@media (max-width: 768px) {
    .feature-marquee--hero .marquee-viewport {
        -webkit-overflow-scrolling: touch;
    }

    .feature-marquee--hero .marquee-track {
        animation-duration: 26s;
    }
}

/* ── HERO (legacy helpers) ── */
.hero {
    position: relative;
    padding: 1.5rem 0 2.5rem;
    overflow: hidden;
}

.hero-bg-image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-coming-soon {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(2, 104, 179, 0.35);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.85rem, 7.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
}

.text-accent { color: var(--accent); display: inline; }

.hero-lead {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 0.5rem;
}

.hero-tech {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 0 0 1.25rem;
    line-height: 1.45;
}

.hero-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-pills::-webkit-scrollbar { display: none; }

.hero-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    background: rgba(20, 24, 22, 0.85);
    border: 1px solid var(--border);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    backdrop-filter: blur(8px);
}

.pill-icon { font-size: 0.95rem; }

.hero-actions-desktop { display: none; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero-stat {
    background: rgba(20, 24, 22, 0.88);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.65rem 0.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-stat span {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
}

.hero-stat-lead strong { color: var(--gold-light); font-size: clamp(0.85rem, 3.5vw, 1.1rem); }

.trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.trust-check { color: var(--accent); font-weight: 800; flex-shrink: 0; }

.hero-visual { order: -1; }

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(2, 104, 179, 0.08);
}

.hero-image-frame img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(2, 104, 179, 0.12));
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero { padding: 2.5rem 0 3.5rem; }
    .hero-bg-image { display: none; }
    .hero-visual { order: unset; }
    .hero-actions-desktop {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }
    .hero-actions-desktop .btn { flex: 1; min-width: 200px; }
    .trust-row { display: flex; flex-wrap: wrap; gap: 1rem; }
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 2.5rem;
        align-items: center;
    }
    .hero-image-frame img { aspect-ratio: 4/3; }
}

/* ── SECTIONS ── */
.section { padding: 3rem 0; background: var(--bg); }
.section-dark { background: var(--bg-elevated); }

.section-heading { margin-bottom: 1.75rem; }
.section-heading h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.08;
    margin: 0 0 0.5rem;
}
.section-heading p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.section-heading p + p {
    margin-top: 0.65rem;
}
.section-heading.center p { margin-inline: auto; max-width: 52ch; }

#memberships .section-heading.center p {
    max-width: min(78ch, 100%);
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0.65rem auto 0;
    border-radius: 999px;
}

.section-heading.center h2::after { margin-inline: auto; }

.section-heading:not(.center) h2::after { margin-left: 0; }

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: -0.75rem 0 1rem;
}

.scroll-hint svg { color: var(--accent); animation: nudge-right 1.5s ease-in-out infinite; }

@keyframes nudge-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@media (min-width: 768px) {
    .scroll-hint { display: none; }
}

.section-cta {
    text-align: center;
    margin-top: 1.75rem;
}

@media (min-width: 768px) {
    .section { padding: 4.5rem 0; }
    .section-heading { margin-bottom: 2.25rem; }
}

/* Tighter vertical rhythm on the public home page */
body.home-page .section {
    padding: 2rem 0;
}

body.home-page .showcase-section {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
}

body.home-page .platform-split {
    margin-bottom: 0;
}

body.home-page .platform-section + .platform-section {
    padding-top: 0;
    border-top: none;
}

@media (min-width: 768px) {
    body.home-page .section {
        padding: 2.75rem 0;
    }

    body.home-page .showcase-section {
        padding-top: 2.5rem;
        padding-bottom: 2.25rem;
    }

    body.home-page .platform-section + .platform-section {
        padding-top: 0;
    }
}

/* ── FEATURE GRID — horizontal scroll on mobile ── */
.feature-scroll {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    scrollbar-width: none;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0, #000 1rem, #000 calc(100% - 1rem), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 1rem, #000 calc(100% - 1rem), transparent 100%);
}

.feature-scroll::-webkit-scrollbar { display: none; }

.feature-scroll .feature-tile {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
}

.feature-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-tile img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.feature-tile-body { padding: 1rem 1.1rem 1.2rem; }

.feature-tile-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.35rem;
    color: var(--accent);
}

.feature-tile-body p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .feature-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        gap: 1rem;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .feature-scroll .feature-tile { flex: unset; }
    .hero-stats { gap: 0.75rem; }
    .hero-stat { padding: 0.85rem 0.75rem; }
}

@media (min-width: 1024px) {
    .feature-scroll { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .feature-tile { transition: border-color 0.15s, transform 0.15s; }
    .feature-tile:hover {
        border-color: rgba(2, 104, 179, 0.35);
        transform: translateY(-3px);
    }
    .feature-tile-body { padding: 0.9rem 0.95rem 1.05rem; }
    .feature-tile-body h3 { font-size: 0.9rem; }
    .feature-tile-body p { font-size: 0.8rem; }
}

/* ── PLATFORM DEEP DIVE ── */
.platform-section {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.platform-split {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    margin-bottom: 3rem;
}

.platform-split > .platform-media {
    order: -1;
}

.platform-split > .platform-copy {
    order: 1;
    width: 100%;
}

.platform-media {
    width: min(100%, 360px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.platform-media img,
.platform-media video {
    width: 100%;
    height: auto;
    max-height: min(52.5vh, 390px);
    display: block;
    object-fit: cover;
}

.platform-media-wide {
    width: min(100%, 640px);
    max-height: 240px;
    margin: 0 auto 1.1rem;
    box-shadow: var(--shadow-lg);
}

.platform-media-wide img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: cover;
}

.platform-copy h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.platform-surface-intro {
    text-align: center;
    max-width: 58ch;
    margin: 0 auto 0.85rem;
}

.platform-surface-intro h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.85rem;
    line-height: 1.05;
}

.platform-surface-intro h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0.65rem auto 0;
    border-radius: 999px;
}

.platform-copy > p,
.platform-surface-intro > p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-list li {
    padding: 0.5rem 0 0.5rem 1.45rem;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.platform-list li:last-child { border-bottom: none; }

.platform-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.zone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 0;
}

.zone-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    transition: border-color 0.15s, transform 0.15s;
}

.club-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.club-feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.club-feature-media {
    min-height: 180px;
    background: var(--bg-elevated);
}

.club-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.club-feature-copy {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.club-feature-copy .zone-label {
    margin-bottom: 0.45rem;
}

.club-feature-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .club-feature-row {
        grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
        align-items: stretch;
        min-height: 200px;
    }

    .club-feature-media {
        min-height: 100%;
    }

    .club-feature-media img {
        min-height: 100%;
    }

    .club-feature-copy {
        padding: 1.35rem 1.75rem;
    }

    .club-feature-copy p {
        font-size: 0.98rem;
        line-height: 1.55;
    }
}

.zone-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.zone-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

@media (min-width: 640px) {
    .zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .platform-split {
        display: grid;
        grid-template-columns: 1fr minmax(280px, 360px);
        gap: 2.5rem;
        align-items: center;
    }

    .platform-split > .platform-media,
    .platform-split > .platform-copy {
        order: unset;
        width: auto;
    }

    .platform-split--media-start {
        grid-template-columns: minmax(280px, 360px) 1fr;
    }

    .platform-surface-intro {
        text-align: center;
        margin-inline: auto;
        max-width: 58ch;
        margin-bottom: 1rem;
    }

    .zone-card:hover {
        border-color: rgba(2, 104, 179, 0.35);
        transform: translateY(-2px);
    }
}

@media (min-width: 1024px) {
    .zone-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }

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

    .platform-split {
        grid-template-columns: 1fr minmax(300px, 380px);
    }

    .platform-split--media-start {
        grid-template-columns: minmax(300px, 380px) 1fr;
    }

    .platform-media-wide {
        width: min(100%, 720px);
        max-height: 220px;
        margin-bottom: 1.15rem;
    }

    .platform-media-wide img {
        max-height: 220px;
    }
}

/* ── TECHNOLOGY ── */
.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.tech-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.25rem 0 0.65rem;
}

.tech-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    text-align: left;
}

.tech-card li {
    padding: 0.35rem 0 0.35rem 1.35rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--muted);
}

.tech-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tech-card-expanded {
    text-align: left;
}

.tech-intro {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 1rem;
    text-align: left;
}

.tech-card-expanded h3 {
    text-align: left;
}

.tech-card-expanded .tech-photo,
.tech-card-expanded .tech-photo-app {
    margin-inline: 0;
}

.kiosk {
    width: 130px;
    height: 190px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 3px solid #333;
    padding: 8px;
    margin-inline: auto;
}

.kiosk-screen {
    background: linear-gradient(180deg, #1a2e14, #0d1509);
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.kiosk-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.kiosk-label { font-size: 0.62rem; color: var(--muted); }

.phone {
    width: 130px;
    height: 260px;
    background: #111;
    border-radius: 26px;
    border: 3px solid #333;
    padding: 10px 8px;
    margin-inline: auto;
}

.phone-screen {
    background: #0d120e;
    border-radius: 18px;
    height: 100%;
    padding: 0.85rem 0.65rem;
    text-align: left;
}

.phone-header {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.phone-card {
    background: var(--surface-2);
    border-radius: 8px;
    padding: 0.45rem;
    font-size: 0.62rem;
    margin-bottom: 0.45rem;
}

.phone-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.phone-bar span {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: 999px;
}

.phone-label { font-size: 0.55rem; color: var(--muted); }

.store-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-badge {
    background: #222;
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted);
    min-height: 36px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .tech-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .tech-card { padding: 2rem 1.5rem; }
}

/* ── LOCATIONS ── */
.location-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: 100%;
    flex: 1 1 auto;
    scroll-snap-align: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 0 0.85rem;
    position: relative;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.location-card:hover,
.location-card:focus-visible {
    border-color: rgba(2, 104, 179, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    outline: none;
}

.location-card-leader {
    border-color: rgba(2, 104, 179, 0.45);
    background: linear-gradient(180deg, rgba(2, 104, 179, 0.06) 0%, var(--surface) 42%);
}

.location-leader-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e8a48;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 1;
}

.location-card-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0.45rem;
}

.location-laval { background-image: image-set(url('/images/golfzon-us/locations/laval.webp?v=3') type('image/webp'), url('/images/golfzon-us/locations/laval.jpg?v=3') type('image/jpeg')); }
.location-west-island { background-image: image-set(url('/images/golfzon-us/locations/west-island.webp?v=3') type('image/webp'), url('/images/golfzon-us/locations/west-island.jpg?v=3') type('image/jpeg')); }
.location-saint-laurent { background-image: image-set(url('/images/golfzon-us/locations/downtown.webp?v=3') type('image/webp'), url('/images/golfzon-us/locations/downtown.jpg?v=3') type('image/jpeg')); }
.location-south-shore { background-image: image-set(url('/images/golfzon-us/locations/south-shore.webp?v=3') type('image/webp'), url('/images/golfzon-us/locations/south-shore.jpg?v=3') type('image/jpeg')); }
.location-terrebonne { background-image: image-set(url('/images/golfzon-us/locations/east-island.webp?v=3') type('image/webp'), url('/images/golfzon-us/locations/east-island.jpg?v=3') type('image/jpeg')); }

.location-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0.75rem 0.35rem;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
}

.location-card-goal {
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0 0.75rem 0.45rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.location-card .progress-bar {
    margin: 0 0.75rem 0.45rem;
    background: var(--surface-2);
}

.location-card-stats {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0.75rem 0.35rem;
    line-height: 1.2;
}

.location-card-action {
    display: inline-block;
    margin: 0 auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.location-card:hover .location-card-action,
.location-card:focus-visible .location-card-action {
    color: var(--accent);
}

@media (min-width: 1024px) {
    .location-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.75rem;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        justify-content: center;
    }

    .location-card {
        flex: unset;
        min-width: 0;
        padding-bottom: 0.85rem;
    }

    .location-card-image {
        height: 120px;
    }

    .location-card-name {
        font-size: 0.82rem;
    }
}

/* ── MODAL ── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.modal-panel {
    position: relative;
    width: min(100%, 420px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.35rem 1.5rem;
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 2rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
}

.modal-panel h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 2rem 0.45rem 0;
    line-height: 1.15;
}

.modal-sub {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0 0 1.25rem;
}

.modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: var(--touch);
    height: var(--touch);
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover,
.modal-close:focus-visible {
    color: var(--text);
    background: var(--surface-2);
    outline: none;
}

.location-vote-form .form-group {
    margin-bottom: 1rem;
}

#location-vote-suggested-wrap[hidden] {
    display: none !important;
}

body.modal-open {
    overflow: hidden;
}

.memberships-play {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.memberships-play-btn {
    min-width: 14rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.memberships-play-emoji {
    font-size: 1.45em;
    line-height: 1;
    transform: translateY(0.02em);
}

.modal--swing {
    z-index: 420;
}

.modal-panel--swing {
    width: min(100%, 920px);
    max-height: calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    padding: 1.1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0c1410;
    border-color: rgba(201, 138, 0, 0.28);
}

.modal-panel--swing .swing-modal-header {
    flex-shrink: 0;
    padding-right: 2.5rem;
    margin-bottom: 0.65rem;
}

.modal-panel--swing .swing-modal-header h2 {
    color: #f3f6f4;
    margin: 0 0 0.3rem;
}

.modal-panel--swing .modal-sub {
    color: #a8b5ad;
    margin: 0;
}

.modal-panel--swing .modal-close {
    color: #a8b5ad;
}

.modal-panel--swing .modal-close:hover,
.modal-panel--swing .modal-close:focus-visible {
    color: #f3f6f4;
    background: rgba(255, 255, 255, 0.08);
}

.swing-game-frame {
    width: 100%;
    flex: 1 1 auto;
    min-height: min(68dvh, 560px);
    height: min(68dvh, 560px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #0c1410;
}

@media (max-width: 640px) {
    .modal-panel--swing {
        padding: 0.85rem;
    }

    .swing-game-frame {
        min-height: min(62dvh, 480px);
        height: min(62dvh, 480px);
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.memberships-cap-note {
    margin: 1.25rem auto 0;
    max-width: min(78ch, 100%);
    text-align: center;
    font-weight: 700;
}

.memberships-howto {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
}

.memberships-policies {
    margin: 1rem 0 0;
    font-size: 0.92rem;
}

.memberships-policies a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.memberships-policies a:hover {
    color: var(--accent);
}

.howto-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.howto-video-icon {
    width: 1.05em;
    height: 1.05em;
    flex-shrink: 0;
}

.modal--video {
    z-index: 420;
}

.modal-panel--video {
    width: min(100%, 960px);
    max-height: calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    padding: 1.1rem;
    background: #0c1410;
    border-color: rgba(201, 138, 0, 0.28);
    overflow: hidden;
}

.modal-panel--video .modal-close {
    color: #a8b5ad;
    z-index: 2;
}

.modal-panel--video .modal-close:hover,
.modal-panel--video .modal-close:focus-visible {
    color: #f3f6f4;
    background: rgba(255, 255, 255, 0.08);
}

.howto-video-player {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 4rem);
    border-radius: var(--radius);
    background: #000;
}

@media (max-width: 600px) {
    .modal-panel--video {
        padding: 0.65rem;
    }
}

.progress-bar {
    height: 8px;
    background: var(--surface-2);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar.sm { height: 5px; }

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6a9e2a, var(--accent));
    border-radius: 999px;
    transition: width 0.5s ease;
}

.section-dark .progress-bar {
    background: rgba(255, 255, 255, 0.08);
}

/* ── PRICING ── */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 1180px;
    margin-inline: auto;
    overflow: visible;
    padding-top: 0.75rem;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.35rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card-deposit {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-deposit .plan-card-top {
    flex-shrink: 0;
}

.pricing-card-deposit .plan-desc {
    margin-bottom: 1rem;
}

.pricing-card-deposit .plan-benefits {
    margin-bottom: 0;
}

.pricing-card-deposit .plan-benefit-spacer {
    visibility: hidden;
}

.pricing-card-deposit .plan-card-actions {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 1rem;
}

.pricing-card-deposit .plan-card-actions .btn {
    margin-top: 0;
}

.pricing-card-deposit .plan-card-notes {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Reserve room for up to 2 footnote lines so CTAs stay level across EN/FR */
    min-height: 4.5rem;
    margin-top: 0.35rem;
}

.pricing-card-deposit .plan-card-notes .plan-value-note {
    margin-top: 0;
}

.pricing-card-deposit .plan-card-notes .plan-value-note + .plan-value-note {
    margin-top: 0.15rem;
}

.pricing-card-deposit > .plan-value-note {
    flex-shrink: 0;
    min-height: 0;
}

.pricing-card-deposit > .plan-value-note + .plan-value-note {
    margin-top: 0.15rem;
}

.plan-value-note-compare {
    font-size: 0.65rem;
    opacity: 0.92;
}

.plan-value-note {
    margin: 0.35rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.35;
}

.plan-value-note-muted {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
}

.plan-value-note-spacer {
    visibility: hidden;
    margin: 0.35rem 0 0;
}

.pricing-card-popular .plan-value-note {
    color: var(--accent);
}

.pricing-card-popular .plan-value-note-muted {
    color: var(--muted);
    font-weight: 400;
}

.plan-value-note-vip {
    color: var(--gold, #c9a227);
}

.pricing-card-deposit .btn {
    margin-top: 0;
}

.pricing-card-deposit .plan-card-footer {
    flex: 1 1 auto;
    padding-top: 0;
    margin-top: -0.75rem;
}

.pricing-card-deposit .plan-card-footer-after-price {
    margin-top: 0.85rem;
    padding-top: 0.25rem;
}

.pricing-card-deposit .plan-after-launch {
    margin-top: 0;
}

.pricing-grid-deposit {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.plan-after-launch {
    margin: 0.85rem 0 0;
    text-align: center;
}

.plan-after-launch-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.2rem;
}

.pricing-card > .plan-price {
    text-align: center;
    margin: 0.15rem 0 0.5rem;
}

.plan-price-after {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent-light);
    margin-bottom: 0.35rem;
}

.plan-price-after sup {
    font-size: 1.35rem;
    vertical-align: super;
}

.plan-price-period {
    font-size: 0.42em;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.plan-after-launch-features {
    font-size: 0.68rem;
    line-height: 1.4;
    color: var(--muted);
    margin: 0;
}

.plan-after-launch-benefits {
    list-style: none;
    padding: 0;
    margin: 0.15rem 0 0;
    text-align: left;
}

.plan-after-launch-benefits li {
    padding: 0.18rem 0 0.18rem 1.1rem;
    position: relative;
    font-size: 0.68rem;
    line-height: 1.28;
    color: var(--muted);
}

.pricing-card-deposit .plan-after-launch-benefits {
    margin-top: 0.35rem;
}

.pricing-card-deposit .plan-after-launch-benefits li {
    padding: 0.4rem 0 0.4rem 1.45rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text);
}

.pricing-card-deposit .plan-after-launch-benefits li::before {
    font-size: 0.88rem;
    color: var(--accent);
}

.pricing-card-deposit.pricing-card-popular .plan-after-launch-benefits li::before {
    color: var(--gold);
}

.plan-after-launch-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 800;
    font-size: 0.62rem;
}

.pricing-card-vip {
    border-color: rgba(224, 173, 26, 0.45);
    background: linear-gradient(180deg, rgba(224, 173, 26, 0.08) 0%, var(--surface) 45%);
    height: auto;
}

.pricing-card-vip .plan-card-top {
    flex-shrink: 0;
}

.pricing-card-vip .plan-card-actions {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 0.85rem;
}

.pricing-card-vip .plan-card-actions .btn {
    margin-top: 0;
}

.pricing-card-vip .plan-card-footer {
    flex-shrink: 0;
    padding-top: 0;
    margin-top: -0.75rem;
}

.pricing-card-vip .plan-card-footer .plan-benefits {
    margin-bottom: 0;
}

.pricing-card-popular {
    border: 1px solid var(--accent);
    background: linear-gradient(180deg, rgba(26, 61, 46, 0.1) 0%, rgba(26, 61, 46, 0.03) 38%, var(--surface) 62%);
    box-shadow:
        0 0 0 1px var(--accent),
        0 10px 36px rgba(26, 61, 46, 0.16);
    z-index: 2;
}

.pricing-card-popular .plan-name {
    padding-inline: 4.5rem;
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #1a241c;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 1.05rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(201, 138, 0, 0.35);
}

.popular-badge--soft {
    background: linear-gradient(180deg, #e8efe9 0%, #d5e0d7 100%);
    color: #3d5246;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(26, 61, 46, 0.12);
    border: 1px solid rgba(26, 61, 46, 0.12);
}

.plan-savings-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: var(--accent);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(26, 61, 46, 0.28);
    line-height: 1;
}

.plan-price-with-compare {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem 0.65rem;
}

.plan-price-compare {
    position: relative;
    display: inline-block;
    font-size: 0.48em;
    font-weight: 700;
    color: var(--muted);
    line-height: 1;
    text-decoration: none;
}

.plan-price-compare::after {
    content: '';
    position: absolute;
    left: -4%;
    top: 50%;
    width: 108%;
    height: 0.12em;
    background: #c0392b;
    transform: rotate(-18deg);
    transform-origin: center;
    pointer-events: none;
    border-radius: 1px;
}

.plan-price-compare .plan-price-period {
    font-size: 0.55em;
}

.plan-price-compare sup {
    font-size: 0.55em;
    vertical-align: super;
}

.plan-price-current {
    display: inline-flex;
    align-items: baseline;
}

.limited-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #c0392b;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 1;
}

.plan-footnote {
    margin: 0.65rem 0 0;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--muted);
    text-align: center;
}

.plan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.4rem;
    text-align: center;
}

.plan-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.plan-price sup { font-size: 1.35rem; vertical-align: super; }
.plan-price.gold { color: var(--gold-light); }

.plan-deposit {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0 0 0.45rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-desc {
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 0.35rem;
    line-height: 1.45;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
}

.plan-benefits li {
    padding: 0.4rem 0 0.4rem 1.45rem;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.4;
}

.plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.pricing-card-vip .plan-benefits li::before { color: var(--gold-light); }

.pricing-card-popular .plan-benefits li::before { color: var(--gold); }

.pricing-card-popular .plan-name {
    color: var(--accent);
}

.pricing-card-popular .plan-price {
    color: var(--accent);
}

.plan-value-line {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0.15rem 0 0.75rem;
}

.memberships-spots-counter {
    margin: 1.25rem 0 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 820px;
    margin-inline: auto;
}

.pricing-grid-two .pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-prelaunch-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card { padding: 1.75rem 1.35rem; }
}

@media (min-width: 1024px) {
    .pricing-grid {
        gap: 1rem;
    }

    .pricing-grid-deposit {
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.35rem 1rem 1.25rem;
    }

    .pricing-card-deposit .plan-after-launch-benefits li {
        font-size: 0.78rem;
        line-height: 1.4;
        padding: 0.32rem 0 0.32rem 1.25rem;
    }

    .pricing-card-deposit .plan-after-launch-benefits li::before {
        font-size: 0.78rem;
    }

    .pricing-card-vip .plan-benefits li {
        font-size: 0.78rem;
        line-height: 1.4;
        padding: 0.32rem 0 0.32rem 1.25rem;
    }

    .pricing-card-vip .plan-benefits li::before {
        font-size: 0.78rem;
    }

    .plan-price {
        font-size: clamp(2rem, 3.5vw, 2.65rem);
    }

    .plan-price-after {
        font-size: clamp(2rem, 3.5vw, 2.65rem);
    }

    .plan-price-after sup {
        font-size: 1rem;
    }

    .plan-desc {
        font-size: 0.74rem;
        line-height: 1.32;
        margin-bottom: 0.25rem;
    }

    .plan-after-launch-benefits li {
        font-size: 0.62rem;
        line-height: 1.25;
        padding: 0.14rem 0 0.14rem 1rem;
    }

    .plan-benefits {
        margin-bottom: 1rem;
    }

    .plan-benefits li {
        font-size: 0.78rem;
        padding: 0.32rem 0 0.32rem 1.25rem;
    }

    .limited-badge {
        font-size: 0.55rem;
        padding: 0.25rem 0.65rem;
    }

    .popular-badge {
        font-size: 0.62rem;
        padding: 0.32rem 0.85rem;
    }
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.service-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border);
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tile span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 0.65rem 0.65rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.85rem;
    }
    .service-tile span { font-size: 0.78rem; }
}

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 0.6rem; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.1rem;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-height: var(--touch);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 1.1rem 1rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ── FOOTER CLUSTER ── */
.footer-cluster {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.footer-cluster-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cluster-col h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.65rem;
}

.cluster-col p { color: var(--muted); font-size: 0.88rem; margin: 0 0 1rem; line-height: 1.5; }

.mini-progress { margin-bottom: 0.75rem; }

.mini-progress-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.mini-progress-top span:last-child { color: var(--accent); }

.loop-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.loop-form input,
.loop-form select {
    width: 100%;
    min-height: var(--touch);
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 16px; /* prevents iOS zoom */
    -webkit-appearance: none;
    appearance: none;
}

.loop-form input::placeholder { color: var(--muted); }

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.interest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border: none;
    padding: 0;
    margin: 0;
}

.interest-grid label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--muted);
    cursor: pointer;
    min-height: 36px;
}

.interest-grid input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.phone-mockup {
    width: min(200px, 70vw);
    background: #111;
    border-radius: 32px;
    border: 3px solid #333;
    padding: 12px 10px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.phone-notch {
    width: 56px;
    height: 5px;
    background: #333;
    border-radius: 999px;
    margin: 0 auto 0.75rem;
}

.phone-content { padding: 0 0.5rem 0.75rem; }

.phone-app-header {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.phone-res-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.phone-res-label {
    font-size: 0.62rem;
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.phone-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.phone-features li {
    font-size: 0.68rem;
    color: var(--muted);
    padding: 0.3rem 0 0.3rem 1rem;
    position: relative;
    line-height: 1.4;
}

.phone-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.cluster-phone { text-align: center; }

@media (min-width: 768px) {
    .form-row { flex-direction: row; }
    .form-row > * { flex: 1; }
}

@media (min-width: 1024px) {
    .footer-cluster-grid {
        display: grid;
        grid-template-columns: 1.35fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    .footer-cluster-grid-single {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
}

/* ── SITE FOOTER ── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem 0 calc(1.25rem + var(--safe-bottom));
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--touch);
    min-height: var(--touch);
    transition: color 0.15s;
}

.footer-social a:hover { color: var(--accent); }

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
    max-width: 52rem;
}

.footer-nav a {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    text-decoration: none;
    min-height: var(--touch);
    display: inline-flex;
    align-items: center;
}

.footer-nav a:hover {
    color: var(--accent);
}

@media (min-width: 480px) {
    .footer-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-tagline { color: var(--muted); font-size: 0.88rem; margin: 0.5rem 0; }

.footer-wordmark {
    display: inline-grid;
    text-decoration: none;
    line-height: 0;
    justify-items: start;
}

.footer-wordmark img,
.footer-logo {
    grid-area: 1 / 1;
    display: block;
    width: min(320px, 100%);
    height: auto;
}

.footer-logo--on-dark {
    opacity: 0;
}

[data-theme="dark"] .footer-logo--on-light {
    opacity: 0;
}

[data-theme="dark"] .footer-logo--on-dark {
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-wordmark img,
    .footer-logo {
        width: min(400px, 100%);
    }
}
.footer-email {
    color: var(--accent);
    font-size: 0.88rem;
    text-decoration: none;
    min-height: var(--touch);
    display: inline-flex;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    min-height: var(--touch);
    display: inline-flex;
    align-items: center;
}

.footer-bottom {
    padding-top: 1rem;
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-nav {
        flex: 1 1 auto;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: end;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.35rem;
        flex-shrink: 0;
    }
}

/* ── FORM / CHECKOUT / DASHBOARD PAGES ── */
.page-hero { padding: 2rem 0 3rem; }
.page-hero-dashboard { padding: 1rem 0 2rem; }

.reserve-plan-summary {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.reserve-plan-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.reserve-plan-name {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reserve-plan-price {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.reserve-plan-change {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.reserve-plan-change summary {
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    list-style: none;
}

.reserve-plan-change summary::-webkit-details-marker { display: none; }

.reserve-plan-options {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.reserve-plan-options a {
    display: block;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.reserve-plan-options a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.reserve-plan-location {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.reserve-plan-change-grid .reserve-plan-grid-wrap {
    margin-top: 1rem;
}

.reserve-plan-change-grid .pricing-compare-cta,
.reserve-plan-change-grid .pricing-note {
    display: none;
}

.pay-back-link {
    margin: 0 0 1rem;
}

.pay-back-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.pay-back-link a:hover {
    text-decoration: underline;
}

.portal-payment-card {
    margin-bottom: 2rem;
}

.portal-payment-card .btn {
    margin-top: 1rem;
}

.portal-payment-cta {
    margin: 0.75rem 0 1rem;
    width: 100%;
}

.pricing-card-current {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-disabled {
    opacity: 0.72;
    cursor: default;
    pointer-events: none;
}

.auth-divider {
    margin: 1.25rem 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label { font-size: 0.88rem; font-weight: 600; }

.form-group input,
.form-group select {
    min-height: var(--touch);
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 16px;
}

.phone-field {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
}

.phone-country-select {
    flex: 0 0 auto;
    width: min(100%, 11.5rem);
    min-width: 8.5rem;
    padding-right: 2rem;
}

.phone-national-input {
    flex: 1 1 auto;
    min-width: 0;
}

@media (max-width: 520px) {
    .phone-field {
        flex-direction: column;
    }

    .phone-country-select {
        width: 100%;
    }
}

.field-error, .validation-summary { color: #ff6b6b; font-size: 0.85rem; }

.auth-form { max-width: 420px; margin-inline: auto; }
.register-other-fields {
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border: 1px dashed var(--border);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
}
.register-other-fields .form-group:last-child { margin-bottom: 0; }
.auth-switch { margin-top: 1.25rem; text-align: center; color: var(--muted); font-size: 0.92rem; }
.auth-switch a { color: var(--accent); font-weight: 600; }
.auth-notice {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: rgba(0, 102, 204, 0.08);
    color: var(--text);
    font-size: 0.92rem;
}
.auth-notice-error { background: rgba(255, 107, 107, 0.12); color: #c0392b; }
.auth-form .validation-summary-valid { display: none; }
.auth-form .validation-summary-errors { display: block; }
.dev-login-picker {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border: 1px dashed rgba(2, 104, 179, 0.45);
    border-radius: 10px;
    background: rgba(2, 104, 179, 0.06);
}
.dev-login-picker label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}
.dev-role-select {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: var(--surface);
    color: var(--text);
}
.mobile-logout-form { margin-top: 0.75rem; }

.admin-header {
    background: #111;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: visible;
    position: relative;
    z-index: 400;
}
.admin-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    flex-wrap: nowrap;
    overflow: visible;
}
.admin-brand {
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}
.admin-nav {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem 1.1rem;
    min-width: 0;
}
.admin-nav a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.admin-nav a:hover { color: #fff; }

.admin-profile-menu {
    position: relative;
    flex-shrink: 0;
    margin-left: 0.35rem;
}
.admin-profile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--touch);
    height: var(--touch);
    padding: 0;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.admin-profile-trigger:hover,
.admin-profile-menu.is-open .admin-profile-trigger {
    border-color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.14);
}
.admin-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}
.admin-profile-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}
.admin-profile-dropdown {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 240px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.45rem 0;
    z-index: 500;
}
.admin-profile-menu.is-open .admin-profile-dropdown {
    display: block;
}
.admin-profile-dropdown-name {
    margin: 0;
    padding: 0.55rem 1rem 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
.admin-profile-dropdown a,
.admin-profile-logout button {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    background: none;
    color: var(--text);
    text-align: left;
    text-decoration: none;
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
}
.admin-profile-dropdown a:hover,
.admin-profile-logout button:hover {
    background: rgba(2, 104, 179, 0.08);
    color: var(--accent);
}
.admin-profile-logout {
    margin: 0;
    border-top: 1px solid var(--border);
}
.admin-profile-logout button {
    color: #c0392b;
    font-weight: 600;
}
.admin-profile-logout button:hover {
    background: rgba(192, 57, 43, 0.08);
    color: #c0392b;
}

/* Profile menu on public site header (light background) */
.site-header .admin-profile-trigger {
    border-color: rgba(0, 0, 0, 0.14);
    background: rgba(0, 0, 0, 0.04);
}
.site-header .admin-profile-trigger:hover,
.site-header .admin-profile-menu.is-open .admin-profile-trigger {
    border-color: var(--accent);
    background: rgba(2, 104, 179, 0.08);
}
.site-header .admin-profile-avatar-fallback {
    color: var(--accent);
}
.site-header .admin-profile-menu {
    margin-left: 0;
}

[data-theme="dark"] .site-header .admin-profile-trigger {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .site-header .admin-profile-trigger:hover,
[data-theme="dark"] .site-header .admin-profile-menu.is-open .admin-profile-trigger {
    border-color: var(--accent);
    background: var(--accent-dim);
}

[data-theme="dark"] .register-other-fields {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .pricing-card-popular {
    background: linear-gradient(180deg, rgba(30, 138, 72, 0.22) 0%, rgba(30, 138, 72, 0.08) 38%, var(--surface) 62%);
    box-shadow:
        0 0 0 1px #1e8a48,
        0 10px 36px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .founder-showcase-tile {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .toast {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

.mobile-nav-profile {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.mobile-nav-profile-label {
    margin: 0 1rem 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.profile-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.profile-page-header h1 { margin: 0; }
.profile-page-header-inline {
    margin-top: -0.35rem;
    margin-bottom: 1.25rem;
}
.profile-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}
.profile-nav-links a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
}
.profile-photo-card {
    max-width: 420px;
    margin-inline: auto;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}
.profile-photo-preview {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.profile-photo-preview-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 104, 179, 0.12);
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
}
.profile-remove-photo { margin-top: 0.75rem; }
.profile-section {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 2rem;
}
.profile-section h2,
.profile-section h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
}
.form-card h2,
.form-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
}
.profile-section-in-card {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.profile-login-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
.profile-login-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.profile-back-link { margin-top: 1.5rem; }
.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
}

.admin-main { padding: 2rem 0 3rem; }
.admin-page-header { margin-bottom: 1.5rem; }
.admin-page-header h1 { margin-bottom: 0.35rem; }
.admin-page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.admin-kpi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}
.admin-kpi-label {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}
.admin-kpi-card strong { font-size: 1.5rem; }
.admin-section { margin-bottom: 2rem; }
.admin-section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}
.admin-table-wrap { overflow-x: auto; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.admin-table th,
.admin-table td {
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.92rem;
}
.admin-table th {
    background: rgba(0,0,0,0.03);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-form { max-width: 720px; margin-inline: auto; }
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.admin-flash {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: rgba(0, 160, 80, 0.12);
    color: #0a7a3f;
}

.portal-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.portal-header-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.portal-membership-card { margin-bottom: 1.5rem; }
.social-login { margin-top: 1rem; }
.social-login form { margin-bottom: 0.5rem; }
.slot-option { display: block; margin-bottom: 0.35rem; }
.inline-form { display: inline; }
.btn-sm { min-height: 32px; padding: 0.35rem 0.75rem; font-size: 0.8rem; }

.success-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 520px;
    margin-inline: auto;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.dashboard-side-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portal-vote-stats-intro {
    margin: 0 0 0.85rem;
}

.portal-vote-stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portal-vote-stat-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
}

.portal-vote-stat-row.is-selected {
    border-color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(2, 104, 179, 0.15);
}

.portal-vote-stat-main {
    flex: 0 1 38%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.35rem;
}

.portal-vote-stat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-vote-stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.portal-vote-stat-badge-you {
    background: rgba(15, 23, 42, 0.08);
    color: var(--text);
}

.portal-vote-stat-track {
    flex: 1 1 0;
    min-width: 48px;
}

.portal-vote-stat-row .progress-bar {
    margin: 0;
}

.portal-vote-stat-pct {
    flex: 0 0 auto;
    min-width: 2.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
    white-space: nowrap;
}

.portal-vote-stat-pct--muted {
    flex: 1 1 auto;
    min-width: 0;
    text-align: right;
    color: var(--muted);
    font-weight: 600;
}

.dashboard-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.dashboard-card--collapsible {
    padding: 0;
}

.dashboard-card-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 1.25rem;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.dashboard-card-toggle h3 {
    margin: 0;
    flex: 1 1 auto;
}

.dashboard-card-chevron {
    flex: 0 0 auto;
    display: inline-flex;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.dashboard-card--collapsible.is-collapsed .dashboard-card-chevron {
    transform: rotate(-90deg);
}

.dashboard-card-body {
    padding: 0 1.25rem 1.25rem;
}

.dashboard-card--collapsible.is-collapsed .dashboard-card-body {
    display: none;
}

.portal-identity-card.is-verified {
    border-color: rgba(46, 77, 61, 0.35);
}

.portal-identity-card.is-pending-club {
    border-color: rgba(2, 104, 179, 0.35);
}

.portal-identity-status--pending {
    color: #0268b3;
}

.portal-identity-check--pending {
    background: rgba(2, 104, 179, 0.12);
    color: #0268b3;
}

.portal-identity-pending-note {
    margin-top: 0.65rem;
    max-width: 42rem;
}

.member-standing-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.65rem;
    margin-top: 1rem;
}

.member-standing-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.member-standing-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.member-standing-badge--green {
    background: rgba(46, 77, 61, 0.14);
    color: #2e4d3d;
    border: 1px solid rgba(46, 77, 61, 0.28);
}

.member-standing-badge--yellow {
    background: rgba(180, 130, 0, 0.14);
    color: #8a6200;
    border: 1px solid rgba(180, 130, 0, 0.35);
}

.member-standing-badge--red {
    background: rgba(180, 35, 24, 0.12);
    color: #9b2318;
    border: 1px solid rgba(180, 35, 24, 0.28);
}

.member-standing-help {
    position: relative;
    margin-left: 0.15rem;
}

.member-standing-help-trigger {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    list-style: none;
}

.member-standing-help-trigger::-webkit-details-marker {
    display: none;
}

.member-standing-help-trigger:hover,
.member-standing-help[open] .member-standing-help-trigger {
    color: #0268b3;
    border-color: rgba(2, 104, 179, 0.35);
    background: rgba(2, 104, 179, 0.08);
}

.member-standing-tooltip {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 20;
    width: min(22rem, calc(100vw - 2rem));
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.member-standing-tooltip-title {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.member-standing-tooltip-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.member-standing-tooltip-list li {
    display: grid;
    gap: 0.35rem;
}

.member-standing-tooltip-list li span:last-child {
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--text);
}

[data-theme="dark"] .member-standing-badge--green {
    background: rgba(46, 77, 61, 0.28);
    color: #b8d4c4;
}

[data-theme="dark"] .member-standing-badge--yellow {
    background: rgba(180, 130, 0, 0.22);
    color: #f0d48a;
}

[data-theme="dark"] .member-standing-badge--red {
    background: rgba(180, 35, 24, 0.22);
    color: #f0a59d;
}

.admin-users-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1rem 0 1.25rem;
    align-items: center;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    margin-left: 0.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #0268b3;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.admin-status {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
}

.admin-status--approved {
    color: var(--accent);
}

.admin-status--pending {
    color: #0268b3;
}

.admin-status--muted {
    color: var(--muted);
    font-weight: 500;
}

.admin-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.admin-inline-form {
    display: inline;
    margin: 0;
}

.admin-user-identity-panel {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.admin-user-identity-panel h2 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.admin-dl {
    display: grid;
    grid-template-columns: minmax(8rem, auto) 1fr;
    gap: 0.45rem 1rem;
    margin: 0 0 1rem;
}

.admin-dl dt {
    color: var(--muted);
    font-weight: 600;
}

.admin-dl dd {
    margin: 0;
}

.admin-approve-form {
    margin-top: 0.5rem;
}

.admin-flash.success {
    color: var(--accent);
    font-weight: 600;
}

.admin-flash.error {
    color: #b42318;
    font-weight: 600;
}

.portal-identity-status {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.35rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.98rem;
}

.portal-identity-check {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(46, 77, 61, 0.12);
    color: var(--accent);
    flex-shrink: 0;
}

.portal-identity-form {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.portal-identity-processing {
    margin: 0.75rem 0 0;
}

.portal-identity-dev-reset {
    margin-top: 0.75rem;
}

.portal-identity-dev-actions {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portal-identity-dev-action {
    margin: 0;
}

.portal-identity-dev-reset-btn {
    color: var(--muted);
    border-color: rgba(0, 0, 0, 0.12);
    font-size: 0.75rem;
}

.portal-identity-dev-reset-btn:hover {
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.22);
}

.referral-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.referral-stats {
    margin: 0.85rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.referral-stat-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.35;
}

.referral-stat-row dt {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
}

.referral-stat-row dd {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.referral-stat-row--earned dd {
    color: var(--accent);
}

.referral-reward-note {
    margin: 0.65rem 0 0;
    line-height: 1.45;
}

.referral-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.75rem 0 0.15rem;
}

.referral-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.referral-share-btn svg {
    display: block;
}

.referral-share-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-dim);
}

.referral-stat-btn {
    display: inline;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(2, 104, 179, 0.35);
    text-underline-offset: 0.12em;
}

.referral-stat-btn:hover {
    color: var(--accent);
}

.referral-invite-form {
    margin-top: 0.5rem;
}

.referral-invite-form textarea {
    width: 100%;
    min-height: 4.5rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    resize: vertical;
}

.referral-invite-submit {
    margin-top: 0.35rem;
}

.referral-people-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.referral-people-list li {
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
}

.referral-person-email,
.referral-person-date {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.referral-modal {
    z-index: 400;
}

@media (min-width: 480px) {
    .referral-box { flex-direction: row; }
}

.referral-box input {
    flex: 1;
    min-height: var(--touch);
    padding: 0.65rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.85rem;
}

.referral-copy-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.85rem;
    cursor: pointer;
}

.referral-copy-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.referral-copy-icon {
    flex-shrink: 0;
    color: var(--muted);
}

.referral-copy-trigger:hover .referral-copy-icon {
    color: var(--accent);
}

.referral-copy-trigger:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.referral-copy-trigger input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.portal-vote-form { margin-top: 1rem; }
.portal-vote-suggested-wrap[hidden] { display: none !important; }
.portal-memberships-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.portal-memberships-section .section-heading { margin-bottom: 1.5rem; }

.location-card.selected { border-color: var(--accent); }

.alert.success {
    background: var(--accent-dim);
    border: 1px solid rgba(2, 104, 179, 0.35);
    color: var(--accent);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .page-hero { padding: 3rem 0 4.5rem; }
    .page-hero-dashboard { padding: 1.25rem 0 2.5rem; }
    .form-card { padding: 2rem; }
    .dashboard-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    body.home-page { padding-bottom: 0; }
}

/* ── PAGE VARIANTS ── */
body.page-inner {
    padding-bottom: calc(1.25rem + var(--safe-bottom));
}

body.page-inner .mobile-cta-bar,
body.simulator-page .mobile-cta-bar {
    display: none !important;
}

body.simulator-page {
    padding-bottom: calc(1.25rem + var(--safe-bottom));
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.08;
    margin: 0 0 0.5rem;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 2rem 0 1rem;
}

.muted { color: var(--muted); }
.muted.small, .small { font-size: 0.82rem; }

.btn-secondary {
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.checkbox-group {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.checkbox-group legend {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0 0.35rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    font-size: 0.88rem;
    color: var(--muted);
    cursor: pointer;
}

.checkbox-group input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.location-rankings {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.location-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.location-header strong {
    color: var(--accent);
    font-size: 1rem;
}

.dashboard-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.75rem;
    color: var(--accent);
}

.dashboard-card p { margin: 0.35rem 0; font-size: 0.92rem; line-height: 1.5; }

.toast {
    position: fixed;
    bottom: calc(var(--cta-h) + var(--safe-bottom) + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 600;
    background: var(--surface);
    border: 1px solid rgba(2, 104, 179, 0.35);
    color: var(--accent);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-width: min(92vw, 28rem);
    text-align: center;
    white-space: normal;
    line-height: 1.35;
}

body.page-inner .toast { bottom: calc(1.25rem + var(--safe-bottom)); }

.toast.is-visible { transform: translateX(-50%) translateY(0); }

.toast.toast--hero-hint {
    bottom: auto;
    top: calc(var(--header-offset) + 1rem);
    transform: translateX(-50%) translateY(-120%);
}

.toast.toast--hero-hint.is-visible {
    transform: translateX(-50%) translateY(0);
}

.gz-hero-mute.is-hinting {
    animation: gz-mute-hint-pulse 1.1s ease-in-out 3;
    border-color: #fff;
    background: rgba(2, 104, 179, 0.85);
}

@keyframes gz-mute-hint-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

@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;
    }
}

.hero-image-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.65rem;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-golfzon-logo {
    height: 18px;
    width: auto;
    opacity: 0.85;
}

.tech-photo {
    max-width: 220px;
    margin-inline: auto;
}

.tech-photo-app {
    max-width: 180px;
}

.tech-photo-app img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.tech-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.tech-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0.75rem 0 0;
    line-height: 1.45;
}

.location-desc {
    margin: 0.35rem 0 0 !important;
    font-size: 0.72rem !important;
    color: var(--muted);
    line-height: 1.4;
}

.pricing-note {
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.pricing-footnote {
    margin-top: 0.5rem;
}

.cluster-intro {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    min-height: var(--touch);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-phone:hover { color: var(--accent); }

.legal-page .legal-updated {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.legal-body {
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.rules-callout {
    margin: 0 0 2rem;
    padding: 1.1rem 1.25rem;
    border-left: 3px solid var(--accent);
    background: var(--accent-dim);
}

.rules-callout h2 {
    margin: 0 0 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rules-callout .legal-body {
    margin-bottom: 0;
}

.rules-section {
    margin-bottom: 1.75rem;
}

.rules-section h2 {
    margin: 0 0 0.65rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

.rules-html ul {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
}

.rules-html li {
    margin: 0.35rem 0;
}

.rules-html p {
    margin: 0 0 0.65rem;
}

.pricing-compare-cta {
    margin-top: 1.75rem;
}

.pricing-compare-btn {
    background: #fff;
    color: #111;
    border-color: var(--accent);
}

.pricing-compare-btn:hover {
    background: #fff;
    color: #111;
    border-color: var(--accent-bright);
}

.memberships-compare-intro {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-inline: auto;
}

.memberships-compare-hero {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
}

.memberships-compare-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.08;
    margin: 0 0 0.5rem;
}

.memberships-compare-table-section {
    padding-top: 0.75rem;
}

.memberships-compare-table-section .memberships-compare-section-title {
    margin-bottom: 1rem;
}

.memberships-compare-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 1.5rem;
}

.memberships-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.memberships-compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.memberships-compare-table th,
.memberships-compare-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    vertical-align: top;
}

.memberships-compare-table th[scope="row"] {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-elevated);
    min-width: 11rem;
}

.memberships-compare-table thead th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--bg-elevated);
    color: var(--text);
}

.memberships-compare-table thead th.col-popular {
    background: rgba(30, 138, 72, 0.1);
    color: #1a7a40;
}

.memberships-compare-table thead th.col-vip,
.memberships-compare-table td.col-vip {
    background: rgba(224, 173, 26, 0.06);
}

.memberships-compare-table tbody tr:last-child th,
.memberships-compare-table tbody tr:last-child td {
    border-bottom: 1px solid var(--border);
}

.memberships-compare-table tfoot .compare-actions-row th,
.memberships-compare-table tfoot .compare-actions-row td {
    border-bottom: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    vertical-align: middle;
}

.memberships-compare-table tfoot .compare-actions-row th {
    background: var(--bg-elevated);
}

.memberships-compare-table tfoot td.col-popular {
    background: rgba(30, 138, 72, 0.06);
}

.compare-table-btn {
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 0.75rem 2.6rem;
    letter-spacing: 0.06em;
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.compare-table-btn:hover,
.compare-table-btn.is-animating,
.compare-table-btn.is-animating:hover {
    background: transparent;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    border-color: var(--accent);
}

.compare-table-btn:hover .btn-reserve-label,
.compare-table-btn.is-animating .btn-reserve-label {
    color: var(--accent);
}

.compare-footnote {
    margin: 0.75rem auto 0;
    max-width: 720px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--muted);
    text-align: center;
}

.memberships-compare-table td.compare-merged-cell {
    text-align: center;
    background: var(--surface);
    font-weight: 600;
}

.compare-col-badge {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #1e8a48;
}

.compare-col-badge-vip {
    color: #b8860b;
}

.compare-col-sub {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted);
    line-height: 1.3;
}

.compare-section-row th {
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--bg-elevated);
    padding-top: 1.15rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--border);
}

.compare-section-row:first-child th {
    padding-top: 0.85rem;
}

.memberships-detail-grid {
    display: grid;
    gap: 1.25rem;
}

.memberships-detail-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.memberships-detail-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.memberships-detail-popular {
    border-color: #1e8a48;
    box-shadow: 0 8px 28px rgba(30, 138, 72, 0.12);
}

.memberships-detail-vip {
    border-color: rgba(224, 173, 26, 0.45);
    background: linear-gradient(180deg, rgba(224, 173, 26, 0.08) 0%, var(--surface) 45%);
}

.memberships-detail-desc {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    font-size: 0.92rem;
}

.memberships-detail-pricing {
    display: grid;
    gap: 0.65rem;
    padding: 0.85rem 0;
    border-block: 1px solid var(--border);
    margin: 0.25rem 0 0.5rem;
}

.memberships-detail-pricing p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
}

.memberships-detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    width: 100%;
}

.memberships-detail-pricing strong {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.memberships-detail-pricing strong sup {
    font-size: 0.95rem;
}

.memberships-detail-block h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0.75rem 0 0.5rem;
}

.memberships-detail-card .showcase-list {
    margin-bottom: 0.5rem;
}

.memberships-detail-card .btn {
    margin-top: auto;
}

@media (min-width: 1024px) {
    .memberships-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}

.memberships-founder-showcase {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.founder-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.founder-showcase-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.founder-showcase-tile-vip {
    border-color: rgba(224, 173, 26, 0.35);
}

.founder-showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-showcase-tile span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0.85rem 0.85rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
    color: #fff;
}

.founder-showcase-cta {
    margin-top: 2rem;
}

.memberships-lounge-showcase {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.home-lounge-showcase {
    border-top: 1px solid var(--border);
}

.memberships-page-footnotes {
    padding-top: 0;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.lounge-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.lounge-showcase-tile {
    aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
    .lounge-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .founder-showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }

    .founder-showcase-tile span {
        font-size: 0.82rem;
    }
}
