/* ============================================================
   LUMAX' CATERING — style.css (Editorial Big-Layout)
   Weiss · Dunkel · Bild · Weiss · Dunkel · Bild …
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --mg:      #E91E8C;
  --mg-soft: #FDE8F4;
  --mg-pale: #FFF0FA;
  --dark:    #141414;
  --dark2:   #1C1C1E;
  --dark3:   #252527;
  --white:   #FFFFFF;
  --cream:   #FAFAF8;
  --grey:    #6B6B6B;
  --grey-lt: #AEAEB2;
  --border:  #E5E5EA;

  --serif: 'Syne', 'DM Sans', sans-serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --nav-h:   68px;
  --max:     1400px;
  --r:       12px;
  --r-lg:    24px;
  --r-pill:  999px;

  --sh-mg:   0 8px 40px rgba(233,30,140,0.25);
  --t:       0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 17px; }
body { font-family: var(--sans); background: var(--white); color: var(--dark); overflow-x: hidden; }
img  { display: block; width: 100%; }
img.clickable-img { cursor: zoom-in; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utilities ─────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mg); margin-bottom: 18px;
}
.eyebrow::before { content:''; width:28px; height:2px; background:var(--mg); border-radius:2px; }
.eyebrow.light { color: rgba(255,255,255,0.55); }
.eyebrow.light::before { background: rgba(255,255,255,0.3); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.03em; padding: 16px 36px; border-radius: var(--r-pill);
  border: 2px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn-mg  { background: var(--mg); color: var(--white); border-color: var(--mg); }
.btn-mg:hover { background: #c4197a; border-color: #c4197a; transform: translateY(-2px); box-shadow: var(--sh-mg); }
.btn-wh  { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-wh:hover  { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dk  { border-color: var(--dark); color: var(--dark); }
.btn-dk:hover  { background: var(--dark); color: var(--white); }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv-l.in { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv-r.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   ① NAV
══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  transition: var(--t);
}
#nav.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { width: 100px; height: auto; transition: var(--t); }
.nl { display: flex; gap: 4px; }
.nl a {
  font-weight: 700; font-size: 0.95rem; color: var(--dark);
  padding: 8px 14px; border-radius: 8px; transition: var(--t);
}
.nl a:hover, .nl a.act { color: var(--mg); background: var(--mg-pale); }
#nav:not(.solid) .nl a { color: rgba(20,20,20,0.88); }
#nav:not(.solid) .nl a:hover { color: var(--mg); background: var(--mg-pale); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}
#nav:not(.solid) .hamburger { color: var(--dark); }

/* Mobile Menu */
#mob {
  display: none; position: fixed; inset: 0; z-index: 950;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
#mob.open { display: flex; }
#mob a { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--dark); }
#mob a:hover { color: var(--mg); }
#mob-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 0.85rem; font-weight: 800; color: var(--grey);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   ① LOGO-HERO — Weiss 100vh
══════════════════════════════════════════════════════════════ */
#logo-hero {
  height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--white);
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.logo-hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 32px;
}
.logo-hero-img {
  width: min(900px, 88vw);
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.logo-hero-claim {
  font-family: var(--sans); font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500; color: var(--grey);
  letter-spacing: 0.04em;
}
.logo-hero-sub {
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--grey-lt);
}
.logo-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.scroll-invite {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey-lt);
  animation: scrollFade 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--mg)); }
@keyframes scrollFade { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ══════════════════════════════════════════════════════════════
   ② KÜCHEN-BILD — 100vh Parallax
══════════════════════════════════════════════════════════════ */
#kueche-hero {
  height: 100svh; position: relative; overflow: hidden;
}
.parallax-wrap {
  position: absolute; inset: -20%;
  will-change: transform;
}
.parallax-wrap img,
.parallax-wrap video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.kueche-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,16,0.136) 0%,
    rgba(20,10,16,0.068) 50%,
    rgba(20,10,16,0.376) 100%
  );
}
.kueche-caption {
  position: absolute; bottom: 48px; left: 0; right: 0;
  text-align: center;
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--white);
  letter-spacing: 0.01em; text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.kueche-caption em { color: var(--mg); font-style: normal; }

#catering-sec,
#restaurant-sec,
#lieferservice-sec,
#festival-sec {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* ══════════════════════════════════════════════════════════════
   ③ DUNKLER BALKEN — 4 Bereiche
══════════════════════════════════════════════════════════════ */
#bereiche {
  background: var(--dark); padding: 96px 0;
}
.bereiche-head { text-align: center; margin-bottom: 64px; }
.bereiche-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
}
.bereiche-title em { color: var(--mg); font-style: normal; }
.bereiche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.bereich-col {
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px;
  transition: var(--t); cursor: pointer;
  background: var(--dark3);
}
.bereich-col::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,16,0.624) 0%, rgba(20,10,16,0.328) 58%, rgba(20,10,16,0.056) 100%);
  z-index: 1;
}
.bereich-col-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bereich-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
  transition: transform 0.8s ease, filter 0.8s ease;
}
.bereich-col:hover .bereich-col-img img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.08);
}
.bereich-col:hover::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--mg); z-index: 2; pointer-events: none;
}
.bereich-content { position: relative; z-index: 3; }
.bereich-name {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.bereich-desc { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 16px; }
.bereich-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mg); transition: gap 0.2s;
}
.bereich-col:hover .bereich-link { gap: 12px; }

/* ══════════════════════════════════════════════════════════════
   FULLBILD MIT TEXT-OVERLAY (links oder rechts)
══════════════════════════════════════════════════════════════ */
.fullbild {
  position: relative; height: 90svh; overflow: hidden;
}
.fullbild-img {
  position: absolute; inset: 0;
}
.fullbild-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.fullbild-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,7,11,0.56) 0%,
    rgba(14,7,11,0.408) 38%,
    rgba(14,7,11,0.032) 65%,
    transparent 100%
  );
}
.fullbild-overlay.right {
  background: linear-gradient(
    to left,
    rgba(14,7,11,0.56) 0%,
    rgba(14,7,11,0.408) 38%,
    rgba(14,7,11,0.032) 65%,
    transparent 100%
  );
}
.fullbild-text {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 7%; max-width: 520px; z-index: 2;
}
.fullbild-text.right { left: auto; right: 7%; text-align: right; }
.fullbild-text.rv-l { opacity: 0; transform: translate(-50px, -50%); }
.fullbild-text.rv-r { opacity: 0; transform: translate(50px, -50%); }
.fullbild-text.rv-l.in,
.fullbild-text.rv-r.in { opacity: 1; transform: translate(0, -50%); }
.fullbild-text .eyebrow { color: rgba(255,255,255,0.6); }
.fullbild-text .eyebrow::before { background: rgba(255,255,255,0.4); }
.fullbild-text.right .eyebrow { flex-direction: row-reverse; }
.fullbild-h {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 900; color: var(--white); line-height: 1.06;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.fullbild-h em { color: var(--mg); font-style: normal; }
.fullbild-p { font-size: 1.18rem; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.fullbild-text.right .fullbild-p { margin-left: auto; }

/* Gerichte */
#gerichte {
  background: #000;
  color: var(--white);
  padding: 110px 0 120px;
}
.gerichte-head {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 64px;
}
.gerichte-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  margin-bottom: 24px;
}
.gerichte-head h2 em {
  color: var(--mg);
  font-style: normal;
}
.gerichte-head > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,0.72);
  font-size: 1.22rem;
  line-height: 1.75;
}
.gerichte-grid {
  width: min(1540px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}
.gericht-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 0.95fr);
  align-items: center;
  gap: 34px;
}
.gericht-img {
  overflow: hidden;
  background: #050505;
}
.gericht-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.gericht-copy h3 {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 10px;
}
.gericht-copy p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.45;
}

/* Festival image stages */
#festival-bilder {
  background: var(--dark);
}
.festival-wide {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.festival-wide.reverse {
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
}
.festival-wide img {
  width: 100%;
  height: 100%;
  min-height: 78vh;
  object-fit: cover;
}
.festival-wide.reverse img { order: 2; }
.festival-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--dark2);
}
.festival-wide.reverse .festival-copy { background: #181818; }
.festival-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.festival-copy h2 em {
  color: var(--mg);
  font-style: normal;
}
.festival-copy p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  font-size: 1.16rem;
}

/* ══════════════════════════════════════════════════════════════
   SPLIT-SEKTIONEN (Bild + Text nebeneinander)
══════════════════════════════════════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { position: relative; overflow: hidden; min-height: 60vh; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 10s ease; }
.split:hover .split-img img { transform: scale(1.04); }
.split-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
}
.split-body.dark { background: var(--dark2); }
.split-body.cream { background: var(--cream); }
.split-body.white { background: var(--white); }
.split-h {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--dark); margin-bottom: 20px;
}
.split-body.dark .split-h { color: var(--white); }
.split-h em { color: var(--mg); font-style: normal; }
.split-p {
  font-size: 1.15rem; line-height: 1.8; color: var(--grey);
  margin-bottom: 28px; max-width: 440px;
}
.split-body.dark .split-p { color: rgba(255,255,255,0.65); }
.split-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pill {
  background: var(--mg-soft); border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700; color: var(--mg);
  padding: 5px 14px;
}
.split-body.dark .pill { background: rgba(233,30,140,0.18); color: rgba(233,30,140,0.9); }

/* ══════════════════════════════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════════════════════════════ */
#ueber { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.ueber-img { position: relative; overflow: hidden; }
.ueber-img img { width: 100%; height: 100%; object-fit: cover; }
.ueber-badge {
  position: absolute; bottom: 32px; right: 32px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 20px 26px; box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  text-align: center;
}
.ueber-badge .bn { font-family: var(--sans); font-size: 2.4rem; font-weight: 900; color: var(--mg); display: block; line-height: 1; }
.ueber-badge .bl { font-size: 0.72rem; color: var(--grey); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.ueber-body {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
}
.ueber-h {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; color: var(--dark);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.ueber-h em { color: var(--mg); font-style: normal; }
.ueber-p { font-size: 1.1rem; line-height: 1.85; color: var(--grey); margin-bottom: 24px; max-width: 540px; }
.hl-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 32px; }
.hl { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--dark); }
.hl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mg); flex-shrink: 0; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.founder {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 18px; display: flex; align-items: center; gap: 12px; transition: var(--t);
}
.founder:hover { border-color: var(--mg); box-shadow: var(--sh-mg); transform: translateY(-2px); }
.f-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mg), #F040A0);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.f-name { font-weight: 800; font-size: 1rem; color: var(--dark); }
.f-role { font-size: 0.9rem; color: var(--mg); font-weight: 600; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   ZITAT-BAND
══════════════════════════════════════════════════════════════ */
#quote { background: var(--dark); padding: 120px 0; position: relative; overflow: hidden; }
#quote::before {
  content: '\201E';
  position: absolute; top: -60px; left: 40px;
  font-family: var(--serif); font-size: 24rem; font-weight: 900;
  color: rgba(233,30,140,0.07); line-height: 1; pointer-events: none;
}
.quote-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-text {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;  font-style: normal; color: var(--white);
  line-height: 1.45; margin-bottom: 32px;
}
.quote-text em { color: var(--mg); font-style: normal; }
.quote-author { font-size: 1rem; color: rgba(255,255,255,0.48); font-weight: 600; letter-spacing: 0.06em; }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-col { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-col:last-child { border-right: none; }
.stat-n {
  font-family: var(--sans); font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900; color: var(--mg); display: block; line-height: 1;
}
.stat-l { font-size: 1rem; color: rgba(255,255,255,0.52); margin-top: 10px; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   BILDSTRECKE — Horizontales Scrolling
══════════════════════════════════════════════════════════════ */
#galerie { padding: 100px 0; background: var(--white); overflow: hidden; }
.galerie-head { text-align: center; margin-bottom: 56px; }
.galerie-h {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; color: var(--dark); line-height: 1.1;
}
.galerie-h em { color: var(--mg); font-style: normal; }
.strip-outer {
  overflow-x: auto; padding-bottom: 20px; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--mg) var(--border);
}
.strip-outer:active { cursor: grabbing; }
.strip-outer::-webkit-scrollbar { height: 3px; }
.strip-outer::-webkit-scrollbar-track { background: var(--border); }
.strip-outer::-webkit-scrollbar-thumb { background: var(--mg); border-radius: 2px; }
.strip {
  display: flex; gap: 16px; width: max-content; padding: 0 60px;
}
.strip-item {
  width: 480px; height: 320px; border-radius: var(--r-lg);
  overflow: hidden; position: relative; flex-shrink: 0; cursor: zoom-in;
}
.strip-item:first-child, .strip-item:nth-child(5) { width: 660px; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.strip-item:hover img { transform: scale(1.06); }
.strip-cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px;
  background: linear-gradient(transparent, rgba(20,10,16,0.65));
  font-weight: 700; font-size: 0.82rem; color: var(--white);
  opacity: 0; transition: var(--t);
}
.strip-item:hover .strip-cap { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   FAQ + KONTAKT
══════════════════════════════════════════════════════════════ */
#kontakt { background: var(--cream); padding: 120px 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.faq-section h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--dark); margin-bottom: 40px; line-height: 1.1;
}
.faq-section h2 em { color: var(--mg); font-style: normal; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: var(--t); background: var(--white); }
.faq-item.open { border-color: var(--mg); box-shadow: var(--sh-mg); }
.faq-btn {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 1.08rem; color: var(--dark); transition: var(--t);
}
.faq-item.open .faq-btn { color: var(--mg); }
.faq-ans {
  max-height: 0; overflow: hidden; padding: 0 24px;
  font-size: 1rem; color: var(--grey); line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fafafa;
}
.faq-item.open .faq-ans { max-height: 320px; padding: 16px 24px 20px; }

/* Form Box */
.form-card {
  background: var(--white); border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.09); padding: 52px 44px;
  border: 1px solid var(--border);
}
.form-head { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.form-head em { color: var(--mg); font-style: normal; }
.form-sub { font-size: 1rem; color: var(--grey); margin-bottom: 28px; }
.fprog { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.fprog-bar { flex: 1; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.fprog-fill { height: 100%; background: var(--mg); border-radius: 2px; transition: width 0.5s ease; width: 33%; }
.fprog-txt { font-size: 0.75rem; color: var(--grey); font-weight: 700; white-space: nowrap; }
.fstep { display: none; }
.fstep.active { display: block; }
.fstep-t { font-weight: 800; font-size: 1.12rem; color: var(--dark); margin-bottom: 18px; }
.fchoices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.fchoice {
  border: 2px solid var(--border); border-radius: var(--r-lg); padding: 18px 14px;
  cursor: pointer; text-align: center; font-weight: 700; font-size: 1rem;
  color: var(--grey); background: var(--white); transition: var(--t);
}
.fchoice:hover { border-color: var(--mg); color: var(--mg); background: var(--mg-pale); }
.fchoice.sel { border-color: var(--mg); background: var(--mg-soft); color: var(--mg); }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 0.76rem; font-weight: 800; color: var(--grey-lt); text-transform: uppercase; letter-spacing: 0.08em; }
.fg input, .fg select, .fg textarea {
  background: #F9F9F9; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 16px; color: var(--dark);
  font-size: 1rem; font-family: var(--sans); transition: var(--t); width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--mg); background: var(--white);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.fg textarea { resize: vertical; min-height: 100px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fnav { display: flex; gap: 10px; margin-top: 20px; }
.fnav-btn { flex: 1; padding: 14px; border-radius: 10px; font-weight: 800; font-size: 1rem; transition: var(--t); border: none; cursor: pointer; }
.fn-back { background: #F2F2F7; color: var(--grey); }
.fn-back:hover { background: var(--border); color: var(--dark); }
.fn-next, .fn-sub { background: var(--mg); color: var(--white); }
.fn-next:hover, .fn-sub:hover { background: #c4197a; transform: translateY(-1px); }
.fsuccess { text-align: center; padding: 40px 0; display: none; }
.fsuccess h3 { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; color: var(--dark); margin-bottom: 10px; }
.fsuccess p { color: var(--grey); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#footer { background: var(--dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.f-logo { width: 130px; margin-bottom: 20px; filter: brightness(0) invert(1) opacity(0.9); }
.f-desc { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 24px; max-width: 340px; }
.f-ct { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.f-lnks { display: flex; flex-direction: column; gap: 11px; }
.f-lnks a { font-size: 1rem; color: rgba(255,255,255,0.62); transition: var(--t); }
.f-lnks a:hover { color: var(--mg); transform: translateX(4px); display: inline-block; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 10px; }
.footer-bot p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.fbot-links { display: flex; gap: 20px; }
.fbot-links a { font-size: 0.76rem; color: rgba(255,255,255,0.25); transition: var(--t); }
.fbot-links a:hover { color: var(--mg); }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
#cookie {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 990; background: var(--dark2); border-radius: 18px;
  padding: 18px 28px; display: flex; align-items: center; gap: 20px;
  max-width: 680px; width: calc(100% - 40px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); transition: var(--t);
}
#cookie.gone { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.ck-txt { font-size: 0.82rem; color: rgba(255,255,255,0.6); flex: 1; }
.ck-txt a { color: var(--mg); }
.ck-btns { display: flex; gap: 8px; flex-shrink: 0; }
.ck-btn { padding: 9px 20px; border-radius: var(--r-pill); font-weight: 800; font-size: 0.78rem; cursor: pointer; transition: var(--t); border: none; }
.ck-yes { background: var(--mg); color: var(--white); }
.ck-yes:hover { background: #c4197a; }
.ck-no  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.ck-no:hover  { background: rgba(255,255,255,0.14); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .bereiche-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 50vh; }
  .split-body { padding: 56px 40px; }
  #ueber { grid-template-columns: 1fr; }
  .ueber-img { min-height: 50vh; }
  .ueber-body { padding: 60px 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .stat-col:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fullbild-text { left: 5%; max-width: 440px; }
  .fullbild-text.right { right: 5%; }
  .gerichte-grid { grid-template-columns: 1fr; width: min(920px, calc(100% - 48px)); }
  .gerichte-head { width: min(920px, calc(100% - 48px)); }
  .festival-wide,
  .festival-wide.reverse { grid-template-columns: 1fr; }
  .festival-wide.reverse img { order: 0; }
  .festival-wide img { min-height: 52vh; }
  .festival-copy { padding: 56px 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nl, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  .logo-hero-img { width: min(340px, 85vw); }
  .bereiche-grid { grid-template-columns: 1fr 1fr; }
  .bereich-col { min-height: 280px; padding: 24px 20px; }
  .fullbild { height: 70svh; }
  .fullbild-text { left: 5%; right: 5%; max-width: 100%; }
  .fullbild-text.right { left: 5%; right: 5%; text-align: left; }
  .fullbild-overlay.right { background: linear-gradient(to right, rgba(14,7,11,0.56) 0%, rgba(14,7,11,0.136) 70%, transparent 100%); }
  .split-body { padding: 48px 24px; }
  .ueber-body { padding: 48px 24px; }
  .founders { grid-template-columns: 1fr; }
  #gerichte { padding: 76px 0 84px; }
  .gerichte-grid { gap: 42px; }
  .gericht-card { grid-template-columns: 1fr; gap: 18px; }
  .gericht-img img { aspect-ratio: 16 / 11; }
  .strip-item { width: 280px; height: 200px; }
  .strip-item:first-child, .strip-item:nth-child(5) { width: 340px; }
  .strip { padding: 0 20px; gap: 10px; }
  .form-card { padding: 32px 22px; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; text-align: center; }
  #quote { padding: 72px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  #cookie { flex-direction: column; text-align: center; }
  .ck-btns { justify-content: center; }
  .festival-wide img { min-height: 42vh; }
  .festival-copy { padding: 44px 24px; }
}
@media (max-width: 480px) {
  .bereiche-grid { grid-template-columns: 1fr; }
  .fchoices { grid-template-columns: 1fr 1fr; }
  .logo-hero-btns { flex-direction: column; align-items: center; }
}

.festival-programm {
  padding: 92px 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0E0E0F;
}
.festival-programm h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.festival-programm h2 em {
  color: var(--mg);
  font-style: normal;
}
.festival-programm p:not(.eyebrow) {
  max-width: 980px;
  color: rgba(255,255,255,0.72);
  font-size: 1.18rem;
  line-height: 1.8;
}
.festival-programm-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}
.festival-programm-points span {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.82);
  background: rgba(233,30,140,0.12);
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .festival-programm {
    padding: 54px 24px;
  }
}

#standbewerbung {
  background: var(--dark);
  color: var(--white);
  padding: 110px 0;
}
.stand-inner {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: center;
}
.stand-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  margin-bottom: 24px;
}
.stand-copy h2 em {
  color: var(--mg);
  font-style: normal;
}
.stand-copy p:not(.eyebrow),
.stand-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 1.18rem;
  line-height: 1.8;
}
.stand-copy p:not(.eyebrow) {
  max-width: 760px;
}
.stand-panel {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  padding: 42px;
  border-radius: var(--r-lg);
}
.stand-panel h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 22px;
}
.stand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.stand-tags span {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(233,30,140,0.12);
  color: rgba(255,255,255,0.84);
  border-radius: var(--r-pill);
  padding: 9px 15px;
  font-weight: 800;
  font-size: 0.92rem;
}
.stand-panel .btn {
  margin-top: 28px;
}
@media (max-width: 900px) {
  .stand-inner {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .stand-panel {
    padding: 30px 24px;
  }
}
