/* =============================================================================
   Casino Anfahrt (casinoanfahrt.com) — design system «Wegweiser».
   Motorway signage as an interface: asphalt ground, painted keylines, green
   destination boards, blue service plates, tabular numbers for distance and time.
   No webfonts (CSP-friendly): neo-grotesque system stack + a monospace for figures.
   ========================================================================== */

/* --------------------------------------------------------------- 1. tokens */
:root {
    --asphalt: #15181b;
    --asphalt-2: #1e2429;
    --asphalt-3: #2a3238;
    --asphalt-4: #3a444c;

    --paint: #ffffff;
    --paint-80: rgba(255, 255, 255, .82);
    --paint-60: rgba(255, 255, 255, .6);
    --paint-30: rgba(255, 255, 255, .3);
    --paint-14: rgba(255, 255, 255, .14);

    --signal: #0e7a4a;          /* Autobahn green — destinations */
    --signal-dark: #0a5c38;
    --signal-soft: #e4f1ea;
    --road: #0b4f9e;            /* Hauptstrasse blue — service */
    --road-soft: #e6eef8;
    --stop: #c2331d;            /* closed */
    --stop-soft: #fbe9e6;

    --ink: #14181b;
    --ink-2: #4c565d;
    --ink-3: #77828a;
    --concrete: #eceeec;
    --concrete-2: #f6f7f6;
    --rule: #d2d8d5;
    --rule-2: #e3e7e5;

    --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, -apple-system, sans-serif;
    --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, "Roboto Mono", "Courier New", monospace;

    --shell: 1200px;
    --gap: clamp(1.1rem, 2.4vw, 2rem);
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 18px 40px -28px rgba(10, 20, 16, .55);
    --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(1rem, .96rem + .18vw, 1.06rem);
    line-height: 1.6;
    color: var(--ink);
    background: var(--concrete-2);
    -webkit-font-smoothing: antialiased;
}

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

/* ---------------------------------------------------------- 2. typography */
h1, h2, h3, h4 {
    margin: 0 0 .5em;
    font-weight: 700;
    letter-spacing: -.018em;
    line-height: 1.1;
    text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem); }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.08rem, 1rem + .35vw, 1.3rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
small { font-size: .82em; }
strong, b { font-weight: 700; }

a { color: var(--signal-dark); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--signal); }

.eyebrow {
    margin: 0 0 .7rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--signal-dark);
}
.eyebrow--paint { color: var(--paint-60); }
.eyebrow--amber { color: var(--signal); }

.note { color: var(--ink-2); font-size: .86rem; margin: .9rem 0 0; }
.is-muted { color: var(--ink-3); }
.pending-note { color: var(--stop); font-style: normal; }
.source-line { font-size: .8rem; color: var(--ink-3); margin: .8rem 0 0; }

.text-link {
    display: inline-flex; align-items: center; gap: .4rem;
    font-weight: 700; font-size: .9rem; letter-spacing: .01em;
    color: var(--signal-dark); text-decoration: none;
    border-bottom: 2px solid var(--signal-soft); padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--signal); }
.text-link--light { color: var(--paint); border-bottom-color: var(--paint-30); }
.text-link--light:hover { color: var(--paint); border-bottom-color: var(--paint); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--signal); color: var(--paint); padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ------------------------------------------------------------- 3. controls */
.button {
    --btn-bg: var(--signal);
    --btn-fg: var(--paint);
    --btn-bd: var(--paint);
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .78rem 1.25rem;
    font: inherit; font-weight: 700; font-size: .92rem; letter-spacing: .01em;
    color: var(--btn-fg); background: var(--btn-bg);
    border: 2px solid var(--btn-bd); border-radius: var(--radius-sm);
    text-decoration: none; cursor: pointer;
    box-shadow: inset 0 0 0 2px var(--btn-bg);
    transition: transform .12s ease, filter .12s ease;
}
.button:hover { filter: brightness(1.08); transform: translateY(-1px); color: var(--btn-fg); }
.button:active { transform: none; }
.button--sign { --btn-bg: var(--signal); --btn-fg: var(--paint); --btn-bd: var(--paint); }
.button--amber { --btn-bg: var(--signal); --btn-fg: var(--paint); --btn-bd: var(--paint); }
.button--ghost, .button--outline {
    --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink);
    box-shadow: none;
}
.button--ghost:hover, .button--outline:hover { background: var(--ink); color: var(--paint); filter: none; }
.button--small { padding: .5rem .8rem; font-size: .8rem; }
.button--geo { --btn-bg: transparent; --btn-fg: var(--road); --btn-bd: var(--road); box-shadow: none; }
.button--geo.is-active { --btn-bg: var(--road); --btn-fg: var(--paint); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; }

.section--asphalt .button--ghost, .sighero .button--ghost, .final-cta .button--ghost {
    --btn-fg: var(--paint); --btn-bd: var(--paint-60);
}
.section--asphalt .button--ghost:hover, .sighero .button--ghost:hover, .final-cta .button--ghost:hover {
    background: var(--paint); color: var(--ink);
}
/* white plates sit inside the dark sections, so their buttons stay dark on white */
.signrow .button--ghost, .doorboard .button--ghost { --btn-fg: var(--ink); --btn-bd: var(--ink); }
.signrow .button--ghost:hover { background: var(--ink); color: var(--paint); }

.chip {
    display: inline-flex; align-items: center;
    padding: .18rem .5rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid var(--rule); border-radius: 3px;
    background: var(--paint); color: var(--ink-2);
}
.chip--ch { border-color: #c9342066; color: #a02a19; background: #fdf1ef; }
.chip--at, .chip--de { border-color: var(--rule); }
.chip--fr, .chip--it, .chip--li { border-color: var(--rule); }

.games-chips { display: flex; flex-wrap: wrap; gap: .3rem; list-style: none; margin: .55rem 0 0; padding: 0; }
.games-chips li {
    font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink-2); background: var(--concrete); border-radius: 2px; padding: .16rem .42rem;
}
.games-chips li.is-muted { color: var(--ink-3); }

.status {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 600; color: var(--ink-2);
    margin: .5rem 0 0;
}
.status i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); flex: none; }
.status.is-open { color: var(--signal-dark); }
.status.is-open i { background: var(--signal); box-shadow: 0 0 0 3px rgba(14, 122, 74, .18); }
.status.is-closed { color: var(--stop); }
.status.is-closed i { background: var(--stop); box-shadow: 0 0 0 3px rgba(194, 51, 29, .14); }
.status--na { color: var(--ink-3); font-style: italic; }

.tz-select, select, input, textarea {
    font: inherit; color: inherit;
    background: var(--paint);
    border: 2px solid var(--ink); border-radius: var(--radius-sm);
    padding: .6rem .7rem;
}
.finder__row--inline { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.2rem; }
select { max-width: 100%; }
.tz-select { border-width: 1px; border-color: var(--rule); padding: .18rem .35rem; font-size: .8rem; border-radius: 3px; }

/* --------------------------------------------------------------- 4. layout */
.shell { width: min(100% - 2.2rem, var(--shell)); margin-inline: auto; }
.section { padding: clamp(3rem, 6vw, 5.2rem) 0; }
.section--raised { background: var(--concrete); border-block: 1px solid var(--rule-2); }
.section--asphalt { background: var(--asphalt); color: var(--paint); }
.section--asphalt h2, .section--asphalt h3 { color: var(--paint); }
.section--asphalt p { color: var(--paint-80); }

.section-heading {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 1rem var(--gap); align-items: end;
    padding-bottom: 1.4rem; margin-bottom: 2rem;
    border-bottom: 3px solid var(--ink);
}
.section-heading h2 { margin: 0; }
.section-heading p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.section-heading--paint { border-bottom-color: var(--paint-30); }
.section-heading--paint p { color: var(--paint-60); }
.section-action { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; margin-top: 2rem; }

.group-title {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
    color: var(--ink-2); border-bottom: 1px solid var(--rule); padding-bottom: .5rem; margin-bottom: 1.4rem;
}
.group-title--spaced { margin-top: 3rem; }
.group-title a { color: inherit; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------- 5. header */
.site-header {
    position: sticky; top: 0; z-index: 90;
    background: var(--asphalt); color: var(--paint);
    border-bottom: 1px solid var(--paint-14);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -22px rgba(0, 0, 0, .9); }
.site-header__inner {
    width: min(100% - 2.2rem, var(--shell)); margin-inline: auto;
    min-height: var(--header-h);
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--paint); text-decoration: none; margin-right: auto; }
.brand__mark { color: var(--paint); flex: none; }
.brand__name { font-size: 1.02rem; font-weight: 500; letter-spacing: .01em; text-transform: uppercase; }
.brand__name b { font-weight: 800; }
.site-header__tools { display: flex; align-items: center; gap: .6rem; order: 3; }
.header-phone { color: var(--paint-80); font-size: .85rem; text-decoration: none; }

.primary-nav { display: flex; align-items: center; gap: 1.1rem; order: 4; width: 100%; padding: .3rem 0 .7rem; flex-wrap: wrap; }
.primary-nav a {
    color: var(--paint-80); text-decoration: none;
    font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--paint); border-bottom-color: var(--paint-30); }
.primary-nav a[aria-current="page"] { color: var(--paint); border-bottom-color: var(--signal); }
.primary-nav .nav-cta {
    margin-left: auto; color: var(--paint); background: var(--signal);
    border: 2px solid var(--paint-30); border-radius: var(--radius-sm);
    padding: .4rem .8rem;
}
.primary-nav .nav-cta:hover { border-color: var(--paint); }

.menu-toggle {
    display: none; align-items: center; gap: .45rem;
    background: transparent; color: var(--paint); border: 2px solid var(--paint-30);
    border-radius: var(--radius-sm); padding: .4rem .65rem; font: inherit; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .1em; font-weight: 700; cursor: pointer;
}
.menu-toggle__icon { width: 16px; height: 2px; background: currentColor; position: relative; display: block; }
.menu-toggle__icon::before, .menu-toggle__icon::after {
    content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor;
}
.menu-toggle__icon::before { top: -5px; } .menu-toggle__icon::after { top: 5px; }

.lang-switch { position: relative; }
.lang-switch__button {
    background: transparent; color: var(--paint); border: 2px solid var(--paint-30);
    border-radius: var(--radius-sm); padding: .35rem .6rem; font: inherit; font-weight: 700; font-size: .78rem;
    letter-spacing: .1em; cursor: pointer;
}
.lang-switch__menu {
    position: absolute; right: 0; top: calc(100% + .4rem); z-index: 50;
    list-style: none; margin: 0; padding: .3rem;
    background: var(--paint); border: 2px solid var(--ink); border-radius: var(--radius-sm);
    min-width: 9rem; box-shadow: var(--shadow);
}
.lang-switch__menu a { display: block; padding: .4rem .6rem; color: var(--ink); text-decoration: none; font-size: .88rem; border-radius: 3px; }
.lang-switch__menu a:hover { background: var(--concrete); }
.lang-switch__menu a[aria-current="true"] { font-weight: 700; color: var(--signal-dark); }

@media (max-width: 900px) {
    .menu-toggle { display: inline-flex; }
    .primary-nav { display: none; }
    body.menu-open .primary-nav { display: flex; flex-direction: column; align-items: stretch; gap: .2rem; padding-bottom: 1rem; }
    body.menu-open .primary-nav a { padding: .6rem 0; border-bottom: 1px solid var(--paint-14); }
    body.menu-open .primary-nav .nav-cta { margin: .6rem 0 0; text-align: center; }
}

/* ------------------------------------------------------- 6. signage hero */
.sighero {
    position: relative;
    background: var(--asphalt);
    color: var(--paint);
    padding: clamp(2.4rem, 5vw, 4.4rem) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}
.sighero__lane {
    position: absolute; inset: 0; pointer-events: none;
    background:
        repeating-linear-gradient(90deg, transparent 0 62px, var(--paint-14) 62px 104px) 0 0 / 100% 3px no-repeat,
        radial-gradient(120% 90% at 80% 0%, rgba(14, 122, 74, .35), transparent 60%),
        linear-gradient(180deg, #1a1f23 0%, #15181b 60%);
    opacity: .95;
}
.sighero__lane::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
    background: repeating-linear-gradient(90deg, var(--paint-30) 0 34px, transparent 34px 68px);
    opacity: .5;
}
.sighero__grid {
    position: relative;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start;
}
.sighero__text h1 { color: var(--paint); margin-bottom: .6rem; }
.sighero__text h1 em { display: block; font-style: normal; color: #7fd9ac; }
.sighero__copy { color: var(--paint-80); font-size: clamp(1rem, .95rem + .3vw, 1.16rem); max-width: 46ch; }
.sighero__note { color: var(--paint-60); font-size: .88rem; max-width: 48ch; }

.keyline {
    display: flex; flex-wrap: wrap; gap: 0;
    margin-top: 1.6rem; border-top: 2px solid var(--paint-30);
}
.keyline span {
    display: flex; flex-direction: column; gap: .1rem;
    padding: .8rem 1.2rem .2rem 0; margin-right: 1.2rem;
    border-right: 1px solid var(--paint-14);
    font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--paint-60);
}
.keyline span:last-child { border-right: 0; }
.keyline b { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; color: var(--paint); text-transform: none; }

/* ------------------------------------------------- 7. Wegweiser (finder) */
.wegweiser {
    background: var(--signal);
    color: var(--paint);
    border: 3px solid var(--paint);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .85);
}
.wegweiser__head { display: grid; gap: .7rem; padding-bottom: .9rem; border-bottom: 2px solid var(--paint-30); }
.wegweiser__tag {
    font-size: .68rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--paint-60);
}
.wegweiser__pick { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.finder__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--paint); }
.wegweiser select, .finder select {
    flex: 1 1 12rem; min-width: 0;
    background: var(--paint); color: var(--ink); border-color: var(--paint); font-weight: 700;
}
.wegweiser__geo { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.wegweiser .button--geo { --btn-fg: var(--paint); --btn-bd: var(--paint-60); }
.wegweiser .button--geo.is-active { --btn-bg: var(--paint); --btn-fg: var(--signal-dark); --btn-bd: var(--paint); }
.finder__geo-msg { font-size: .78rem; color: var(--paint-80); }
.wegweiser__hint { font-size: .78rem; color: var(--paint-60); margin: .7rem 0 0; }
.wegweiser__hint [data-tz-note] { display: inline; }
.wegweiser__body { margin-top: .8rem; }
.finder__more { margin: .8rem 0 0; }
.wegweiser .finder__more .text-link { color: var(--paint); border-bottom-color: var(--paint-30); }

.signlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.signrow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "no dest num" ". go go";
    gap: .3rem .9rem; align-items: start;
    background: var(--paint); color: var(--ink);
    border-radius: var(--radius-sm); padding: .8rem .9rem;
}
.signrow__no {
    grid-area: no;
    font-family: var(--mono); font-size: .95rem; font-weight: 700; color: var(--paint);
    background: var(--asphalt); border-radius: 3px; padding: .15rem .4rem; line-height: 1.4;
}
.signrow__dest { grid-area: dest; min-width: 0; }
.signrow__dest h3 { margin: 0; font-size: 1.05rem; letter-spacing: -.01em; }
.signrow__dest h3 a { color: var(--ink); text-decoration: none; }
.signrow__dest h3 a:hover { color: var(--signal-dark); }
.signrow__where { margin: .1rem 0 0; font-size: .82rem; color: var(--ink-2); }
.signrow__num { grid-area: num; margin: 0; text-align: right; display: grid; gap: .1rem; }
.signrow__num b {
    font-family: var(--mono); font-size: clamp(1.15rem, 1rem + .5vw, 1.5rem); font-weight: 700;
    color: var(--signal-dark); letter-spacing: -.03em; white-space: nowrap;
}
.signrow__km { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); white-space: nowrap; }
.signrow__go { grid-area: go; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.signrow__go .button { padding: .42rem .72rem; font-size: .78rem; }
.signrow[data-open="0"] .signrow__num b { color: var(--ink-2); }

/* ------------------------------------------------------------ 8. stages */
.stages { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stages__item { background: var(--paint); padding: 1.3rem 1.2rem; }
.stages__no {
    display: inline-block; font-family: var(--mono); font-size: .8rem; font-weight: 700;
    color: var(--paint); background: var(--signal); border-radius: 3px; padding: .1rem .4rem; margin-bottom: .7rem;
}
.stages__item h3 { margin: 0 0 .35rem; }
.stages__item p { font-size: .88rem; color: var(--ink-2); margin: 0; }
.stages--brief .stages__no { background: var(--road); }

/* ------------------------------------------------------- 9. door board */
.doorboard {
    border: 2px solid var(--paint-30); border-radius: var(--radius); overflow: hidden;
    background: var(--asphalt-2);
}
.doorboard__head, .doorboard__row {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, 1.1fr);
    gap: .6rem 1rem; align-items: center;
    padding: .62rem 1rem;
}
.doorboard__head {
    background: var(--asphalt-3); color: var(--paint-60);
    font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.doorboard__row { border-top: 1px solid var(--paint-14); color: var(--paint); text-decoration: none; }
.doorboard__row:hover { background: var(--asphalt-3); color: var(--paint); }
.doorboard__name { font-weight: 700; font-size: .95rem; }
.doorboard__place { font-size: .82rem; color: var(--paint-60); }
.doorboard__state .status { margin: 0; font-size: .78rem; color: var(--paint-60); }
.doorboard__state .status.is-open { color: #6ee7a8; }
.doorboard__state .status.is-closed { color: #ff9d8a; }

/* -------------------------------------------------- 10. start-point tiles */
.signtiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: .8rem; }
.signtile {
    position: relative;
    display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
    gap: .2rem .9rem;
    background: var(--signal); color: var(--paint); text-decoration: none;
    border: 3px solid var(--paint); border-radius: var(--radius);
    padding: .95rem 2.2rem .95rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    transition: filter .12s ease, transform .12s ease;
}
.signtile:hover { filter: brightness(1.08); transform: translateY(-2px); color: var(--paint); }
.signtile__name { font-weight: 700; font-size: 1rem; }
.signtile__near { grid-column: 1; font-size: .76rem; color: var(--paint-60); }
.signtile__num { grid-column: 2; grid-row: 1 / span 2; display: flex; align-items: baseline; gap: .2rem; }
.signtile__num b { font-family: var(--mono); font-size: 1.7rem; font-weight: 700; letter-spacing: -.04em; }
.signtile__num i { font-style: normal; font-size: .72rem; color: var(--paint-60); }
.signtile__km { grid-column: 1 / -1; font-family: var(--mono); font-size: .72rem; color: var(--paint-60); }
.signtile__arrow { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--paint-60); }

/* ------------------------------------------------------- 11. board tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paint); }
table { border-collapse: collapse; width: 100%; }
.board-table, .matrix, .hours { font-size: .88rem; }
.board-table th, .board-table td, .matrix th, .matrix td { padding: .62rem .8rem; text-align: left; border-bottom: 1px solid var(--rule-2); vertical-align: top; }
.board-table thead th, .matrix thead th {
    position: sticky; top: 0; z-index: 1;
    background: var(--asphalt); color: var(--paint);
    font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800;
    border-bottom: 0;
}
.board-table tbody th, .matrix tbody th { font-weight: 700; }
.board-table td small, .matrix td small { display: block; font-family: var(--mono); font-size: .74rem; color: var(--ink-3); }
.board-table .gap { font-family: var(--mono); font-weight: 700; font-size: 1.05rem; }
.board-table .gap.is-plus { color: var(--stop); }
.board-table .gap.is-minus { color: var(--signal-dark); }
.board-table .gap small { color: var(--ink-3); font-weight: 400; }
.matrix td { font-family: var(--mono); }
.matrix th[scope="row"] { font-family: var(--font); }
.matrix .nearest { font-family: var(--font); font-weight: 700; }
.matrix .is-yes { color: var(--signal-dark); font-weight: 700; }
.matrix .is-no { color: var(--ink-3); }
.matrix .counts { font-size: .74rem; color: var(--ink-2); }
.matrix tr.is-far td, .matrix tr.is-far th { opacity: .55; }
.matrix--compare th[scope="row"] small { display: block; font-weight: 400; color: var(--ink-3); }
.min-cell { font-weight: 700; color: var(--signal-dark); }
tbody tr:nth-child(even) { background: #fbfcfb; }

.hours { width: 100%; }
.hours th, .hours td { padding: .42rem .6rem; border-bottom: 1px solid var(--rule-2); text-align: left; font-size: .86rem; }
.hours thead th { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.hours td { font-family: var(--mono); }
.hours small { display: block; color: var(--ink-3); font-size: .72rem; }

/* --------------------------------------------------------- 12. guide list */
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.guide-list li { background: var(--concrete-2); padding: 1.2rem 1.1rem; }
.guide-list__no { font-family: var(--mono); font-size: .74rem; font-weight: 700; color: var(--road); letter-spacing: .1em; }
.guide-list h3 { margin: .35rem 0 .3rem; font-size: 1.02rem; }
.guide-list p { margin: 0; font-size: .86rem; color: var(--ink-2); }

/* ------------------------------------------------------------- 13. photos */
.bandphoto { margin: 0; position: relative; }
.bandphoto picture { display: block; }
.bandphoto img { width: 100%; height: clamp(220px, 32vw, 420px); object-fit: cover; filter: saturate(.75) contrast(1.08) brightness(.86) hue-rotate(-8deg); }
.bandphoto figcaption {
    position: absolute; left: 0; bottom: 0;
    background: var(--signal); color: var(--paint);
    padding: .55rem 1rem; font-size: .8rem; max-width: min(100%, 640px);
    border-top: 3px solid var(--paint); border-right: 3px solid var(--paint);
    border-radius: 0 var(--radius) 0 0;
}
.bandphoto figcaption b { display: block; letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; color: var(--paint-60); }
.photo-band img { width: 100%; height: clamp(200px, 26vw, 360px); object-fit: cover; filter: saturate(.75) contrast(1.06) brightness(.9); }

/* ---------------------------------------------------------------- 14. map */
.map { margin: 0; }
.map svg { width: 100%; height: auto; background: var(--concrete-2); border: 1px solid var(--rule); border-radius: var(--radius); }
.map__ch { fill: #dfe7e2; stroke: var(--signal); stroke-width: 2; }
.map__country { font-size: 13px; fill: var(--ink-3); letter-spacing: .14em; text-transform: uppercase; }
.map__region { fill: rgba(11, 79, 158, .16); stroke: var(--road); stroke-width: 2; cursor: pointer; }
.map__region:hover { fill: rgba(11, 79, 158, .3); }
.map__region.is-active { fill: var(--road); }
.map__dot circle { fill: var(--signal); }
.map__dot path { fill: var(--signal); }
.map__dot text { font-size: 12px; fill: var(--ink-2); }
.map__dot--abroad circle, .map__dot--abroad path { fill: var(--asphalt); }
.map__dot.is-near circle, .map__dot.is-near path { fill: var(--stop); }
.map figcaption { font-size: .8rem; color: var(--ink-2); margin-top: .7rem; }
.map__legend { display: inline-flex; align-items: center; gap: .35rem; margin-right: .8rem; font-weight: 600; }
.map__legend::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); }
.map__legend--abroad::before { background: var(--asphalt); }

/* --------------------------------------------------------- 15. page leads */
.page-lead { padding: clamp(2rem, 4vw, 3.2rem) 0 1.6rem; }
.page-lead h1 { margin: .3rem 0 .6rem; }
.page-lead__copy { max-width: 62ch; color: var(--ink-2); font-size: 1.02rem; }
.breadcrumbs { font-size: .76rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem; }
.breadcrumbs a { color: var(--ink-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--signal-dark); }

.filters { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: 1.4rem; }
.filter {
    font: inherit; font-size: .8rem; font-weight: 700; letter-spacing: .04em;
    background: var(--paint); color: var(--ink-2);
    border: 2px solid var(--rule); border-radius: var(--radius-sm); padding: .38rem .75rem; cursor: pointer;
}
.filter.is-active { background: var(--asphalt); border-color: var(--asphalt); color: var(--paint); }
.filters__count { font-size: .8rem; color: var(--ink-3); }

/* ---------------------------------------------------- 16. finder page grid */
.finder-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--gap); align-items: start; }
.finder-page__panel .wegweiser { position: sticky; top: calc(var(--header-h) + 1rem); }
.finder-page__map { position: sticky; top: calc(var(--header-h) + 1rem); }

/* ------------------------------------------------------------- 17. cards */
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.vgrid--2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.sgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1rem; }

.vcard, .scard, .open-row, .dir-card, .know-card, .check-card, .panel, .contact-card {
    background: var(--paint); border: 1px solid var(--rule); border-radius: var(--radius);
}
.vcard { display: flex; flex-direction: column; overflow: hidden; }
.vcard__body { padding: 1rem 1.1rem 1.2rem; order: 1; }
.vcard__media { order: 2; position: relative; display: block; margin-top: auto; }
.vcard__media img { width: 100%; height: 140px; object-fit: cover; filter: saturate(.8) contrast(1.05) brightness(.92); }
.vcard__media .chip { position: absolute; left: .6rem; top: .6rem; }
.vcard__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.vcard__top .status { margin: 0; }
.card__drive { font-family: var(--mono); font-size: .82rem; font-weight: 700; color: var(--signal-dark); }
.vcard h3 { margin: .5rem 0 .2rem; font-size: 1.12rem; }
.vcard h3 a { color: var(--ink); text-decoration: none; }
.vcard h3 a:hover { color: var(--signal-dark); }
.vcard__city { font-size: .82rem; color: var(--ink-3); margin: 0; }
.vcard__tagline { font-size: .88rem; color: var(--ink-2); margin: .5rem 0 0; }
.vcard__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .9rem; margin-top: .9rem; }
.vcard--small .vcard__media img { height: 110px; }

.scard { padding: 1rem 1.1rem 1.2rem; }
.scard__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.scard h3 { margin: .55rem 0 .15rem; font-size: 1.05rem; }
.scard__city { font-size: .8rem; color: var(--ink-3); margin: 0; }
.scard__addr { font-size: .82rem; color: var(--ink-2); margin: .35rem 0 0; }

.open-list { display: grid; gap: .8rem; }
.open-row { padding: 1rem 1.1rem; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr); gap: .6rem 1.4rem; align-items: start; }
.open-row__head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.open-row__head h2 { margin: 0; font-size: 1.1rem; }
.open-row__head h2 a { color: var(--ink); text-decoration: none; }
.open-row__hours { grid-row: 1 / span 3; grid-column: 2; }
.open-row .status { grid-column: 1; }
.open-row .vcard__actions { grid-column: 1; margin-top: .3rem; }

.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1rem; }
.dir-card { padding: 1.1rem 1.2rem; }
.dir-card__head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.dir-card__head h2 { margin: 0; font-size: 1.1rem; }
.dir-card__head h2 a { color: var(--ink); text-decoration: none; }
.dir-card__addr { font-size: .84rem; color: var(--ink-2); margin: .4rem 0 .8rem; }
.dir-card__facts { margin: 0; display: grid; gap: .6rem; }
.dir-card__facts dt { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--road); font-weight: 800; }
.dir-card__facts dd { margin: .15rem 0 0; font-size: .86rem; color: var(--ink-2); }

.know-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.know-card, .check-card { padding: 1.2rem 1.2rem 1.3rem; }
.know-card span, .check-card span, .boundary-grid span {
    font-family: var(--mono); font-size: .76rem; font-weight: 700; color: var(--paint);
    background: var(--asphalt); border-radius: 3px; padding: .1rem .4rem;
}
.know-card h2, .check-card h3 { margin: .6rem 0 .3rem; font-size: 1.08rem; }
.know-card p, .check-card p { font-size: .88rem; color: var(--ink-2); margin: 0; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.check-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.boundary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.boundary-grid article { background: var(--paint); padding: 1.2rem; }
.boundary-grid h2 { font-size: 1.05rem; margin: .6rem 0 .3rem; }
.boundary-grid p { font-size: .88rem; color: var(--ink-2); margin: 0; }

/* ------------------------------------------------------- 18. venue brief */
.brief-hero { position: relative; background: var(--asphalt); color: var(--paint); overflow: hidden; }
.brief-hero__media { position: absolute; inset: 0; }
.brief-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; filter: grayscale(.35) contrast(1.1); }
.brief-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(21, 24, 27, .96) 30%, rgba(21, 24, 27, .55)); }
.brief-hero__inner { position: relative; padding: clamp(1.6rem, 4vw, 3.2rem) 0 clamp(2rem, 4vw, 3rem); }
.brief-hero .breadcrumbs, .brief-hero .breadcrumbs a { color: var(--paint-60); }
.brief-hero h1 { color: var(--paint); max-width: 18ch; }
.brief-hero__tag { color: var(--paint-80); max-width: 56ch; font-size: 1.02rem; }
.brief-hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin: 1rem 0; }
.brief-hero__chips .chip { background: transparent; color: var(--paint-80); border-color: var(--paint-30); }
.brief-hero__chips .status { margin: 0; color: var(--paint-80); }
.brief-hero__chips .status.is-open { color: #6ee7a8; }
.brief-hero__chips .status.is-closed { color: #ff9d8a; }
.brief-hero__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .9rem 1.6rem; margin: 1.2rem 0 1.6rem; padding-top: 1.1rem; border-top: 2px solid var(--paint-30); }
.brief-hero__facts dt { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--paint-60); font-weight: 800; }
.brief-hero__facts dd { margin: .25rem 0 0; font-size: .92rem; color: var(--paint); }
.brief-hero__facts dd a { color: var(--paint); }
.brief-hero__facts strong { font-family: var(--mono); }

.venue-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: var(--gap); align-items: start; }
.venue-main { display: grid; gap: 1rem; }
.venue-aside { display: grid; gap: 1rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.panel { padding: 1.2rem 1.3rem; }
.panel--board { border-left: 4px solid var(--signal); }
.panel--amber { background: var(--signal-soft); border-color: #bcdccc; }
.panel--assess { border-left: 4px solid var(--road); }
.panel h2 { font-size: 1.15rem; }

.check { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.check li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .8rem; align-items: start; padding-bottom: .8rem; border-bottom: 1px solid var(--rule-2); }
.check li:last-child { border-bottom: 0; padding-bottom: 0; }
.check__num { font-family: var(--mono); font-size: .76rem; font-weight: 700; color: var(--paint); background: var(--signal); border-radius: 3px; padding: .1rem .4rem; }
.check h3 { margin: 0 0 .2rem; font-size: .95rem; }
.check p { margin: 0; font-size: .86rem; color: var(--ink-2); }

.facts, .rules { margin: 0; display: grid; gap: .7rem; }
.facts div, .rules div { display: grid; gap: .15rem; }
.facts dt, .rules dt { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 800; }
.facts dd, .rules dd { margin: 0; font-size: .9rem; }
.facts--light dt { color: var(--paint-60); }
.facts--light dd { color: var(--paint); }

.assess { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.assess h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.assess ul { margin: 0; padding-left: 1.1rem; font-size: .88rem; color: var(--ink-2); }
.assess div:first-child h3 { color: var(--signal-dark); }
.assess div:last-child h3 { color: var(--stop); }

.venue-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
    gap: .6rem; padding: .6rem .8rem; background: var(--asphalt); border-top: 2px solid var(--signal);
}
.venue-bar .button { flex: 1; }
@media (max-width: 720px) { .venue-bar { display: flex; } body.venue { padding-bottom: 4.4rem; } }

/* ---------------------------------------------------------- 19. split/CTA */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); align-items: center; }
.split__photo img { width: 100%; height: clamp(200px, 26vw, 340px); object-fit: cover; border-radius: var(--radius); filter: saturate(.8) contrast(1.05); }

.final-cta { position: relative; background: var(--asphalt); color: var(--paint); overflow: hidden; }
.final-cta__photo { position: absolute; inset: 0; }
.final-cta__photo img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.4); }
.final-cta__inner { position: relative; padding: clamp(2.6rem, 5vw, 4.4rem) 0; display: grid; gap: 1.2rem; justify-items: start; }
.final-cta h2 { color: var(--paint); max-width: 20ch; margin: 0; }

.faq-teaser { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--gap); align-items: start; }
.faq-list { display: grid; gap: .5rem; }
.faq-item { background: var(--paint); border: 1px solid var(--rule); border-radius: var(--radius-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; padding: .85rem 1rem; font-weight: 700; font-size: .95rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { width: 12px; height: 12px; flex: none; position: relative; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; background: var(--signal); }
.faq-item summary i::before { left: 0; top: 5px; width: 12px; height: 2px; }
.faq-item summary i::after { left: 5px; top: 0; width: 2px; height: 12px; transition: opacity .15s ease; }
.faq-item[open] summary i::after { opacity: 0; }
.faq-item__body { padding: 0 1rem 1rem; font-size: .9rem; color: var(--ink-2); }
.faq-list--wide { max-width: 900px; }

.responsible-banner {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem 1.4rem; align-items: center;
    background: var(--asphalt); color: var(--paint); border-radius: var(--radius); padding: 1.4rem 1.5rem;
    margin-block: clamp(2rem, 4vw, 3rem);
}
.responsible-banner h2 { color: var(--paint); font-size: 1.3rem; margin: 0 0 .3rem; }
.responsible-banner p { color: var(--paint-60); font-size: .9rem; margin: 0; }
.responsible-banner__age, .age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; flex: none;
    border: 2px solid var(--paint); border-radius: 50%; font-weight: 800; font-size: .9rem;
}
.age-badge { border-color: var(--ink); width: 40px; height: 40px; font-size: .82rem; }

.help-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); background: var(--signal-soft); border: 1px solid #bcdccc; border-radius: var(--radius); padding: 1.6rem; }
.help-panel__grid { display: grid; gap: .7rem; align-content: start; }
.help-panel__card { display: grid; gap: .1rem; background: var(--paint); border: 2px solid var(--signal); border-radius: var(--radius-sm); padding: .9rem 1rem; text-decoration: none; color: var(--ink); }
.help-panel__card strong { font-size: 1.1rem; color: var(--signal-dark); }
.help-panel__card span { font-size: .8rem; color: var(--ink-2); }
.help-panel__extra { font-size: .86rem; color: var(--ink-2); }

/* -------------------------------------------------------------- 20. forms */
.request-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: var(--gap); align-items: start; padding-bottom: clamp(3rem, 6vw, 5rem); }
.request-aside { background: var(--asphalt); color: var(--paint); border-radius: var(--radius); padding: 1.4rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.request-aside .eyebrow { color: var(--paint-60); }
.request-steps { display: grid; gap: .9rem; }
.request-steps div { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .7rem; align-items: start; }
.request-steps span { font-family: var(--mono); font-size: .76rem; font-weight: 700; color: var(--paint); background: var(--signal); border-radius: 3px; padding: .1rem .4rem; }
.request-steps p { margin: 0; font-size: .86rem; color: var(--paint-80); }
.request-call { margin-top: 1.2rem; font-size: .86rem; color: var(--paint-80); }
.request-call a { color: var(--paint); }

.smart-form { background: var(--paint); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); }
.form-section-heading { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .8rem; align-items: center; margin: 1.6rem 0 1rem; padding-top: 1.2rem; border-top: 1px solid var(--rule-2); }
.form-section-heading:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.form-section-heading span { font-family: var(--mono); font-weight: 700; color: var(--paint); background: var(--asphalt); border-radius: 3px; padding: .1rem .45rem; font-size: .8rem; }
.form-section-heading h2 { margin: 0; font-size: 1.15rem; }
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field .optional { color: var(--ink-3); font-weight: 400; letter-spacing: 0; text-transform: none; }
.field small { font-size: .78rem; color: var(--ink-3); }
.field input, .field select, .field textarea { width: 100%; border-color: var(--rule); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--signal); }
.field-error { font-size: .78rem; color: var(--stop); min-height: 1em; }
.field [aria-invalid="true"] { border-color: var(--stop); }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.consents { border: 0; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .7rem; }
.consents legend { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); padding: 0; }
.consents label { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .6rem; font-size: .86rem; color: var(--ink-2); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.form-actions p { font-size: .8rem; color: var(--ink-3); margin: 0; }
.form-errors { margin-top: 1rem; padding: .8rem 1rem; background: var(--stop-soft); border-left: 4px solid var(--stop); font-size: .88rem; }
.form-success { margin-top: 1rem; padding: .8rem 1rem; background: var(--signal-soft); border-left: 4px solid var(--signal); font-size: .9rem; }
.smart-form.is-sending { opacity: .7; pointer-events: none; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: var(--gap); align-items: start; padding-bottom: clamp(3rem, 6vw, 5rem); }
.contact-card { padding: 1.4rem; }
.contact-card address { font-style: normal; }

/* -------------------------------------------------------------- 21. legal */
.legal-body { max-width: 820px; }
.legal-section { margin-bottom: 1.8rem; }
.legal-section h2 { font-size: 1.2rem; }
.legal-section p { color: var(--ink-2); }
.legal-updated { font-size: .82rem; color: var(--ink-3); }
.imprint-table { display: grid; gap: .8rem; margin: 0 0 2rem; }
.imprint-table div { display: grid; grid-template-columns: minmax(0, .4fr) minmax(0, 1fr); gap: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--rule-2); }
.imprint-table dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 800; }
.imprint-table dd { margin: 0; font-size: .9rem; }

.notfound { text-align: left; }
.notfound__path { font-family: var(--mono); background: var(--concrete); padding: .1rem .35rem; border-radius: 3px; font-size: .86rem; }

/* -------------------------------------------------------------- 22. footer */
.site-footer { background: var(--asphalt); color: var(--paint-60); margin-top: clamp(2rem, 5vw, 4rem); }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: var(--gap); padding: clamp(2.4rem, 5vw, 3.6rem) 0 2rem; }
.site-footer__mark { color: var(--paint); }
.site-footer__name { color: var(--paint); font-size: 1.05rem; margin: .6rem 0 .2rem; text-transform: uppercase; letter-spacing: .02em; font-weight: 500; }
.site-footer__name b { font-weight: 800; }
.site-footer__tagline { font-size: .86rem; margin: 0 0 1rem; }
.site-footer__address { font-style: normal; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .35rem .8rem; font-size: .84rem; }
.site-footer__label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--paint-30); font-weight: 800; margin: 0 0 .5rem; }
.site-footer__address .site-footer__label { margin: 0; }
.site-footer nav a { display: block; color: var(--paint-60); text-decoration: none; font-size: .86rem; padding: .18rem 0; }
.site-footer nav a:hover { color: var(--paint); }
.site-footer a { color: var(--paint-60); }
.site-footer__responsible { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--paint-14); font-size: .82rem; }
.site-footer__responsible .age-badge { border-color: var(--paint-30); color: var(--paint); }
.site-footer__responsible strong { color: var(--paint-80); }
.site-footer__base { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; padding: 1.2rem 0 2rem; border-top: 1px solid var(--paint-14); font-size: .76rem; }
.site-footer__base p { margin: 0; max-width: 74ch; }

/* ------------------------------------------------------ 23. modal/consent */
.lang-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem; }
.lang-modal__backdrop { position: absolute; inset: 0; background: rgba(10, 12, 14, .72); }
.lang-modal__dialog {
    position: relative; background: var(--paint); border: 3px solid var(--signal); border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.2rem); max-width: 470px; width: 100%; text-align: center; box-shadow: var(--shadow);
}
.lang-modal__mark { color: var(--signal); margin-bottom: .6rem; }
.lang-modal h1, .lang-modal h2 { font-size: 1.3rem; }
.lang-modal__list { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: .5rem; }
.lang-modal__list a { display: flex; align-items: center; gap: .8rem; padding: .6rem .8rem; border: 2px solid var(--rule); border-radius: var(--radius-sm); text-decoration: none; color: var(--ink); text-align: left; }
.lang-modal__list a:hover, .lang-modal__list a.is-current { border-color: var(--signal); }
.lang-modal__code { font-family: var(--mono); font-weight: 700; color: var(--paint); background: var(--asphalt); border-radius: 3px; padding: .1rem .4rem; font-size: .78rem; }
.lang-modal__list small { display: block; color: var(--ink-3); font-size: .74rem; }
.lang-modal__note { font-size: .8rem; color: var(--ink-3); margin: .9rem 0 0; }
.lang-modal--static { position: static; min-height: 100vh; background: var(--asphalt); }
.root-chooser { background: var(--asphalt); }
body.modal-open { overflow: hidden; }

.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; background: var(--asphalt); color: var(--paint-80); border-top: 3px solid var(--signal); }
.consent__inner { width: min(100% - 2rem, var(--shell)); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1rem 0; font-size: .84rem; }
.consent strong { color: var(--paint); }
.consent a { color: var(--paint); }
.consent__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.consent .button--outline { --btn-fg: var(--paint); --btn-bd: var(--paint-30); }
.consent .button--outline:hover { background: var(--paint); color: var(--ink); }

/* ---------------------------------------------------------- 24. responsive */
@media (max-width: 1080px) {
    .sighero__grid, .finder-page, .venue-grid, .faq-teaser, .request-layout, .contact-grid { grid-template-columns: minmax(0, 1fr); }
    .venue-aside, .request-aside, .finder-page__map, .finder-page__panel .wegweiser { position: static; }
    .stages, .guide-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .section-heading { grid-template-columns: minmax(0, 1fr); }
    .stages, .guide-list { grid-template-columns: minmax(0, 1fr); }
    .signrow { grid-template-columns: auto minmax(0, 1fr); grid-template-areas: "no dest" "num num" "go go"; }
    .signrow__num { text-align: left; display: flex; gap: .7rem; align-items: baseline; }
    .open-row { grid-template-columns: minmax(0, 1fr); }
    .open-row__hours { grid-row: auto; grid-column: 1; }
    .doorboard__head { display: none; }
    .doorboard__row { grid-template-columns: minmax(0, 1fr); gap: .1rem; padding: .8rem 1rem; }
    .responsible-banner { grid-template-columns: auto minmax(0, 1fr); }
    .responsible-banner .text-link { grid-column: 1 / -1; }
    .consent__inner { grid-template-columns: minmax(0, 1fr); }
    .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
    .imprint-table div { grid-template-columns: minmax(0, 1fr); }
}
@media print {
    .site-header, .venue-bar, .consent, .lang-modal, .final-cta { display: none !important; }
    body { background: #fff; }
}
