/* ============================================
   BEEF CASINO - GOLDEN VIP GLAMOUR DESIGN SYSTEM
   ============================================ */

:root {
    /* Glamour tokens */
    --gold-grad: linear-gradient(135deg, #f5d27a 0%, #e8b842 45%, #b8860b 100%);
    --gold-light: #f5d27a;
    --gold: #e8b842;
    --gold-deep: #b8860b;
    --ember: #a83248;
    --emerald: #2ecc71;
    --velvet: #0e0b08;
    --velvet-2: #1a1410;
    --velvet-3: #2a221a;
    --pearl: #f5ead3;
    --bronze: #a89478;

    /* Spacing scale */
    --s-1: 8px;
    --s-2: 16px;
    --s-3: 24px;
    --s-4: 32px;
    --s-5: 48px;
    --s-6: 64px;
    --s-7: 96px;

    --maxw: 1240px;
    --radius: 6px;
    --radius-lg: 14px;
    --t: 280ms cubic-bezier(.2,.7,.2,1);
}

:root {
    --background: #0e0b08;
    --foreground: #f5ead3;
    --card: #1a1410;
    --card-foreground: #f5ead3;
    --popover: #1a1410;
    --popover-foreground: #f5ead3;
    --primary: #e8b842;
    --primary-foreground: #1a1006;
    --secondary: #a83248;
    --secondary-foreground: #fff5ec;
    --muted: #2a221a;
    --muted-foreground: #c4a87a;
    --accent: #2ecc71;
    --accent-foreground: #0e0b08;
    --destructive: #e74c3c;
    --destructive-foreground: #000000;
    --border: #3a2e22;
    --input: #211a14;
    --ring: #e8b842;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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 { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

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

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(232,184,66,.07), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(168,50,72,.05), transparent 60%);
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--s-2) var(--s-3);
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); }

/* Typography */
h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--s-3);
    color: var(--foreground);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(30px, 5vw, 44px); }
h2 { font-size: clamp(26px, 4vw, 34px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 var(--s-3); }
a { color: var(--gold-light); text-decoration: underline; text-decoration-color: rgba(245,210,122,.45); text-underline-offset: 4px; transition: color var(--t), text-decoration-color var(--t); }
a:hover { color: #ffe9a8; text-decoration-color: var(--gold-light); }
.nav-list a, .footer-links a, .site-brand, .skip-link, .btn { text-decoration: none; }
.nav-list a:hover, .footer-links a:hover, .site-brand:hover { text-decoration: none; }

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

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.container-1240 {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--s-3);
}

.dark-velvet {
    background: var(--velvet);
    color: var(--pearl);
}

/* Diamond divider */
.gold-divider {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    margin: var(--s-5) auto;
    max-width: 320px;
    color: var(--gold);
}
.gold-divider::before, .gold-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.gold-divider .diamond {
    width: 10px; height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(232,184,66,.6);
}

/* Section spacing */
section { padding: var(--s-6) 0; }
@media (min-width: 1024px) { section { padding: var(--s-7) 0; } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-1);
    padding: 14px 28px;
    min-height: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
    text-decoration: none;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-gold {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: 0 6px 20px rgba(232,184,66,.25);
}
.btn-gold:hover { box-shadow: 0 10px 30px rgba(232,184,66,.45); color: var(--primary-foreground); }

.btn-ghost {
    background: transparent;
    color: var(--pearl);
    border-color: var(--gold-deep);
}
.btn-ghost:hover { background: rgba(232,184,66,.1); color: var(--gold-light); }

.btn-large { padding: 18px 36px; font-size: 18px; min-height: 56px; }

@keyframes gold-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(232,184,66,.25); }
    50% { box-shadow: 0 6px 28px rgba(232,184,66,.55); }
}
.btn-pulse { animation: gold-pulse 4s ease-in-out infinite; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14,11,8,.85);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
    min-height: 72px;
    padding-top: var(--s-1);
    padding-bottom: var(--s-1);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pearl);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
}
.site-brand:hover { text-decoration: none; color: var(--gold-light); }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid var(--gold-deep);
    background: rgba(232,184,66,.06);
}
.brand-text em { color: var(--gold); font-style: italic; }

.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 1001;
    padding: 0 12px;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--gold);
    transition: transform var(--t), opacity var(--t);
}
.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); }

.primary-nav { display: none; }

.nav-list {
    list-style: none;
    margin: 0; padding: 0;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: var(--pearl);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 16px;
}
.nav-list a:hover { color: var(--gold); text-decoration: none; }

.nav-cta {
    display: flex;
    gap: var(--s-2);
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: var(--velvet);
        z-index: 999;
        padding: var(--s-3);
        overflow-y: auto;
        border-top: 1px solid var(--gold-deep);
    }
    .primary-nav.is-open .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-bottom: var(--s-4);
    }
    .primary-nav.is-open .nav-list a {
        border-bottom: 1px solid var(--border);
        font-family: 'Playfair Display', serif;
        font-size: 20px;
    }
    .primary-nav.is-open .nav-cta {
        flex-direction: column;
        gap: var(--s-2);
    }
    .primary-nav.is-open .nav-cta .btn { width: 100%; }
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--s-4);
    }
    .nav-list {
        display: flex;
        gap: var(--s-1);
    }
}

/* ============================================
   HERO PATTERN
   ============================================ */
.page-hero {
    position: relative;
    background: var(--velvet);
    color: var(--pearl);
    padding: var(--s-6) 0;
    overflow: clip;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(closest-side, rgba(232,184,66,.22), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--s-5);
    align-items: center;
}
.hero-text h1 { color: var(--pearl); }
.hero-text p { color: var(--pearl); opacity: .9; font-size: 18px; }
.hero-jackpot {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(52px, 9vw, 88px);
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: var(--s-2) 0;
    text-shadow: 0 4px 24px rgba(232,184,66,.2);
}
.hero-sub {
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 14px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    margin-top: var(--s-3);
}
.hero-fineprint {
    margin-top: var(--s-3);
    color: var(--bronze);
    font-size: 14px;
}
.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gold-deep);
    box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 80px rgba(232,184,66,.15);
}
.hero-media img {
    display: block;
    width: 100%;
    height: auto;
    animation: float 8s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (min-width: 1024px) {
    .page-hero { padding: var(--s-7) 0; }
    .hero-inner { grid-template-columns: 1.05fr 1fr; gap: var(--s-6); }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-grid {
    display: grid;
    gap: var(--s-3);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.bonus-grid.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .bonus-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--velvet-2);
    color: var(--pearl);
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    min-width: 0;
}
@media (min-width: 768px) { .bonus-card { padding: 28px; } }
.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(232,184,66,.18);
    border-color: var(--gold);
}
.bonus-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bonus-amount {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--s-2);
}
.bonus-title {
    color: var(--pearl);
    margin-bottom: var(--s-1);
}
.bonus-desc {
    color: var(--pearl);
    opacity: .85;
    flex: 1;
}
.bonus-meta {
    list-style: none;
    margin: var(--s-2) 0 var(--s-3);
    padding: var(--s-2) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
}
.bonus-meta li {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--bronze);
}
.bonus-meta strong {
    color: var(--gold-light);
    font-size: 16px;
    font-family: 'Playfair Display', serif;
}
.bonus-cta { margin-top: auto; width: 100%; }

/* ============================================
   TRUST STAT
   ============================================ */
.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    background: var(--velvet-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--s-4);
    position: relative;
}
.trust-cell {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--s-2);
    min-width: 0;
}
.trust-number {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.trust-label {
    color: var(--pearl);
    font-weight: 600;
    font-size: 16px;
}
.trust-source {
    color: var(--bronze);
    font-size: 13px;
    margin-top: 4px;
}
.trust-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
    margin: 0 var(--s-3);
    position: relative;
}
.trust-divider .diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(232,184,66,.6);
}
@media (min-width: 768px) {
    .trust-stat { flex-direction: row; align-items: center; }
    .trust-cell { flex: 1; }
    .trust-divider { width: 1px; height: 60px; margin: 0; background: linear-gradient(180deg, transparent, var(--gold-deep), transparent); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--velvet-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background var(--t);
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
    background: rgba(232,184,66,.04);
    border-left: 3px solid var(--gold);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-2);
    min-height: 64px;
    padding: var(--s-3);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--pearl);
    font-weight: 600;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
    position: relative;
    width: 22px; height: 22px;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--gold);
    transition: transform var(--t);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
    padding: 0 var(--s-3) var(--s-3);
    color: var(--pearl);
    opacity: .9;
}
.faq-answer p { margin: 0; line-height: 1.7; }

/* ============================================
   PAYMENT GRID
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: var(--s-2);
}
@media (min-width: 768px) { .payment-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.payment-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    aspect-ratio: 1;
    background: var(--velvet-2);
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius);
    padding: 16px 8px;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.payment-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232,184,66,.2);
    background: rgba(232,184,66,.06);
}
.payment-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--pearl);
    letter-spacing: .03em;
    text-align: center;
}
.payment-tile:hover .payment-logo { color: var(--gold-light); }
.payment-caption {
    font-size: 12px;
    color: var(--bronze);
    text-align: center;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--velvet) 0%, var(--velvet-2) 100%);
    color: var(--pearl);
    padding: var(--s-6) 0;
    position: relative;
    overflow: clip;
}
.cta-banner-inner {
    display: grid;
    gap: var(--s-4);
    align-items: center;
}
.cta-banner-text h2 { color: var(--pearl); font-size: clamp(26px, 4vw, 34px); }
.cta-banner-text p { color: var(--pearl); opacity: .9; }
.cta-fineprint {
    margin-top: var(--s-2);
    color: var(--bronze);
    font-size: 13px;
}
.cta-banner-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gold-deep);
}
.cta-banner-image img { display: block; width: 100%; height: auto; }
.goldburst {
    position: absolute;
    inset: -30%;
    background: radial-gradient(closest-side, rgba(232,184,66,.25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 1024px) {
    .cta-banner-inner { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

/* ============================================
   INFO CARD
   ============================================ */
.info-grid {
    display: grid;
    gap: var(--s-3);
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .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)); } }
@media (min-width: 1024px) { .info-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.info-card {
    background: var(--velvet-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    min-width: 0;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(232,184,66,.15);
}
.info-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-deep);
}
.info-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t);
}
.info-card:hover .info-card-media img { transform: scale(1.04); }
.info-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.info-card-body {
    padding: 20px;
    color: var(--pearl);
}
@media (min-width: 768px) { .info-card-body { padding: 28px; } }
.info-card-body h3 { color: var(--pearl); }
.info-card-body p { color: var(--pearl); opacity: .85; margin-bottom: var(--s-2); }
.info-meta {
    display: inline-block;
    margin-top: var(--s-1);
    padding: 4px 10px;
    border: 1px solid var(--gold-deep);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold-light);
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    background: rgba(232,184,66,.06);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--s-3);
    margin: var(--s-4) 0;
}
.tldr-box h2, .tldr-box h3 {
    color: var(--gold-light);
    margin-top: 0;
    font-size: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.callout {
    background: var(--velvet-2);
    border: 1px solid var(--gold-deep);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--s-3);
    margin: var(--s-3) 0;
    color: var(--pearl);
}
.callout strong { color: var(--gold-light); }

.pullquote {
    margin: var(--s-5) 0;
    padding: var(--s-3) var(--s-4);
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.4;
    color: var(--pearl);
}
.pullquote cite {
    display: block;
    margin-top: var(--s-2);
    font-size: 14px;
    font-style: normal;
    color: var(--bronze);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    padding: var(--s-3);
    background: var(--velvet-2);
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius);
}
.stat-highlight .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    align-items: center;
    justify-content: center;
    padding: var(--s-3) 0;
}
.trust-badges span {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--bronze);
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--velvet-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: 15px;
}
.comparison-table thead {
    background: rgba(232,184,66,.08);
}
.comparison-table th, .comparison-table td {
    padding: 14px var(--s-2);
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--pearl);
}
.comparison-table th {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .recommended {
    background: rgba(232,184,66,.06);
    border-left: 2px solid var(--gold);
}

.table-wrapper {
    margin: var(--s-3) 0;
    border-radius: var(--radius-lg);
}
.table-wrapper:focus {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

/* Section heading group */
.section-head {
    text-align: center;
    margin-bottom: var(--s-5);
}
.section-head h2 { color: var(--pearl); }
.section-head .eyebrow {
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    display: block;
    margin-bottom: var(--s-1);
}
.section-head p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--pearl);
    opacity: .85;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--velvet-2);
    color: var(--pearl);
    border-top: 1px solid var(--gold-deep);
    padding: var(--s-6) 0 var(--s-3);
    margin-top: var(--s-6);
}
.footer-grid {
    display: grid;
    gap: var(--s-5);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.footer-brand { color: var(--pearl); font-size: 22px; }
.footer-blurb {
    color: var(--pearl);
    opacity: .85;
    margin: var(--s-2) 0;
    font-size: 15px;
}
.age-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--bronze);
}
.age-badge span {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #ff6b80;
    color: #ff6b80;
    font-weight: 700;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--gold-light);
    margin-bottom: var(--s-2);
    letter-spacing: .05em;
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    margin: 0; padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--pearl);
    font-size: 15px;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-payments {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-payments li {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--bronze);
    background: rgba(255,255,255,.02);
}

.license-text {
    color: var(--pearl);
    opacity: .85;
    font-size: 14px;
    margin-bottom: var(--s-2);
}
.license-text strong { color: var(--gold-light); }

.footer-bottom {
    margin-top: var(--s-5);
    padding-top: var(--s-3);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: var(--s-1);
    font-size: 13px;
    color: var(--bronze);
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   UTILITIES
   ============================================ */
.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-gold { color: var(--gold-light); }
.text-pearl { color: var(--pearl); }
.text-bronze { color: var(--bronze); }

.eyebrow {
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    background: var(--velvet);
    padding: var(--s-6) 0 var(--s-3);
    text-align: center;
}
.sitemap-hero .eyebrow { display: block; margin-bottom: var(--s-1); }
.sitemap-hero h1 {
    color: var(--pearl);
    margin-bottom: var(--s-2);
}
.sitemap-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--pearl);
    opacity: .9;
    font-size: 17px;
}
.sitemap-section-title {
    text-align: center;
    color: var(--pearl);
    margin-bottom: var(--s-4);
}
.sitemap-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 880px;
    background: var(--velvet-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sitemap-entry {
    padding: var(--s-4) var(--s-3);
    border-bottom: 1px solid var(--border);
    transition: background var(--t);
}
.sitemap-entry:last-child { border-bottom: none; }
.sitemap-entry:hover { background: rgba(232,184,66,.04); }
.sitemap-entry-title {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--pearl);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color var(--t);
}
.sitemap-entry-title:hover {
    color: var(--gold-light);
    text-decoration: none;
}
.sitemap-path {
    display: block;
    font-family: 'Manrope', monospace;
    font-size: 13px;
    color: var(--bronze);
    margin-bottom: var(--s-2);
    letter-spacing: .02em;
}
.sitemap-desc {
    color: var(--pearl);
    opacity: .85;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
}
.sitemap-note {
    max-width: 880px;
    margin: var(--s-5) auto 0;
}

@media (min-width: 768px) {
    .sitemap-entry { padding: var(--s-4) var(--s-5); }
}

/* Two-column content split */
.split-2 {
    display: grid;
    gap: var(--s-4);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 768px) { .split-2 { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }
.split-2 img { border-radius: var(--radius-lg); border: 1px solid var(--gold-deep); }