/* ==========================================================================
   Global Jiu Jitsu — Landing martial arts redesign
   ========================================================================== */

.landing-page {
    background: #0a0a0a;
    color: #fff;
}

/* Header — dark on hero, light on scroll */
.gjj-header.landing-header {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.gjj-header.landing-header .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.gjj-header.landing-header .nav-link:hover {
    color: var(--brand-red);
}

.gjj-header.landing-header .hamburger span {
    background: #fff;
}

.gjj-header.landing-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.gjj-header.landing-header.scrolled .nav-link {
    color: #000;
}

.gjj-header.landing-header.scrolled .hamburger span {
    background: #000;
}

.gjj-header.landing-header.scrolled .logo-icon img {
    filter: none;
}

.gjj-header.landing-header .logo-icon img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Hero full bleed */
.l-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.l-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.l-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(40%) contrast(1.1);
}

.l-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.75) 45%, rgba(10, 10, 10, 0.35) 100%),
        linear-gradient(to top, rgba(10, 10, 10, 1) 0%, transparent 40%);
}

.l-hero-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -14deg,
        transparent,
        transparent 60px,
        rgba(216, 86, 86, 0.03) 60px,
        rgba(216, 86, 86, 0.03) 61px
    );
    pointer-events: none;
}

.l-hero-glow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(216, 86, 86, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.l-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    width: 100%;
}

.l-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: rgba(216, 86, 86, 0.15);
    border: 1px solid rgba(216, 86, 86, 0.35);
    transform: skewX(-8deg);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-red);
}

.l-hero-badge span {
    transform: skewX(8deg);
    display: inline-block;
}

.l-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-red);
    transform: rotate(45deg);
}

.l-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 11vw, 7.5rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
    max-width: 14ch;
}

.l-hero-title .l-stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
    display: block;
}

.l-hero-title .l-red {
    color: var(--brand-red);
    display: block;
}

.l-hero-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 32rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.l-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transform: skewX(-10deg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.l-btn span {
    transform: skewX(10deg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.l-btn-red {
    background: var(--brand-red);
    color: #fff;
}

.l-btn-red:hover {
    transform: skewX(-10deg) translateY(-3px);
    box-shadow: 0 16px 40px rgba(216, 86, 86, 0.4);
}

.l-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.l-btn-outline:hover {
    border-color: #fff;
    transform: skewX(-10deg) translateY(-3px);
}

.l-btn-dark {
    background: #fff;
    color: #0a0a0a;
}

.l-btn-dark:hover {
    transform: skewX(-10deg) translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15);
}

.l-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.l-hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.l-hero-stat span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

/* Marquee */
.l-marquee {
    background: var(--brand-red);
    padding: 0.75rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.l-marquee-track {
    display: flex;
    gap: 3rem;
    animation: l-marquee 25s linear infinite;
    white-space: nowrap;
}

.l-marquee-track span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0, 0, 0, 0.85);
}

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

/* Section common */
.l-section {
    padding: 6rem 0;
    position: relative;
}

.l-section-dark {
    background: #0a0a0a;
    color: #fff;
}

.l-section-light {
    background: #f5f5f5;
    color: #0a0a0a;
}

.l-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.l-section-head {
    margin-bottom: 3.5rem;
}

.l-section-head.center {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.l-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-red);
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--brand-red);
}

.l-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0 0 1rem;
}

.l-section-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 36rem;
}

.l-section-light .l-section-desc {
    color: #64748b;
}

.l-section-head-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .l-section-head-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .l-hero-inner {
        padding: 9rem 1.5rem 5rem;
    }
}

/* Program cards */
.l-programs-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .l-programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.l-program-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.l-program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 86, 86, 0.4);
}

.l-program-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.l-program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.l-program-card:hover .l-program-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.l-program-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
}

.l-program-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.l-program-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.35rem 0.75rem;
    background: var(--brand-red);
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transform: skewX(-10deg);
}

.l-program-label span {
    transform: skewX(10deg);
    display: inline-block;
}

.l-program-body {
    padding: 1.5rem;
}

.l-program-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    transition: color 0.3s ease;
}

.l-program-card:hover .l-program-title {
    color: var(--brand-red);
}

.l-program-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.l-program-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.l-mini-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
    transform: skewX(-8deg);
}

.l-mini-tag span {
    transform: skewX(8deg);
    display: inline-block;
}

/* Trial cards */
.l-trial-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

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

.l-trial-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.l-trial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.l-trial-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.l-trial-card:hover::before {
    transform: scaleX(1);
}

.l-trial-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #0a0a0a;
    margin: 0 0 0.75rem;
}

.l-trial-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-red);
    line-height: 1;
}

.l-trial-meta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Membership form */
.l-alert {
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.l-alert-error {
    background: rgba(216, 86, 86, 0.15);
    border: 1px solid rgba(216, 86, 86, 0.45);
    color: #f8d7da;
}

.l-membership-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 36rem;
    margin: 0 auto;
}

.l-form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .l-form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.l-field label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.4rem;
}

.l-field input,
.l-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.l-field select option {
    color: #000;
    background: #fff;
}

.l-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.l-field input:focus,
.l-field select:focus {
    outline: none;
    border-color: var(--brand-red);
}

.l-form-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1.25rem;
}

.l-form-note a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

/* Plans */
.l-plans-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .l-plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.l-plan-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.l-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-red);
}

.l-plan-name {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.l-plan-price {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.l-plan-duration {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.l-plan-card .l-btn {
    width: 100%;
    margin-top: auto;
}

/* Instructor */
.l-instructor-wrap {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.l-instructor-photo {
    position: relative;
    margin-bottom: 2rem;
}

.l-instructor-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.6s ease, border-radius 0.6s ease;
}

.l-instructor-wrap:hover .l-instructor-photo img {
    filter: grayscale(0%);
    border-radius: 0.5rem;
}

.l-instructor-belt {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transform: skewX(-10deg);
    box-shadow: 0 8px 24px rgba(216, 86, 86, 0.4);
}

.l-instructor-belt span {
    transform: skewX(10deg);
    display: inline-block;
}

.l-instructor-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.l-instructor-rank {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.l-instructor-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* Schedule */
.l-schedule-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.l-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
}

.l-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.l-legend-dot.gi { background: var(--brand-red); }
.l-legend-dot.nogi { background: #0a0a0a; }

.l-schedule-table-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.l-schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.l-schedule-table thead tr {
    background: #0a0a0a;
}

.l-schedule-table th {
    padding: 1.25rem 1rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: left;
}

.l-schedule-table td {
    padding: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.l-schedule-table td.time {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: #0a0a0a;
    font-weight: 900;
}

.l-schedule-table td.gi {
    color: var(--brand-red);
}

.l-schedule-table tbody tr:hover {
    background: #fafafa;
}

/* Footer */
.l-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--brand-red);
    position: relative;
    overflow: hidden;
}

.l-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -12deg,
        transparent,
        transparent 80px,
        rgba(255, 255, 255, 0.02) 80px,
        rgba(255, 255, 255, 0.02) 81px
    );
    pointer-events: none;
}

.l-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.l-footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.l-footer-logo {
    max-height: 72px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.l-footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 28rem;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.l-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.l-footer-social a:hover {
    background: var(--brand-red);
}

.l-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
    .l-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.l-footer-links {
    display: flex;
    gap: 1.5rem;
}

.l-footer-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.l-footer-links a:hover {
    color: #fff;
}

/* Mobile menu dark */
.gjj-mobile-menu.landing-mobile {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gjj-mobile-menu.landing-mobile a {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.gjj-mobile-menu.landing-mobile .mobile-cta {
    background: var(--brand-red);
}

/* Payment options modal */
body.l-modal-open {
    overflow: hidden;
}

.l-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.l-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.l-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.l-modal-panel {
    position: relative;
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.l-modal.is-open .l-modal-panel {
    transform: translateY(0);
}

.l-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.l-modal-head {
    margin-bottom: 1.25rem;
}

.l-modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0 0.25rem;
    text-transform: uppercase;
}

.l-modal-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.l-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.l-modal-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.75rem;
}

.l-payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.l-payment-option {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.l-payment-option:hover {
    border-color: var(--brand-red);
    background: rgba(216, 86, 86, 0.08);
}

.l-payment-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.l-payment-option-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.l-payment-option-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.l-payment-option-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-red);
}

.l-payment-option-action {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.l-modal-empty {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin: 0;
}

.l-modal-note {
    margin: 1.25rem 0 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 480px) {
    .l-payment-option {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .l-payment-option-action {
        justify-self: start;
    }
}

.home-page .gjj-header.landing-header.scrolled .logo-icon img {
    filter: none;
}

.l-payment-logos,
.gjj-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
}

.l-payment-logos img,
.gjj-payment-logos img {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 0.25rem 0.45rem;
}

/* Home — location picker cards */
.l-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.l-location-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.l-location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 86, 86, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.l-location-card-top h3 {
    margin: 0.35rem 0 0;
    font-family: Oswald, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.l-location-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(216, 86, 86, 0.15);
    color: var(--brand-red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.l-location-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
}

.l-location-meta i {
    margin-top: 0.2rem;
    color: var(--brand-red);
}

.l-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.l-location-link i {
    transition: transform 0.25s ease;
}

.l-location-card:hover .l-location-link i {
    transform: translateX(4px);
}

.l-home-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

.home-page .logo-icon img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.home-page .gjj-header.landing-header.scrolled .logo-icon img {
    filter: none;
}

/* Reveal animation */
.l-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.l-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
