/* =========================================================
   Luxe Shisha Lounge · Café · Bar · Shisha · Rudersberg
   Stylesheet · Mobile First · Dark Neon Premium
   =========================================================

   LOKALE SCHRIFTEN (DSGVO-konform, keine externen CDNs):
   Um eine eigene Marken-Schrift zu nutzen, Font-Dateien nach
   /assets/fonts/ legen und diesen Block aktivieren:

   @font-face {
     font-family: "Brand";
     src: url("/assets/fonts/brand.woff2") format("woff2");
     font-weight: 400 800;
     font-display: swap;
   }
   Danach "Brand" vorne in --font-display / --font-body ergänzen.
   Standardmäßig werden performante System-Schriften verwendet –
   es werden keinerlei externe Ressourcen geladen.
   ========================================================= */

:root {
  --bg:        #0a0908;
  --bg-elev:   #100e0a;
  --surface:   #16130d;
  --surface-2: #1d1912;
  --line:      rgba(230, 200, 120, 0.13);
  --line-2:    rgba(230, 200, 120, 0.22);

  --text:      #f4eedd;
  --muted:     #a99e84;

  --brand:     #c9a24b;
  --brand-2:   #e6c877;
  --glow:      rgba(201, 162, 75, 0.45);
  --ember:     #c9a24b;
  --wowobot:   #22b8e0;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --gap:       clamp(1.25rem, 4vw, 2.5rem);

  --font-display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow:    0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px var(--line), 0 24px 60px -24px var(--glow);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-family: var(--font-display); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.15rem, 5vw, 2.5rem); }
.narrow { max-width: 760px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.5rem; min-height: 48px;
  border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap; text-align: center;
}
.btn-lg { padding: 1rem 1.9rem; min-height: 54px; font-size: 1.02rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1c1708; box-shadow: 0 10px 30px -10px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--glow); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-2); background: rgba(201, 162, 75, 0.1); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-2); outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 9, 7, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; line-height: 1; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-mark {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.22em;
  font-size: 1.15rem; text-transform: uppercase;
  background: linear-gradient(120deg, #fff 20%, var(--brand-2) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-sub { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-list { display: flex; gap: 1.4rem; }
.nav-list a { font-size: 0.94rem; color: var(--muted); font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-list a:hover { color: var(--text); }

.burger {
  display: none; width: 48px; height: 48px; background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(201, 162, 75, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.72) 55%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 5rem 0; max-width: 760px; }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 1rem; padding: 0.35rem 0.8rem;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(201, 162, 75, 0.08);
}
.hero-title { font-size: clamp(2.5rem, 8vw, 4.6rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 1.1rem; }
.grad {
  background: linear-gradient(120deg, var(--brand-2), #efd9a0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: #f2ecdd; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.badge {
  font-size: 0.85rem; color: #f2ecdd; padding: 0.5rem 0.9rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
}
.badge strong { color: var(--brand-2); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--brand-2); border-radius: 2px; animation: scrollcue 1.6s infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Trust ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-elev); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }
.trust-item { padding: 1.6rem 1rem; text-align: center; display: flex; flex-direction: column; gap: 0.35rem; }
.trust-num { font-size: 1.5rem; font-weight: 800; color: var(--brand-2); font-family: var(--font-display); }
.trust-label { font-size: 0.82rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
.section-alt { background: var(--bg-elev); }
.section-head { max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 0.7rem; }
.section-head h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; }
.section-intro { color: var(--muted); font-size: 1.05rem; }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }

/* ---------- Cards (Angebot) ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); box-shadow: var(--shadow-glow); }
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center; color: var(--brand-2);
  border-radius: 14px; background: rgba(201, 162, 75, 0.12); border: 1px solid var(--line-2); margin-bottom: 1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: var(--gap); align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); height: 320px; object-fit: cover; display: block; }
.split-text h2 { margin-top: 0.3rem; }
.split-text p { color: #c9bfa6; }
.check-list { margin: 1.3rem 0 1.8rem; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: #ddd2b9; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem;
  display: grid; place-items: center; font-size: 0.75rem; color: #1c1708; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* ---------- Feature grid ---------- */
/* Event / Aktion */
.promo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.45);
  background:
    radial-gradient(120% 160% at 85% 20%, rgba(201, 162, 75, 0.16), transparent 55%),
    linear-gradient(140deg, #171008 0%, var(--surface) 60%);
  box-shadow: 0 20px 60px -30px var(--glow);
}
.promo-inner { display: grid; gap: 2rem; padding: 2.5rem 1.8rem; }
.promo-flash {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #1a1206; font-weight: 800; padding: 0.4rem 0.9rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); margin-bottom: 1.1rem;
}
.promo-kicker { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--text); margin-bottom: 0.2rem; }
.promo-title { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; margin-bottom: 1.2rem; }
.promo-deal { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 0.4rem; }
.promo-deal strong {
  font-size: 1.6em;
  background: linear-gradient(120deg, var(--brand-2), #efd9a0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.promo-sub { color: var(--muted); margin-bottom: 1.6rem; }
.promo-points { display: grid; gap: 0.9rem; align-content: center; }
.promo-points li {
  padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, 0.02); color: var(--muted);
}
.promo-points strong { color: var(--brand-2); }

/* Getränkekarte */
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 1.8rem; }
.menu-tab {
  padding: 0.65rem 1.3rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--muted); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.menu-tab:hover { border-color: var(--brand-2); color: var(--text); transform: translateY(-1px); }
.menu-tab.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1206; border-color: transparent;
}
.menu-panels { max-width: 720px; margin: 0 auto; }
.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: menufade 0.35s ease; }
@keyframes menufade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu-cat { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.menu-cat h3 {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.menu-cat ul { display: grid; gap: 0.55rem; }
.menu-cat li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-cat li small { color: var(--muted); font-size: 0.75rem; white-space: nowrap; }
.menu-cat .price { color: var(--brand-2); font-weight: 700; white-space: nowrap; }
.menu-note { margin-top: 1.5rem; color: var(--muted); font-size: 0.75rem; text-align: center; }

.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.feature { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color 0.25s, transform 0.25s; }
.feature:hover { border-color: rgba(201, 162, 75, 0.4); transform: translateY(-3px); }
.feature-k { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: rgba(201, 162, 75, 0.55); }
.feature h3 { font-size: 1.15rem; margin: 0.4rem 0 0.4rem; }
.feature p { color: var(--muted); margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: s; }
.step { position: relative; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  font-weight: 800; font-size: 1.2rem; margin-bottom: 0.9rem; color: #1c1708;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 24px -8px var(--glow);
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Hours ---------- */
.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.5rem 1.4rem; box-shadow: var(--shadow); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--muted); }
.hours li span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours li.is-highlight span:last-child { color: var(--brand-2); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 0.8rem; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: 0; color: var(--text); cursor: pointer;
  font-size: 1.03rem; font-weight: 600; padding: 1.15rem 1.3rem; min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: inherit;
}
.acc-ic { position: relative; width: 16px; height: 16px; flex: none; }
.acc-ic::before, .acc-ic::after { content: ""; position: absolute; background: var(--brand-2); border-radius: 2px; transition: transform 0.3s ease; }
.acc-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-ic::after { top: 0; left: 7px; width: 2px; height: 16px; }
.acc-trigger[aria-expanded="true"] .acc-ic::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-panel p { color: var(--muted); padding: 0 1.3rem 1.2rem; margin: 0; }

/* ---------- Location ---------- */
.location { display: grid; grid-template-columns: 1fr; gap: var(--gap); align-items: stretch; }
.location-map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.location-map img { width: 100%; height: 280px; object-fit: cover; display: block; }
.location-info { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.location-info h3 { font-size: 1.5rem; }
.location-addr { color: #c9bfa6; font-size: 1.1rem; }
.link { color: var(--brand-2); }
.link:hover { text-decoration: underline; }

/* ---------- Contact form ---------- */
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow); display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: #ddd2b9; }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; min-height: 48px; border-radius: var(--radius-sm);
  background: var(--bg-elev); border: 1px solid var(--line-2); color: var(--text);
  font-family: inherit; font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18); outline: none; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); cursor: pointer; }
.consent input { width: 22px; height: 22px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.consent a { color: var(--brand-2); text-decoration: underline; }
.form-status { margin: 0; font-size: 0.95rem; min-height: 1.2em; }
.form-status.is-ok { color: #4ade80; }
.form-status.is-err { color: #ff7a7a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-elev); border-top: 1px solid var(--line); padding-top: clamp(2.5rem, 6vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand { font-size: 1.3rem; }
.footer-logo { height: 84px; width: auto; display: block; margin-bottom: 0.8rem; }
.footer-sub { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin: 6px 0 1rem; }
.footer-addr { color: var(--muted); }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 0.6rem; text-align: center;
  border-top: 1px solid var(--line); padding-top: 1.4rem; padding-bottom: 1.6rem;
  color: var(--muted); font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.wowobot { color: var(--wowobot); font-weight: 700; }
.wowobot:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: clamp(1.9rem, 6vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; }
.legal p { color: #c9bfa6; }
.legal .notice {
  background: rgba(201, 162, 75, 0.1); border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 2rem; color: #f2ecdd;
}
.legal .muted-note { color: var(--muted); font-size: 0.9rem; margin-top: 2rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { display: flex; flex-wrap: wrap; justify-content: center; }
  .cards .card { flex: 1 1 calc(20% - 0.9rem); min-width: 0; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .promo-inner { grid-template-columns: 1.4fr 1fr; padding: 3rem 2.8rem; }
  .split { grid-template-columns: 1fr 1fr; }
  .split-media img { height: 430px; }
  .location { grid-template-columns: 1.5fr 1fr; }
  .location-map img { height: 100%; min-height: 340px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 899px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(14, 12, 9, 0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 1rem clamp(1.15rem, 5vw, 2.5rem) 1.6rem;
    transform: translateY(-120%); transition: transform 0.35s ease; visibility: hidden;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 1rem 0; font-size: 1.05rem; min-height: 48px; }
  .nav-cta { margin-top: 1.2rem; width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   PREMIUM EFFEKTE
   ========================================================= */

/* ---------- Scroll-Progressbar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), #efd9a0);
  z-index: 300; box-shadow: 0 0 12px rgba(201, 162, 75, 0.7);
  pointer-events: none;
}

/* ---------- Header verdichtet sich beim Scrollen ---------- */
.site-header { transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.site-header.is-scrolled {
  background: rgba(10, 7, 16, 0.9);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(201, 162, 75, 0.18);
}

/* ---------- Rauch-Canvas im Hero ---------- */
.smoke-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: screen; opacity: 0.85;
}

/* ---------- Gold-Shimmer auf Verlaufs-Text ---------- */
.grad {
  background: linear-gradient(120deg, var(--brand-2) 20%, #f6e6b8 40%, #efd9a0 50%, var(--brand-2) 70%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldshine 5.5s linear infinite;
}
@keyframes goldshine { to { background-position: 220% center; } }

/* ---------- Shine-Sweep auf Karten ---------- */
.card, .menu-cat, .promo, .feature { position: relative; overflow: hidden; }
.card::after, .menu-cat::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 246, 220, 0.09), transparent);
  transform: skewX(-20deg); pointer-events: none; transition: none;
}
.card:hover::after, .menu-cat:hover::after { animation: shine 0.95s ease; }
@keyframes shine { to { left: 130%; } }

/* ---------- CTA-Puls im Hero & Promo ---------- */
.hero-actions .btn-primary, .promo .btn-primary { animation: ctapulse 3.2s ease-in-out infinite; }
@keyframes ctapulse {
  0%, 100% { box-shadow: 0 10px 30px -10px var(--glow); }
  50% { box-shadow: 0 10px 42px -6px rgba(201, 162, 75, 0.75); }
}

/* ---------- Promo: atmender Gold-Rahmen ---------- */
.promo { animation: promobreath 4.5s ease-in-out infinite; }
@keyframes promobreath {
  0%, 100% { box-shadow: 0 20px 60px -30px var(--glow); border-color: rgba(201, 162, 75, 0.45); }
  50% { box-shadow: 0 22px 70px -26px rgba(201, 162, 75, 0.55); border-color: rgba(201, 162, 75, 0.75); }
}

/* ---------- Gestaffelte Reveals ---------- */
.cards .card:nth-child(2), .gallery-item:nth-child(2), .promo-points li:nth-child(2) { transition-delay: 0.1s; }
.cards .card:nth-child(3), .gallery-item:nth-child(3), .promo-points li:nth-child(3) { transition-delay: 0.2s; }
.cards .card:nth-child(4), .gallery-item:nth-child(4) { transition-delay: 0.3s; }
.cards .card:nth-child(5), .gallery-item:nth-child(5) { transition-delay: 0.4s; }
.gallery-item:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Galerie: Zoom-Hinweis + Gold-Ring ---------- */
.gallery-item { cursor: zoom-in; position: relative; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.gallery-item:hover { border-color: rgba(201, 162, 75, 0.55); box-shadow: 0 14px 44px -18px var(--glow); }
.gallery-item::after {
  content: "⛶"; position: absolute; right: 12px; bottom: 10px;
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(10, 7, 16, 0.65); color: var(--brand-2);
  font-size: 1rem; opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 400; display: grid; place-items: center;
  background: rgba(8, 5, 12, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 4vmin; cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 88vh; border-radius: 14px;
  border: 1px solid rgba(201, 162, 75, 0.5); box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.9), 0 0 60px -20px var(--glow);
  transform: scale(0.92); transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.06);
  color: var(--text); font-size: 1.3rem; cursor: pointer; display: grid; place-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
.lightbox-close:hover { border-color: var(--brand-2); transform: rotate(90deg); }

/* ---------- Back-to-top mit Rauchfahne ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 250;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1206; font-size: 1.25rem; display: grid; place-items: center;
  box-shadow: 0 12px 34px -12px var(--glow);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top .puff {
  position: absolute; left: 50%; top: -6px; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240, 234, 214, 0.5); filter: blur(3px); opacity: 0; pointer-events: none;
}
.to-top.is-visible .puff { animation: puffup 2.6s ease-out infinite; }
.to-top.is-visible .puff:nth-child(2) { animation-delay: 0.9s; left: 40%; }
.to-top.is-visible .puff:nth-child(3) { animation-delay: 1.7s; left: 60%; }
@keyframes puffup {
  0% { opacity: 0; transform: translate(-50%, 0) scale(0.6); }
  25% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-50%, -34px) scale(2.1); }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grad { animation: none; }
  .hero-actions .btn-primary, .promo .btn-primary, .promo { animation: none; }
  .card::after, .menu-cat::after { display: none; }
  .to-top .puff { animation: none !important; }
  .smoke-canvas { display: none; }
}
