/*
 * BETSSON CASINO - DESIGN SYSTEM
 * Golden VIP-casino glamour. Dark obsidian base, turquoise + amber-gold accents.
 * Fonts: Playfair Display (headings), Manrope (body).
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #0a0e17;
    --foreground: #f5f0e6;
    --card: #141a24;
    --card-foreground: #f5f0e6;
    --popover: #141a24;
    --popover-foreground: #f5f0e6;
    --primary: #2dd4bf;
    --primary-foreground: #062023;
    --secondary: #1c2430;
    --secondary-foreground: #f5f0e6;
    --muted: #252d3a;
    --muted-foreground: #c4bcae;
    --accent: #fbbf24;
    --accent-foreground: #1a1200;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #3a4657;
    --input: #3a4657;
    --ring: #2dd4bf;
}

.dark {
    --background: #0a0e17;
    --foreground: #f5f0e6;
    --card: #171e2a;
    --card-foreground: #f5f0e6;
    --popover: #141a24;
    --popover-foreground: #f5f0e6;
    --primary: #2dd4bf;
    --primary-foreground: #062023;
    --secondary: #1c2430;
    --secondary-foreground: #f5f0e6;
    --muted: #252d3a;
    --muted-foreground: #c4bcae;
    --accent: #fbbf24;
    --accent-foreground: #1a1200;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #3a4657;
    --input: #3a4657;
    --ring: #2dd4bf;
}

:root {
    --font-head: "Playfair Display", Georgia, serif;
    --font-body: "Manrope", system-ui, -apple-system, sans-serif;

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

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;

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

    --gold-grad: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #ea9c1a 100%);
    --gold-glow: 0 8px 40px rgba(251, 191, 36, 0.22);
    --turq-glow: 0 8px 40px rgba(45, 212, 191, 0.28);
    --ease: 250ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   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, .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
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 15% 0%, rgba(45, 212, 191, 0.06), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(251, 191, 36, 0.06), transparent 42%);
    -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 28px; font-weight: 800; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }

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

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

.text-secondary { font-size: 15px; color: var(--muted-foreground); }

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

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

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

@media (min-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-sm); }

.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }

.section__head { max-width: 760px; margin-bottom: var(--space-lg); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker {
    display: inline-block; font-family: var(--font-body); font-weight: 700;
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--primary); margin-bottom: var(--space-xs);
}
.section__lead { color: var(--muted-foreground); font-size: 17px; max-width: 68ch; }

.prose { max-width: 72ch; }
.prose p { color: var(--muted-foreground); }
.prose a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px 28px; border: 0; border-radius: 999px;
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    cursor: pointer; text-decoration: none; text-align: center;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--primary); color: var(--primary-foreground); box-shadow: 0 4px 18px rgba(45, 212, 191, 0.25); }
.btn--primary:hover { transform: scale(1.03); box-shadow: var(--turq-glow); }

.btn--gold { background: var(--gold-grad); color: #1a1200; box-shadow: 0 4px 18px rgba(251, 191, 36, 0.28); }
.btn--gold:hover { transform: scale(1.03); box-shadow: var(--gold-glow); }

.btn--ghost { background: transparent; color: var(--foreground); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.03); }

.btn--lg { min-height: 56px; padding: 16px 40px; font-size: 18px; }
.btn--block { width: 100%; }

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(10, 14, 23, 0.92);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw); margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
    min-height: var(--header-h); padding-inline: var(--space-sm);
}

.site-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-brand__mark {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold-grad); color: #10131c;
    font-family: var(--font-head); font-weight: 900; font-size: 20px;
    box-shadow: 0 0 0 2px var(--primary) inset, var(--gold-glow);
}
.site-brand__text { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--foreground); }
.site-brand__accent { color: var(--primary); }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: transparent; border: 0;
    cursor: pointer; z-index: 1001;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--foreground);
    border-radius: 2px; transition: transform var(--ease), opacity 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 {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
    display: none; flex-direction: column; justify-content: flex-start;
    gap: var(--space-md); padding: var(--space-lg) var(--space-sm);
    background: var(--background); overflow-y: auto;
    border-top: 1px solid var(--border);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: var(--space-xs);
}
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px; padding: 0 var(--space-sm);
    font-weight: 600; font-size: 18px; color: var(--foreground); border-radius: var(--radius-sm);
}
.primary-nav__list a:hover { background: var(--secondary); color: var(--primary); text-decoration: none; }

.primary-nav__actions { display: flex; flex-direction: column; gap: var(--space-xs); margin-top: var(--space-xs); }
.primary-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        position: static; inset: auto; display: flex; flex-direction: row; align-items: center;
        gap: var(--space-lg); padding: 0; background: transparent; border: 0; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-md); }
    .primary-nav__list a { min-height: 44px; padding: 0; font-size: 16px; position: relative; }
    .primary-nav__list a:hover { background: transparent; }
    .primary-nav__list a::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px;
        background: var(--primary); transform: scaleX(0); transform-origin: left;
        transition: transform var(--ease);
    }
    .primary-nav__list a:hover::after { transform: scaleX(1); }
    .primary-nav__actions { flex-direction: row; margin-top: 0; }
    .primary-nav__actions .btn { width: auto; }
    .btn--ghost { min-height: 44px; padding: 10px 20px; }
}

/* ============================================
   HERO - full-bleed glamour banner
   ============================================ */
.hero {
    position: relative; isolation: isolate; overflow: clip;
    padding-block: var(--space-2xl);
    background: var(--background);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10,14,23,0.55) 0%, rgba(10,14,23,0.82) 55%, rgba(10,14,23,0.95) 100%);
}
.hero__inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-sm); }
.hero__content { max-width: 640px; }
.hero__slogan {
    display: inline-block; font-family: var(--font-head); font-style: italic;
    font-size: 18px; color: var(--primary); margin-bottom: var(--space-sm);
}
.hero h1 { font-size: 32px; margin-bottom: var(--space-md); }
.hero__sub { color: var(--foreground); font-size: 18px; margin-bottom: var(--space-lg); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__micro { margin-top: var(--space-md); padding-bottom: var(--space-sm); font-size: 14px; color: var(--muted-foreground); }

.bonus-figure {
    display: inline-block; font-family: var(--font-head); font-weight: 900;
    font-size: clamp(2.4rem, 8vw, 4.2rem); line-height: 1.05;
    background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
    color: transparent; margin-bottom: var(--space-sm);
}
.bonus-figure__spins { display: block; color: var(--primary); -webkit-text-fill-color: var(--primary);
    background: none; font-size: clamp(1.2rem, 4vw, 1.9rem); }

@media (min-width: 1024px) {
    .hero h1 { font-size: 46px; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { padding-block: var(--space-lg); background: var(--card);
    border-block: 1px solid rgba(251, 191, 36, 0.25); box-shadow: inset 0 0 60px rgba(251,191,36,0.05); }
.trust-bar__inner {
    max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-sm);
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); text-align: center;
}
.trust-bar__item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-bar__icon { font-size: 18px; color: var(--accent); }
.trust-bar__stat { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--foreground); }
.trust-bar__label { font-size: 14px; color: var(--muted-foreground); max-width: 22ch; }

@media (min-width: 768px) {
    .trust-bar__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .trust-bar__inner { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

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

.info-card {
    display: flex; flex-direction: column; min-width: 0;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md); box-shadow: 0 0 0 1px rgba(251,191,36,0.04);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.info-card:hover { transform: scale(1.03); box-shadow: var(--gold-glow); border-color: rgba(251,191,36,0.4); }
.info-card__media { position: relative; margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.info-card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.info-card__badge {
    position: absolute; top: 12px; left: 12px; background: var(--gold-grad); color: #1a1200;
    font-weight: 800; font-size: 12px; padding: 4px 12px; border-radius: 999px;
}
.info-card__icon { width: 64px; height: 64px; margin-bottom: var(--space-sm); }
.info-card__icon img { width: 64px; height: 64px; object-fit: contain; }
.info-card__title { margin-bottom: var(--space-xs); }
.info-card__text { color: var(--muted-foreground); font-size: 16px; flex: 1; }
.info-card__link { margin-top: var(--space-sm); font-weight: 700; color: var(--primary); display: inline-flex; gap: 6px; }
.info-card__link:hover { text-decoration: none; gap: 10px; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .stat-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .stat-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.stat-highlight { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-highlight__number {
    font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem, 7vw, 3.4rem); line-height: 1;
    background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-highlight__label { font-weight: 600; color: var(--foreground); font-size: 17px; }
.stat-highlight__source { font-size: 13px; color: var(--muted-foreground); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; isolation: isolate; text-align: center;
    padding-block: var(--space-xl); background: #070a11;
    border-block: 1px solid var(--border);
}
.cta-banner::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(ellipse at 50% 120%, rgba(251,191,36,0.18), transparent 60%),
        radial-gradient(circle at 20% 0%, rgba(45,212,191,0.12), transparent 45%);
}
.cta-banner__inner { max-width: 760px; margin-inline: auto; padding-inline: var(--space-sm); }
.cta-banner__bonus {
    font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 7vw, 3.4rem); line-height: 1;
    background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: var(--space-sm);
}
.cta-banner__title { color: var(--foreground); font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: var(--space-sm); }
.cta-banner__subtext { color: var(--muted-foreground); margin-bottom: var(--space-lg); }
.cta-banner__microcopy { margin-top: var(--space-md); font-size: 13px; color: var(--muted-foreground); }

@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-xl); } }

/* ============================================
   CALLOUT / TLDR / BONUS BOX
   ============================================ */
.callout {
    background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md);
    box-shadow: 0 0 30px rgba(251,191,36,0.04);
}
.callout--gold { border-left-color: var(--accent); }
.callout__title { font-family: var(--font-head); font-size: 20px; margin-bottom: var(--space-xs); }
.callout ul { margin: 0; padding-left: 1.2em; }
.callout li { margin-bottom: 6px; color: var(--muted-foreground); }

.tldr {
    background: linear-gradient(135deg, rgba(45,212,191,0.08), rgba(251,191,36,0.06));
    border: 1px solid var(--border); border-left: 4px solid var(--accent);
    border-radius: var(--radius); padding: var(--space-md);
}
.tldr__label {
    display: inline-block; font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-xs);
}

/* ============================================
   SPLIT / TWO-COLUMN (VIP teaser, mobile, etc.)
   ============================================ */
.split { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--gold-glow); }
.split__media--transparent img { box-shadow: none; }
@media (min-width: 1024px) {
    .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .split--reverse .split__media { order: 2; }
}

/* ============================================
   TABLE
   ============================================ */
.table-wrapper { border: 1px solid var(--border); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; min-width: 480px; font-size: 16px; }
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table thead th { background: var(--secondary); font-family: var(--font-head); color: var(--foreground); font-weight: 700; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion { display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
    background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--primary);
    border-radius: var(--radius); overflow: hidden;
}
.faq-item[open] { box-shadow: var(--gold-glow); }
.faq-item__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--foreground);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__chevron { font-size: 22px; color: var(--primary); transition: transform var(--ease); flex-shrink: 0; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer { padding: 0 var(--space-md) var(--space-md); color: var(--muted-foreground); }

/* ============================================
   PAYMENT / PROVIDER STRIP
   ============================================ */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
.logo-strip img { height: 44px; width: auto; object-fit: contain;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; }

/* ============================================
   FEATURE LIST (numbered tips)
   ============================================ */
.step-list { list-style: none; counter-reset: step; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.step-list li { position: relative; padding-left: 56px; color: var(--muted-foreground); }
.step-list li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0; width: 40px; height: 40px; display: grid; place-items: center;
    background: var(--gold-grad); color: #1a1200; font-family: var(--font-head); font-weight: 800;
    border-radius: 50%;
}
.step-list strong { color: var(--foreground); display: block; font-size: 17px; margin-bottom: 2px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #070a11; border-top: 1px solid var(--border); margin-top: var(--space-xl); }
.site-footer__inner {
    max-width: var(--maxw); margin-inline: auto; padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__tagline { color: var(--muted-foreground); font-size: 15px; max-width: 40ch; }
.site-footer__heading { font-family: var(--font-head); font-size: 17px; color: var(--foreground); margin-bottom: var(--space-sm); }
.site-footer__links, .site-footer__payments { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted-foreground); font-size: 15px; }
.site-footer__links a:hover { color: var(--primary); }
.site-footer__payments { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.site-footer__payments li {
    display: inline-flex; align-items: center; min-height: 44px;
    font-size: 14px; color: var(--muted-foreground); background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 12px;
}
.site-footer__bottom {
    border-top: 1px solid var(--border); padding: var(--space-md) var(--space-sm);
    max-width: var(--maxw); margin-inline: auto;
}
.site-footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-sm); }
.footer-badge {
    display: inline-flex; align-items: center; min-height: 44px;
    font-size: 12px; font-weight: 700; color: var(--muted-foreground);
    border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 5px 12px;
}
.footer-badge--age { color: var(--accent-foreground); background: var(--accent); border-color: var(--accent); }
.site-footer__legal { font-size: 14px; color: var(--muted-foreground); margin: 0; max-width: 90ch; }

@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 500ms ease-out, transform 500ms ease-out; transition-delay: var(--delay, 0ms); }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

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