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

:root {
    --topbar-h: 100px;
    --bg:           #1a120b;
    --bg-2:         #241710;
    --bg-3:         #2c1d13;
    --paper:        #f1e6d3;
    --paper-dim:    #b09a7d;
    --cream:        #efe6d6;
    --amber:        #e08e3c;
    /* Nur im Verlauf des Intros, nie als Textfarbe: waere mit 4.33:1 zu dunkel. */
    --amber-deep:   #b8651e;
    /* Fehlermeldungen. Vorher #c8512e mit 3.88:1 auf --bg-2, damit unter WCAG AA. */
    --rust:         #dd7355;
    --line:         rgba(241,230,211,0.12);
    --line-2:       rgba(241,230,211,0.06);
    --mono:         'Bricolage Grotesque', sans-serif;
    --serif:        'Source Serif 4', serif;
    --display:      'Big Shoulders Display', sans-serif;
}

body {
    background: var(--bg);
    color: var(--paper);
    font-family: var(--serif);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── FOCUS ──────────────────────────────────────────────────
   Ein Ring fuer alles Bedienbare. :focus-visible statt :focus,
   damit Mausklicks keinen Ring hinterlassen, Tastatur aber schon. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 1px;
}

/* Auf Amber-Flaechen ist ein Amber-Ring unsichtbar — dort Papier. */
.btn-amber:focus-visible,
.reserve-cta:focus-visible,
.res-fab:focus-visible,
.pill.on:focus-visible,
.menu-tabs button.on:focus-visible {
    outline-color: var(--paper);
}

/* Skip-Link: erst sichtbar, wenn er Fokus bekommt. */
.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 500;
    background: var(--amber);
    color: var(--bg);
    padding: 14px 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: top 0.15s ease;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
    .skip-link { transition: none; }
}

a.u-link {
    text-underline-offset: 0.2em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--line);
    transition: text-underline-offset 0.3s ease, text-decoration-color 0.3s ease;
}
a.u-link:hover {
    text-underline-offset: 0.35em;
    text-decoration-color: var(--amber);
}

/* ── PARALLAX / SCROLL EFFECTS ── */
[data-parallax] {
    will-change: transform;
}

[data-hero-zoom] {
    will-change: transform;
    transform-origin: center center;
}

[data-fade-in] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-fade-in].is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-parallax], [data-hero-zoom], [data-fade-in] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

.sticky-col {
    position: sticky;
    top: 96px;
}

/* ── NAV ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 16px; }
.brand-mono {
    font-family: var(--display);
    font-weight: 500;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
}
.brand-mono em { color: var(--amber); font-style: normal; }

.brand .sub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--paper-dim);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav { display: flex; gap: 36px; }
.nav a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover { color: var(--amber); }
.nav a.active { color: var(--amber); }

/* Klammert Navigation und Sprachumschalter fuer das mobile Menue.
   Auf Desktop loest sich der Behaelter auf, damit beide direkte Flex-Kinder
   der Topbar bleiben und das Layout unveraendert ist. */
.nav-group { display: contents; }

.top-meta { display: flex; align-items: center; gap: 18px; }
.nav__lang {
    display: flex;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--paper-dim);
    gap: 8px;
    align-items: center;
}
.nav__lang a { letter-spacing: 0.12em; padding: 4px 6px; color: var(--paper-dim); }
.nav__lang a.active { color: var(--amber); border-bottom: 1px solid var(--amber); }
.nav__lang .sep { opacity: 0.5; }

/* ── HERO ── */
.hero-wrap {
    position: relative;
    height: 920px;
    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;
}

.hero-photo .ph {
    height: 100%; width: 100%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(224,142,60,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(200,81,46,0.12) 0%, transparent 50%),
        var(--bg);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.hero-photo .ph::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,11,0.4) 0%, rgba(26,18,11,0.1) 30%, rgba(26,18,11,0.5) 65%, rgba(26,18,11,0.97) 100%);
}

.hero-photo .ph span {
    position: absolute; bottom: 24px; right: 24px;
    color: rgba(241,230,211,0.35);
    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border: 1px dashed rgba(241,230,211,0.2);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    z-index: 1;
}

.hero-copy {
    position: absolute;
    left: 56px; bottom: 160px;
    z-index: 3;
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border: 1px solid rgba(241,230,211,0.2);
    margin-bottom: 32px;
}

.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--amber);
    flex-shrink: 0;
}

.hero-eyebrow .t {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--paper);
}

.hero-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(80px, 9vw, 140px);
    line-height: 0.87;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-title em {
    font-style: italic;
    color: var(--paper);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
    text-decoration-color: var(--amber);
}

.hero-tagline {
    margin: 28px 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--paper);
    max-width: 520px;
    opacity: 0.88;
}

.hero-bottom {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 4;
    border-top: 1px solid rgba(241,230,211,0.18);
    padding: 18px 0;
    background: transparent;
}

.hb-cell { padding: 0 32px; border-right: 1px solid var(--line); }
.hb-cell:first-child { padding-left: 0; }
.hb-cell.spacer { border: none; }

.hb-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--paper-dim);
    margin-bottom: 8px;
}

.hb-val {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--paper);
}

.hb-val em { font-style: italic; color: var(--amber); }

.reserve-cta {
    background: var(--amber);
    color: var(--bg);
    padding: 20px 28px;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
}

.reserve-cta:hover { background: var(--paper); }
.reserve-cta svg { width: 16px; height: 16px; }

.scroll-cue {
    position: absolute;
    left: 50%; bottom: 130px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--paper-dim);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--paper-dim));
}

/* ── INTRO ── */
.intro {
    padding: 120px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.intro .lbl { display: none; }

.intro h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--paper);
    text-transform: uppercase;
}

.intro h2 em {
    font-style: italic;
    color: var(--paper);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.14em;
    text-decoration-color: var(--amber);
}

.intro-r p {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.45;
    color: var(--paper);
}

.intro-meta {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

.intro-meta .dot { color: var(--amber); letter-spacing: 0; }

/* ── TRIPTYCH ── */
.triptych {
    margin: 80px 56px 120px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 14px;
    height: 540px;
}

.triptych .frame {
    position: relative;
    overflow: hidden;
    display: block;
}

.triptych .frame .ph {
    height: 100%; width: 100%;
    background: var(--bg-2);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s ease;
    position: relative;
}

.triptych .frame:hover .ph { transform: scale(1.03); }

.triptych .frame .ph::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,11,0) 35%, rgba(26,18,11,0.85) 100%);
    pointer-events: none;
}

.triptych .frame .ph span {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: rgba(241,230,211,0.3);
    text-align: center;
    padding: 0 1rem;
}

.triptych .frame .cap {
    position: absolute;
    left: 20px; bottom: 20px; right: 20px;
    color: var(--paper);
}

.triptych .frame .cap .k {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.triptych .frame .cap .t {
    font-family: var(--serif);
    font-size: 1.875rem;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ── GRAIN — via JS-injiziertem .b-grain span ── */
.b-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3CfeColorMatrix type='saturate' values='0'%3E%3C/feColorMatrix%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'%3E%3C/rect%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.09;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
}
/* Hero braucht mehr Stärke — Overlay ist fast schwarz */
.hero-photo .ph .b-grain {
    opacity: 0.22;
    mix-blend-mode: soft-light;
}

/* ── 404 ── */
.err-links { display: grid; gap: 10px; margin-top: 20px; }
.err-links a { font-family: var(--serif); font-size: 20px; color: var(--paper); width: fit-content; }

/* ── PAGE PLACEHOLDER ── */
.page-placeholder {
    padding: 120px 56px;
}

.page-placeholder h1 {
    font-family: var(--display);
    font-size: 4rem;
    color: var(--amber);
    text-transform: uppercase;
}

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 80px 56px 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .crumbs { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--paper-dim); display: flex; gap: 14px; align-items: center; margin-bottom: 32px; }
.page-hero .crumbs a { color: var(--paper-dim); transition: color .2s; }
.page-hero .crumbs a:hover { color: var(--amber); }
.page-hero .crumbs .sep { opacity: 0.5; }
.page-hero .crumbs em { color: var(--amber); font-style: normal; }
.page-hero .head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.page-hero h1 { font-family: var(--display); font-weight: 700; font-size: 128px; line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase; color: var(--cream); }
.page-hero h1 em { font-style: normal; color: var(--amber); font-weight: 800; }
.page-hero .lede { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--paper); max-width: 440px; padding-bottom: 14px; }
.page-hero .lede b { font-style: normal; font-weight: 500; color: var(--amber); }
.page-hero .meta-strip { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 64px; border-top: 1px solid var(--line); }
.page-hero .meta-strip .cell { padding: 20px 28px; border-right: 1px solid var(--line); }
.page-hero .meta-strip .cell:first-child { padding-left: 0; }
.page-hero .meta-strip .cell:last-child { border-right: none; }
.page-hero .meta-strip .k { font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--paper-dim); margin-bottom: 8px; }
.page-hero .meta-strip .v { font-family: var(--serif); font-size: 22px; color: var(--paper); font-weight: 500; }
.page-hero .meta-strip .v em { font-style: italic; color: var(--amber); }

/* ── PILL / BUTTON PRIMITIVES ── */
.pill { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper); border: 1px solid var(--line); padding: 7px 12px; background: transparent; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: .2s; }
.pill:hover { border-color: var(--amber); color: var(--amber); }
.pill.on { background: var(--amber); color: var(--bg); border-color: var(--amber); }

.btn-amber { background: var(--amber); color: var(--bg); padding: 16px 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 14px; transition: .2s; border: none; cursor: pointer; text-decoration: none; }
.btn-amber:hover { background: var(--paper); }
.btn-amber svg { width: 16px; height: 16px; }
.b p + .btn-amber { margin-top: 18px; }

/* ── MENU PREVIEW ── */
.menu {
    padding: 120px 56px;
    background: var(--bg-2);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0; left: 56px; right: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.menu-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

.menu-head .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.menu-head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--cream);
    text-transform: uppercase;
}

.menu-head h2 em { font-style: normal; color: var(--amber); }

.menu-link {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    border-bottom: 1px solid rgba(224,142,60,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.menu-link:hover { border-color: var(--amber); }

.menu-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.col-head {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 0;
    align-items: baseline;
    border-bottom: 1px dashed rgba(241,230,211,0.08);
    transition: padding-left 0.2s;
    cursor: default;
}

.item:hover { padding-left: 8px; }
.item .nm { font-family: var(--serif); font-size: 1.35rem; color: var(--paper); }
.item .tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    color: var(--paper-dim);
    border: 1px solid var(--line);
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}
.item .desc { font-size: 0.75rem; color: var(--paper-dim); margin-top: 4px; line-height: 1.5; }
.item .pr { font-family: var(--serif); font-size: 1.35rem; color: var(--amber); white-space: nowrap; }

.menu-tabs {
    display: flex;
    border: 1px solid var(--line);
}

.menu-tabs button {
    background: transparent;
    border: none;
    border-right: 1px solid var(--line);
    color: var(--paper-dim);
    padding: 14px 22px;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.menu-tabs button:last-child { border-right: none; }
.menu-tabs button.on { background: var(--amber); color: var(--bg); }
.menu-tabs button:hover:not(.on) { color: var(--paper); }

.menu-cta-col {
    margin-top: 40px;
    text-align: right;
}

/* ── MARQUEE ── */
.marquee-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    background: var(--bg-2);
}

.marquee-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
    font-family: var(--display);
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--paper);
    flex-shrink: 0;
}

.marquee-track .sep {
    color: var(--amber);
    font-size: clamp(22px, 2.5vw, 36px);
    letter-spacing: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── BENTO ── */
.bento-wrap {
    padding: 80px 2.5rem 120px;
}

.bento-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 56px;
}

.bento-head .lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.bento-head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--cream);
    text-transform: uppercase;
}

.bento-head h2 em { font-style: normal; color: var(--amber); }

.bento-head .r {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--paper);
    max-width: 480px;
}

.bento-head .r b { font-style: normal; font-weight: 500; color: var(--amber); }

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.row-2 { grid-row: span 2; }

.b {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    box-shadow: rgba(241, 230, 211, 0.04) 0px 1px 0px inset;
}

.b::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224,142,60,0.3), transparent);
    opacity: 0;
    transition: 0.3s;
}

.b:hover { border-color: rgba(224, 142, 60, 0.45); }
.b:hover::before { opacity: 1; }

/* Spotlight follow-cursor */
.spot { position: relative; }
.spot::after {
    content: "";
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,142,60,0.18) 0%, rgba(224,142,60,0.05) 35%, transparent 65%);
    pointer-events: none;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: screen;
}
.spot:hover::after { opacity: 1; }

/* Number badge */
.b .num {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.b .num .n {
    padding: 2px 7px;
    background: rgba(224, 142, 60, 0.12);
    color: var(--amber);
    letter-spacing: 0.18em;
}
.b .num .lab { color: var(--paper-dim); }

/* Match card */
.b-match {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(ellipse at 80% 30%, rgba(47,86,65,0.35), transparent 55%), var(--bg-2);
}
.b-match .versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 8px;
}
.b-match .team {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.b-match .team.r {
    align-items: flex-end;
    text-align: right;
}
.b-match .crest {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(224, 142, 60, 0.4);
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--amber);
}
.b-match .tm {
    font-family: var(--serif);
    font-size: 38px;
    letter-spacing: -0.02em;
    color: var(--paper);
    font-weight: 500;
}
.b-match .vs {
    font-family: var(--serif);
    font-style: italic;
    font-size: 48px;
    color: var(--amber);
}
.b-match .league {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
    margin-top: 4px;
}
.b-match .mmeta {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.b-match .mmeta .when { color: var(--paper); }
.b-match .mmeta .save {
    color: var(--amber);
    border-bottom: 1px solid var(--amber);
    padding-bottom: 3px;
}

/* Quiz card */
.b-quiz {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(ellipse at 50% 0%, rgba(224,142,60,0.18), transparent 65%), var(--bg-2);
}
.b-quiz .pot {
    font-family: var(--display);
    font-weight: 500;
    font-size: 120px;
    line-height: 0.9;
    color: var(--amber);
    letter-spacing: -0.05em;
    margin: 8px 0 4px;
    text-shadow: rgba(224, 142, 60, 0.25) 0px 4px 32px;
    text-transform: uppercase;
}
.b-quiz .pot small {
    font-size: 32px;
    color: var(--paper);
    font-weight: 400;
    vertical-align: top;
    margin-right: 6px;
    letter-spacing: 0;
}
.b-quiz .sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--paper-dim);
    margin-bottom: 14px;
}
.b-quiz .start {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.b-quiz .startline { display: flex; align-items: center; gap: 10px; }
.b-quiz .start .arr { color: var(--amber); font-size: 14px; text-decoration: none; flex-shrink: 0; }
.b-quiz .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}

.b-open {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.b-open .now {
    font-family: var(--display);
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.05;
    color: var(--amber);
    letter-spacing: -0.03em;
    font-weight: 900;
    text-transform: uppercase;
}
.b-open p {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--paper-dim);
    margin-top: 14px;
    line-height: 1.5;
    max-width: 240px;
}
.b-open .hrs {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
}
.b-open .hrs em { font-style: normal; color: var(--amber); }

.b-music {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(ellipse at 20% 90%, rgba(200,81,46,0.18), transparent 60%), var(--bg-2);
}
.b-music h3 {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-top: 8px;
    text-transform: uppercase;
}
.b-music h3 em { font-style: italic; color: var(--amber); }
.b-music p {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--paper-dim);
    margin-top: 14px;
    line-height: 1.5;
    max-width: 320px;
}
.b-music .when {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.b-music .when .l { color: var(--paper); }
.b-music .when .arr { color: var(--amber); font-size: 18px; letter-spacing: normal; text-decoration: none; }

.b-picnic, .b-backroom-mini {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.b-picnic h3, .b-backroom-mini h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin-top: 8px;
}
.b-picnic h3 em, .b-backroom-mini h3 em { color: var(--amber); font-style: normal; }
.b-picnic p, .b-backroom-mini p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--paper-dim);
    font-size: 15px;
    line-height: 1.5;
}
.b-picnic .arr, .b-backroom-mini .arr { align-self: flex-end; color: var(--amber); font-size: 18px; text-decoration: none; }

.b-feat {
    min-height: 480px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.b-feat .feat-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.b-feat .feat-photo .ph {
    height: 100%; width: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(224,142,60,0.22), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(200,81,46,0.14), transparent 55%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 12px, rgba(255,255,255,0.04) 12px 24px),
        var(--bg-2);
}
.b-feat .feat-photo .ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,18,11,0.2) 0%, rgba(26,18,11,0.4) 55%, rgba(26,18,11,0.92) 100%);
}
.b-feat .feat-photo .ph span {
    position: absolute;
    top: 24px; right: 24px;
    color: rgba(241,230,211,0.45);
    background: rgba(0,0,0,0.4);
    padding: 5px 10px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.b-feat-inner {
    position: relative;
    z-index: 2;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.b-feat h3 {
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
    text-shadow: rgba(0,0,0,0.6) 0px 4px 24px;
    text-transform: uppercase;
}
.b-feat h3 em { font-style: normal; color: var(--amber); }
.b-feat .feat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.b-feat .pill {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
    border: 1px solid rgba(241,230,211,0.3);
    padding: 8px 14px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
}
.b-feat .more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
    text-decoration: none;
}
.b-feat .more .arr {
    width: 38px; height: 38px;
    background: var(--amber);
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* ── VISIT ────────────────────────────────────────────────── */
.visit { padding: 120px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.visit-l .lbl { 
    font-family: 'Bricolage Grotesque', sans-serif; 
    font-size: 10px; 
    letter-spacing: 0.28em;
    text-transform: uppercase; 
    color: var(--amber); 
    margin-bottom: 14px; }

.visit-l h2 { 
    font-family: var(--display); 
    font-weight: 400; 
    font-size: 84px; 
    line-height: 0.98; 
    letter-spacing: -0.03em; 
    color: var(--cream);
    text-transform: uppercase;
}

.visit-l h2 em { 
    font-style: normal; 
    color: var(--amber); 
}
.visit-l .addr { 
    margin-top: 36px; 
    font-family: 'Source Serif 4', serif; 
    font-size: 28px; 
    line-height: 1.35; 
    color: var(--paper); 
}

.visit-l .phone { 
    margin-top: 24px; 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    font-family: 'Bricolage Grotesque', sans-serif; 
    font-size: 13px; 
    letter-spacing: 0.14em; 
    color: var(--paper); 
    text-transform: uppercase; }

.visit-l .phone .ic { 
    width: 32px; 
    height: 32px; 
    border: 1px solid var(--amber); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--amber); }

.visit-l .hours { 
    margin-top: 48px; 
    border-top: 1px solid var(--line); 
}

.visit-l .h-row { 
    display: grid; 
    grid-template-columns: 1fr auto; 
    padding: 14px 0; 
    border-bottom: 1px solid var(--line); 
    font-family: 'Source Serif 4', serif; 
    font-size: 18px; 
    align-items: baseline; 
}

.visit-l .h-row .d { 
    color: var(--paper-dim); 
}

/* Spiel des Tages als zweite Zeile in der Wochenuebersicht. Der Tag behaelt
   seinen Titel, das Match steht darunter — an Freitagen und Samstagen gilt
   beides gleichzeitig. */
.wt-spiel {
    margin: 6px 0 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: var(--amber);
}

.visit-l .h-row .v { color: var(--paper); font-weight: 500; }

/* Kuechenschluss gehoert zur Zeile darueber, nicht als eigener Eintrag:
   kleiner, ohne Trennlinie, direkt angeschlossen. */
.visit-l .h-row--kueche {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line);
    margin-top: -8px;
}
.visit-l .h-row--kueche .d { font-size: 14px; color: var(--paper-dim); }
.visit-l .h-row.now .d,
.visit-l .h-row.now .v { color: var(--amber); }

.visit-r { position: relative; min-height: 560px; }
.visit-map {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
    filter: invert(1) hue-rotate(180deg) sepia(0.35) saturate(1.8) brightness(0.85);
}

/* ── Footer ─────────────────────────────────────────────── */
.foot {
    padding: 80px 56px 36px;
    border-top: 1px solid var(--line);
    background: var(--bg);
    margin-top: 120px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 64px;
}
.foot h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}
.foot a,
.foot p {
    display: block;
    font-size: 14px;
    line-height: 1.85;
    color: var(--paper-dim);
    text-decoration: none;
}
.foot a:hover { color: var(--paper); }
.foot-brand .big {
    font-family: var(--display);
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.foot-brand .big em { color: var(--amber);font-style: normal; }
.foot-brand .tag {
    margin-top: 18px;
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--paper-dim);
    max-width: 280px;
}
.foot-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
.nav-toggle { display: none; }

/* Tablet ≤ 1100px */
@media (max-width: 1100px) {
    .triptych {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .triptych .frame { height: 380px; }
    .triptych .frame:last-child {
        grid-column: span 2;
    }
    .bento { grid-template-columns: repeat(6, 1fr); }
    .col-5, .col-7, .col-8, .col-12 { grid-column: span 6; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {

    /* Page hero */
    .page-hero { padding: 48px 24px 40px; }
    .page-hero .head { grid-template-columns: 1fr; gap: 24px; }
    .page-hero h1 { font-size: clamp(52px, 14vw, 80px); }
    .page-hero .lede { font-size: 16px; max-width: 100%; }
    .page-hero .meta-strip { grid-template-columns: 1fr 1fr; margin-top: 40px; }
    .page-hero .meta-strip .cell { padding: 14px 12px; }
    .page-hero .meta-strip .v { font-size: 17px; }

    /* Topbar */
    .topbar {
        padding: 20px 24px;
    }
    .nav-group { display: none; }

    /* Hamburger button */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--paper);
        transition: transform 0.25s, opacity 0.25s;
        transform-origin: center;
    }
    .topbar.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .topbar.open .nav-toggle span:nth-child(2) { opacity: 0; }
    .topbar.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .topbar.open .nav-group {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 16px 24px 24px;
        z-index: 10;
    }
    .topbar.open .nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .topbar.open .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 13px;
    }
    .topbar.open .nav a:last-child { border-bottom: none; }

    /* Sprachumschalter als letzte Zeile des Menues, abgesetzt von den Links. */
    .topbar.open .top-meta {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }
    .topbar.open .nav__lang a { padding: 6px 8px; font-size: 13px; }

    /* Hero */
    .hero-wrap { height: 85svh; min-height: 520px; }
    .hero-title {
        font-size: clamp(3.5rem, 14vw, 7rem);
        left: 24px; right: 24px;
    }
    .hero-sub { left: 24px; right: 24px; }
    .hero-bottom { display: none; }
    .scroll-cue { display: none; }

    /* Intro */
    .intro {
        padding: 72px 24px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .intro h2 { font-size: 2.6rem; }

    /* Einspaltig gibt es keine zweite Spalte, an der die Ueberschrift
       entlanglaufen koennte - sie bliebe einfach stehen, waehrend der Text
       darunter wegscrollt. Kleben ist auf Mobil den Karten-Ueberschriften
       vorbehalten. */
    .sticky-col {
        position: static;
        top: auto;
    }

    /* Triptych */
    .triptych {
        margin: 24px 24px 72px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .triptych .frame { height: 300px; }
    .triptych .frame:last-child { grid-column: span 1; }

    /* Menu */
    .menu { padding: 72px 24px; }
    .menu::before { left: 24px; right: 24px; }
    .menu-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 40px;
    }
    .menu-head h2 { font-size: 3rem; }
    .menu-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border: none;
        gap: 8px;
        padding-bottom: 4px;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tabs button {
        border: 1px solid var(--line);
        border-right: 1px solid var(--line);
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 18px;
        border-radius: 2px;
    }
    .menu-tabs button.on { border-color: var(--amber); }
    .menu-cols { grid-template-columns: 1fr; gap: 40px; }
    .bento-wrap { padding: 72px 24px; }

    /* Bento */
    .bento { grid-template-columns: repeat(2, 1fr); }
    .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-12 { grid-column: span 2; }
    .row-2, .row-3 { grid-row: span 1; }
    .b-backroom-mini h3 { font-size: 40px; }

    /* Täglich geöffnet + Picknick nebeneinander in einer Reihe */
    .b-open, .b-picnic {
        grid-column: span 1;
        min-height: 0;
    }
    .b-match { order: 1; }
    .b-open { order: 2; }
    .b-picnic { order: 3; }
    .b-quiz { order: 4; }
    .b-backroom-mini { order: 5; }
    .b-music { order: 6; }
    .b-open .now { font-size: 26px; }
    .b-open p { font-size: 15px; max-width: none; }
    .b-open .hrs { font-size: 9px; letter-spacing: 0.14em; flex-direction: column; gap: 6px; }
    .b-picnic h3 { font-size: 30px; }
    .b-picnic p { font-size: 14px; }

    /* Visit */
    .visit {
        padding: 72px 24px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .visit-l h2 { font-size: 56px; }

    /* Footer */
    .foot { padding: 56px 24px 28px; margin-top: 72px; }
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .foot-col { border-bottom: 1px solid var(--line); padding: 20px 0; }
    .foot-brand { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 0; }
    .foot-brand .big { font-size: 36px; }
    .foot-bottom { flex-direction: column; gap: 8px; }

    /* Footer accordion */
    .foot-col.collapsible h5 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: 4px 0;
    }
    .foot-col.collapsible h5::after {
        content: '+';
        font-size: 16px;
        font-weight: 300;
        color: var(--amber);
        line-height: 1;
    }
    .foot-col.collapsible.open h5::after { content: '−'; }
    .foot-col.collapsible a {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
        margin-top: 0;
    }
    .foot-col.collapsible.open h5 { margin-bottom: 12px; }
    .foot-col.collapsible.open a {
        max-height: 60px;
        opacity: 1;
    }
}

/* ── SURGE INTRO ─────────────────────────────────────────── */
.surge {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    overflow: hidden;
    cursor: pointer;
}
.surge.lifting { animation: surgeLift 1s cubic-bezier(.7,0,.3,1) forwards; }
@keyframes surgeLift { to { transform: translateY(-100%); } }
.surge.gone { display: none; }

/* amber flood */
.surge-flood {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 100%, rgba(255,200,80,0.28) 0%, transparent 50%),
        linear-gradient(to top, #0e0600 0%, #3d1800 18%, var(--amber-deep) 52%, var(--amber) 82%, rgba(230,172,70,0.9) 100%);
    clip-path: inset(100% 0 0 0);
    animation: floodUp 2.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
@keyframes floodUp { to { clip-path: inset(0% 0 0 0); } }

/* glow riding the flood edge */
.surge-flood::before {
    content: '';
    position: absolute; left: 0; right: 0; height: 160px; bottom: 0;
    background: radial-gradient(ellipse at 35% 0%, rgba(255,230,130,0.45) 0%, transparent 65%);
    animation: glowRide 2.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
@keyframes glowRide { 0% { bottom: 0; } 100% { bottom: 100%; } }

/* film grain overlay */
.surge-flood::after {
    content: '';
    position: absolute; inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* wordmark — bottom left, film-title style */
.surge-mark {
    position: absolute; left: 56px; bottom: 64px; z-index: 3;
    display: flex; flex-direction: column; gap: 12px;
    pointer-events: none;
}
.surge-mark .eyebrow {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--paper-dim); opacity: 0; animation: subIn 0.5s ease 0.1s forwards;
}
.surge-mark .word {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(52px, 7vw, 96px); letter-spacing: -0.02em;
    color: var(--cream); line-height: 0.9;
    opacity: 0; animation: wordIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.surge-mark .word em { color: var(--amber); font-style: normal; }
.surge-mark .addr {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(241,230,211,0.35); opacity: 0; animation: subIn 0.5s ease 0.45s forwards;
}
@keyframes wordIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes subIn  { from { opacity: 0; } to { opacity: 1; } }

/* skip — bottom right */
.surge-skip {
    position: absolute; bottom: 32px; right: 56px; z-index: 5;
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--paper-dim); cursor: pointer; padding: 10px 14px;
    border: 1px solid var(--line); transition: .2s;
    opacity: 0; animation: subIn 0.5s ease 1.2s forwards;
}
.surge-skip:hover { border-color: var(--amber); color: var(--amber); }

@media (max-width: 768px) {
    .surge-mark { left: 24px; bottom: 80px; }
    .surge-skip  { right: 24px; }
}
@media (prefers-reduced-motion: reduce) { .surge { display: none; } }

/* ── RESERVATION: FAB + MODAL ──────────────────────────────── */
.res-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 150;
    background: var(--amber);
    color: var(--bg);
    border: none;
    padding: 16px 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: background 0.2s, transform 0.2s, opacity 0.25s, visibility 0.25s;
}
.res-fab:hover { background: var(--paper); transform: translateY(-2px); }

.res-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease;
}
.res-modal.is-open { opacity: 1; pointer-events: all; visibility: visible; }

.res-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,6,3,0.8);
    backdrop-filter: blur(6px);
}

.res-modal-panel {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    max-width: 620px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 48px;
}

.res-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: none;
    border: 1px solid var(--line);
    color: var(--paper-dim);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.res-modal-close:hover { border-color: var(--amber); color: var(--paper); }

.res-modal-head { margin-bottom: 28px; }
.res-modal-head .lbl {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.res-modal-head h2 {
    font-family: var(--display); font-weight: 700; font-size: 40px;
    letter-spacing: -0.02em; text-transform: uppercase; color: var(--cream);
}
.res-modal-head h2 em { color: var(--amber); font-style: normal; }

.res-form { display: flex; flex-direction: column; gap: 18px; }
.res-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.res-row:has(#res-name) { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--paper-dim);
}
.field label .req { color: var(--amber); }
.field input, .field select, .field textarea {
    background: var(--bg); border: 1px solid var(--line); color: var(--paper);
    padding: 12px 14px; font-family: var(--serif); font-size: 15px;
    transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--amber);
}
/* Rahmenwechsel allein ist als Fokusanzeige zu schwach — Ring bleibt. */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}
.field textarea { resize: vertical; }

.res-error {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
    color: var(--rust); border: 1px solid rgba(221,115,85,0.45); padding: 10px 14px;
}

.res-submit { width: 100%; justify-content: center; margin-top: 4px; }

.res-info {
    margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px;
}
.res-info-item h6 {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
}
.res-info-item p { font-family: var(--serif); font-size: 13px; line-height: 1.6; color: var(--paper-dim); }

.res-success { text-align: center; padding: 24px 0; }
.res-success h2 {
    font-family: var(--display); font-weight: 700; font-size: 36px;
    letter-spacing: -0.02em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px;
}
.res-success h2 em { color: var(--amber); font-style: normal; }
.res-success p { font-family: var(--serif); font-size: 15px; color: var(--paper-dim); margin-bottom: 24px; }

@media (max-width: 768px) {
    .res-fab { right: 16px; bottom: 16px; padding: 14px 18px; font-size: 10px; }
    .res-modal-panel { padding: 32px 20px; }
    .res-modal-head h2 { font-size: 32px; }
    .res-row, .res-row:has(#res-name) { grid-template-columns: 1fr; }
    .res-info { grid-template-columns: 1fr; }
}

/* Datenschutzhinweis im Reservierungsformular (Art 13 DSGVO) */
.res-datenschutz {
    margin-top: 16px;
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.5;
    color: var(--paper-dim);
}
.res-datenschutz a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* Pflichtlinks im Footer */
.foot-legal { display: inline-flex; gap: 18px; }
.foot-legal a { color: var(--paper-dim); }
@media (hover: hover) and (pointer: fine) {
    .foot-legal a:hover { color: var(--amber); }
}
