/*
 * GOLAZZO CASINO - DESIGN SYSTEM
 * High-adrenaline stadium aesthetic. Dark charcoal base, lime + gold accents.
 * Fonts: Anton (display), Barlow (body).
 */

:root {
    --background: #0d0f0c;
    --foreground: #f5f5f0;
    --card: #161a14;
    --card-foreground: #f5f5f0;
    --popover: #161a14;
    --popover-foreground: #f5f5f0;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #1e2620;
    --secondary-foreground: #f5f5f0;
    --muted: #242b21;
    --muted-foreground: #b3bca8;
    --accent: #3e5d08;
    --accent-foreground: #0d0f0c;
    --destructive: #f43f5e;
    --destructive-foreground: #0d0f0c;
    --border: #333b2e;
    --input: #242b21;
    --ring: #a3e635;

    /* Brand tokens */
    --lime: #a3e635;
    --lime-bright: #a3e635;
    --gold: #f5c542;
    --gold-warm: #e0a92e;
    --charcoal: #0d0f0c;
    --charcoal-2: #12150f;

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;

    --radius: 12px;
    --radius-sm: 8px;
    --maxw: 1200px;
    --header-h: 68px;

    --pitch-gradient: linear-gradient(115deg, var(--lime) 0%, var(--gold) 100%);
    --font-display: "Anton", "Barlow", sans-serif;
    --font-body: "Barlow", system-ui, sans-serif;
}

.dark {
    --background: #0d0f0c;
    --foreground: #f5f5f0;
    --card: #161a14;
    --card-foreground: #f5f5f0;
    --popover: #161a14;
    --popover-foreground: #f5f5f0;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #1e2620;
    --secondary-foreground: #f5f5f0;
    --muted: #242b21;
    --muted-foreground: #b3bca8;
    --accent: #3e5d08;
    --accent-foreground: #0d0f0c;
    --destructive: #f43f5e;
    --destructive-foreground: #0d0f0c;
    --border: #333b2e;
    --input: #242b21;
    --ring: #a3e635;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; }
.table-wrapper, [class*="table-"] { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE / TYPOGRAPHY
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 26px; max-width: 72ch; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.dark a { color: var(--lime-bright); }

strong, b { font-weight: 700; }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: var(--space-xs); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--lime);
    color: var(--charcoal);
    padding: 12px 20px;
    z-index: 2000;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 2px;
}

/* ============================================
   LAYOUT HELPERS
   .container - max-width text zone
   .section   - vertical rhythm block
   ============================================ */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.section {
    padding-block: var(--space-2xl);
}
@media (min-width: 1024px) {
    .section { padding-block: var(--space-3xl); }
}

.section--tight { padding-block: var(--space-xl); }

.section__head {
    max-width: 760px;
    margin-bottom: var(--space-xl);
}
.section__head--center {
    margin-inline: auto;
    text-align: center;
}
.section__kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    color: var(--lime);
    margin-bottom: var(--space-xs);
}
.section__lead { color: var(--muted-foreground); font-size: 1.1rem; }

/* Diagonal pitch-stripe divider */
.pitch-divider {
    height: 6px;
    background: var(--pitch-gradient);
    transform: skewY(-1.2deg);
    margin-block: var(--space-lg);
    border: none;
}

/* ============================================
   BUTTONS
   .btn--primary - filled lime, dark text
   .btn--ghost   - outline
   .btn--lg      - large CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 250ms ease-out;
}
.btn:hover { text-decoration: none; }

.btn--primary,
.dark a.btn--primary {
    background: var(--lime);
    color: var(--charcoal);
    border-color: var(--lime);
}
.btn--primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(163, 230, 53, 0.5);
    background: var(--lime-bright);
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.dark .btn--ghost { color: var(--foreground); }
.btn--ghost:hover {
    border-color: var(--lime);
    color: var(--lime-bright);
    transform: scale(1.04);
}

.btn--gold,
.dark a.btn--gold {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.btn--gold:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(245, 197, 66, 0.5);
}

.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 1.1rem; }

/* Inline text link with gold sweep underline */
.text-link {
    color: var(--lime-bright);
    font-weight: 600;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: background-size 250ms ease-out;
}
.text-link:hover { background-size: 100% 2px; text-decoration: none; }

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 12px var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pitch-gradient);
    box-shadow: 0 0 14px rgba(163, 230, 53, 0.5);
    display: inline-block;
    flex-shrink: 0;
}
.site-brand__text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--foreground);
    line-height: 1;
}
.site-brand__accent { color: var(--lime-bright); }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    transition: transform 250ms ease, opacity 250ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (default hidden) */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--charcoal);
    padding: var(--space-md);
    overflow-y: auto;
    flex-direction: column;
    gap: var(--space-md);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}
.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.primary-nav__list a:hover { color: var(--lime-bright); }

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}
.primary-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
    }
    .primary-nav__list a {
        min-height: auto;
        padding: 0;
        font-size: 1rem;
        border: none;
    }
    .primary-nav__actions {
        flex-direction: row;
        margin-top: 0;
        gap: var(--space-sm);
    }
    .primary-nav__actions .btn { width: auto; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background: var(--charcoal);
    color: #f5f5f0;
    overflow: clip;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,15,12,0.55) 0%, rgba(13,15,12,0.9) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin-inline: auto;
    padding: var(--space-2xl) var(--space-md);
}
@media (min-width: 1024px) {
    .hero__inner { padding-block: var(--space-3xl); }
}
.hero__content { max-width: 720px; }
.hero__title { color: #f5f5f0; }
.hero__title .hl { color: var(--lime-bright); }
.hero__sub {
    font-size: 1.2rem;
    color: #e7ecdd;
    max-width: 60ch;
}
.hero__bonus {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-xs) var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(22, 26, 20, 0.7);
}
.hero__bonus-amount {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    line-height: 1;
}
.hero__bonus-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--lime);
    font-size: 0.9rem;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}
.hero__micro {
    margin-top: var(--space-md);
    color: #c7d0ba;
    font-size: 0.9rem;
}

/* ============================================
   INFO CARD  (grid + card)
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.info-card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
    box-shadow: 0 12px 30px rgba(163, 230, 53, 0.18);
}
.info-card__media {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    aspect-ratio: 16 / 10;
    background: var(--muted);
}
.info-card__media img { width: 100%; height: 100%; object-fit: cover; }
.info-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-sm);
}
.info-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.info-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: var(--space-xs);
}
.info-card__title { font-size: 1.35rem; margin-bottom: var(--space-xs); color: var(--card-foreground); }
.info-card__text { color: var(--muted-foreground); margin-bottom: var(--space-sm); font-size: 1rem; }
.info-card__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--lime-bright);
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    text-align: center;
}
@media (min-width: 1024px) {
    .stat-highlight { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.stat-highlight__item {
    padding: var(--space-md) var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}
.stat-highlight__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 2.75rem);
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.35);
}
.stat-highlight__label {
    display: block;
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lime);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--charcoal-2);
    overflow: clip;
    padding-block: var(--space-2xl);
    text-align: center;
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-3xl); } }
.cta-banner::before {
    content: "";
    position: absolute;
    inset: -20% -10%;
    background: var(--pitch-gradient);
    opacity: 0.16;
    transform: skewY(-6deg);
    z-index: 0;
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}
.cta-banner__title { color: #f5f5f0; }
.cta-banner__text { color: #dfe6d4; font-size: 1.15rem; margin-inline: auto; }
.cta-banner__micro { margin-top: var(--space-sm); color: #b3bca8; font-size: 0.85rem; }

/* ============================================
   BONUS BLOCK
   ============================================ */
.bonus-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    background: var(--charcoal-2);
    border-block: 1px solid var(--border);
    overflow: clip;
    position: relative;
}
.bonus-block::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 8px;
    background: var(--pitch-gradient);
    transform: skewX(-12deg);
    opacity: 0.5;
    display: none;
}
.bonus-block__media { min-height: 320px; }
.bonus-block__media img { width: 100%; height: 100%; object-fit: cover; }
.bonus-block__body {
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.bonus-block__title { color: #f5f5f0; }
.bonus-block__amount {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 24px rgba(245, 197, 66, 0.3);
}
.bonus-block__text { color: #dfe6d4; }
.bonus-block__micro { margin-top: var(--space-sm); color: #b3bca8; font-size: 0.82rem; }
@media (min-width: 1024px) {
    .bonus-block { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
    .bonus-block::before { display: block; }
    .bonus-block__body { padding: var(--space-3xl) var(--space-2xl); }
    .bonus-block--reverse .bonus-block__media { order: 2; }
    .bonus-block--reverse .bonus-block__body { order: 1; }
}

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { max-width: 860px; }
.faq-item {
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    padding-left: var(--space-sm);
    transition: border-color 250ms ease;
}
.faq-item[open] { border-left-color: var(--lime); }
.faq-item__q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
    padding: var(--space-sm) 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--foreground);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    background: var(--lime);
    transition: transform 250ms ease;
}
.faq-item__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-item__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a {
    padding-bottom: var(--space-md);
    color: var(--muted-foreground);
    animation: faq-reveal 300ms ease-out;
}
.faq-item__a p { margin-bottom: 0; }
@keyframes faq-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CALLOUT / SUMMARY / PULL QUOTE
   ============================================ */
.callout {
    border: 1px solid var(--border);
    border-left: 4px solid var(--lime);
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-block: var(--space-lg);
}
.callout__title {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lime);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}
.callout p:last-child { margin-bottom: 0; }

.summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}
.summary-box__title {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.pull-quote {
    border: none;
    border-left: 4px solid var(--gold);
    margin: var(--space-lg) 0;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-transform: uppercase;
    color: var(--foreground);
    line-height: 1.2;
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.95rem;
    text-transform: none;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 120px;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    text-align: center;
}
.trust-badge img { width: 64px; height: 64px; object-fit: contain; }
.trust-badge__label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    color: var(--foreground);
}

/* ============================================
   TABLES (data)
   ============================================ */
.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-block: var(--space-lg);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
.data-table th,
.data-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    background: var(--secondary);
    color: var(--foreground);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--muted); }
.data-table td.is-highlight { color: var(--lime-bright); font-weight: 700; }

/* ============================================
   PROSE / SEO CONTENT
   ============================================ */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--space-xl); }
.prose h3 { margin-top: var(--space-lg); }
.prose ul { margin-bottom: 26px; }

/* Split content block (text + media) */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2xl); }
    .split--reverse .split__media { order: 2; }
}
.split__media {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--muted);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Provider / logo strip */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    align-items: center;
}
@media (min-width: 768px) { .logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.logo-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    min-height: 88px;
}
.logo-strip__item img { max-height: 56px; width: auto; object-fit: contain; }

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; padding: 0; margin: 0; max-width: 820px; }
.sitemap-list li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}
.sitemap-list a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--lime-bright);
}
.sitemap-list p { color: var(--muted-foreground); margin: var(--space-xs) 0 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal-2);
    border-top: 1px solid var(--border);
    color: var(--foreground);
    padding-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 0 var(--space-md) var(--space-xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}
@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.site-footer__tag { color: var(--muted-foreground); font-size: 0.95rem; margin-top: var(--space-sm); }
.site-footer__heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lime);
    margin-bottom: var(--space-sm);
}
.site-footer__links,
.site-footer__pays {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__links li,
.site-footer__pays li { margin-bottom: var(--space-xs); }
.site-footer__links a { color: var(--muted-foreground); }
.site-footer__links a:hover { color: var(--lime-bright); }
.site-footer__pays li { color: var(--muted-foreground); font-size: 0.95rem; }
.site-brand--footer .site-brand__text { font-size: 1.3rem; }

.site-footer__legal {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) var(--space-md);
}
.site-footer__legal p {
    max-width: var(--maxw);
    margin: var(--space-md) auto 0;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-align: center;
}
.site-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: var(--maxw);
    margin-inline: auto;
}
.footer-badge {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
}
.footer-badge--age { color: var(--charcoal); background: var(--gold); border-color: var(--gold); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn:hover, .info-card:hover { transform: none; }
}

/* Utility */
.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;
}
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
