/* ============================================================
   UNCHARTED RP — unchartedrp.com
   Aesthetic: deep-navy cartography, teal + amber. Colourblind-safe
   (no red/green pairing; status always carries a glyph or label).
   Tokens ported from ucrp-store/theme/ucrp-theme.css so the
   marketing site and the storefront read as one property.
   ============================================================ */

:root {
    /* Backgrounds */
    --bg-primary: #0A1420;
    --bg-secondary: #0E1A28;
    --bg-raised: #10202F;
    --bg-card: rgba(16, 30, 44, 0.75);
    --bg-card-hover: rgba(16, 30, 44, 0.95);
    --bg-header: rgba(10, 20, 32, 0.92);

    /* Text */
    --text-primary: #D7E1EA;
    --text-heading: #33BEE0;
    --text-muted: #8098AB;
    --text-white: #EAF2F8;

    /* Brand — renamed from the store's legacy synthwave names,
       whose values had already been changed to amber/teal.        */
    --accent-teal: #33BEE0;
    --accent-teal-deep: #127D9E;
    --accent-teal-dim: #1F8FB2;
    --accent-amber: #F5B041;
    --accent-amber-soft: #F6C36B;
    --accent-amber-deep: #E08A2E;

    /* Glows */
    --glow-teal: 0 0 20px rgba(51, 190, 224, 0.15);
    --glow-teal-strong: 0 0 30px rgba(51, 190, 224, 0.3), 0 0 60px rgba(51, 190, 224, 0.1);
    --glow-amber: 0 0 20px rgba(245, 176, 65, 0.2);

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 820px;
    --nav-height: 68px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Motion */
    --transition-fast: 0.18s ease;
    --transition-base: 0.3s ease;

    /* Borders */
    --border-subtle: 1px solid rgba(51, 190, 224, 0.1);
    --border-card: 1px solid rgba(51, 190, 224, 0.14);
    --border-glow: 1px solid rgba(51, 190, 224, 0.35);
}

/* ─── Reset & base ─────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 16px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    /* Faint cartographic grid — the "Uncharted" map motif. */
    background-image:
        linear-gradient(rgba(51, 190, 224, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 190, 224, 0.028) 1px, transparent 1px);
    background-size: 64px 64px;
    background-attachment: fixed;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-teal); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-amber); }

:focus-visible {
    outline: 3px solid var(--accent-amber);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Typography ───────────────────────────────────────── */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lede {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-primary);
    max-width: 62ch;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-bottom: 0.75rem;
    display: block;
}

.muted { color: var(--text-muted); }

/* ─── Layout ───────────────────────────────────────────── */

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--tint { background: var(--bg-secondary); }
.section__head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head p { color: var(--text-muted); font-size: 1.05rem; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--accent-amber); color: #0A1420; padding: 0.75rem 1.25rem;
    font-weight: 600; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ─── Navigation ───────────────────────────────────────── */

.nav {
    position: sticky; top: 0; z-index: 100;
    height: var(--nav-height);
    background: var(--bg-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: var(--border-subtle);
}

.nav__inner {
    height: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}

.nav__brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 700; color: var(--text-white); font-size: 1.05rem; letter-spacing: -0.01em; }
.nav__brand:hover { color: var(--text-white); }
.nav__brand img { width: 36px; height: 36px; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav__links a {
    display: block; padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
    color: var(--text-primary); font-size: 0.94rem; font-weight: 500;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__links a:hover { background: rgba(51, 190, 224, 0.1); color: var(--accent-teal); }
.nav__links a[aria-current="page"] { color: var(--accent-teal); background: rgba(51, 190, 224, 0.08); }
.nav__links .is-external::after { content: " ↗"; font-size: 0.8em; opacity: 0.7; }

.nav__toggle {
    display: none; background: none; border: var(--border-card); color: var(--text-white);
    width: 42px; height: 42px; border-radius: var(--radius-sm); cursor: pointer;
    align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* ─── Buttons ──────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    font-family: var(--font-display); font-weight: 600; font-size: 1rem;
    padding: 0.9rem 1.75rem; border-radius: var(--radius-md);
    border: 2px solid transparent; cursor: pointer; text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast),
                background var(--transition-fast), color var(--transition-fast);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--accent-teal); color: #06121C; box-shadow: var(--glow-teal); }
.btn--primary:hover { background: #4FCDEC; color: #06121C; box-shadow: var(--glow-teal-strong); }

.btn--amber { background: var(--accent-amber); color: #1A1204; box-shadow: var(--glow-amber); }
.btn--amber:hover { background: var(--accent-amber-soft); color: #1A1204; }

.btn--ghost { background: rgba(10, 20, 32, 0.5); border-color: rgba(51, 190, 224, 0.4); color: var(--text-white); }
.btn--ghost:hover { border-color: var(--accent-teal); color: var(--accent-teal); background: rgba(51, 190, 224, 0.08); }

.btn--lg { font-size: 1.08rem; padding: 1.05rem 2.1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ─── Hero ─────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: min(86vh, 860px);
    display: flex; align-items: center;
    overflow: hidden;
    border-bottom: var(--border-subtle);
}

.hero__media {
    position: absolute; inset: 0; z-index: 0;
    background: #050D16 center/cover no-repeat;
}
.hero__media video {
    width: 100%; height: 100%; object-fit: cover;
    /* Cool the footage slightly toward the brand palette. */
    filter: saturate(1.05) contrast(1.02);
}

/* Scrim: keeps text legible over both the bright sunset and the
   dark night-course frames in the loop. */
.hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(10,20,32,0.82) 0%, rgba(10,20,32,0.42) 38%, rgba(10,20,32,0.88) 100%),
        radial-gradient(120% 90% at 20% 50%, rgba(10,20,32,0.72) 0%, rgba(10,20,32,0) 70%);
}

/* padding-block only — this element also carries .container, and a
   `padding: 4rem 0` shorthand would wipe its horizontal gutter. */
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 4rem; }
.hero__content { max-width: 46rem; }

.hero__mark { width: 92px; height: 92px; margin-bottom: 1.5rem; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55)); }

.hero h1 { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.6); margin-bottom: 0.5rem; }

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.6vw, 1.75rem);
    font-weight: 500;
    color: var(--accent-amber);
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}

.hero__blurb { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: #E4EDF4; max-width: 44ch; margin-bottom: 2rem; text-shadow: 0 2px 14px rgba(0,0,0,0.7); }

.hero__facts {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.25rem; list-style: none;
}
.hero__facts li {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
    padding: 0.4rem 0.85rem; border-radius: 999px;
    background: rgba(10, 20, 32, 0.6); border: var(--border-card); color: var(--text-primary);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ─── Cards & grids ────────────────────────────────────── */

.grid { display: grid; gap: 1.25rem; }
/* 400px min keeps grid--2 at two columns inside the 1200px container —
   at 320px a four-card set breaks as 3 + 1 and leaves a dead cell.
   The min() wrapper is required: a bare minmax(400px,…) keeps a 400px
   track on a 342px-wide phone and pushes the page into overflow. */
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }

.card {
    background: var(--bg-card); border: var(--border-card); border-radius: var(--radius-lg);
    padding: 1.6rem; position: relative; overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.card:hover { transform: translateY(-4px); border-color: rgba(51, 190, 224, 0.4); box-shadow: var(--glow-teal); background: var(--bg-card-hover); }

.card__icon {
    width: 44px; height: 44px; margin-bottom: 1rem;
    display: grid; place-items: center; border-radius: var(--radius-md);
    background: rgba(51, 190, 224, 0.12); border: 1px solid rgba(51, 190, 224, 0.25);
    font-size: 1.35rem; line-height: 1;
}
.card h3 { margin-bottom: 0.5rem; color: var(--text-white); }
.card p { color: var(--text-muted); font-size: 0.97rem; }

.card--link { display: block; color: inherit; }
.card--link:hover { color: inherit; }
.card__more { display: inline-block; margin-top: 0.9rem; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--accent-teal); }

/* ─── Feature blocks (Features page) ───────────────────── */

.feature {
    padding: clamp(2rem, 5vw, 3.25rem) 0;
    border-top: var(--border-subtle);
}
.feature:first-of-type { border-top: none; }

.feature__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.feature__num {
    font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.18em; color: var(--accent-amber); opacity: 0.85;
}
.feature__lede { color: var(--text-primary); font-size: 1.06rem; max-width: 68ch; margin-bottom: 1.5rem; }

/* Capped measure — across the full 1200px container these run to ~110
   characters a line, which is well past comfortable reading length. */
.pointlist { list-style: none; display: grid; gap: 0.85rem; max-width: 82ch; }
.pointlist li { position: relative; padding-left: 1.9rem; color: var(--text-muted); }
.pointlist li::before {
    content: "◈"; position: absolute; left: 0; top: 0;
    color: var(--accent-teal); font-size: 0.9rem;
}
.pointlist strong { color: var(--text-white); font-weight: 600; }

/* ─── Steps (Join page) ────────────────────────────────── */

.steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; }
.step {
    counter-increment: step;
    background: var(--bg-card); border: var(--border-card); border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem 1.5rem 4.6rem; position: relative;
}
.step::before {
    content: counter(step);
    position: absolute; left: 1.4rem; top: 1.35rem;
    width: 2.35rem; height: 2.35rem; border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
    background: rgba(51, 190, 224, 0.14); border: 1px solid rgba(51, 190, 224, 0.35);
    color: var(--accent-teal);
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.97rem; }

/* ─── Callouts ─────────────────────────────────────────── */

.callout {
    border-radius: var(--radius-lg); padding: 1.35rem 1.5rem;
    background: rgba(51, 190, 224, 0.07); border-left: 4px solid var(--accent-teal);
    margin: 1.5rem 0;
}
.callout__label {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-teal);
    margin-bottom: 0.5rem;
}
/* Severity is carried by glyph + label text, never hue alone. */
.callout--critical { background: rgba(245, 176, 65, 0.09); border-left-color: var(--accent-amber); }
.callout--critical .callout__label { color: var(--accent-amber); }

/* ─── Rules page ───────────────────────────────────────── */

.rules-layout { display: grid; grid-template-columns: 250px 1fr; gap: 3rem; align-items: start; }

.rules-nav { position: sticky; top: calc(var(--nav-height) + 1.5rem); }
.rules-nav h2 { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-amber); margin-bottom: 0.9rem; }
.rules-nav ol { list-style: none; display: grid; gap: 0.1rem; }
.rules-nav a {
    display: block; padding: 0.4rem 0.7rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; color: var(--text-muted); border-left: 2px solid transparent;
}
.rules-nav a:hover { color: var(--accent-teal); background: rgba(51, 190, 224, 0.07); border-left-color: var(--accent-teal); }

.rule-section { scroll-margin-top: calc(var(--nav-height) + 1.5rem); padding-bottom: 2.5rem; }
.rule-section h2 { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.rule-section h2 .rule-num {
    font-size: 0.9rem; font-weight: 700; color: var(--accent-amber);
    background: rgba(245, 176, 65, 0.12); border: 1px solid rgba(245, 176, 65, 0.3);
    border-radius: var(--radius-sm); padding: 0.15rem 0.55rem; letter-spacing: 0.06em;
    flex-shrink: 0;
}

.rule-list { list-style: none; display: grid; gap: 0.9rem; max-width: 82ch; }
.rule-list > li { position: relative; padding-left: 1.6rem; }
.rule-list > li::before { content: "—"; position: absolute; left: 0; color: var(--accent-teal-dim); }
.rule-list strong { color: var(--text-white); }

.nlr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1rem; }
.nlr-card { background: var(--bg-card); border: var(--border-card); border-radius: var(--radius-lg); padding: 1.4rem; }
.nlr-card h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 1.1rem; }
.nlr-card__tag { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }
.nlr-card--keep .nlr-card__tag { background: rgba(51, 190, 224, 0.15); color: var(--accent-teal); border: 1px solid rgba(51, 190, 224, 0.35); }
.nlr-card--wipe .nlr-card__tag { background: rgba(245, 176, 65, 0.15); color: var(--accent-amber); border: 1px solid rgba(245, 176, 65, 0.35); }
.nlr-card p { color: var(--text-muted); font-size: 0.96rem; }

.strike-ladder { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.strike {
    background: var(--bg-card); border: var(--border-card); border-radius: var(--radius-lg);
    padding: 1.3rem; border-top: 3px solid var(--accent-teal-deep);
}
.strike:nth-child(2) { border-top-color: var(--accent-teal); }
.strike:nth-child(3) { border-top-color: var(--accent-amber); }
.strike__n { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.35rem; }
.strike h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.strike p { font-size: 0.94rem; color: var(--text-muted); }

/* ─── Banded section with city art ─────────────────────── */

.band {
    position: relative; overflow: hidden;
    border-block: var(--border-subtle);
    background: var(--bg-secondary);
}
.band__bg {
    position: absolute; inset: 0; z-index: 0;
    background: url("../assets/city-band.webp") center/cover no-repeat;
    opacity: 0.28;
}
.band__scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,20,32,0.94) 0%, rgba(10,20,32,0.65) 50%, rgba(10,20,32,0.94) 100%);
}
.band .container { position: relative; z-index: 2; }

/* ─── CTA ──────────────────────────────────────────────── */

.cta { text-align: center; }
.cta h2 { margin-bottom: 0.75rem; }
.cta p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 1.75rem; }
.cta .btn-row { justify-content: center; }

/* ─── Footer ───────────────────────────────────────────── */

.footer { background: #06101A; border-top: var(--border-subtle); padding: 3rem 0 2rem; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand img { width: 54px; height: 54px; margin-bottom: 0.85rem; }
.footer__brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 34ch; }
.footer h3 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-amber); margin-bottom: 0.85rem; }
.footer ul { list-style: none; display: grid; gap: 0.45rem; }
.footer ul a { color: var(--text-muted); font-size: 0.93rem; }
.footer ul a:hover { color: var(--accent-teal); }
.footer__base { border-top: var(--border-subtle); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__base p { color: var(--text-muted); font-size: 0.86rem; }

/* ─── Cookie consent ───────────────────────────────────── */

.cookie {
    position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 150;
    max-width: 560px; margin: 0 auto;
    background: var(--bg-raised); border: var(--border-glow); border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem; box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    display: none;
}
.cookie.is-visible { display: block; }
.cookie p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.cookie .btn-row { gap: 0.6rem; }
.cookie .btn { padding: 0.6rem 1.25rem; font-size: 0.92rem; }

/* ─── Live Now placeholder ─────────────────────────────── */

.live-slot {
    border: 2px dashed rgba(51, 190, 224, 0.28); border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem); text-align: center; background: rgba(16, 30, 44, 0.4);
}
.live-slot__badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-amber);
    margin-bottom: 0.85rem;
}

/* ─── 404 ──────────────────────────────────────────────── */

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-page .compass { width: 110px; margin: 0 auto 1.5rem; opacity: 0.8; }

/* ─── Responsive ───────────────────────────────────────── */

@media (max-width: 900px) {
    .rules-layout { grid-template-columns: 1fr; gap: 2rem; }
    .rules-nav { position: static; }
    .rules-nav ol { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .rules-nav a { border-left: none; border: var(--border-card); }
}

@media (max-width: 780px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: absolute; top: var(--nav-height); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0.15rem;
        background: var(--bg-header); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
        border-bottom: var(--border-subtle); padding: 0.75rem 1.5rem 1.25rem;
        display: none;
    }
    .nav__links.is-open { display: flex; }
    .nav__links a { padding: 0.7rem 0.85rem; }

    /* The hero loop is a 2.54:1 cinematic crop — in a tall phone
       viewport `cover` would show only a narrow centre sliver, so
       serve the poster still instead and save the bandwidth. */
    .hero { min-height: auto; }
    .hero__inner { padding-block: 3.5rem; }
    .hero__media video { display: none; }
    .hero__media { background-image: url("../assets/hero-poster.webp"); }

    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .btn-row { flex-direction: column; }
    .cookie .btn { width: 100%; }
}

/* ─── Motion & print ───────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero__media video { display: none; }
    .hero__media { background-image: url("../assets/hero-poster.webp"); }
    .card:hover, .btn:hover { transform: none; }
}

@media print {
    .nav, .footer, .cookie, .hero__media, .btn-row { display: none !important; }
    body { background: #fff; color: #000; }
    h1, h2, h3 { color: #000; }
}
