/* ============================================================
   Buran Casino — slate.css
   Tokens: TYPO-04 / SPACE-07 / GEO-08 / NAME-04
   Single container width: 1400px. Dark theme.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --color-bg: #0e1525;
    --color-surface: #141c30;
    --color-surface-2: #1d2742;
    --color-primary: #1d2742;
    --color-accent: #d847ab;
    --color-accent-pressed: #cd2a90;
    --color-gradient-light: #2dcfd3;
    --color-gradient-mid: #e8a838;
    --color-text: #ffffff;
    --color-text-muted: #bfbdbd;
    --color-border: #2a334d;

    /* TYPO-04 type scale */
    --fs-xs: 0.8125rem;
    --fs-sm: 0.9375rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 2.25rem;
    --fs-3xl: 3rem;
    --lh-tight: 1.2;
    --lh-normal: 1.55;

    /* SPACE-07 spacing scale */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 52px;
    --space-2xl: 96px;
    --space-3xl: 128px;

    /* GEO-08 geometry */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 999px;

    /* Containers */
    --container-site: 1400px;
    --container-readable: 720px;
    --container-padding-desktop: 24px;

    /* MOTION-08 */
    --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
    --dur-fast: 160ms;
    --dur-base: 240ms;

    /* Header height */
    --header-h: 68px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--color-gradient-light);
    text-decoration: underline;
    transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-md) 0;
    color: var(--color-text);
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); margin-block: var(--space-lg) var(--space-md); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { margin: 0 0 var(--space-md) 0; }
ul, ol { padding-left: var(--space-lg); margin: 0 0 var(--space-md) 0; }
li { margin-bottom: var(--space-xs); }
strong { color: var(--color-text); font-weight: 700; }
em { font-style: italic; }
hr { border: none; border-top: 1px solid var(--color-border); margin: var(--space-lg) 0; }
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-accent); color: #fff; padding: var(--space-xs) var(--space-md);
    z-index: 1000;
}
.skip-link:focus { left: var(--space-md); top: var(--space-md); }

/* ---------- Shared container ---------- */
.netWrapper-inner,
.unitFooter-inner,
.streamModule-inner,
.wingHeader-inner,
.axisBar-inner,
.huskFooter-inner,
.districtBar-inner,
.boardZone-inner,
.podTrack-inner,
.elementPanel-inner,
.chipTile-inner,
.tagList-inner,
.slateHeader-inner,
.pulsePanel-inner,
.hubRail-inner,
.stallGrid-inner,
.meshBar-inner {
    max-width: calc(var(--container-site) + 2 * var(--container-padding-desktop));
    margin: 0 auto;
    padding-inline: var(--container-padding-desktop);
    display: block;
}
/* All content blocks fill the section --container-site width (anti-pattern A-04 — no readable-narrow inside wide section) */

/* =========================================================
   HEAD-05 — Header (.netWrapper)
   ========================================================= */
.netWrapper {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 21, 37, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.netWrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: var(--space-md);
}
.netWrapper-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--color-text);
}
.netWrapper-logo:hover { color: var(--color-text); }
.netWrapper-logo img {
    height: 44px;
    width: auto;
}
.netWrapper-nav {
    display: none;
}
.netWrapper-nav.is-open {
    display: block;
}
@media (min-width: 881px) {
    .netWrapper-nav { display: flex; }
}
.netWrapper-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-md);
}
.netWrapper-nav-item { margin: 0; }
.netWrapper-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-sm);
    white-space: nowrap;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.netWrapper-nav-link:hover { background: var(--color-surface-2); color: var(--color-gradient-light); }
.netWrapper-nav-link[aria-current='page'] { color: var(--color-accent); background: var(--color-surface); }
.netWrapper-burger {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0;
}
.netWrapper-burger:hover { color: var(--color-accent); border-color: var(--color-accent); }

@media (max-width: 880px) {
    .netWrapper-nav.is-open {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100dvh - var(--header-h));
        background: var(--color-bg);
        padding: var(--space-lg) var(--space-md);
        z-index: 40;
        overflow-y: auto;
    }
    .netWrapper-nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }
    body.menu-open { overflow: hidden; }
}
@media (min-width: 881px) {
    .netWrapper-burger { display: none; }
}

/* =========================================================
   HERO-01 — Stream module (.streamModule)
   ========================================================= */
.streamModule {
    padding-block: var(--space-2xl) var(--space-xl);
    background:
        radial-gradient(circle at 70% 20%, rgba(216, 71, 171, 0.18), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(45, 207, 211, 0.14), transparent 50%),
        var(--color-bg);
    position: relative;
    overflow: hidden;
}
.streamModule-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.streamModule-copy h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-bottom: var(--space-md);
}
.streamModule-subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 60ch;
}
.streamModule-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-pressed));
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--fs-md);
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
    box-shadow: 0 8px 24px rgba(216, 71, 171, 0.35);
}
.streamModule-cta:hover { color: #ffffff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(216, 71, 171, 0.45); }
.streamModule-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 880px) {
    .streamModule { padding-block: var(--space-xl) var(--space-lg); }
    .streamModule-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   PHEAD-03 — Page header (.wingHeader)
   ========================================================= */
.wingHeader {
    padding-block: var(--space-xl) var(--space-lg);
    background: linear-gradient(180deg, rgba(29, 39, 66, 0.45), transparent);
}
.wingHeader-inner { text-align: center; }
.wingHeader h1 {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
}
.wingHeader-intro {
    color: var(--color-text-muted);
    font-size: var(--fs-md);
    margin: 0 auto;
    max-width: 60ch;
}
.wingHeader-meta {
    margin-top: var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

/* =========================================================
   BREAD-04 — Breadcrumbs (.meshBar)
   ========================================================= */
.meshBar {
    padding-block: var(--space-md) 0;
    font-size: var(--fs-sm);
}
.meshBar-inner { display: block; }
.meshBar-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    color: var(--color-text-muted);
}
.meshBar-item { display: inline-flex; align-items: center; gap: var(--space-xs); }
.meshBar-item + .meshBar-item::before {
    content: '/';
    margin-right: var(--space-xs);
    color: var(--color-border);
}
.meshBar-link { color: var(--color-gradient-light); text-decoration: none; }
.meshBar-link:hover { color: var(--color-accent); text-decoration: underline; }
.meshBar-current { color: var(--color-text); }

/* =========================================================
   GRID-10 — Items grid (.axisBar)
   ========================================================= */
.axisBar { padding-block: var(--space-xl); }
.axisBar-heading {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-lg);
    text-align: center;
}
.axisBar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}
.axisBar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.axisBar-card:hover { transform: translateY(-2px); border-color: var(--color-accent); }
.axisBar-card-title {
    font-size: var(--fs-lg);
    color: var(--color-gradient-light);
    margin-bottom: var(--space-sm);
}
.axisBar-card-text {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    margin: 0;
}

/* =========================================================
   PROSE-06 — Prose body (.podTrack)
   ========================================================= */
.podTrack { padding-block: var(--space-xl); }
.podTrack-inner { }
.podTrack-body { color: var(--color-text); }
.podTrack-body h2 { margin-block: var(--space-lg) var(--space-md); color: var(--color-text); }
.podTrack-body h3 { margin-block: var(--space-md) var(--space-sm); }
.podTrack-body p, .podTrack-body li { color: var(--color-text); }
.podTrack-body a { color: var(--color-gradient-light); }
.podTrack-body a:hover { color: var(--color-accent); }

/* =========================================================
   TABLE-08 — Data table (.elementPanel)
   ========================================================= */
.elementPanel { padding-block: var(--space-lg); }
.elementPanel-inner { }
.elementPanel-wrap {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow-x: auto;
}
.elementPanel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}
.elementPanel-table thead th {
    background: var(--color-surface-2);
    color: var(--color-text);
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
}
.elementPanel-table tbody td {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}
.elementPanel-table tbody tr:nth-child(even) td { background: rgba(29, 39, 66, 0.35); }

/* =========================================================
   FAQ-04 — Husk footer (.huskFooter)
   ========================================================= */
.huskFooter { padding-block: var(--space-xl); background: rgba(29, 39, 66, 0.25); }
.huskFooter-heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.huskFooter-list { max-width: 880px; margin: 0 auto; }
.huskFooter-item {
    border-bottom: 1px solid var(--color-border);
}
.huskFooter-item details { padding: var(--space-sm) 0; }
.huskFooter-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text);
    padding: var(--space-sm) 0;
    font-size: var(--fs-md);
    list-style: none;
    position: relative;
    padding-right: var(--space-lg);
}
.huskFooter-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: var(--space-sm);
    color: var(--color-accent);
    font-size: 1.4rem;
    line-height: 1;
}
.huskFooter-item details[open] summary::after { content: '−'; }
.huskFooter-item summary::-webkit-details-marker { display: none; }
.huskFooter-answer {
    color: var(--color-text-muted);
    padding: 0 0 var(--space-sm) 0;
    margin: 0;
}

/* =========================================================
   REV-05 — Reviews (.districtBar)
   ========================================================= */
.districtBar { padding-block: var(--space-xl); }
.districtBar-heading { text-align: center; margin-bottom: var(--space-lg); }
.districtBar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}
.districtBar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}
.districtBar-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-xs);
    gap: var(--space-xs);
}
.districtBar-author { font-weight: 600; color: var(--color-text); }
.districtBar-rating { color: var(--color-gradient-mid); font-size: var(--fs-sm); }
.districtBar-date { color: var(--color-text-muted); font-size: var(--fs-xs); }
.districtBar-text { color: var(--color-text-muted); font-size: var(--fs-sm); margin: 0; }

/* =========================================================
   CTA-08 — Board zone (.boardZone)
   ========================================================= */
.boardZone {
    padding-block: var(--space-xl);
}
.boardZone-inner {
    background: linear-gradient(135deg, var(--color-surface-2), var(--color-primary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}
.boardZone-title { margin-bottom: var(--space-sm); }
.boardZone-text { color: var(--color-text-muted); max-width: 60ch; margin: 0 auto var(--space-md) auto; }
.boardZone-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-pressed));
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--dur-fast) var(--ease-out);
}
.boardZone-btn:hover { color: #ffffff; transform: translateY(-2px); }

/* =========================================================
   LEGAL-02 — Legal section (.chipTile)
   ========================================================= */
.chipTile { padding-block: var(--space-xl); }
.chipTile-inner { }
.chipTile-intro {
    color: var(--color-text-muted);
    font-size: var(--fs-md);
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--color-accent);
    padding-left: var(--space-md);
}
.chipTile-section { margin-bottom: var(--space-lg); }
.chipTile-section h2 { color: var(--color-gradient-light); }
.chipTile-contacts {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-lg);
}
.chipTile-contacts h2 { font-size: var(--fs-lg); margin-top: 0; }
.chipTile-disclaimer {
    margin-top: var(--space-lg);
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    font-style: italic;
}
.chipTile-updated {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

/* =========================================================
   FORM-06 — Contact form (.tagList)
   ========================================================= */
.tagList { padding-block: var(--space-xl); }
.tagList-inner { }
.tagList-intro {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}
.tagList-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: grid;
    gap: var(--space-md);
}
.tagList-field { display: flex; flex-direction: column; gap: var(--space-xs); }
.tagList-label { font-weight: 600; color: var(--color-text); font-size: var(--fs-sm); }
.tagList-input,
.tagList-textarea {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    padding: var(--space-sm) var(--space-md);
    font: inherit;
    font-size: var(--fs-base);
}
.tagList-input:focus,
.tagList-textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
    border-color: var(--color-accent);
}
.tagList-textarea { min-height: 140px; resize: vertical; }
.tagList-submit {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-pressed));
    color: #ffffff;
    border: 0;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    font-size: var(--fs-md);
    justify-self: start;
    transition: transform var(--dur-fast) var(--ease-out);
}
.tagList-submit:hover { color: #ffffff; transform: translateY(-2px); }
.tagList-success {
    color: var(--color-gradient-light);
    background: rgba(45, 207, 211, 0.1);
    border: 1px solid var(--color-gradient-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}
.tagList-success[hidden] { display: none; }

/* =========================================================
   AUTH-05 — Author card (.slateHeader)
   ========================================================= */
.slateHeader { padding-block: var(--space-xl); }
.slateHeader-inner { }
.slateHeader-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    align-items: start;
}
.slateHeader-portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-accent);
}
.slateHeader-body { min-width: 0; }
.slateHeader-name { font-size: var(--fs-2xl); margin: 0 0 var(--space-2xs) 0; }
.slateHeader-role { color: var(--color-gradient-light); margin-bottom: var(--space-sm); font-weight: 600; }
.slateHeader-bio { color: var(--color-text-muted); margin-bottom: var(--space-md); }
.slateHeader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}
.slateHeader-expertise li {
    background: var(--color-surface-2);
    color: var(--color-text);
    border-radius: var(--radius-pill);
    padding: var(--space-2xs) var(--space-sm);
    font-size: var(--fs-xs);
    margin: 0;
}
.slateHeader-articles { margin-top: var(--space-lg); }
.slateHeader-articles-heading { font-size: var(--fs-xl); margin-bottom: var(--space-sm); }
.slateHeader-articles-list { list-style: none; padding: 0; margin: 0; }
.slateHeader-articles-item {
    border-top: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
}
.slateHeader-articles-item a {
    color: var(--color-gradient-light);
    text-decoration: none;
    font-weight: 500;
}
.slateHeader-articles-item a:hover { color: var(--color-accent); text-decoration: underline; }

@media (max-width: 640px) {
    .slateHeader-card { grid-template-columns: 1fr; }
    .slateHeader-portrait { max-width: 200px; }
}

/* =========================================================
   BYLINE-07 — Author byline (.pulsePanel)
   ========================================================= */
.pulsePanel {
    padding-block: var(--space-lg);
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-xl);
}
.pulsePanel-inner { }
.pulsePanel-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: var(--space-md);
    align-items: center;
}
.pulsePanel-portrait {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}
.pulsePanel-meta { font-size: var(--fs-sm); }
.pulsePanel-label { color: var(--color-text-muted); }
.pulsePanel-name {
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
}
.pulsePanel-name:hover { color: var(--color-accent); text-decoration: underline; }
.pulsePanel-role { color: var(--color-text-muted); display: block; margin-top: var(--space-2xs); }
.pulsePanel-date {
    display: block;
    margin-top: var(--space-2xs);
    color: var(--color-text-muted);
    font-size: var(--fs-xs);
}

/* =========================================================
   COOK-06 — Cookie banner (.hubRail)
   ========================================================= */
.hubRail {
    position: fixed;
    inset: auto 0 0 0;
    background: var(--color-surface-2);
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-md);
    z-index: 60;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}
.hubRail[hidden] { display: none; }
.hubRail-inner {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}
.hubRail-text {
    flex: 1 1 320px;
    color: var(--color-text);
    font-size: var(--fs-sm);
    margin: 0;
}
.hubRail-actions { display: flex; gap: var(--space-xs); }
.hubRail-btn {
    background: var(--color-accent);
    color: #ffffff;
    border: 0;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--fs-sm);
}
.hubRail-btn:hover { color: #ffffff; background: var(--color-accent-pressed); }
.hubRail-btn--ghost {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}
.hubRail-btn--ghost:hover { color: var(--color-text); background: var(--color-surface); }

/* =========================================================
   ERR-06 — Error block (.stallGrid)
   ========================================================= */
.stallGrid { padding-block: var(--space-2xl); }
.stallGrid-inner { text-align: center; }
.stallGrid-code {
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
    line-height: 1;
}
.stallGrid-title { margin-bottom: var(--space-md); }
.stallGrid-text { color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.stallGrid-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-pressed));
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
}
.stallGrid-btn:hover { color: #ffffff; transform: translateY(-2px); }

/* =========================================================
   FOOT-06 — Footer (.unitFooter)
   ========================================================= */
.unitFooter {
    padding-block: var(--space-xl) var(--space-md);
    background: #0a1020;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-lg);
}
.unitFooter-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.unitFooter-brand img { height: 40px; width: auto; margin-bottom: var(--space-sm); }
.unitFooter-tagline { color: var(--color-text-muted); font-size: var(--fs-sm); }
.unitFooter-col { min-width: 0; }
.unitFooter-heading {
    font-size: var(--fs-md);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}
.unitFooter-list { list-style: none; padding: 0; margin: 0; }
.unitFooter-list li { margin-bottom: var(--space-xs); }
.unitFooter-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--fs-sm);
}
.unitFooter-link:hover { color: var(--color-accent); text-decoration: underline; }
.unitFooter-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--fs-xs);
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.unitFooter-age {
    background: var(--color-accent);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

@media (max-width: 720px) {
    .unitFooter-grid { grid-template-columns: 1fr; }
}

/* A-31: cookie banner mobile stack — buttons under text, not inline */
@media (max-width: 700px) {
	.hubRail-inner { flex-direction: column; align-items: stretch; height: auto; padding-block: var(--space-sm); gap: var(--space-sm); }
	.hubRail-actions { width: 100%; justify-content: stretch; flex-wrap: wrap; }
	.hubRail-accept, .hubRail-decline, .hubRail-btn--accept, .hubRail-btn--decline, .hubRail-button--accept, .hubRail-button--decline { flex: 1 1 auto; justify-content: center; }
}
