/* =====================================================
   CasinosToronto.com — Main Stylesheet
   Theme: Luxury Dark / Gold | Mobile-First 2026
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --gold: #c9a84c;
    --gold-light: #e8cb7a;
    --gold-dark: #a07c2a;
    --gold-glow: rgba(201,168,76,0.25);
    --black: #0a0a0a;
    --dark: #111118;
    --dark-2: #1a1a24;
    --dark-3: #22222e;
    --dark-card: #181820;
    --text: #e8e6e0;
    --text-muted: #9994a8;
    --text-dim: #6b6678;
    --white: #ffffff;
    --green: #2ecc71;
    --red: #e74c3c;
    --blue: #3b82f6;
    --border: rgba(201,168,76,0.15);
    --border-subtle: rgba(255,255,255,0.07);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: all 0.4s cubic-bezier(0.4,0,0.2,1);
    --header-h: 64px;
    --container-max: 1240px;
    --section-pad: clamp(48px, 8vw, 96px);
}

/* Light Mode */
body.light-mode {
    --dark: #f5f4f0;
    --dark-2: #ebe9e3;
    --dark-3: #dddad2;
    --dark-card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #55525e;
    --text-dim: #8a8796;
    --white: #0a0a14;
    --border: rgba(201,168,76,0.25);
    --border-subtle: rgba(0,0,0,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.3);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ---- Skip Link (Accessibility) ---- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
ul, ol { margin-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--white); font-weight: 600; }

/* ---- Layout ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: calc(var(--section-pad) * 0.6) 0; }
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-header p { max-width: 620px; margin: 0.8rem auto 0; color: var(--text-muted); font-size: clamp(0.9rem, 2vw, 1.05rem); }

/* Responsive Grids */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: clamp(16px, 3vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(16px, 3vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: clamp(12px, 2vw, 24px); }
.layout-sidebar { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 960px) {
    .layout-sidebar { grid-template-columns: 1fr 320px; align-items: start; }
}

/* ---- Age Banner ---- */
.age-banner {
    background: linear-gradient(90deg, #1a1000, #2a1f00, #1a1000);
    border-bottom: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 48px 8px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.4;
}
.age-banner a { color: var(--gold); text-decoration: underline; }
.age-banner button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.age-banner button:hover { background: rgba(201,168,76,0.15); }

/* ---- Header ---- */
.site-header {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-h);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(201,168,76,0.25);
}
body.light-mode .site-header {
    background: rgba(245,244,240,0.96);
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 0 clamp(16px, 4vw, 24px);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-icon {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201,168,76,0.5);
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 500;
}

/* Main Nav */
.main-nav { flex: 1; display: none; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.main-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(201,168,76,0.1);
}
.main-nav a.active { color: var(--gold); }

@media (min-width: 960px) {
    .main-nav { display: block; }
}

/* Mobile Nav */
@media (max-width: 959px) {
    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: var(--dark-2);
        border-left: 1px solid var(--border);
        padding: 80px 24px 40px;
        z-index: 1100;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav a {
        font-size: 1rem;
        padding: 14px 16px;
        display: block;
        border-radius: 10px;
    }
    /* Mobile CTA in nav */
    .main-nav .mobile-cta {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-subtle);
    }
    .main-nav .mobile-cta a { display: block; text-align: center; }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); background: var(--gold-glow); }
.theme-icon-dark { display: block; }
.theme-icon-light { display: none; }
body.light-mode .theme-icon-dark { display: none; }
body.light-mode .theme-icon-light { display: block; }

/* Header CTA */
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active { display: block; opacity: 1; }

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1200;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.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; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav-toggle { display: none; } }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0a0a0a;
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.45);
    color: #0a0a0a;
}
.btn-gold:active { transform: translateY(0); }
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold-glow);
    color: var(--gold-light);
    transform: translateY(-1px);
}
.btn-ghost {
    background: var(--dark-3);
    color: var(--text);
    border-color: var(--border-subtle);
}
.btn-ghost:hover { background: var(--dark-2); color: var(--white); border-color: var(--border); }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; border-radius: 8px; }
.btn-full { width: 100%; }

/* ---- Cards ---- */
.card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 32px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: clamp(420px, 70vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-2);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px); }
.hero-content { max-width: 760px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero > .container > .hero-content > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 480px;
}
@media (min-width: 480px) {
    .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: none; }
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--dark-3);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    overflow: hidden;
}
.trust-bar-inner {
    display: flex;
    gap: clamp(16px, 4vw, 40px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}
.trust-item .icon { font-size: 1rem; }

/* ---- Casino Cards ---- */
.casino-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
}
.casino-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
    transform: translateY(-3px);
}
.casino-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a0a0a;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 1;
}
.casino-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: clamp(16px, 3vw, 24px);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.casino-logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: #0a0a0a;
    flex-shrink: 0;
}
.casino-name-block h3 { font-size: 1rem; margin-bottom: 4px; }
.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; }
.rating-num { font-size: 0.78rem; color: var(--text-muted); }
.bonus-text { font-size: 0.82rem; color: var(--gold); font-weight: 600; }

.casino-card-body { padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px); flex: 1; }
.casino-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.casino-features li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.casino-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.casino-card-footer {
    padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px);
    border-top: 1px solid var(--border-subtle);
    background: rgba(201,168,76,0.03);
}
.casino-card-footer .btn { width: 100%; }

/* ---- Feature Block ---- */
.feature-block {
    text-align: center;
    transition: var(--transition);
}
.feature-block:hover { transform: translateY(-4px); }

/* ---- RG Box ---- */
.rg-box {
    background: linear-gradient(135deg, rgba(46,204,113,0.08) 0%, rgba(46,204,113,0.04) 100%);
    border: 1px solid rgba(46,204,113,0.2);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
}
.rg-icon { font-size: 2.4rem; margin-bottom: 16px; }
.rg-box h3 { color: var(--white); margin-bottom: 12px; }
.rg-box p { color: var(--text-muted); max-width: 580px; margin: 0 auto 16px; font-size: 0.95rem; }
.rg-number {
    display: inline-block;
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.25);
    color: var(--green);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- FAQ ---- */
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    gap: 16px;
    transition: var(--transition);
    user-select: none;
}
.faq-question:hover { background: rgba(201,168,76,0.05); }
.faq-question.open { color: var(--gold); }
.faq-icon {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner h2 { position: relative; margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 28px; position: relative; }
.cta-banner > * { position: relative; }
.text-gold { color: var(--gold); }

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: clamp(48px, 6vw, 72px) 0 40px;
}
@media (min-width: 600px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin: 16px 0; max-width: 340px; }
.logo-footer .logo-icon { font-size: 1.5rem; }
.logo-footer .logo-main { font-size: 1.05rem; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.badge-trust {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.footer-rg-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.rg-badge {
    background: rgba(46,204,113,0.08);
    border: 1px solid rgba(46,204,113,0.2);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-disclaimer {
    padding: 28px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.footer-disclaimer p { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 8px; line-height: 1.6; }
.footer-disclaimer a { color: var(--text-muted); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal-links a:hover { color: var(--gold); }

/* ---- Breadcrumb ---- */
.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.78rem; color: var(--text-dim); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: var(--text-dim); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--text-muted); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.fw-wrap { flex-wrap: wrap; }

/* ---- Scroll Animation Classes ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Loading / Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-2) 50%, var(--dark-3) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Responsive Helpers ---- */
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 960px) { .hide-desktop { display: none; } }

/* ---- Print ---- */
@media print {
    .site-header, .age-banner, .nav-overlay, .hero-actions, .cta-banner { display: none !important; }
    body { background: white; color: black; }
}

/* ---- High contrast / Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

@media (prefers-contrast: high) {
    :root {
        --border: rgba(201,168,76,0.5);
        --border-subtle: rgba(255,255,255,0.2);
    }
}
