/*
 * OnlySpins Casino - Design System
 * Tropical-luxury: turquoise-and-gold on deep blue-black.
 * Fonts: Sora (display) + Manrope (body).
 */

:root {
    --background: #0a1420;
    --foreground: #f4ead9;
    --card: #0f2432;
    --card-foreground: #f4ead9;
    --popover: #0f2432;
    --popover-foreground: #f4ead9;
    --primary: #2dd4bf;
    --primary-foreground: #04231f;
    --secondary: #123240;
    --secondary-foreground: #f4ead9;
    --muted: #1a3644;
    --muted-foreground: #9bb2b8;
    --accent: #f5b731;
    --accent-foreground: #231702;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #274451;
    --input: #132b38;
    --ring: #2dd4bf;

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

    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;

    --maxw: 1200px;
    --header-h: 64px;

    --sunrise: linear-gradient(120deg, #0d5c58 0%, #17a2a2 40%, #f5b731 118%);
    --font-display: "Sora", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   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 { 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
   Sora headings, Manrope body, mobile-first scale
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

h1 { font-size: clamp(2.125rem, 6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin: 0 0 var(--space-md); max-width: 72ch; }

a { color: var(--primary); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--accent); }

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

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

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

.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 HELPERS
   .container - centered max-width text column
   .section - vertical rhythm
   ============================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-sm); }
.section { padding-block: var(--space-2xl); }
.section--tight { padding-block: var(--space-xl); }
.section__head { max-width: 720px; margin-bottom: var(--space-lg); }
.section__eyebrow {
    display: inline-block; font-family: var(--font-display); font-weight: 600;
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--space-xs);
}
.lead { font-size: 1.125rem; color: var(--muted-foreground); }

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

/* ============================================
   BUTTONS
   .btn--gold primary CTA, --gold-outline, --ghost
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px 26px;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem;
    border-radius: var(--radius-pill); border: 2px solid transparent;
    cursor: pointer; text-align: center; line-height: 1.1;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 1.0625rem; }

.btn--gold {
    background: var(--accent); color: var(--accent-foreground);
    box-shadow: 0 8px 24px -8px rgba(245, 183, 49, 0.55);
}
.btn--gold:hover { color: var(--accent-foreground); transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(245, 183, 49, 0.7); }

.btn--gold-outline {
    background: transparent; color: var(--accent); border-color: var(--accent);
}
.btn--gold-outline:hover { background: var(--accent); color: var(--accent-foreground); transform: translateY(-2px); }

.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { color: var(--primary-foreground); 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 (mobile-first drawer)
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: color-mix(in srgb, var(--background) 92%, transparent);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw); margin-inline: auto;
    padding: 10px var(--space-sm);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: var(--header-h);
}

.site-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--foreground); font-weight: 800; }
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    background: var(--sunrise);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 30%, transparent);
}
.site-brand__text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.02em; }
.site-brand__accent { color: var(--accent); }

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

.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) var(--space-sm) var(--space-2xl);
    overflow-y: auto;
    flex-direction: column; gap: var(--space-lg);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; }
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px;
    font-family: var(--font-display); font-weight: 600; font-size: 1.125rem;
    color: var(--foreground); border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--accent); }

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

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex; position: static; inset: auto; flex-direction: row; align-items: center;
        gap: var(--space-lg); background: transparent; padding: 0; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-xs); }
    .primary-nav__list a { min-height: 44px; padding-inline: 12px; border-bottom: none; font-size: 1rem; }
    .primary-nav__cta { flex-direction: row; }
    .primary-nav__cta .btn { width: auto; min-height: 44px; padding: 10px 20px; }
}

/* ============================================
   HERO
   Full-bleed sunrise hero with model background
   ============================================ */
.hero { position: relative; overflow: clip; }
.hero__bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,20,32,0.55) 0%, rgba(10,20,32,0.78) 100%);
}
.hero__inner {
    position: relative; z-index: 2;
    max-width: var(--maxw); margin-inline: auto;
    padding: var(--space-2xl) var(--space-sm);
    min-height: 74vh; display: flex; flex-direction: column; justify-content: center;
}
.hero__content { max-width: 640px; }
.hero h1, .hero p { color: #f4ead9; }
.hero__eyebrow {
    display: inline-block; font-family: var(--font-display); font-weight: 600;
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--space-sm);
    background: rgba(10,20,32,0.5); padding: 6px 14px; border-radius: var(--radius-pill);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero__micro { margin-top: var(--space-sm); font-size: 0.9rem; color: #cdd9db; }

@media (min-width: 1024px) {
    .hero__inner { padding: var(--space-3xl) var(--space-md); min-height: 80vh; }
}

/* Oversized glowing gold bonus figure */
.bonus-figure, .hero__figure {
    display: block; font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.75rem, 8vw, 5rem); line-height: 1; color: var(--accent);
    text-shadow: 0 0 26px rgba(245, 183, 49, 0.55); margin-bottom: var(--space-sm);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--secondary); border-block: 1px solid var(--border); }
.trust-bar__inner {
    max-width: var(--maxw); margin-inline: auto; padding: var(--space-md) var(--space-sm);
    display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md) var(--space-lg);
}
.trust-bar__item {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--foreground);
}
.trust-bar__item img { width: 34px; height: 34px; }

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

/* Two-column split (text + media) */
.split { display: grid; gap: var(--space-lg); grid-template-columns: minmax(0, 1fr); align-items: center; }
.split__media img { width: 100%; border-radius: var(--radius); display: block; }
@media (min-width: 1024px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2xl); }
    .split--reverse .split__media { order: -1; }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    display: flex; flex-direction: column; align-items: flex-start;
    min-width: 0; padding: var(--space-md);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px -12px rgba(245, 183, 49, 0.35);
    border-color: var(--accent);
}
.bonus-card--highlight { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.bonus-card__figure {
    font-family: var(--font-display); font-weight: 800; font-size: clamp(2.25rem, 5vw, 3rem);
    line-height: 1; color: var(--accent); text-shadow: 0 0 22px rgba(245, 183, 49, 0.5);
    margin-bottom: var(--space-sm);
}
.bonus-card__title { color: var(--card-foreground); margin-bottom: var(--space-xs); }
.bonus-card__desc { color: var(--muted-foreground); font-size: 0.975rem; margin-bottom: var(--space-md); }
.bonus-card__btn { margin-top: auto; }

/* ============================================
   FEATURE ITEM
   ============================================ */
.feature-item {
    min-width: 0; padding: var(--space-md);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -14px rgba(45, 212, 191, 0.45); }
.feature-item__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem;
    background: color-mix(in srgb, var(--primary) 18%, transparent); color: var(--primary);
    margin-bottom: var(--space-sm);
}
.feature-item__img { width: 60px; height: 60px; object-fit: contain; margin-bottom: var(--space-sm); }
.feature-item__title { color: var(--card-foreground); margin-bottom: var(--space-xs); }
.feature-item__desc { color: var(--muted-foreground); font-size: 0.975rem; margin: 0; }

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: grid; gap: var(--space-lg); grid-template-columns: minmax(0, 1fr);
    text-align: center; padding: var(--space-lg) 0;
}
@media (min-width: 768px) { .stat-block { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat-block__num {
    display: block; font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 3.25rem); line-height: 1; color: var(--accent);
    text-shadow: 0 0 22px rgba(245, 183, 49, 0.45); margin-bottom: var(--space-xs);
}
.stat-block__label { color: var(--muted-foreground); font-size: 0.95rem; font-weight: 500; }

/* ============================================
   HOW-TO STEPS
   ============================================ */
.how-to__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .how-to__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.how-to__step {
    display: flex; gap: var(--space-sm); align-items: flex-start;
    padding: var(--space-md); background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.how-to__num {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
    color: var(--accent-foreground); background: var(--accent);
    box-shadow: 0 0 18px rgba(245, 183, 49, 0.4);
}
.how-to__title { margin-bottom: 4px; color: var(--card-foreground); font-size: 1.125rem; font-weight: 600; }
.how-to__text { color: var(--muted-foreground); font-size: 0.975rem; margin: 0; }

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: 44px; padding: var(--space-md) 4px; cursor: pointer;
    font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--foreground);
    list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
    flex-shrink: 0; width: 12px; height: 12px; border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent); transform: rotate(45deg);
    transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); }
.faq-item__a { padding: 0 4px var(--space-md); }
.faq-item__a p { color: var(--muted-foreground); margin: 0; line-height: 1.6; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
/* Summary / TL;DR */
.tldr {
    background: var(--secondary); border: 1px solid var(--border);
    border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
    padding: var(--space-md); margin-bottom: var(--space-lg);
}
.tldr__label {
    display: inline-block; font-family: var(--font-display); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--space-xs);
}
.tldr p { margin: 0; color: var(--foreground); }

/* Callout / highlight */
.callout {
    background: color-mix(in srgb, var(--primary) 10%, var(--card));
    border: 1px solid var(--border); border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm); padding: var(--space-md); margin-block: var(--space-lg);
}
.callout--gold { border-left-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--card)); }
.callout p:last-child { margin-bottom: 0; }
.callout__title { font-family: var(--font-display); font-weight: 700; margin-bottom: var(--space-xs); color: var(--foreground); }

/* Stat highlight (inline) */
.stat-highlight {
    display: inline-flex; flex-direction: column; padding: var(--space-md);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.stat-highlight__num { font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; color: var(--accent); line-height: 1; }
.stat-highlight__label { color: var(--muted-foreground); font-size: 0.9rem; margin-top: 4px; }
.stat-highlight__source { color: var(--muted-foreground); font-size: 0.8rem; margin-top: 6px; }

/* Pull quote */
.pull-quote {
    margin: var(--space-xl) 0; padding-left: var(--space-md);
    border-left: 4px solid var(--accent);
    font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600; color: var(--foreground); line-height: 1.35;
}
.pull-quote cite { display: block; margin-top: var(--space-sm); font-family: var(--font-body); font-size: 1rem; font-weight: 500; font-style: normal; color: var(--muted-foreground); }

/* Testimonial / social proof cards */
.testimonial {
    min-width: 0; padding: var(--space-md); background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius); position: relative;
}
.testimonial__quote { color: var(--card-foreground); font-size: 1rem; margin-bottom: var(--space-sm); }
.testimonial__quote::before { content: "\201C"; font-family: var(--font-display); font-size: 3rem; color: var(--accent); line-height: 0.6; display: block; margin-bottom: 8px; }
.testimonial__author { font-family: var(--font-display); font-weight: 700; color: var(--foreground); font-size: 0.95rem; }

/* Trust badges row */
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-md); }
.trust-badges img { width: auto; max-height: 40px; opacity: 0.9; }

/* Comparison / data table */
.table-wrapper { border: 1px solid var(--border); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.data-table th, .data-table td { padding: 14px var(--space-sm); text-align: left; border-bottom: 1px solid var(--border); }
.data-table thead th {
    font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
    background: var(--secondary); color: var(--foreground);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table td { color: var(--muted-foreground); }
.data-table td:first-child { color: var(--foreground); font-weight: 600; }
.data-table .is-recommended { background: color-mix(in srgb, var(--accent) 12%, var(--card)); }

/* Payment logo strip */
.logo-strip {
    list-style: none; margin: 0 0 var(--space-md); padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md);
}
.logo-strip li { margin: 0; }
.logo-strip img { width: 100%; max-width: 640px; height: auto; border-radius: var(--radius-sm); }

/* Payment badges (theme-aware) */
.pay-badges {
    list-style: none; margin: 0 0 var(--space-md); padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm);
}
.pay-badges li {
    margin: 0; padding: 12px 18px; min-height: 48px;
    display: inline-flex; align-items: center;
    font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
    color: var(--foreground);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
}

/* ============================================
   CTA BAND (component)
   ============================================ */
.cta-band { position: relative; background: var(--sunrise); overflow: clip; }
.cta-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 120%, rgba(0,0,0,0.35), transparent 60%);
}
.cta-band__inner {
    position: relative; z-index: 1; max-width: 780px; margin-inline: auto; text-align: center;
    padding: var(--space-2xl) var(--space-sm);
}
.cta-band__headline { color: #06231f; }
.cta-band__subline { color: #0a2b26; font-weight: 500; max-width: 60ch; margin-inline: auto; }
.cta-band__micro { margin-top: var(--space-sm); margin-bottom: 0; font-size: 0.9rem; color: #0a2b26; font-weight: 600; }
.cta-band .btn--gold { background: #0a1420; color: #f5b731; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }
.cta-band .btn--gold:hover { background: #06121d; color: #f5b731; }
@media (min-width: 1024px) { .cta-band__inner { padding: var(--space-3xl) var(--space-md); } }

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.sitemap-list li { padding: var(--space-md) 0; border-bottom: 1px solid var(--border); margin: 0; }
.sitemap-list h3 { margin-bottom: var(--space-xs); }
.sitemap-list p { color: var(--muted-foreground); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--secondary); border-top: 1px solid var(--border); }
.site-footer__inner {
    max-width: var(--maxw); margin-inline: auto; padding: var(--space-2xl) var(--space-sm) var(--space-lg);
    display: grid; gap: var(--space-lg); grid-template-columns: minmax(0, 1fr);
}
.site-footer__heading { font-size: 1rem; color: var(--foreground); margin-bottom: var(--space-sm); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col ul li { margin-bottom: var(--space-xs); }
.site-footer__col a { color: var(--muted-foreground); display: inline-flex; align-items: center; min-height: 44px; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__tagline { color: var(--muted-foreground); font-size: 0.95rem; }
.site-footer__age { color: var(--foreground); font-size: 0.9rem; font-weight: 600; }
.site-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.site-footer__payments li {
    margin: 0; padding: 10px 12px; min-height: 44px; display: inline-flex; align-items: center;
    font-size: 0.8rem; font-weight: 600;
    background: var(--card); border: 1px solid var(--border); border-radius: 6px; color: var(--muted-foreground);
}
.site-footer__license { color: var(--muted-foreground); font-size: 0.85rem; margin-top: var(--space-sm); }
.site-footer__bottom {
    border-top: 1px solid var(--border); text-align: center;
    padding: var(--space-md) var(--space-sm); color: var(--muted-foreground); font-size: 0.85rem;
}
.site-footer__bottom p { margin: 0; max-width: none; }
@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer__col a { min-height: 0; }
}
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: 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;
}
