/*
 * GOLAZZO CASINO - DESIGN SYSTEM
 * Stadium-triumph aesthetic: charcoal-black night stadium, lime-green + gold
 * football accents, floodlight beams, drifting confetti.
 * Fonts: Anton (display headlines), Barlow (body).
 */

/* ============================================
   DESIGN TOKENS
   Single dark football theme (no theme switcher).
   :root and .dark carry identical dark values so
   the site renders the dark stadium look everywhere.
   ============================================ */
:root {
    --background: #0d0f0c;
    --foreground: #f5f0e6;
    --card: #161a14;
    --card-foreground: #f5f0e6;
    --popover: #161a14;
    --popover-foreground: #f5f0e6;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #f5c518;
    --secondary-foreground: #0d0f0c;
    --muted: #2a2e26;
    --muted-foreground: #b3bcaa;
    --accent: #bef264;
    --accent-foreground: #0d0f0c;
    --destructive: #ea0d33;
    --destructive-foreground: #0d0f0c;
    --border: #3a3f34;
    --input: #2a2e26;
    --ring: #a3e635;

    /* Spacing rhythm (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    --container: 1200px;
    --header-h: 64px;
    --radius: 12px;
    --radius-sm: 8px;

    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.55);
    --glow-gold: 0 0 24px rgba(245, 197, 24, 0.55);
    --glow-lime: 0 0 22px rgba(163, 230, 53, 0.5);

    --transition: 250ms ease-out;

    --font-display: "Anton", "Arial Narrow", sans-serif;
    --font-body: "Barlow", system-ui, -apple-system, sans-serif;
}

.dark {
    --background: #0d0f0c;
    --foreground: #f5f0e6;
    --card: #161a14;
    --card-foreground: #f5f0e6;
    --popover: #161a14;
    --popover-foreground: #f5f0e6;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #f5c518;
    --secondary-foreground: #0d0f0c;
    --muted: #2a2e26;
    --muted-foreground: #b3bcaa;
    --accent: #bef264;
    --accent-foreground: #0d0f0c;
    --destructive: #ea0d33;
    --destructive-foreground: #0d0f0c;
    --border: #3a3f34;
    --input: #2a2e26;
    --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
   Anton for scoreboard headlines, Barlow for body.
   ============================================ */
html { scroll-behavior: smooth; }

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

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

h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }

p { margin: 0 0 var(--space-md); }
p:last-child { margin-bottom: 0; }

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

ul, ol { margin: 0 0 var(--space-md); padding-left: 1.4em; }
li { margin-bottom: var(--space-xs); }

strong { color: var(--foreground); font-weight: 700; }

@media (min-width: 1024px) {
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 26px; }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 1100;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.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;
}

/* ============================================
   LAYOUT PRIMITIVES
   .container - centered content max 1200px
   .container--narrow - narrower reading column
   .section - vertical rhythm between blocks
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
.container--narrow { max-width: 860px; }

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

.section__heading { text-align: center; margin-bottom: var(--space-lg); }
.section__intro {
    max-width: 760px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    color: var(--foreground);
}
.section__intro p { color: var(--foreground); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   BUTTONS
   .btn--primary - neon lime with gold glow on hover
   .btn--ghost - outlined
   .btn--lg - hero-sized CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 12px 28px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 16px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
    text-align: center;
}
.btn--lg { min-height: 56px; padding: 16px 40px; font-size: 19px; }

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--glow-lime);
}
.btn--primary:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   HEADER + NAVIGATION
   Sticky header, inline nav on desktop,
   slide-in drawer on mobile.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 15, 12, 0.94);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--foreground);
}
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 32%, var(--secondary) 0 20%, transparent 21%),
        conic-gradient(from 45deg, var(--primary), var(--accent), var(--primary));
    box-shadow: var(--glow-lime);
    flex-shrink: 0;
}
.site-brand__text {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 22px;
}
.site-brand__accent { color: var(--primary); margin-left: 4px; }

.nav-toggle {
    display: 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);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.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 drawer */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    padding: var(--space-md);
    overflow-y: auto;
    flex-direction: column;
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none;
    margin: 0 0 var(--space-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.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);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--primary); }

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@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;
        bottom: auto;
    }
    .primary-nav__list {
        flex-direction: row;
        margin: 0;
        gap: var(--space-md);
        align-items: center;
    }
    .primary-nav__list a {
        min-height: auto;
        padding: 0;
        font-size: 15px;
        border-bottom: none;
    }
    .primary-nav__actions { flex-direction: row; }
    .primary-nav__actions .btn { min-height: 42px; padding: 8px 18px; font-size: 14px; }
}

/* ============================================
   PAGE HERO (page_hero component)
   Full-bleed floodlit stadium with beams + confetti.
   ============================================ */
.page-hero {
    position: relative;
    background: radial-gradient(ellipse at 70% 0%, #1a1f16 0%, var(--background) 60%);
    padding: var(--space-xl) 0;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
    align-items: center;
}
.page-hero__title { margin-bottom: var(--space-sm); }
.page-hero__subtitle {
    font-size: 18px;
    color: var(--foreground);
    max-width: 560px;
    margin: 0 auto var(--space-md);
}
.page-hero__trust {
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.page-hero__media img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

/* Diagonal floodlight beams */
.page-hero__lights,
.cta-banner__lights {
    position: absolute;
    inset: -20% -10%;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 42%, rgba(163, 230, 53, 0.10) 46%, transparent 50%),
        linear-gradient(115deg, transparent 60%, rgba(245, 197, 24, 0.08) 64%, transparent 68%);
    will-change: transform;
}

/* Drifting confetti */
.page-hero__confetti,
.cta-banner__confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, var(--primary) 50%, transparent 51%),
        radial-gradient(circle, var(--secondary) 50%, transparent 51%),
        radial-gradient(circle, var(--accent) 50%, transparent 51%);
    background-size: 6px 6px, 8px 8px, 5px 5px;
    background-position: 12% 20%, 78% 30%, 45% 65%;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: confetti-drift 6s ease-in-out infinite alternate;
}
@keyframes confetti-drift {
    from { transform: translateY(-6px); }
    to { transform: translateY(10px); }
}

@media (min-width: 1024px) {
    .page-hero { padding: var(--space-2xl) 0; }
    .page-hero__inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: var(--space-2xl);
    }
    .page-hero__content { flex: 1 1 55%; }
    .page-hero__media { flex: 1 1 45%; }
    .page-hero__subtitle { margin-left: 0; }
    .page-hero__trust { justify-content: flex-start; }
    .page-hero__media img { max-width: 100%; margin: 0; }
}

/* ============================================
   HOMEPAGE HERO
   Full-bleed floodlit hero with model + confetti.
   ============================================ */
.home-hero {
    position: relative;
    background: radial-gradient(ellipse at 70% 0%, #1a1f16 0%, var(--background) 60%);
    padding: var(--space-xl) 0;
    overflow: clip;
}
.home-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
    align-items: center;
}
.home-hero__title { margin-bottom: var(--space-sm); }
.home-hero__subtitle {
    font-size: 18px;
    color: var(--foreground);
    max-width: 560px;
    margin: 0 auto var(--space-md);
}
.home-hero__trust {
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.home-hero__media img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .home-hero { padding: var(--space-2xl) 0; }
    .home-hero__inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: var(--space-2xl);
    }
    .home-hero__content { flex: 1 1 55%; }
    .home-hero__media { flex: 1 1 45%; }
    .home-hero__subtitle { margin-left: 0; }
    .home-hero__trust { justify-content: flex-start; }
    .home-hero__media img { max-width: 100%; margin: 0; }
}

/* ============================================
   INFO CARD GRID (info_card_grid component)
   Responsive card grid, hover scale + gold glow.
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
}
@media (min-width: 768px) {
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .info-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .info-grid--cols-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 var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.info-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-hover), var(--glow-gold);
    border-color: var(--secondary);
}
.info-card__media {
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-sm);
}
.info-card__media img { width: 72px; height: 72px; object-fit: contain; }
.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-sm);
    font-size: 28px;
    border-radius: var(--radius-sm);
    background: rgba(163, 230, 53, 0.12);
    color: var(--primary);
}
.info-card__title { margin-bottom: var(--space-xs); }
.info-card__text { color: var(--foreground); margin-bottom: var(--space-sm); }
.info-card__link {
    margin-top: auto;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
}
@media (min-width: 1024px) {
    .info-card { padding: var(--space-lg); }
}

/* ============================================
   STAT BLOCK (stat_block component)
   Big gold numbers with labels, dividers on desktop.
   ============================================ */
.stat-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.stat-item {
    text-align: center;
    padding: var(--space-sm) 0;
}
.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}
.stat-item__label {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: var(--muted-foreground);
}
@media (min-width: 768px) {
    .stat-row { flex-direction: row; justify-content: center; }
    .stat-item {
        flex: 1;
        border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item__number { font-size: 48px; }
}

/* ============================================
   FAQ ACCORDION (faq_accordion component)
   Native details/summary, lime left border, gold icon.
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
}
.faq-item__question::-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(--secondary);
    transition: transform var(--transition);
}
.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: scaleY(0); }
.faq-item__answer {
    padding: 0 20px 20px;
    color: var(--foreground);
}
.faq-item__answer p { color: var(--foreground); }

/* ============================================
   CTA BANNER (cta_banner component)
   Full-bleed conversion band with beams + confetti.
   ============================================ */
.cta-banner {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, #1a1f16 0%, var(--background) 65%);
    text-align: center;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__heading { margin-bottom: var(--space-sm); }
.cta-banner__text {
    max-width: 620px;
    margin: 0 auto var(--space-lg);
    color: var(--foreground);
    font-size: 18px;
}
.cta-banner__micro {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   Reusable content blocks for page generators.
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: 0 0 var(--space-lg);
}
.summary-box__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

/* Callout / highlight box */
.callout {
    background: rgba(163, 230, 53, 0.08);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: var(--space-md);
    margin: var(--space-md) 0;
    color: var(--foreground);
}

/* Stat highlight (inline oversized number) */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}
.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    color: var(--secondary);
}
.stat-highlight__label { font-size: 14px; color: var(--muted-foreground); }

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    font-size: 22px;
    line-height: 1.4;
    color: var(--primary);
    font-style: italic;
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-xs);
    font-size: 15px;
    font-style: normal;
    color: var(--muted-foreground);
}

/* Native details/summary generic styling */
.content-details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
}
.content-details > summary {
    cursor: pointer;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}
.trust-row__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    font-size: 14px;
    color: var(--foreground);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 2px 8px;
    border-radius: 6px;
    background: #a30a24;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

/* Comparison / data table */
.data-table-wrapper { max-width: 100%; overflow-x: auto; margin: var(--space-md) 0; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    color: var(--primary-foreground);
    background: var(--primary);
}
.data-table tbody tr:hover { background: rgba(163, 230, 53, 0.06); }
.data-table--highlight-last td:last-child { color: var(--secondary); font-weight: 600; }

/* Prose helper for long text sections */
.prose { max-width: 760px; }
.prose p, .prose li { color: var(--foreground); }
.prose h2, .prose h3 { margin-top: var(--space-lg); }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list__item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}
.sitemap-list__link {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 22px;
    display: inline-block;
    margin-bottom: var(--space-xs);
}
.sitemap-list__desc { color: var(--foreground); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0b09;
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 0;
}
.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md) var(--space-xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}
.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__tagline { color: var(--muted-foreground); font-size: 15px; }
.site-footer__age { color: var(--muted-foreground); font-size: 13px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-footer__heading {
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}
.site-footer__links, .site-footer__payments {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__links li, .site-footer__payments li { margin-bottom: var(--space-xs); }
.site-footer__links a {
    color: var(--muted-foreground);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.site-footer__links a:hover { color: var(--primary); }
.site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.site-footer__payments li {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
}
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md);
    text-align: center;
}
.site-footer__bottom p { color: var(--muted-foreground); font-size: 13px; margin: 0; }

@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.5fr 1fr 1fr 1fr; }
}

/* ============================================
   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; }
    .page-hero__confetti, .cta-banner__confetti { animation: none; }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
