/* ============================================================================
   PBMX — Club Reset legacy CSS (ported from hello-elementor-child 2026-05-05)
   ============================================================================
   Source: hello-elementor-child/assets/css/club-reset-v2.css
   
   Two changes from the source:
   1. Canonical Pantone hex values substituted (incorrect -> correct):
      #CF4520 -> #C24514 (Terracota Pantone 7585 C)
      #234434 -> #1E4B33 (Verde Profundo Pantone 5535 C)
      #CDDFD2 -> #DCEEE7 (Pale Mint Pantone 621 C)
      #2D6D3F -> #4C7A4E (Urban Grove Pantone 7736 C)
      #FDFDFC -> #F9F7F0 (Cream Pantone 7499 C)
   2. :root token block + @font-face blocks removed; design-system.css now
      owns those (with same --cr-* token names aliased to canonical Pantones).
   
   This file is loaded conditionally on /club-reset/ only.
   ============================================================================ */

/* ═══════════════════════════════════════════════════════════════════════════
   Club Reset CDMX — Landing Page Styles (REWRITE v2)
   Design: 1920px desktop (1440px container), 520px mobile
   Colors: Pantone-derived — Terracotta, Dark Green, Sage, Medium Green, Cream
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Font Faces ──────────────────────────────────────────────────────────── */






/* ─── CSS Custom Properties ───────────────────────────────────────────────── */
/* PBMX rebuild 2026-05-05: legacy :root removed; tokens are
   defined in design-system.css and resolve to canonical Pantones.

:root {
    --cr-terracotta: #C24514;
    --cr-dark-green: #1E4B33;
    --cr-sage: #DCEEE7;
    --cr-green: #4C7A4E;
    --cr-cream: #F9F7F0;
    --cr-white: #FFFFFF;
    --cr-text-dark: #333333;
    --cr-text-muted: #666666;
    --cr-container: 1440px;
}
*/

/* ─── Reset & Base ────────────────────────────────────────────────────────── */
.club-reset-page {
    margin: 0;
    padding: 0;
    background: var(--cr-cream);
    color: var(--cr-text-dark);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.club-reset-page *,
.club-reset-page *::before,
.club-reset-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.club-reset-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.club-reset-page a {
    text-decoration: none;
    color: inherit;
}

.club-reset-page ul {
    list-style: none;
}

/* ─── HEADER ──────────────────────────────────────────────────────────────── */
.cr-header {
    position: relative;
    z-index: 100;
    background: var(--cr-cream);
    padding: 20px 60px;
    border-bottom: none;
}

.cr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--cr-container);
    margin: 0 auto;
}

.cr-header__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: center;
    text-align: center;
}

.cr-logo-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cr-logo-club {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--cr-dark-green);
    display: block;
}

.cr-logo-reset {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--cr-dark-green);
    margin-top: -2px;
    display: block;
}

.cr-logo-cdmx {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 5px;
    margin-top: 3px;
    color: var(--cr-terracotta);
    display: block;
}

/* Remove old divider — border-bottom on header replaces it */
.cr-header__divider {
    display: none;
}

.cr-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: flex-end;
}

.cr-header__cta {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    color: var(--cr-green) !important;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.cr-header__cta:hover {
    opacity: 0.7;
}

.cr-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cr-lang-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 15px;
    color: var(--cr-green) !important;
    cursor: pointer;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.cr-lang-btn--active {
    opacity: 1;
    font-weight: 700;
}

.cr-lang-sep {
    color: var(--cr-green);
    opacity: 0.4;
    font-size: 15px;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.cr-hero {
    position: relative;
    height: 720px;
    max-width: var(--cr-container);
    margin: 20px auto 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cr-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cr-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 100%;
}

.cr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.75) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.cr-hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    max-width: 540px;
    margin-left: auto;
    margin-right: 60px;
    text-align: center;
}

.cr-hero__title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 48px;
    line-height: 1.1;
    color: var(--cr-white) !important;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cr-hero__subtitle {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cr-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    text-align: center;
}

.cr-btn--primary {
    background: var(--cr-terracotta) !important;
    color: var(--cr-white) !important;
    padding: 10px 40px !important;
    border-radius: 12px !important;
    border: 2px solid var(--cr-terracotta) !important;
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
}

.cr-btn--primary:hover {
    background: transparent !important;
    color: var(--cr-white) !important;
    border-color: var(--cr-terracotta) !important;
}

.cr-hero__tagline {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 20px;
    color: var(--cr-white);
    margin-top: 24px;
    letter-spacing: 1px;
}

.cr-hero__tagline em {
    font-style: italic;
}

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.cr-about {
    padding: 0 60px 80px;
    background: var(--cr-cream);
}

.cr-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: var(--cr-container);
    margin: 0 auto;
    align-items: center;
}

.cr-about__image-col {
    width: 100%;
}

.cr-about__venue-img {
    width: 100%;
    min-height: 380px;
    border-radius: 0;
    object-fit: cover;
}

.cr-about__right-col {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding-left: 120px;
    align-items: center;
}

.cr-about__text-col {
    /* Center column */
}

.cr-about__desc {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--cr-dark-green);
    margin-bottom: 22px;
}

.cr-about__highlight {
    color: var(--cr-terracotta);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
}

.cr-about__desc strong {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic;
    color: var(--cr-terracotta);
}

.cr-about__list {
    margin-bottom: 22px;
}

.cr-about__list li {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cr-dark-green);
    padding-left: 16px;
    position: relative;
}

.cr-about__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cr-terracotta);
}

.cr-about__list li:first-child {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 17px;
    color: var(--cr-terracotta);
}

.cr-about__location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    color: var(--cr-green);
}

.cr-about__location a {
    color: var(--cr-green) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.cr-about__location a:hover {
    opacity: 0.7;
}

.cr-about__badge-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.cr-badge {
    width: 140px;
    height: 140px;
}

.cr-badge__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Legacy SVG badge (keep for backwards compat) */
.cr-badge__svg {
    width: 100%;
    height: 100%;
}

/* ─── EARLY ACCESS ────────────────────────────────────────────────────────── */
.cr-early {
    background: var(--cr-dark-green);
    position: relative;
    overflow: hidden;
    max-width: var(--cr-container);
    margin: 0 auto;
}

.cr-early__inner {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 400px;
}

.cr-early__text-col {
    padding: 50px 50px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.cr-early__title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 38px;
    color: var(--cr-white) !important;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.cr-early__desc {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 480px;
}

.cr-btn--early {
    background: var(--cr-terracotta) !important;
    color: var(--cr-white) !important;
    border: 2px solid var(--cr-terracotta) !important;
    padding: 10px 40px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: none !important;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease;
}

.cr-btn--early:hover {
    background: transparent !important;
    color: var(--cr-white) !important;
}

.cr-early__image-row {
    display: flex;
    overflow: hidden;
}

.cr-early__img {
    width: 55%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center center;
}

.cr-early__ball-img {
    width: 50%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: left center;
    margin-left: -5%;
}

/* ─── BOLD STATEMENT ──────────────────────────────────────────────────────── */
.cr-statement {
    padding: 110px 60px;
    background: var(--cr-cream);
    text-align: center;
}

.cr-statement__text {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    font-size: 66px;
    line-height: 1.2;
    color: var(--cr-green) !important;
    font-style: normal !important;
    max-width: 960px;
    margin: 0 auto;
}

/* ─── REGISTRATION FORM ───────────────────────────────────────────────────── */
.cr-form-section {
    background: var(--cr-cream);
    padding: 0;
}

.cr-form-section__outer {
    max-width: var(--cr-container);
    margin: 0 auto;
    background: var(--cr-sage);
    padding: 80px 60px 40px;
}

.cr-form-section__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.cr-form__title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 26px;
    color: var(--cr-text-dark) !important;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.cr-form__subtitle {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--cr-text-dark);
    margin-bottom: 36px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.cr-form {
    text-align: left;
    max-width: 540px;
    margin: 0 auto;
}

.cr-form__field {
    margin-bottom: 24px;
}

.cr-form__label {
    display: block;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-size: 17px;
    color: var(--cr-text-muted);
    margin-bottom: 8px;
}

.cr-form__input {
    width: 100%;
    padding: 16px 18px !important;
    border: none !important;
    border-radius: 0 !important;
    background: var(--cr-white) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    color: var(--cr-text-dark);
    outline: none;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    -moz-appearance: none !important;
}

.cr-form__input:focus {
    box-shadow: 0 0 0 2px var(--cr-green) !important;
}

.cr-form__input.cr-form__input--error {
    box-shadow: 0 0 0 2px var(--cr-terracotta) !important;
}

.cr-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    margin-top: 6px;
}

.cr-form__checkbox input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--cr-green);
    flex-shrink: 0;
}

.cr-form__checkbox label {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300;
    font-size: 17px;
    color: var(--cr-text-dark);
    cursor: pointer;
}

.cr-form__note {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500;
    font-style: normal !important;
    font-size: 22px;
    color: var(--cr-green) !important;
    margin-bottom: 28px;
    text-align: center;
}

.cr-form__submit-wrap {
    text-align: center;
}

.cr-btn--submit {
    background: var(--cr-terracotta) !important;
    color: var(--cr-white) !important;
    padding: 10px 60px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    border: 2px solid var(--cr-terracotta) !important;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    min-width: 260px;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.cr-btn--submit:hover {
    background: #b53a1a !important;
    border-color: #b53a1a !important;
}

.cr-btn--submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cr-btn--submit.cr-btn--loading {
    position: relative;
    color: transparent !important;
}

.cr-btn--submit.cr-btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--cr-white);
    border-radius: 50%;
    animation: cr-spin 0.6s linear infinite;
}

@keyframes cr-spin {
    to { transform: rotate(360deg); }
}

.cr-form__error {
    text-align: center;
    color: var(--cr-terracotta);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    margin-top: 16px;
    padding: 10px;
    background: rgba(207, 69, 32, 0.08);
    border-radius: 4px;
}

/* ─── FOOTER (inside sage box) ────────────────────────────────────────────── */
.cr-footer {
    padding: 28px 60px 40px;
    text-align: center;
}

.cr-footer__text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 13px;
    color: var(--cr-text-muted);
    margin-bottom: 4px;
}

.cr-footer__credit {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 13px;
    color: var(--cr-text-muted);
}

.cr-footer__credit a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--cr-text-muted);
    transition: color 0.2s;
}

.cr-footer__credit a:hover {
    color: var(--cr-dark-green);
}

/* ─── THANK YOU STATE ─────────────────────────────────────────────────────── */
.cr-thankyou {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #F7F4EA;
    text-align: center;
}

.cr-thankyou__title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 38px;
    color: var(--cr-dark-green);
    letter-spacing: 1.5px;
    margin-bottom: 40px;
}

.cr-thankyou__badge {
    width: 200px;
    height: 200px;
    margin: 0 auto 50px;
}

.cr-thankyou__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.cr-thankyou__text {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--cr-text-dark);
    max-width: 420px;
    margin: 0 auto 18px;
}

.cr-thankyou__cta {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    color: var(--cr-text-dark);
    margin-bottom: 50px;
}

.cr-thankyou__instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.cr-thankyou__instagram:hover {
    opacity: 0.7;
}

.cr-thankyou__ig-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 17px;
    color: var(--cr-terracotta);
}

/* ─── MOBILE RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── Header mobile ── */
    .cr-header {
        padding: 14px 20px;
    }

    .cr-header__nav {
        gap: 14px;
    }

    .cr-header__cta {
        display: none;
    }

    /* Mobile logo: CLUB RESET on one line, CD/MX stacked next to it */
    .cr-header__logo {
        flex-direction: row;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .cr-logo-main {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        gap: 5px;
    }

    .cr-logo-club {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .cr-logo-reset {
        font-size: 16px;
        margin-top: 0;
    }

    .cr-logo-cdmx {
        font-size: 8px;
        letter-spacing: 1px;
        display: inline-flex;
        flex-direction: column;
        line-height: 1.1;
        margin-left: 2px;
    }

    /* ── Hero mobile ── */
    .cr-hero {
        height: auto;
        min-height: 480px;
        max-width: 100%;
        margin: 0;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .cr-hero__img {
        object-position: center center;
        min-height: 100%;
    }

    .cr-hero__content {
        padding: 40px 24px;
        margin: 0;
        max-width: 100%;
        text-align: center;
    }

    .cr-hero__title {
        font-size: 34px;
    }

    .cr-hero__subtitle {
        font-size: 17px;
        font-weight: 400;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cr-hero__tagline {
        font-size: 17px;
    }

    .cr-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }

    /* ── Mobile venue bar (full-width image right after hero) ── */
    .cr-mobile-venue-bar {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .cr-mobile-venue-bar img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* ── About mobile ── */
    .cr-about {
        padding: 40px 24px;
    }

    .cr-about__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cr-about__right-col {
        padding-left: 0;
        gap: 0;
        grid-template-columns: 1fr 120px;
        overflow: hidden;
    }

    .cr-about__image-col {
        display: none; /* venue image shown in mobile-venue-bar instead */
    }

    .cr-about__text-col {
        order: 1;
    }

    .cr-about__badge-col {
        order: 2;
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 10px;
        margin-right: 20px;
    }

    .cr-badge {
        width: 110px;
        height: 110px;
    }

    .cr-about__desc {
        font-size: 17px;
        font-weight: 500;
    }

    .cr-about__list li {
        font-size: 14px;
    }

    .cr-about__list li:first-child {
        font-size: 14px;
    }

    .cr-about__location {
        font-size: 14px;
    }

    .cr-about__pin {
        width: 22px !important;
        height: 22px !important;
    }

    /* ── Early Access mobile ── */
    .cr-early {
        max-width: 100%;
        position: relative;
    }

    .cr-early__bg-image {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .cr-early__bg-image img {
        display: none;
    }

    .cr-early__bg-image {
        background-image: url('../images/paddle-court.jpg');
        background-size: auto 100%;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .cr-early__bg-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        background: rgba(35, 68, 52, 0.75);
    }

    .cr-early__inner {
        position: relative;
        z-index: 3;
        grid-template-columns: 1fr;
    }

    .cr-early__text-col {
        padding: 50px 24px 40px;
        min-height: 350px;
    }

    .cr-early__title {
        font-size: 26px;
    }

    .cr-early__desc {
        font-size: 16px;
    }

    .cr-early__image-row {
        display: flex;
        overflow: hidden;
    }

    .cr-early__img {
        height: 130px;
        min-height: 130px;
    }

    .cr-early__ball-img {
        height: 130px;
        min-height: 130px;
    }

    /* ── Statement mobile ── */
    .cr-statement {
        padding: 60px 24px;
    }

    .cr-statement__text {
        font-size: 38px;
        font-style: normal; /* NOT italic on mobile */
    }

    /* ── Form mobile ── */
    .cr-form-section {
        padding: 0;
        background: var(--cr-cream);
    }

    .cr-form-section__outer {
        max-width: 100%;
        padding: 50px 24px 30px;
    }

    .cr-form__title {
        font-size: 22px;
    }

    .cr-form__subtitle {
        font-size: 16px;
        max-width: 280px;
    }

    .cr-form {
        max-width: 100%;
    }

    .cr-form__label {
        font-size: 14px;
    }

    .cr-form__input {
        font-size: 15px !important;
        padding: 14px 16px !important;
    }

    .cr-form__checkbox label {
        font-size: 14px;
    }

    .cr-form__note {
        font-size: 18px;
    }

    .cr-btn--submit {
        width: auto !important;
        font-size: 15px !important;
    }

    /* ── Footer mobile ── */
    .cr-footer {
        padding: 20px 24px 30px;
    }

    .cr-footer__text {
        font-size: 12px;
    }

    .cr-footer__credit {
        font-size: 12px;
    }

    /* ── Thank you mobile ── */
    .cr-thankyou {
        padding: 40px 24px 60px;
    }

    .cr-thankyou__title {
        font-size: 26px;
    }

    .cr-thankyou__badge {
        width: 150px;
        height: 150px;
    }

    .cr-thankyou__text {
        font-size: 16px;
    }

    .cr-thankyou__cta {
        font-size: 16px;
    }

    .cr-thankyou__ig-text {
        font-size: 15px;
        color: #231F20 !important;
    }

    .cr-thankyou__instagram svg rect,
    .cr-thankyou__instagram svg circle {
        stroke: #231F20 !important;
        fill: none;
    }

    .cr-thankyou__instagram svg circle[r="1.5"] {
        fill: #231F20 !important;
        stroke: none !important;
    }
}

/* ─── Desktop: hide mobile-only elements ──────────────────────────────────── */
@media (min-width: 769px) {
    .cr-mobile-venue-bar {
        display: none;
    }

    .cr-early__bg-image,
    .cr-early__bg-overlay {
        display: none;
    }

    .cr-logo-cdmx-stacked {
        display: none;
    }
}

/* Mobile: hide desktop CDMX, show stacked */
@media (max-width: 768px) {
    .cr-logo-cdmx-full {
        display: none;
    }

    .cr-logo-cdmx-stacked {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.1;
    }
}

/* ─── Utility: hide inactive language elements ────────────────────────────── */
.cr-lang-hidden {
    display: none !important;
}
