/* ============================================================
   Outdoor Escape · Redesign (Home + Game-Detail)
   Mobile-first · paper + navy · blue · cyan
   Used by: index.php, game.php
   ============================================================ */

:root {
    /* paper + surfaces */
    --paper:   #dde4ef;
    --paper-2: #e6ecf5;
    --surface: #f5f7fb;
    --tint:    #d2dae8;
    --slab:    #d3dbe7;

    /* brand inks */
    --ink-0: #020616;
    --ink-1: #091744;
    --ink-2: #0d2160;
    --ink-3: #1f3a6e;

    /* text */
    --text:   #091744;
    --text-2: #475878;
    --text-3: #6c7b97;
    --text-4: #9aa5be;

    --blue:      #0e78b1;
    --blue-2:    #095d8a;
    --blue-soft: #d6e6f1;

    --cyan:      #14f1d9;
    --cyan-ink:  #0a8b7e;
    --cyan-soft: #c4f0e8;

    --danger: #d04050;
    --warn:   #b87a16;

    --line:   rgba(9, 23, 68, .10);
    --line-2: rgba(9, 23, 68, .18);

    --sh-1: 0 1px 2px rgba(9,23,68,.06);
    --sh-2: 0 8px 22px -10px rgba(9,23,68,.22);
    --sh-3: 0 18px 44px -20px rgba(9,23,68,.3);

    --font-display: 'Sora', system-ui, sans-serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;

    --maxw: 1200px;
    --gutter: clamp(18px, 4vw, 44px);
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; transform: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ─── layout ─── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 8vw, 104px) 0; position: relative; }
.section-tight { padding: clamp(32px, 5vw, 56px) 0; }
.slab { background: var(--slab); }

/* ─── typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0;
    color: var(--ink-1);
}
h1 { font-size: clamp(34px, 5.4vw, 72px); font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -.02em; }
h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; line-height: 1.25; }
h4 { font-size: 16px; font-weight: 600; }

p { margin: 0; color: var(--text-2); }
.lead { font-size: clamp(15.5px, 1.25vw, 18px); color: var(--text-2); max-width: 60ch; line-height: 1.6; }
.mono { font-family: var(--font-mono); }
.muted { color: var(--text-3); }

.cyan-mark { color: var(--ink-1); white-space: nowrap; box-shadow: inset 0 -.16em 0 var(--cyan); }
.cyan-mark.on-dark { color: #fff; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--blue); opacity: .7; }
.eyebrow.on-dark { color: var(--cyan); }
.eyebrow.on-dark::before { background: var(--cyan); }

/* ─── buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 48px; padding: 0 22px;
    border-radius: 11px;
    font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -.005em;
    border: 1px solid transparent; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .12s;
    white-space: nowrap;
}
.btn-navy   { background: var(--ink-1); color: #fff; }
.btn-navy:hover   { background: var(--ink-2); }
.btn-cyan   { background: var(--cyan); color: var(--ink-1); }
.btn-cyan:hover   { background: #11d8c2; }
.btn-blue   { background: var(--blue); color: #fff; }
.btn-blue:hover   { background: var(--blue-2); }
.btn-ghost  { background: var(--surface); color: var(--ink-1); border-color: var(--line); }
.btn-ghost:hover  { border-color: var(--ink-1); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; border-radius: 9px; }
.btn-block { width: 100%; }

/* ─── chips ─── */
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    height: 26px; padding: 0 11px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
    background: var(--surface); border: 1px solid var(--line); color: var(--text-2);
}
.chip.cyan  { background: var(--cyan-soft); border-color: transparent; color: var(--cyan-ink); }
.chip.blue  { background: var(--blue-soft); border-color: transparent; color: var(--blue-2); }
.chip.glass { background: rgba(255,255,255,.16); border-color: transparent; color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.chip.warn  { background: rgba(184,122,22,.15); border-color: transparent; color: var(--warn); }
.dotc { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(20,241,217,.2); }

/* difficulty dots */
.diff { display: inline-flex; gap: 3px; align-items: center; }
.diff b { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.diff[data-l="1"] b:nth-child(-n+1),
.diff[data-l="2"] b:nth-child(-n+2),
.diff[data-l="3"] b:nth-child(-n+3),
.diff[data-l="4"] b:nth-child(-n+4),
.diff[data-l="5"] b:nth-child(-n+5) { background: var(--blue); }
.diff.on-dark b { background: rgba(255,255,255,.25); }
.diff.on-dark[data-l="3"] b:nth-child(-n+3),
.diff.on-dark[data-l="4"] b:nth-child(-n+4),
.diff.on-dark[data-l="5"] b:nth-child(-n+5) { background: var(--cyan); }

/* ─── photo placeholders (cover fallback) ─── */
.photo {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 70% 25%, rgba(14,120,177,.45), transparent 60%),
        linear-gradient(160deg, #1f3a6e, #091744);
    overflow: hidden;
}
.photo::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    opacity: .5; pointer-events: none;
}
/* When a real cover image is present, hide the grid pattern entirely
   — it muddies the photo even with opacity .5. */
.photo:has(> img)::before { display: none; }
.photo > img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
.photo > .ph-lab {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
    color: rgba(255,255,255,.72);
    background: rgba(0,0,0,.3); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    padding: 5px 9px; border-radius: 6px;
}
/* tint variants */
.ph-1 { background: linear-gradient(160deg, #0e78b1, #091744); }
.ph-2 { background: linear-gradient(160deg, #1f3a6e, #091744); }
.ph-3 { background: linear-gradient(160deg, #2a5b56, #091744); }
.ph-4 { background: linear-gradient(160deg, #142f7e, #091744); }
.ph-5 { background: linear-gradient(160deg, #4a4226, #091744); }
.ph-6 { background: linear-gradient(160deg, #095d8a, #0d2160); }

/* ─── nav ─── */
.nav {
    position: sticky; top: 0; z-index: 60;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(221,228,239,.82);
    border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; gap: 20px; height: 66px; }
.logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em;
    color: var(--ink-1);
}
.logo-mark {
    width: 30px; height: 30px; border-radius: 8px;
    background: var(--ink-1); display: grid; place-items: center; position: relative; flex-shrink: 0;
}
.logo-mark::after {
    content: ""; position: absolute; inset: 7px;
    border: 1.5px solid var(--cyan); border-radius: 50%;
    border-right-color: transparent; border-bottom-color: transparent;
    transform: rotate(-30deg);
}
.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a { font-size: 14.5px; color: var(--text-2); font-weight: 500; white-space: nowrap; transition: color .15s; }
.nav-links a:hover { color: var(--ink-1); }
.nav-spacer { flex: 1; }

.lang {
    display: inline-flex; align-items: center; padding: 3px;
    border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
    font-size: 12px; font-family: var(--font-mono); letter-spacing: .08em;
}
.lang a, .lang button {
    background: transparent; border: 0; color: var(--text-3);
    height: 26px; padding: 0 10px; border-radius: 6px; cursor: pointer;
    display: inline-flex; align-items: center; text-decoration: none;
    font: inherit; line-height: 1;
}
.lang a.on, .lang button.on { background: var(--ink-1); color: #fff; }

.nav-burger {
    display: none; width: 40px; height: 40px; border-radius: 9px;
    background: var(--surface); border: 1px solid var(--line); color: var(--ink-1);
    place-items: center;
}

.nav-sheet {
    display: none;
    position: fixed; left: 0; right: 0; top: 66px; z-index: 55;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px;
    box-shadow: var(--sh-2);
    max-height: calc(100vh - 66px);
    overflow-y: auto;
}
.nav-sheet.open { display: block; }
.nav-sheet a {
    display: block; padding: 14px 4px;
    font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink-1);
    border-bottom: 1px solid var(--line);
}
.nav-sheet .sheet-cta { margin-top: 16px; text-align: center; }
.nav-sheet .sheet-lang {
    margin-top: 18px; display: flex; justify-content: center;
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav .lang.lang-desktop { display: none; }
    .nav .nav-book { display: none; }
    .nav-burger { display: grid; }
}

/* ─── section head ─── */
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: 12px; }
.section-head .lead { margin-top: 14px; }

/* ─── gallery (scroll-snap on mobile) ─── */
.gallery-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 14px; flex-wrap: wrap; }
.gallery-head .sw { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--blue); display: none; }
.gallery {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
}
.gallery .g { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: transform .2s, box-shadow .2s; display: block; }
.gallery .g img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.gallery .g:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.gallery .g .sc { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 45%, rgba(9,23,68,.8)); }
.gallery .g .cap { position: absolute; left: 14px; bottom: 14px; z-index: 2; color: #fff; }
.gallery .g .cap .t { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.gallery .g .cap .s { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 3px; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
@media (max-width: 760px) {
    .gallery {
        display: flex; grid-auto-rows: unset;
        overflow-x: auto; scroll-snap-type: x mandatory;
        margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 8px;
        scrollbar-width: none;
    }
    .gallery::-webkit-scrollbar { display: none; }
    .gallery .g { flex: 0 0 76%; height: 240px; scroll-snap-align: start; }
    .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; }
    .gallery-head .sw { display: inline; }
}

/* ─── steps (numbered) ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
/* Variable Schrittzahl (Homepage-Editor): Spaltenzahl folgt der Anzahl bis 4 */
.steps.cols-1 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.steps.cols-2 { grid-template-columns: repeat(2, 1fr); }
.steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
    .steps,
    .steps.cols-2, .steps.cols-3, .steps.cols-4 { grid-template-columns: 1fr; gap: 10px; }
}
.step {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
    padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
}
.step .nn {
    width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--ink-1);
    display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--ink-1);
}
.step h4 { font-size: 17px; }
.step p { font-size: 14px; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); transition: background .15s; }
.faq details[open] { background: var(--surface); }
.faq summary {
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 18px 4px; cursor: pointer;
    font-family: var(--font-display); font-weight: 500; font-size: clamp(15px, 1.6vw, 17px); color: var(--ink-1);
}
.faq details[open] summary { padding: 18px 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; color: var(--text-3); transition: transform .25s, color .25s; }
.faq details[open] summary svg { transform: rotate(180deg); color: var(--ink-1); }
.faq .body { padding: 0 20px 20px; color: var(--text-2); font-size: 15px; line-height: 1.65; max-width: 66ch; }

/* ─── press strip ─── */
.press { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap; }
.press .p-logo { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.8vw, 20px); color: var(--text-3); letter-spacing: -.01em; opacity: .75; }
.press a.p-logo { text-decoration: none; }
.press a.p-logo:hover { opacity: 1; }
/* Hochgeladene Logo-Bilder: höhennormiert, entsättigt im Stil der Text-Logos */
.press .p-logo-img { display: block; height: 30px; width: auto; filter: grayscale(1); }

/* ─── big CTA ─── */
.cta-card {
    background: var(--ink-1); border-radius: 20px; color: #fff; text-align: center;
    padding: clamp(36px, 6vw, 64px) clamp(22px, 5vw, 56px); position: relative; overflow: hidden;
}
.cta-card h2 { color: #fff; max-width: 720px; margin: 0 auto; }
.cta-card .lead { color: rgba(255,255,255,.78); margin: 16px auto 26px; max-width: 50ch; }
.cta-card .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 520px) {
    .cta-card .actions .btn { width: 100%; }
}

/* ─── footer ─── */
.footer { background: var(--ink-1); color: rgba(255,255,255,.7); padding: clamp(36px, 5vw, 56px) 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; }
.footer .f-tag { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 12px; max-width: 36ch; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom .f-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   HOME-SPECIFIC
   ============================================================ */
.hero { position: relative; }
.hero-media { position: relative; min-height: clamp(460px, 64vh, 660px); display: flex; }
.hero-media .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-media .scrim {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(180deg, transparent 0%, transparent 35%, rgba(9,23,68,.7) 80%, rgba(9,23,68,.95) 100%),
        linear-gradient(90deg, rgba(9,23,68,.4) 0%, transparent 55%);
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 3;
    width: 100%; max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--gutter) clamp(34px, 5vw, 56px);
    align-self: flex-end;
}
.hero-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .hero-sub { color: rgba(255,255,255,.85); font-size: clamp(15px, 1.5vw, 19px); margin-top: 18px; max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 520px) {
    .hero-cta .btn { width: 100%; }
}

/* games grid */
.games-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter {
    background: var(--surface); border: 1px solid var(--line); color: var(--text-2);
    height: 36px; padding: 0 15px; border-radius: 9px; font-size: 13.5px; font-weight: 500;
    transition: background .15s, border-color .15s, color .15s;
}
.filter:hover { color: var(--ink-1); border-color: var(--line-2); }
.filter.on { background: var(--ink-1); color: #fff; border-color: var(--ink-1); }

.game-card {
    display: flex; flex-direction: column; background: var(--surface);
    border: 1px solid var(--line); border-radius: 16px; overflow: hidden; color: inherit;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--sh-3); }
.game-card.is-coming-soon { opacity: .92; }
.game-cover { aspect-ratio: 16/10; position: relative; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.game-cover .top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; gap: 8px; }
.game-cover .city {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.82); background: rgba(0,0,0,.3); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    padding: 5px 9px; border-radius: 6px;
}
.game-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-body h3 { color: var(--ink-1); }
.game-body p { font-size: 14.5px; line-height: 1.5; flex: 1; }
.game-meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: 12px; color: var(--text-2);
    padding-top: 14px; border-top: 1px solid var(--line); margin-top: 6px;
}
.game-meta span { display: inline-flex; align-items: center; gap: 5px; }
.game-meta .price { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-1); }

/* use cases */
.cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
/* Variable Kartenzahl (Homepage-Editor): Spaltenzahl folgt der Anzahl bis 4 */
.cases.cols-1 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.cases.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cases.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .cases,
    .cases.cols-3, .cases.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cases,
    .cases.cols-2, .cases.cols-3, .cases.cols-4 { grid-template-columns: 1fr; }
}
.case {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px;
    transition: border-color .15s, transform .15s;
}
.case:hover { border-color: var(--line-2); transform: translateY(-2px); }
.case .ct { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--blue); background: var(--blue-soft); padding: 4px 10px; border-radius: 5px; margin-bottom: 14px; }
.case h4 { font-size: 17px; margin-bottom: 6px; }
.case p { font-size: 14px; }

/* ============================================================
   GAME-DETAIL-SPECIFIC
   ============================================================ */
.crumbs {
    padding-top: 18px;
    display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
}
.crumbs a:hover { color: var(--ink-1); }
.crumbs-current { color: var(--ink-1); }

.game-hero { padding: clamp(18px, 3vw, 28px) 0 clamp(32px, 5vw, 48px); }
.game-hero-grid {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: stretch;
    margin-top: 16px;
}
@media (max-width: 900px) { .game-hero-grid { grid-template-columns: 1fr; } }

.gh-media {
    position: relative; border-radius: 18px; overflow: hidden;
    min-height: clamp(320px, 42vw, 460px); display: flex;
    border: 1px solid var(--line);
}
.gh-media .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gh-media .scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(9,23,68,.6) 75%, rgba(9,23,68,.9) 100%); pointer-events: none; }
.gh-media .gh-inner { position: relative; z-index: 3; align-self: flex-end; padding: clamp(20px, 3vw, 30px); color: #fff; }
.gh-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.gh-media h1 { color: #fff; font-size: clamp(34px, 5vw, 60px); }
.gh-media .gh-sub { color: rgba(255,255,255,.85); font-size: clamp(14px, 1.4vw, 17px); margin-top: 12px; max-width: 42ch; }

/* booking panel */
.booking {
    background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
    padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--sh-2); align-self: start; position: sticky; top: 84px;
}
@media (max-width: 900px) { .booking { position: static; } }
.booking .price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.booking .price { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--ink-1); letter-spacing: -.02em; }
.booking .price-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--text-3); text-transform: uppercase; }
.booking .b-list { display: flex; flex-direction: column; padding: 0; margin: 0; }
.booking .b-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); list-style: none; font-size: 14px; color: var(--text-2); }
.booking .b-list li:last-child { border-bottom: 0; }
.booking .b-list svg { color: var(--blue); flex-shrink: 0; }
.booking .b-list strong { color: var(--ink-1); font-weight: 600; }
.booking .b-note { font-size: 12.5px; color: var(--text-3); text-align: center; }

/* story */
.story-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } }
.story-body { display: flex; flex-direction: column; gap: 16px; }
.story-body p { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 64ch; }
.story-body .rich-text { color: var(--text-2); font-size: 16px; line-height: 1.7; }
.story-body .rich-text p { margin-bottom: 16px; }
.story-body .rich-text :last-child { margin-bottom: 0; }
.story-body .rich-text a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(14,120,177,.4); text-underline-offset: 2px; }
.story-body .rich-text a:hover { text-decoration-color: var(--blue); }
.story-body .rich-text ul, .story-body .rich-text ol { margin: 0 0 16px 22px; padding: 0; }
.story-body .rich-text li { margin-bottom: 6px; }
.story-quote {
    display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px;
    background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; margin-top: 6px;
}
.story-quote svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.story-quote p { color: var(--ink-1); font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 17px; line-height: 1.5; }

/* startpunkt + map */
.start-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
@media (max-width: 820px) { .start-grid { grid-template-columns: 1fr; } }
.start-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.start-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.start-list li > a { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; color: inherit; width: 100%; }
.start-list svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.start-list strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-1); }
.start-list span { display: block; font-size: 13.5px; color: var(--text-3); margin-top: 2px; }

.map-frame {
    position: relative; border-radius: 16px; overflow: hidden;
    background: var(--ink-1); border: 1px solid var(--line); box-shadow: var(--sh-2);
    aspect-ratio: 4 / 3;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-chrome { position: absolute; inset: 14px 14px auto 14px; display: flex; justify-content: flex-end; align-items: center; z-index: 2; pointer-events: none; }
.map-pulse { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .14em; color: var(--ink-1); background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px 4px 8px; }
.map-foot { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 14px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); font-size: 9.5px; letter-spacing: .14em; color: rgba(255,255,255,.75); text-align: center; z-index: 2; pointer-events: none; }

@media (max-width: 760px) {
    .map-frame { aspect-ratio: 16 / 11; }
}

/* sticky mobile booking bar */
.book-bar {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    align-items: center; gap: 14px;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: rgba(245,247,251,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
}
.book-bar .pr { display: flex; flex-direction: column; }
.book-bar .pr .a { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink-1); line-height: 1; }
.book-bar .pr .b { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; color: var(--text-3); margin-top: 3px; text-transform: uppercase; }
.book-bar .btn { flex: 1; }
@media (max-width: 900px) {
    .book-bar { display: flex; }
    body.has-book-bar { padding-bottom: 78px; }
}

/* coming-soon alert in hero */
.alert-coming-soon {
    background: rgba(184,122,22,.12); border: 1px solid rgba(184,122,22,.35);
    color: #fff; padding: 14px 18px; border-radius: 10px;
    font-size: 14px; line-height: 1.55; max-width: 42ch;
}

/* ─── legal pages (imprint/privacy/terms/withdrawal) ─── */
.legal-wrap a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--blue-2); }

/* ============================================================
   FORMS  ·  used by contact.php
   ============================================================ */
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--sh-2);
}

.form-row { display: grid; gap: 18px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
    .form-row.two-col { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field + .form-field { margin-top: 18px; }

.form-label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
    color: var(--text-3);
    display: inline-flex; align-items: baseline; gap: 8px;
}
.form-label .optional {
    font-size: 10px; color: var(--text-4); opacity: .9;
    text-transform: none; letter-spacing: 0;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 11px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 15px;
    line-height: 1.4;
    transition: border-color .15s, box-shadow .15s;
    outline: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-4); }
.form-input:hover,
.form-textarea:hover,
.form-select:hover { border-color: var(--text-4); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--cyan-ink);
    box-shadow: 0 0 0 3px rgba(20,241,217,.25);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23475878' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.form-submit { width: 100%; margin-top: 24px; justify-content: center; }
.form-submit[disabled] { opacity: .6; cursor: progress; }

.form-alert {
    display: none;
    padding: 14px 18px; border-radius: 11px;
    font-size: 14.5px; line-height: 1.5; margin-bottom: 18px;
    border: 1px solid var(--line); background: var(--surface); color: var(--text-2);
}
.form-alert.is-visible { display: block; }
.form-alert.is-success {
    background: var(--cyan-soft); border-color: transparent; color: var(--cyan-ink);
}
.form-alert.is-error {
    background: rgba(208,64,80,.1); border-color: rgba(208,64,80,.35); color: var(--danger);
}

.spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid currentColor; border-right-color: transparent;
    border-radius: 50%; animation: spin .8s linear infinite;
}
.spinner.hidden { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot — visually hidden but available to bots */
.form-honeypot {
    position: absolute; left: -9999px; top: -9999px;
    width: 1px; height: 1px; overflow: hidden; pointer-events: none;
}
.alert-coming-soon strong { color: #ffd089; }
