/* ============================================================
   Café Kunsthalle Baden-Baden — style.css
   Keine externen Fonts, keine externen Requests. DSGVO-clean.
   ============================================================ */

:root {
  --ink: #14120f;
  --ink-2: #3a362d;
  --ink-3: #6e685a;
  --paper: #fbf9f5;
  --paper-2: #efe9dd;
  --line: rgba(20,18,15,0.16);
  --line-strong: rgba(20,18,15,0.42);
  --gold: #c47b2a;
  --gold-deep: #8f5310;
  --serif: 'Didot', 'Bodoni 72', 'Playfair Display', 'Georgia', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.005em;
}

::selection { background: var(--gold); color: #fff; }
img { display: block; max-width: 100%; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

/* ================= NAV ================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 300; transition: background 0.5s var(--e), box-shadow 0.5s; }
.nav-in {
  max-width: 1440px; margin: 0 auto; padding: 0 56px;
  height: 92px;
  display: flex; align-items: center; justify-content: space-between;
  transition: height 0.4s var(--e);
}
.nav.solid {
  background: rgba(251,249,245,0.98);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.nav.solid .nav-in { height: 76px; }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo img { height: 42px; width: auto; transition: height 0.4s var(--e); }
.nav.solid .logo img { height: 36px; }
.logo-type { font-family: var(--serif); font-size: 20px; letter-spacing: 0.04em; color: #fff; transition: color 0.4s; }
.logo-type i { font-style: italic; color: var(--gold); }
.nav.solid .logo-type { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 48px; }
.nav-links a {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 50%; bottom: -8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--e);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scale(1); }
.nav.solid .nav-links a { color: var(--ink-2); }
.nav.solid .nav-links a:hover, .nav.solid .nav-links a.active { color: var(--ink); }

.nav-cta { border: 1px solid rgba(255,255,255,0.5) !important; padding: 12px 28px; color: #fff !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #fff; color: var(--ink) !important; border-color: #fff !important; }
.nav.solid .nav-cta { background: var(--ink); border-color: var(--ink) !important; color: var(--paper) !important; }
.nav.solid .nav-cta:hover { background: var(--gold-deep); border-color: var(--gold-deep) !important; }

.burger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 400; }
.burger span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: #fff; transition: all 0.4s var(--e); }
.nav.solid .burger span { background: var(--ink); }
.burger.x span { background: var(--ink) !important; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.x span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.m-nav {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 350;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 40px; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.m-nav.open { opacity: 1; pointer-events: auto; }
.m-nav a {
  font-family: var(--serif); font-size: 34px;
  color: var(--ink); text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.m-nav a small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); }
.m-nav a:active { color: var(--gold-deep); }

/* ================= HERO (Startseite) ================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 2.8s var(--e) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,10,0.78) 0%, rgba(15,13,10,0.42) 46%, rgba(15,13,10,0.12) 100%),
    linear-gradient(180deg, rgba(15,13,10,0.55) 0%, rgba(15,13,10,0.2) 36%, rgba(15,13,10,0.82) 100%);
  z-index: 1;
}
.hero h1, .hero-kicker, .hero-facts, .page-hero h1, .page-hero .crumb {
  text-shadow: 0 3px 36px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.55);
}
.hero-content { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 56px 72px; }
.hero-kicker {
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  opacity: 0; animation: rise 1.1s var(--e) 0.3s forwards;
}
.hero-kicker::before { content: ''; width: 48px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8.5vw, 130px);
  line-height: 0.98; letter-spacing: -0.015em;
  max-width: 12ch;
  margin-bottom: 44px;
  opacity: 0; animation: rise 1.1s var(--e) 0.45s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
@keyframes rise { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.25);
  opacity: 0; animation: rise 1.1s var(--e) 0.65s forwards;
}
.hero-facts { display: flex; gap: 64px; flex-wrap: wrap; }
.hero-facts div small {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.hero-facts div b { font-family: var(--serif); font-weight: 400; font-size: 17px; letter-spacing: 0.02em; }
.hero-facts .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero-actions { display: flex; gap: 20px; flex-shrink: 0; }

/* ================= PAGE HERO (Unterseiten) ================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.page-hero .hero-img { position: absolute; inset: 0; }
.page-hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,10,0.7) 0%, rgba(15,13,10,0.32) 55%, rgba(15,13,10,0.1) 100%),
    linear-gradient(180deg, rgba(15,13,10,0.6) 0%, rgba(15,13,10,0.3) 45%, rgba(15,13,10,0.82) 100%);
  z-index: 1;
}
.page-hero .hero-content { padding-bottom: 64px; }
.page-hero .crumb {
  display: flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 26px;
}
.page-hero .crumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .crumb span { color: var(--gold); }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.0; letter-spacing: -0.015em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--e);
  white-space: nowrap;
}
.btn-light { background: var(--paper); color: var(--ink); padding: 20px 42px; }
.btn-light:hover { background: var(--gold); color: #fff; }
.btn-dark { background: var(--ink); color: var(--paper); padding: 20px 42px; }
.btn-dark:hover { background: var(--gold-deep); }
.btn-line { background: transparent; color: inherit; padding: 20px 0; border-bottom: 1px solid currentColor; }
.btn-line:hover { color: var(--gold-deep); }
.btn .a { transition: transform 0.4s var(--e); }
.btn:hover .a { transform: translateX(6px); }

/* ================= LAYOUT ================= */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
section.block { padding: 150px 0; }
section.block.tight { padding: 110px 0; }

.sec-head { margin-bottom: 90px; }
.sec-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.04; letter-spacing: -0.01em;
  margin-top: 30px;
  max-width: 16ch;
}
.sec-head h2 em, h2.serif em { font-style: italic; color: var(--gold-deep); }
h2.serif {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.05;
  margin-top: 30px;
}
.sec-head.centered { text-align: center; }
.sec-head.centered h2 { margin-left: auto; margin-right: auto; }

/* ================= INTRO GRID ================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
.intro-copy { position: sticky; top: 140px; }
.intro-copy .big-p {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.5;
  margin: 30px 0 28px;
}
.intro-copy .big-p em { font-style: italic; color: var(--gold-deep); }
.intro-copy p { color: var(--ink-2); font-size: 15.5px; max-width: 52ch; margin-bottom: 18px; }

.intro-stats { display: flex; margin-top: 54px; border-top: 1px solid var(--line); }
.intro-stats div { flex: 1; padding: 28px 28px 0 0; }
.intro-stats div + div { border-left: 1px solid var(--line); padding-left: 28px; }
.intro-stats b { display: block; font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1; margin-bottom: 10px; }
.intro-stats span { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }

.intro-media { display: flex; flex-direction: column; gap: 24px; }
.intro-media figure { overflow: hidden; }
.intro-media img { width: 100%; transition: transform 1.6s var(--e); }
.intro-media figure:hover img { transform: scale(1.045); }
.intro-media figure.offset { width: 78%; align-self: flex-end; }
.hosts .intro-media figure.offset { box-shadow: -28px 28px 0 var(--paper-2); }
.intro-media figcaption { font-family: var(--serif); font-style: italic; font-size: 13.5px; color: var(--ink-3); padding-top: 12px; }

/* ================= GASTGEBER ================= */
.hosts { background: var(--paper-2); }
.hosts-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 110px; align-items: center; }
.hosts-photo { position: relative; }
.hosts-photo figure { overflow: hidden; }
.hosts-photo img { width: 100%; transition: transform 1.8s var(--e); }
.hosts-photo:hover img { transform: scale(1.03); }
.hosts-photo::after {
  content: '';
  position: absolute; top: 28px; left: -28px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.hosts-copy .big-q {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.42;
  margin: 30px 0;
}
.hosts-copy .big-q em { font-style: italic; color: var(--gold-deep); }
.hosts-copy p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 18px; }
.hosts-sig { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.hosts-sig b { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; }
.hosts-sig span { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }

/* ================= SPEISEKARTE ================= */
.menu-cat { margin-bottom: 110px; }
.menu-cat:last-of-type { margin-bottom: 0; }
.menu-cat-head {
  display: flex; align-items: baseline; gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}
.menu-cat-head .rn { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-3); }
.menu-cat-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
}
.menu-cat-head p { margin-left: auto; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-3); }

.dishes { display: grid; grid-template-columns: 1fr 1fr; gap: 0 110px; }
.dish { padding: 30px 0; border-bottom: 1px solid var(--line); }
.dish-top { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.dish-top h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; }
.dish-top .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-5px); }
.dish-top .p { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-deep); white-space: nowrap; }
.dish p { font-size: 14px; color: var(--ink-3); line-height: 1.65; max-width: 54ch; }

.menu-foot { margin-top: 70px; display: flex; justify-content: center; }
.menu-foot p { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-3); text-align: center; max-width: 60ch; }

/* Menü-Teaser (Startseite) */
.menu-teaser { background: var(--paper-2); }
.menu-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 110px; margin-bottom: 70px; }

/* ================= GALERIE ================= */
.gal-band { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 96px; gap: 24px; }
.gal-band figure { overflow: hidden; position: relative; }
.gal-band img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--e); }
.gal-band figure:hover img { transform: scale(1.05); }
.gal-band figure:nth-child(1) { grid-column: 1 / 6;  grid-row: span 5; }
.gal-band figure:nth-child(2) { grid-column: 6 / 10; grid-row: span 3; }
.gal-band figure:nth-child(3) { grid-column: 10 / 13; grid-row: span 3; margin-top: 60px; }
.gal-band figure:nth-child(4) { grid-column: 6 / 9;  grid-row: span 2; }
.gal-band figure:nth-child(5) { grid-column: 9 / 13; grid-row: span 2; }

/* ================= STIMMEN ================= */
.voices {
  background:
    radial-gradient(1000px 520px at 88% -5%, rgba(196,123,42,0.18), transparent 62%),
    radial-gradient(700px 400px at 0% 105%, rgba(196,123,42,0.08), transparent 55%),
    linear-gradient(180deg, #1a1610 0%, #131009 100%);
  color: var(--paper);
}
.voices .eyebrow { color: var(--gold); }
.voices .eyebrow .num { color: rgba(249,247,243,0.4); }
.voices-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 90px; }
.voices-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.04;
  margin-top: 30px;
}
.voices-head h2 em { font-style: italic; color: var(--gold); }
.v-score { text-align: right; flex-shrink: 0; }
.v-score .n { font-family: var(--serif); font-size: clamp(80px, 8vw, 120px); line-height: 0.85; color: var(--gold); }
.v-score .s { color: var(--gold); letter-spacing: 5px; font-size: 16px; margin: 18px 0 10px; }
.v-score small { font-size: 11.5px; letter-spacing: 0.1em; color: rgba(249,247,243,0.4); }

.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.v-card { padding: 0 52px; border-left: 1px solid rgba(249,247,243,0.14); display: flex; flex-direction: column; }
.v-card:first-child { padding-left: 0; border-left: none; }
.v-card:last-child { padding-right: 0; }
.v-card .qm { font-family: var(--serif); font-size: 84px; line-height: 0.4; color: var(--gold); margin-bottom: 40px; }
.v-card blockquote {
  font-family: var(--serif);
  font-size: 19px; font-style: italic; line-height: 1.65;
  color: rgba(249,247,243,0.92);
  flex: 1;
  margin-bottom: 40px;
}
.v-card .by { border-top: 1px solid rgba(249,247,243,0.14); padding-top: 24px; }
.v-card .by .st { color: var(--gold); font-size: 11px; letter-spacing: 3px; margin-bottom: 10px; }
.v-card .by b { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; }
.v-card .by span { font-size: 12px; color: rgba(249,247,243,0.4); }

.v-foot {
  margin-top: 90px; padding-top: 44px;
  border-top: 1px solid rgba(249,247,243,0.14);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.v-foot p { font-size: 13px; color: rgba(249,247,243,0.45); }
.v-foot a {
  color: var(--gold);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.v-foot a:hover { opacity: 0.65; }

/* ================= FEIERN ================= */
.fete-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 120px; align-items: start; }
.fete-copy { position: sticky; top: 140px; }
.fete-copy p { color: var(--ink-2); font-size: 15.5px; max-width: 44ch; margin: 28px 0 44px; }
.fete-list { border-top: 1px solid var(--line-strong); }
.fete-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--e);
  cursor: default;
}
.fete-item:hover { padding-left: 16px; }
.fete-item .no { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-3); }
.fete-item h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  transition: color 0.4s;
}
.fete-item:hover h3 { color: var(--gold-deep); font-style: italic; }
.fete-item p { grid-column: 2; font-size: 14px; color: var(--ink-3); max-width: 52ch; margin-top: 6px; }
.fete-item .arr-c { font-family: var(--serif); font-size: 22px; color: var(--line-strong); transition: color 0.4s, transform 0.5s var(--e); }
.fete-item:hover .arr-c { color: var(--gold-deep); transform: translateX(8px); }
.fete-photo { margin-top: 60px; overflow: hidden; }
.fete-photo img { width: 100%; transition: transform 1.6s var(--e); }
.fete-photo:hover img { transform: scale(1.04); }

/* ================= CTA BANNER ================= */
.cta-banner { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; color: #fff; }
.cta-banner .bg { position: absolute; inset: 0; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23,21,18,0.85) 0%, rgba(23,21,18,0.5) 55%, rgba(23,21,18,0.2) 100%);
  z-index: 1;
}
.cta-banner .wrap { position: relative; z-index: 2; width: 100%; padding-top: 90px; padding-bottom: 90px; }
.cta-banner .eyebrow { color: var(--gold); }
.cta-banner h2 { color: #fff; max-width: 16ch; }
.cta-banner h2 em { color: var(--gold); }
.cta-banner p { max-width: 48ch; color: rgba(255,255,255,0.85); font-size: 15.5px; margin: 24px 0 44px; }

/* ================= RESERVIEREN ================= */
.res { background: var(--paper-2); }
.res-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 120px; align-items: start; }
.res-side p { color: var(--ink-2); font-size: 15.5px; max-width: 42ch; margin: 28px 0 50px; }
.res-lines { border-top: 1px solid var(--line-strong); }
.res-lines a, .res-lines .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.4s var(--e);
}
.res-lines a:hover { padding-left: 12px; }
.res-lines small { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); }
.res-lines b { font-family: var(--serif); font-weight: 400; font-size: 18px; text-align: right; }

.res-card { background: var(--paper); padding: 72px; box-shadow: 0 40px 100px -40px rgba(23,21,18,0.18); }
.res-card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin-bottom: 10px; }
.res-card > p { font-size: 13.5px; color: var(--ink-3); margin-bottom: 52px; }

.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.ff { display: flex; flex-direction: column; gap: 12px; }
.ff.w { grid-column: 1 / -1; }
.ff label { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); }
.ff input, .ff select, .ff textarea {
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  padding: 10px 2px;
  outline: none;
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}
.ff select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23171512' fill='none' stroke-width='1.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
  cursor: pointer;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-bottom-color: var(--gold-deep); }
.ff textarea { min-height: 90px; resize: vertical; }
.res-send { margin-top: 52px; }
.res-send .btn-dark { width: 100%; padding: 22px; }
.res-send p { font-size: 11.5px; color: var(--ink-3); text-align: center; margin-top: 18px; }
.res-ok {
  display: none;
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--paper-2);
  font-size: 14px;
  color: var(--ink-2);
}

/* ================= MAP ================= */
.map { position: relative; height: 520px; background: var(--paper-2); border-top: 1px solid var(--line); }
.map-gate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 22px; padding: 48px;
}
.map-gate h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; }
.map-gate address { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-2); }
.map-gate p { max-width: 54ch; font-size: 12.5px; color: var(--ink-3); }
.map iframe { width: 100%; height: 100%; border: 0; display: none; }

/* ================= RECHTSTEXTE ================= */
.legal { max-width: 820px; margin: 0 auto; padding: 180px 32px 140px; }
.legal h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 64px); margin: 24px 0 56px; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 48px 0 18px; }
.legal p, .legal li { font-size: 15px; color: var(--ink-2); margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal .todo {
  background: var(--paper-2);
  border-left: 2px solid var(--gold);
  padding: 22px 26px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 32px 0;
}

/* ================= FOOTER ================= */
.foot { background: var(--ink); color: rgba(249,247,243,0.6); padding: 110px 0 52px; }
.foot-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 3fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(249,247,243,0.1);
}
.foot .logo-type { color: var(--paper); font-size: 24px; }
.foot-brand > p { font-size: 14px; margin-top: 22px; max-width: 34ch; line-height: 1.75; }
.socials { display: flex; gap: 14px; margin-top: 32px; }
.socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(249,247,243,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--e);
}
.socials svg { width: 17px; height: 17px; fill: rgba(249,247,243,0.6); transition: fill 0.3s; }
.socials a:hover { border-color: var(--gold); background: var(--gold); transform: translateY(-3px); }
.socials a:hover svg { fill: #fff; }
.foot h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(249,247,243,0.32);
  margin-bottom: 26px;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.foot ul a { color: rgba(249,247,243,0.6); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.foot ul a:hover { color: var(--gold); }
.foot ul li { font-size: 14px; }
.foot ul li i { font-style: normal; color: rgba(249,247,243,0.3); }
.foot-base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  padding-top: 44px;
  font-size: 12px;
  color: rgba(249,247,243,0.28);
}
.foot-base nav { display: flex; gap: 32px; }
.foot-base nav a { color: rgba(249,247,243,0.42); text-decoration: none; }
.foot-base nav a:hover { color: var(--gold); }

/* ================= REVEAL ================= */
.rv { opacity: 0; transform: translateY(44px); transition: opacity 1s var(--e), transform 1s var(--e); }
.rv.go { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-img img, .hero h1, .hero-kicker, .hero-bottom { animation: none; opacity: 1; transform: none; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1180px) {
  .wrap { padding: 0 40px; }
  .nav-in { padding: 0 40px; }
  .hero-content { padding: 0 40px 56px; }
  .intro-grid, .hosts-grid, .fete-grid, .res-grid { grid-template-columns: 1fr; gap: 72px; }
  .intro-copy, .fete-copy { position: static; }
  .v-grid { grid-template-columns: 1fr; gap: 56px; }
  .v-card { padding: 0; border-left: none; border-top: 1px solid rgba(249,247,243,0.14); padding-top: 48px; }
  .v-card:first-child { border-top: none; padding-top: 0; }
  .dishes, .menu-teaser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: block; }
  section.block { padding: 96px 0; }
  .hero h1 { font-size: clamp(48px, 12vw, 76px); }
  .page-hero { min-height: 52vh; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-facts { gap: 36px; }
  .gal-band { grid-auto-rows: 70px; gap: 16px; }
  .gal-band figure:nth-child(1) { grid-column: 1 / 13; grid-row: span 4; }
  .gal-band figure:nth-child(2) { grid-column: 1 / 7;  grid-row: span 3; }
  .gal-band figure:nth-child(3) { grid-column: 7 / 13; grid-row: span 3; margin-top: 0; }
  .gal-band figure:nth-child(4) { grid-column: 1 / 7;  grid-row: span 2; }
  .gal-band figure:nth-child(5) { grid-column: 7 / 13; grid-row: span 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .res-card { padding: 48px 32px; }
  .voices-head { flex-direction: column; align-items: flex-start; }
  .v-score { text-align: left; }
  .fete-item { grid-template-columns: 40px 1fr auto; gap: 18px; }
  .menu-cat-head { flex-wrap: wrap; }
  .menu-cat-head p { margin-left: 0; width: 100%; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 26px; }
  .nav-in { padding: 0 26px; height: 76px; }
  .hero-content { padding: 0 26px 44px; }
  .fg { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .intro-stats { flex-direction: column; }
  .intro-stats div + div { border-left: none; border-top: 1px solid var(--line); padding: 24px 0 0; margin-top: 24px; }
  .hosts-photo::after { display: none; }
  .res-card { padding: 40px 24px; }
  .legal { padding: 140px 24px 100px; }
}

/* ================= PREMIUM ADDITIONS ================= */

/* Preloader */
.loader {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--e), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark { text-align: center; }
.loader-mark img { height: 64px; margin: 0 auto 20px; animation: pulse 1.6s ease-in-out infinite; }
.loader-mark span {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-3);
  letter-spacing: 0.06em;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

/* Rotierendes Badge (Hero) */
.spin-badge {
  position: absolute;
  right: 56px; bottom: 190px;
  width: 150px; height: 150px;
  z-index: 3;
  opacity: 0;
  animation: rise 1.1s var(--e) 0.9s forwards;
}
.spin-badge svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.spin-badge text {
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  fill: rgba(255,255,255,0.9);
}
.spin-badge .center-star {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee-Band */
.marquee {
  padding: 38px 0;
  overflow: hidden;
  background: var(--ink);
}
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: mq 42s linear infinite; }
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  color: var(--paper);
  display: inline-block;
  line-height: 1.25;
}
.marquee-item i { font-style: italic; color: var(--gold); }
.marquee-item::after {
  content: '✦';
  font-size: 14px;
  color: var(--gold);
  margin: 0 44px;
}
@keyframes mq { to { transform: translateX(-50%); } }

/* Parallax */
.px { will-change: transform; }

/* Gestaffelte Reveals */
.rv[data-d="1"] { transition-delay: 0.12s; }
.rv[data-d="2"] { transition-delay: 0.24s; }
.rv[data-d="3"] { transition-delay: 0.36s; }

/* Detailseiten (Feier-Anlässe) */
.detail-intro { max-width: 880px; }
.detail-intro .big-p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.45;
  margin: 30px 0 28px;
}
.detail-intro .big-p em { font-style: italic; color: var(--gold-deep); }
.detail-intro p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 18px; }

.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; margin-top: 110px; }
.detail-split.flip .d-img { order: 2; }
.detail-split .d-img { overflow: hidden; }
.detail-split .d-img img { width: 100%; transition: transform 1.8s var(--e); }
.detail-split .d-img:hover img { transform: scale(1.04); }
.detail-split h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 44px); line-height: 1.12; margin-bottom: 22px; }
.detail-split h2 em { font-style: italic; color: var(--gold-deep); }
.detail-split p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 16px; }

.leist { margin-top: 34px; border-top: 1px solid var(--line-strong); }
.leist li {
  list-style: none;
  display: flex; align-items: baseline; gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
}
.leist li::before { content: '✦'; font-size: 11px; color: var(--gold); }

.faq { max-width: 880px; margin-top: 130px; }
.faq h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 44px); margin: 26px 0 48px; }
.faq h2 em { font-style: italic; color: var(--gold-deep); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--serif);
  font-size: 20px;
  padding: 26px 40px 26px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-deep);
  transition: transform 0.4s var(--e);
}
.faq details[open] summary { color: var(--gold-deep); font-style: italic; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 28px; color: var(--ink-2); font-size: 15px; max-width: 68ch; }

/* Anlass-Verweise (andere Feiern) */
.more-fetes { margin-top: 130px; padding-top: 56px; border-top: 1px solid var(--line-strong); }
.more-fetes h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-bottom: 36px; }
.more-fetes h3 em { font-style: italic; color: var(--gold-deep); }
.more-fetes-row { display: flex; flex-wrap: wrap; gap: 14px; }
.more-fetes-row a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-2);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 13px 30px;
  transition: all 0.35s var(--e);
}
.more-fetes-row a:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); font-style: italic; }

/* Fete-Items als Links */
a.fete-item { text-decoration: none; color: inherit; cursor: pointer; }

/* Über-uns Werte */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 110px; }
.value { background: var(--paper); padding: 56px 44px; transition: background 0.4s; }
.value:hover { background: var(--paper-2); }
.value .vn { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-deep); margin-bottom: 22px; }
.value h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-bottom: 14px; }
.value p { font-size: 14px; color: var(--ink-3); line-height: 1.7; }

@media (max-width: 1180px) {
  .detail-split { grid-template-columns: 1fr; gap: 56px; }
  .detail-split.flip .d-img { order: 0; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .spin-badge { display: none; }
}


/* ================= WHATSAPP FLOAT ================= */
.wa-float {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 290;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(20,18,15,0.28);
  transition: transform 0.35s var(--e), box-shadow 0.35s;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 44px rgba(20,18,15,0.34); }
@media (max-width: 560px) { .wa-float { right: 18px; bottom: 18px; width: 54px; height: 54px; } }


/* ================= STIMMEN — FARBE & LEBEN ================= */
.v-score .s, .v-card .by .st {
  color: #e79f3c;
  text-shadow: 0 0 22px rgba(231,159,60,0.5);
}
.v-card .by { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(249,247,243,0.14); padding-top: 24px; }
.v-card .by .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e79f3c, #8f5310);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196,123,42,0.35);
}
.v-card .by .by-t { display: flex; flex-direction: column; gap: 3px; }
.g-ic { display: inline-block; vertical-align: -3px; margin-right: 9px; }
.v-card { transition: transform 0.5s var(--e); }
.v-card:hover { transform: translateY(-6px); }
.v-card:hover .qm { color: #e79f3c; }
