/* ============================================
   DESIGN TOKENS - Wild West Lizaro Palette
   Single dark theme, no switcher
   ============================================ */
:root {
    --background: #120d0a;
    --foreground: #f4e8d8;
    --card: #211a14;
    --card-foreground: #f4e8d8;
    --popover: #18120e;
    --popover-foreground: #f4e8d8;
    --primary: #ff7a1a;
    --primary-foreground: #221206;
    --secondary: #3a2a16;
    --secondary-foreground: #f4e8d8;
    --muted: #2a241d;
    --muted-foreground: #b0aa9c;
    --accent: #15803d;
    --accent-foreground: #f0fdf4;
    --destructive: #d85c5c;
    --destructive-foreground: #fff1f1;
    --border: #8a6a2b;
    --input: #241a12;
    --ring: #ffb020;

    --gold: #ffb020;
    --gold-bright: #ffc94d;
    --green: #15803d;
    --green-bright: #1ea547;
    --ember: #d85c5c;

    --font-display: "Rye", Georgia, serif;
    --font-body: "Barlow", system-ui, -apple-system, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    --container-max: 1180px;
    --header-height: 60px;

    --radius-card: 16px;
    --radius-btn: 12px;
    --radius-sm: 8px;

    --transition-fast: 200ms ease-out;
    --transition-smooth: 300ms ease;

    --shadow-cta: 0 0 24px rgba(255, 122, 26, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 16px rgba(255, 176, 32, 0.3);
}

.dark {
    --background: #120d0a;
    --foreground: #f4e8d8;
    --card: #211a14;
    --card-foreground: #f4e8d8;
    --popover: #18120e;
    --popover-foreground: #f4e8d8;
    --primary: #ff7a1a;
    --primary-foreground: #221206;
    --secondary: #3a2a16;
    --secondary-foreground: #f4e8d8;
    --muted: #2a241d;
    --muted-foreground: #b0aa9c;
    --accent: #15803d;
    --accent-foreground: #f0fdf4;
    --destructive: #d85c5c;
    --destructive-foreground: #fff1f1;
    --border: #8a6a2b;
    --input: #241a12;
    --ring: #ffb020;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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;
    -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Rye for display, Barlow for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 7vw, 56px);
    line-height: 1.1;
}

h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 5vw, 40px);
    line-height: 1.15;
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(20px, 3vw, 26px);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 19px;
}

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

strong { font-weight: 700; }

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

.section {
    padding: 56px 0;
}

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

.section--alt {
    background: var(--card);
}

.section--tight {
    padding: 40px 0;
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 5vw, 40px);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0 auto var(--space-xl);
    font-size: 18px;
}

/* Content text blocks - capped line length */
.content {
    max-width: 720px;
    margin: 0 auto;
}

.content p { margin-bottom: var(--space-md); }

.content strong { color: var(--gold); }

.content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 122, 26, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition-fast);
}

.content a:hover { text-decoration-color: var(--primary); }

.content ul, .content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.content li { margin-bottom: var(--space-xs); }

/* Gold rope divider */
.section-divider {
    height: 2px;
    border: none;
    margin: 0;
    background: repeating-linear-gradient(90deg,
        var(--border) 0, var(--border) 12px,
        transparent 12px, transparent 24px);
    opacity: 0.4;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(18, 13, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 106, 43, 0.3);
}

.header-inner {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Desktop navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--foreground);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(255, 176, 32, 0.08);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile menu toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU DRAWER (< 900px)
   ============================================ */
@media (max-width: 899px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--background);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: var(--space-lg);
        background: var(--background);
        z-index: 999;
        overflow-y: auto;
        padding: var(--space-lg) var(--space-sm);
        display: none;
        border-top: 1px solid rgba(138, 106, 43, 0.2);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px var(--space-sm);
        font-size: 18px;
        border-bottom: 1px solid rgba(138, 106, 43, 0.15);
    }

    .nav-cta-group {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .nav-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* No-JS fallback - show nav inline without drawer */
@media (max-width: 899px) {
    .no-js .primary-nav {
        display: flex;
        position: static;
        flex-direction: column;
        padding: var(--space-sm) 0;
        background: transparent;
        overflow: visible;
    }

    .no-js .mobile-menu-toggle {
        display: none;
    }
}

@media (min-width: 900px) {
    :root { --header-height: 72px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    touch-action: manipulation;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background: #ff8c3a;
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 122, 26, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 176, 32, 0.06);
}

.btn-lg {
    min-height: 56px;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-cta {
    min-height: 56px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   HERO SECTION
   Full-bleed with background image + overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 56px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(18, 13, 10, 0.55) 0%,
        rgba(18, 13, 10, 0.75) 50%,
        rgba(18, 13, 10, 0.9) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.hero__content {
    flex: 1;
    min-width: 0;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 7vw, 56px);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--foreground);
}

.hero__sub {
    font-size: clamp(17px, 2.5vw, 20px);
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 50ch;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__mascot {
    flex-shrink: 0;
    max-width: 400px;
}

.hero__mascot img {
    width: 100%;
    height: auto;
}

@media (max-width: 899px) {
    .hero { min-height: auto; padding: 40px 0; }
    .hero__container {
        flex-direction: column;
        text-align: center;
    }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__cta { justify-content: center; }
    .hero__mascot { max-width: 280px; order: -1; margin-bottom: var(--space-md); }
}

/* ============================================
   INFO CARDS
   .info-card - base card with gold border
   ============================================ */
.info-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    border-radius: var(--radius-card);
    overflow: hidden;
    min-width: 0;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.info-card__image {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--muted);
}

.info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 900px) {
    .info-card__body { padding: var(--space-lg); }
}

.info-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.info-card__desc {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    flex: 1;
}

.info-card__stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.info-card__stat-value {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}

.info-card__stat-label {
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card__link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-card__link:hover { color: var(--gold); }

/* ============================================
   CARD GRIDS
   Responsive: 1 → 2 → 3 columns
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

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

/* Two-column grid variant */
.card-grid--2 {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Four-column grid variant */
.card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   CTA BANNER
   Full-bleed desert-dusk gradient with neon horizon
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 0;
    background: linear-gradient(180deg,
        #1a0f08 0%, #2a1a0e 35%, #3a2210 50%, #2a1a0e 65%, #1a0f08 100%);
    overflow: hidden;
    text-align: center;
}

.cta-banner__glow {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent, var(--primary) 20%, var(--gold) 50%, var(--primary) 80%, transparent);
    box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(255, 122, 26, 0.3);
    animation: shimmer 4s ease-in-out infinite;
    transform: translateY(-50%);
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-banner__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 5vw, 40px);
    margin: 0;
    color: var(--foreground);
}

.cta-banner__sub {
    font-size: 18px;
    color: var(--muted-foreground);
    margin: 0;
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   Native details/summary with grid animation
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 19px;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--transition-smooth);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

/* Grid-based smooth height animation */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-smooth);
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer__inner p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 17px;
    color: var(--foreground);
    line-height: 1.6;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--card);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-box__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 19px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.summary-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-box li {
    padding-left: 28px;
    position: relative;
    margin-bottom: var(--space-xs);
}

.summary-box li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Callout / highlight box */
.callout {
    border-left: 4px solid var(--gold);
    background: var(--card);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: var(--space-md) 0;
}

.callout--info { border-left-color: var(--accent); }
.callout--warning { border-left-color: var(--ember); }

.callout__title {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.callout--info .callout__title { color: var(--green-bright); }
.callout--warning .callout__title { color: var(--ember); }

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: var(--space-lg);
}

.stat-highlight__value {
    display: block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(32px, 6vw, 48px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-highlight__label {
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--gold);
    text-align: center;
    padding: var(--space-xl) 0;
    letter-spacing: 0.02em;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--muted-foreground);
    background: var(--card);
    font-weight: 500;
}

.trust-badge--warning {
    border-color: var(--ember);
    color: var(--ember);
    font-weight: 700;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 16px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(138, 106, 43, 0.3);
}

.comparison-table th {
    font-weight: 600;
    color: var(--gold);
}

.comparison-table tr:hover td {
    background: rgba(255, 176, 32, 0.04);
}

/* Payment badges */
.payment-badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--muted-foreground);
    background: var(--muted);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0d0907;
    border-top: 1px solid rgba(138, 106, 43, 0.3);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

.footer-brand__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--primary);
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-brand__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    max-width: 40ch;
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--gold); }

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(138, 106, 43, 0.2);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

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

.footer-trust {
    display: flex;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 2000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top var(--transition-fast);
}

.skip-link:focus { top: 0; }

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card reveal */
.card-grid .info-card:nth-child(1) { transition-delay: 0ms; }
.card-grid .info-card:nth-child(2) { transition-delay: 80ms; }
.card-grid .info-card:nth-child(3) { transition-delay: 160ms; }
.card-grid .info-card:nth-child(4) { transition-delay: 240ms; }
.card-grid .info-card:nth-child(5) { transition-delay: 320ms; }
.card-grid .info-card:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Live badge for live casino sections */
.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: var(--accent-foreground);
}

.badge-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   HOMEPAGE - Hero offer, split, payments, seals
   ============================================ */
.hero__offer {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero__offer-value {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(26px, 5vw, 42px);
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 176, 32, 0.35);
}

.hero__offer-label {
    font-size: clamp(15px, 2.5vw, 19px);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 899px) {
    .hero__offer { justify-content: center; }
}

/* Two-column split layout (image + content) */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.split__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    box-shadow: var(--shadow-card);
}

.split__content p { margin-bottom: var(--space-md); }

.split__content strong { color: var(--gold); }

.split__content a:not(.btn) {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 122, 26, 0.4);
    text-underline-offset: 3px;
}

.split__content a:not(.btn):hover { text-decoration-color: var(--primary); }

/* Payment icons strip */
.payments-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: stretch;
    margin-top: var(--space-lg);
}

.payment-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    min-width: 120px;
    background: var(--card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    border-radius: var(--radius-card);
    filter: grayscale(0.45);
    transition: filter var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.payment-icon-card:hover {
    filter: grayscale(0);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.payment-icon-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.payment-icon-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* Trust seals (license + 18+) */
.trust-seals {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
    align-items: center;
    margin: var(--space-lg) 0;
}

.trust-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.trust-seal img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.trust-seal span { font-size: 14px; }

/* Badge for hot/new items */
.badge-hot {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: var(--primary-foreground);
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gold);
    color: #2a1a0e;
}

/* ============================================
   SITEMAP PAGE - compact hero & page list
   ============================================ */
.hero--compact {
    min-height: auto;
    padding: 56px 0;
}

.hero--compact .hero__bg img {
    object-position: center 40%;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 820px;
    margin: 0 auto;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    border-radius: var(--radius-card);
    padding: 20px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

@media (min-width: 900px) {
    .sitemap-item { padding: var(--space-lg); }
}

.sitemap-item:hover {
    border-color: var(--gold);
    transform: scale(1.01);
}

.sitemap-item__title {
    font-size: 19px;
    margin-bottom: var(--space-xs);
}

.sitemap-item__title a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-item__title a:hover {
    color: var(--primary);
}

.sitemap-item__desc {
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SPORTWETTEN PAGE - feature list w/ green checks
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-sm);
    font-size: 16px;
    color: var(--muted-foreground);
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bright);
    font-weight: 800;
}

.feature-list strong { color: var(--foreground); }

/* ============================================
   CASINO-SPIELE PAGE - provider strip & lists
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    margin: var(--space-lg) 0;
}

.provider-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid rgba(138, 106, 43, 0.4);
    border-radius: var(--radius-card);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    color: var(--muted-foreground);
    filter: grayscale(0.6);
    transition: filter var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.provider-card:hover {
    filter: grayscale(0);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Lists inside info cards (game titles etc.) */
.info-card__badges {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.info-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-sm);
    font-size: 15px;
    color: var(--muted-foreground);
}

.info-card__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.info-card__list li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 13px;
}

.info-card__list strong {
    color: var(--foreground);
}
