/* =========================================================================
   Marco Polo · Italienische Restaurants in Berlin
   Design-System & Styles
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Farben */
  --cream:      #F7F1E6;
  --cream-2:    #F1E7D6;
  --paper:      #FBF8F1;
  --ink:        #241C13;
  --ink-soft:   #5E5040;
  --ink-faint:  #8A7B66;
  --wine:       #7C1F2B;
  --wine-deep:  #5C1620;
  --gold:       #B0883F;
  --gold-soft:  #C9A766;
  --forest:     #2B4536;
  --noir:       #1B1610;
  --noir-2:     #251E15;
  --line:       #E4D8C2;
  --line-dark:  rgba(255,255,255,0.14);
  --star:       #F4B400;

  /* Typografie */
  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(40, 28, 12, 0.06);
  --shadow:    0 18px 50px rgba(40, 28, 12, 0.12);
  --shadow-lg: 0 30px 80px rgba(40, 28, 12, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
.ico { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--fill { fill: currentColor; stroke: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ------------------------------------------------------------- Typografie */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.01em; }
.display {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.98;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.4rem); color: var(--ink-soft); font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: attr(data-num);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: none;
}
.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.accent { color: var(--wine); }

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(54px, 7vw, 90px); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head h2 { margin-bottom: 1rem; }
.section--center .section-head { margin-inline: auto; text-align: center; }
.section--center .eyebrow { justify-content: center; }

.bg-cream-2 { background: var(--cream-2); }
.bg-paper { background: var(--paper); }
.bg-noir { background: var(--noir); color: var(--cream); }
.bg-noir p { color: rgba(247, 241, 230, 0.72); }

.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--gold); margin: 0 auto; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: clamp(40px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-leaf::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* --------------------------------------------------------------- Buttons */
.btn {
  --bg: var(--wine); --fg: #fff; --bd: var(--wine);
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 0.95em 1.9em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124, 31, 43, 0.28); }
.btn .ico { width: 1.1em; height: 1.1em; }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(36,28,19,0.28); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); box-shadow: var(--shadow-sm); }
.btn--gold { --bg: transparent; --fg: var(--gold); --bd: var(--gold); }
.btn--gold:hover { --bg: var(--gold); --fg: var(--noir); box-shadow: 0 12px 28px rgba(176,136,63,0.3); }
.btn--light { --bg: transparent; --fg: var(--cream); --bd: rgba(247,241,230,0.4); }
.btn--light:hover { --bg: var(--cream); --fg: var(--noir); }
.btn--sm { padding: 0.72em 1.3em; font-size: 0.7rem; }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine);
  position: relative;
}
.textlink::after { content: "→"; transition: transform 0.35s var(--ease); }
.textlink:hover::after { transform: translateX(5px); }

/* ---------------------------------------------------------------- Header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }
.header.is-scrolled {
  background: rgba(247, 241, 230, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  height: 72px;
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--cream); transition: color 0.5s; }
.header.is-scrolled .brand, .header--solid .brand { color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.06em; }
.brand__sub { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase; opacity: 0.8; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.2rem); }
.nav a {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.08em; color: var(--cream); position: relative; padding: 4px 0;
  transition: color 0.4s;
}
.header.is-scrolled .nav a, .header--solid .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a:hover { color: var(--gold); }
.header__cta { display: inline-flex; align-items: center; gap: 1rem; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--cream); transition: transform 0.4s var(--ease), opacity 0.3s, background 0.4s; }
.header.is-scrolled .burger span, .header--solid .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span { background: var(--cream); }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-Menü Overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: var(--noir); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.4rem;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease), visibility 0.5s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-nav a { font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); color: var(--cream); opacity: 0.85; transition: color 0.3s, opacity 0.3s; }
.mobile-nav a:hover { color: var(--gold); opacity: 1; }
.mobile-nav .btn { font-family: var(--sans); font-size: 0.8rem; margin-top: 1.5rem; }
.mobile-nav__deco { color: var(--gold); margin-bottom: 1.5rem; }

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--noir) url("../images/hero-poster.jpg") center / cover no-repeat; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__video { filter: blur(2px) saturate(1.04); transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,9,0.55) 0%, rgba(20,15,9,0.1) 30%, rgba(20,15,9,0.35) 70%, rgba(20,15,9,0.85) 100%);
}
.hero__inner { width: 100%; padding-bottom: clamp(48px, 8vw, 96px); padding-top: calc(var(--header-h) + 40px); }
.hero__eyebrow { color: var(--gold-soft); margin-bottom: 1.5rem; }
.hero__eyebrow.eyebrow::before { color: var(--gold-soft); }
.hero h1 { color: var(--cream); max-width: 14ch; text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { max-width: 44ch; margin-top: 1.6rem; color: rgba(247,241,230,0.86); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(247,241,230,0.7); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; z-index: 2; }
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); animation: scrolldrop 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrolldrop { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(46px); opacity: 0; } }

/* Trust-Bar (kombinierte Google-Bewertungen) direkt unter Hero */
.trustbar { background: var(--noir-2); color: var(--cream); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4.5rem); padding-block: 28px; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; }
.trust-item .num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-soft); line-height: 1; }
.trust-item .lbl { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,241,230,0.66); text-align: left; }
.trust-sep { width: 1px; height: 38px; background: var(--line-dark); }

/* ------------------------------------------------------ Google-Bewertungs-Badge */
.gbadge {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: #fff; color: #3c4043;
  border: 1px solid #ECE6DA; border-radius: 12px;
  padding: 0.7rem 1.05rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  font-family: var(--sans);
}
a.gbadge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gbadge__g { width: 30px; height: 30px; flex: none; }
.gbadge__body { display: flex; flex-direction: column; line-height: 1.15; }
.gbadge__top { display: flex; align-items: baseline; gap: 0.45rem; }
.gbadge__score { font-size: 1.18rem; font-weight: 500; color: #1a1a1a; font-feature-settings: "tnum"; }
.gbadge__brand { font-size: 0.92rem; font-weight: 500; color: #3c4043; }
.gbadge__brand b { color: #4285F4; font-weight: 500; }
.gbadge__count { font-size: 0.78rem; color: #70757a; letter-spacing: 0.01em; }

/* Sterne mit Teil-Füllung */
.stars { position: relative; display: inline-block; font-size: 0.95rem; line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.stars__base { color: #DADCE0; }
.stars__fill { position: absolute; inset: 0; overflow: hidden; color: var(--star); }
.gbadge--lg { padding: 1rem 1.4rem; border-radius: 14px; }
.gbadge--lg .gbadge__g { width: 38px; height: 38px; }
.gbadge--lg .gbadge__score { font-size: 1.5rem; }
.gbadge--lg .stars { font-size: 1.15rem; }

/* ------------------------------------------------------------- Intro/About */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.about-figure { position: relative; }
.about-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.about-figure .badge-est {
  position: absolute; bottom: -26px; left: -26px;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--noir); color: var(--cream);
  display: grid; place-content: center; text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
}
.badge-est .y { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-soft); line-height: 1; }
.badge-est .t { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 5px; color: rgba(247,241,230,0.7); }
.about-body p + p { margin-top: 1.1rem; }
.about-body .lead { margin-bottom: 1.4rem; color: var(--ink); }
.sign { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--wine); margin-top: 1.6rem; }
.feature-row { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.2rem; }
.feature { display: flex; gap: 0.85rem; align-items: flex-start; max-width: 220px; }
.feature .ico { color: var(--gold); width: 26px; height: 26px; flex: none; margin-top: 2px; }
.feature h4 { font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; }
.feature p { font-size: 0.86rem; margin-top: 2px; }

/* ------------------------------------------------------------- Standorte */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3.5vw, 44px); }
.loc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.loc-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.loc-card:hover .loc-card__media img { transform: scale(1.05); }
.loc-card__tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(27,22,16,0.82); color: var(--cream); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px;
}
.loc-card__gbadge { position: absolute; right: 16px; bottom: 16px; z-index: 2; }
.loc-card__imglink { position: absolute; inset: 0; z-index: 0; }
.loc-card__tag { pointer-events: none; }
.loc-card__body { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; flex: 1; }
.loc-card__name h3 a { transition: color 0.3s; }
.loc-card__name h3 a:hover { color: var(--wine); }
.loc-card__name { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.loc-card__name h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.loc-card__hood { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.loc-card__desc { margin: 0.9rem 0 1.3rem; font-size: 0.96rem; }
.loc-meta { display: grid; gap: 0.75rem; margin-bottom: 1.6rem; }
.loc-meta li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.loc-meta .ico { width: 18px; height: 18px; color: var(--wine); flex: none; margin-top: 3px; }
.loc-meta a:hover { color: var(--wine); }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: auto; }

/* ------------------------------------------------------------- Speisekarte */
.menu-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(34px, 6vw, 80px); }
.menu-col h3 { display: flex; align-items: center; gap: 0.8rem; padding-bottom: 0.9rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.menu-col h3 .ico { color: var(--gold); width: 24px; height: 24px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1rem; padding: 0.7rem 0; align-items: baseline; }
.menu-item + .menu-item { border-top: 1px dashed var(--line); }
.menu-item__name { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.menu-item__name .tag { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); border: 1px solid var(--line); border-radius: 100px; padding: 2px 8px; margin-left: 0.5rem; vertical-align: middle; }
.menu-item__dots { border-bottom: 1px dotted var(--ink-faint); align-self: center; height: 1px; min-width: 20px; opacity: 0.5; grid-column: 1 / -1; display: none; }
.menu-item__price { font-family: var(--serif); font-size: 1.2rem; color: var(--wine); white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; font-size: 0.86rem; color: var(--ink-faint); margin-top: 1px; }
.menu-note { margin-top: clamp(34px, 5vw, 56px); padding: 1.5rem 1.8rem; background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.menu-note p { font-size: 0.92rem; margin: 0; }

/* ----------------------------------------------------------------- Galerie */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item.span-2 { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(20,15,9,0.35)); opacity: 0; transition: opacity 0.4s; }
.gallery__item:hover::after { opacity: 1; }

/* ------------------------------------------------------------------ Split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.split--media img { width: 100%; height: 100%; object-fit: cover; }
.split__content { padding: clamp(40px, 7vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.split__content .eyebrow { margin-bottom: 1.2rem; }
.stat-row { display: flex; gap: 2.4rem; margin-top: 2rem; flex-wrap: wrap; }
.stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat .l { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.bg-noir .stat .l { color: rgba(247,241,230,0.6); }

/* --------------------------------------------------------------- Lieferung */
.delivery { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.delivery__chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 0.8rem 1.5rem; font-size: 0.9rem; font-weight: 400; color: var(--ink);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.delivery__chip:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.delivery__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wine); }

/* ----------------------------------------------------------------- Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); }
.contact-cards { display: grid; gap: 1.2rem; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); }
.contact-card h3 { font-size: 1.55rem; margin-bottom: 0.2rem; }
.contact-card .hood { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.contact-card ul { display: grid; gap: 0.6rem; }
.contact-card li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.contact-card .ico { width: 18px; height: 18px; color: var(--wine); flex: none; margin-top: 3px; }
.contact-card a:hover { color: var(--wine); }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,136,63,0.15); }
.form__note { font-size: 0.78rem; color: var(--ink-faint); }
.form__status { font-size: 0.9rem; color: var(--forest); min-height: 1.2em; }

.map-embed { position: relative; z-index: 1; border: 0; width: 100%; height: 100%; min-height: 280px; filter: grayscale(0.15) contrast(1.02); }
.maps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.map-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 16/10; background: var(--cream-2); }
.map-card::after {
  content: attr(data-label); position: absolute; inset: 0; z-index: 0;
  display: grid; place-content: center; text-align: center; gap: 6px;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  background:
    radial-gradient(circle at 50% 42%, rgba(176,136,63,0.12), transparent 60%);
}

/* ------------------------------------------------------------------ CTA */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta h2 { color: var(--cream); margin: 1.2rem 0; }
.cta h2 em { font-style: italic; color: var(--gold-soft); }
.cta .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.cta__deco { position: absolute; top: 0; left: 50%; transform: translateX(-50%); opacity: 0.06; width: 600px; max-width: 90%; z-index: 0; color: var(--gold); }

/* ---------------------------------------------------------------- Footer */
.footer { background: var(--noir); color: rgba(247,241,230,0.7); padding-top: clamp(56px, 7vw, 90px); }
.footer a:hover { color: var(--gold-soft); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line-dark); }
.footer .brand { color: var(--cream); margin-bottom: 1.2rem; }
.footer__about { font-size: 0.9rem; max-width: 34ch; }
.footer h4 { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer__col address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-content: center; color: rgba(247,241,230,0.8); transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; }
.footer__social a:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 26px; font-size: 0.78rem; }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ----------------------------------------------------------- Legal pages */
.legal { padding-top: calc(var(--header-h) + clamp(40px, 6vw, 80px)); padding-bottom: clamp(60px, 8vw, 110px); }
.legal__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.legal__body { max-width: 820px; }
.legal__body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 2.4rem 0 0.8rem; }
.legal__body h3 { font-size: 1.2rem; font-family: var(--sans); font-weight: 500; margin: 1.6rem 0 0.5rem; letter-spacing: 0.01em; }
.legal__body p, .legal__body li { font-size: 0.96rem; color: var(--ink-soft); }
.legal__body p { margin-bottom: 0.9rem; }
.legal__body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: grid; gap: 0.4rem; }
.legal__body a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.legal__body strong { color: var(--ink); font-weight: 500; }
.legal__card { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.4rem 0; }

/* --------------------------------------------------------- Reveal-Animation */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll .line { animation: none; }
}

/* ------------------------------------------------------------ Responsive */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  :root { --header-h: 72px; }
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 460px; margin-inline: auto; }
  .about-figure .badge-est { left: auto; right: -10px; bottom: -20px; width: 110px; height: 110px; }
  .loc-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .menu-wrap { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--media { min-height: 320px; order: -1; }
  .split--media img { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .maps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .trust-sep { display: none; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .loc-card__gbadge { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
}

/* ===================================================== Detailseiten (Standorte) */
/* Standort-Hero */
.dhero { position: relative; min-height: 74vh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.dhero__media { position: absolute; inset: 0; z-index: -2; }
.dhero__media img { width: 100%; height: 100%; object-fit: cover; }
.dhero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,15,9,0.6) 0%, rgba(20,15,9,0.15) 38%, rgba(20,15,9,0.55) 72%, rgba(20,15,9,0.9) 100%); }
.dhero__inner { width: 100%; padding-top: calc(var(--header-h) + 44px); padding-bottom: clamp(40px, 6vw, 76px); }
.crumbs { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,241,230,0.72); margin-bottom: 1.3rem; display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs .sep { opacity: 0.5; }
.dhero__eyebrow { color: var(--gold-soft); margin-bottom: 1rem; }
.dhero__eyebrow.eyebrow::before { color: var(--gold-soft); }
.dhero h1 { color: var(--cream); font-size: clamp(2.8rem, 7.5vw, 5.6rem); line-height: 0.98; text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.dhero__row { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; margin-top: 1.8rem; }
.dhero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Fakten-Leiste */
.factbar { background: var(--noir-2); color: var(--cream); }
.factbar__inner { display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem); padding-block: 22px; align-items: center; justify-content: center; }
.fact { display: flex; gap: 0.7rem; align-items: center; font-size: 0.92rem; color: rgba(247,241,230,0.85); }
.fact .ico { color: var(--gold-soft); width: 19px; height: 19px; }
.fact a:hover { color: var(--gold-soft); }

/* Intro-Split mit Kennzahlen */
.detail-intro .stat-row { margin-top: 2rem; }

/* Buchbare Räumlichkeiten */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.room-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room-card__cap { display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start; background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.42rem 0.95rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--wine); }
.room-card__cap .ico { width: 16px; height: 16px; color: var(--wine); }
.room-card h3 { font-size: 1.55rem; }
.room-card > p { font-size: 0.92rem; }
.room-card__list { display: grid; gap: 0.45rem; margin-top: auto; padding-top: 0.4rem; }
.room-card__list li { font-size: 0.86rem; color: var(--ink-soft); display: flex; gap: 0.55rem; align-items: flex-start; }
.room-card__list .ico { width: 15px; height: 15px; color: var(--gold); margin-top: 3px; }

.occasions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.occasions span { background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.1rem; font-size: 0.84rem; color: var(--ink-soft); }

/* Detail-Galerie */
.dgallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dgallery a { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.dgallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.dgallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(20,15,9,0.32)); opacity: 0; transition: opacity 0.4s; }
.dgallery a:hover img { transform: scale(1.06); }
.dgallery a:hover::after { opacity: 1; }

/* Karte am Seitenende */
.detail-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 21 / 9; background: var(--cream-2); }
.detail-map iframe { position: relative; z-index: 1; border: 0; width: 100%; height: 100%; filter: grayscale(0.15) contrast(1.02); }
.detail-map::after { content: attr(data-label); position: absolute; inset: 0; z-index: 0; display: grid; place-content: center; text-align: center; color: var(--ink-faint); font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; background: radial-gradient(circle at 50% 45%, rgba(176,136,63,0.12), transparent 60%); }
.detail-map__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.detail-map__bar address { font-style: normal; font-size: 0.95rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: center; }
.detail-map__bar .ico { color: var(--wine); width: 18px; height: 18px; }

@media (max-width: 880px) {
  .room-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .dgallery { grid-template-columns: repeat(2, 1fr); }
  .detail-map { aspect-ratio: 16 / 11; }
  .dhero { min-height: 66vh; }
}
