/* =====================================================================
   Restaurant Milan – Lippstadt
   Modernes, elegantes Design  |  Stand 2026
   Farbwelt: warmes Creme, dunkles Espresso, Burgunderrot, Gold
   ===================================================================== */

/* ---- Selbst gehostete Schriften (lokal, kein Google-CDN / DSGVO-konform) ---- */
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/cormorant-garamond-500.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/cormorant-garamond-600.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/cormorant-garamond-700.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:500; font-display:swap; src:url('../fonts/cormorant-garamond-500i.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:600; font-display:swap; src:url('../fonts/cormorant-garamond-600i.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/inter-700.woff2') format('woff2'); }

:root {
  --cream:        #fbf7f0;
  --cream-2:      #f3ece0;
  --ink:          #1d1a16;
  --ink-soft:     #4a443c;
  --muted:        #837a6c;
  --wine:         #7d1f2b;
  --wine-dark:    #5d141d;
  --wine-light:   #9c3340;
  --gold:         #c2a14d;
  --gold-soft:    #e7d6a8;
  --line:         #e5dccd;
  --white:        #ffffff;

  --shadow-sm: 0 2px 10px rgba(29, 26, 22, .06);
  --shadow-md: 0 10px 35px rgba(29, 26, 22, .10);
  --shadow-lg: 0 24px 60px rgba(29, 26, 22, .18);

  --radius: 16px;
  --radius-sm: 10px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* Decorative eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: .5px;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

/* gold divider */
.divider {
  width: 64px; height: 2px; border: 0;
  background: var(--gold); margin: 22px 0 0;
}
.divider.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 28px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--wine); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--wine-dark); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(251, 247, 240, .92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: baseline; gap: .55rem; font-family: var(--serif); }
.brand .b-name { font-size: 1.65rem; font-weight: 700; letter-spacing: .5px; color: var(--ink); }
.brand .b-sub  { font-size: .72rem; font-family: var(--sans); letter-spacing: .25em; text-transform: uppercase; color: var(--wine); }
.site-header:not(.scrolled) .brand .b-name { color: #fff; }
.site-header:not(.scrolled).on-light .brand .b-name { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  color: #fff; position: relative; padding: 4px 0;
}
.site-header.scrolled .nav-links a,
.site-header.on-light:not(.scrolled) .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* Logo-Untertitel: auf dunklem Hero gold (lesbar), auf hellem Header weinrot */
.site-header:not(.scrolled) .brand .b-sub { color: var(--gold); }
.site-header.on-light:not(.scrolled) .brand .b-sub,
.site-header.scrolled .brand .b-sub { color: var(--wine); }

/* Telefonnummer im Header: hervorgehobener Link mit Icon – ohne Pille */
.nav-links a.nav-phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; letter-spacing: .01em;
}
.nav-phone svg { width: 16px; height: 16px; flex: none; }
.site-header:not(.scrolled) .nav-links a.nav-phone { color: var(--gold); }
.site-header.scrolled .nav-links a.nav-phone,
.site-header.on-light:not(.scrolled) .nav-links a.nav-phone { color: var(--wine); }
.nav-links a.nav-phone:hover { opacity: .82; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px auto; transition: .3s; }
.site-header:not(.scrolled) .nav-toggle { color: #fff; }
.site-header.scrolled .nav-toggle, .site-header.on-light:not(.scrolled) .nav-toggle { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(157,51,64,.55), transparent 55%),
    linear-gradient(160deg, #2a1216 0%, #1d1a16 55%, #120f0c 100%);
}
.hero::before {
  /* subtle plate / texture rings */
  content: ""; position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 62vmin; height: 62vmin; border-radius: 50%;
  background:
    radial-gradient(circle, transparent 36%, rgba(194,161,77,.18) 37%, transparent 39%),
    radial-gradient(circle, transparent 48%, rgba(194,161,77,.12) 49%, transparent 51%),
    radial-gradient(circle, rgba(255,255,255,.04), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; max-width: 760px; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .98; letter-spacing: .5px; margin-bottom: 8px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero .kicker {
  font-family: var(--sans); letter-spacing: .35em; text-transform: uppercase;
  font-size: .8rem; color: var(--gold-soft); margin-bottom: 26px;
}
.hero p.tagline { font-size: 1.3rem; color: rgba(255,255,255,.85); max-width: 48ch; margin-bottom: 34px; font-family: var(--serif); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; background:#fff; border-radius:2px; transform:translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,10px)} }

/* quick info bar under hero */
.infobar { background: var(--ink); color: var(--cream); }
.infobar .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.infobar .item { display: flex; align-items: center; gap: 14px; padding: 22px 10px; }
.infobar .item + .item { border-left: 1px solid rgba(255,255,255,.1); padding-left: 28px; }
.infobar .ic { color: var(--gold); flex: none; }
.infobar .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.infobar .v { font-family: var(--serif); font-size: 1.15rem; }
.infobar a:hover .v { color: #fff; }

/* ---------- Infobox (aktueller Hinweis, vom Admin gesteuert) ---------- */
.infobox { background: linear-gradient(135deg, var(--gold) 0%, #cdaa57 55%, var(--gold-soft) 100%);
  color: var(--ink); border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(29,26,22,.12); }
.infobox[hidden] { display: none; }
.infobox-inner { display: flex; align-items: center; gap: 18px; padding: 16px 24px; }
.infobox-ic { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(125,31,43,.14); color: var(--wine-dark); }
.infobox-ic svg { width: 24px; height: 24px; }
.infobox-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.infobox-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; line-height: 1.15; }
.infobox-title:empty { display: none; }
.infobox-text { font-family: var(--sans); font-size: 1rem; line-height: 1.5; white-space: pre-line; }
@media (max-width: 600px) {
  .infobox-inner { align-items: flex-start; gap: 14px; padding: 14px 20px; }
  .infobox-title { font-size: 1.25rem; }
}

/* ---------- Generic section ---------- */
section.block { padding: clamp(64px, 9vw, 120px) 0; }
.block.alt { background: var(--cream-2); }
.block.dark { background: var(--ink); color: var(--cream); }
.block.dark .lead { color: rgba(251,247,240,.8); }
.block.wine { background: linear-gradient(160deg, var(--wine) 0%, var(--wine-dark) 100%); color: #fff; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }

/* About figure (decorative, no photo dependency) */
.figure-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--wine-light), var(--wine-dark));
  min-height: 420px; box-shadow: var(--shadow-lg); color:#fff;
  display:flex; align-items:flex-end; padding: 34px;
}
.figure-card::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 75% 20%, rgba(255,255,255,.16), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px);
}
.figure-card .quote { position: relative; z-index:1; font-family: var(--serif); font-size: 1.7rem; font-style: italic; line-height: 1.3; }
.figure-card .quote cite { display:block; margin-top:14px; font-size: .95rem; font-style: normal; font-family: var(--sans); letter-spacing:.12em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Feature / highlight cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--wine); margin-bottom: 20px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* Außer-Haus-Bereich: zentriertes Icon-Badge */
.icon-badge { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--wine); margin: 0 auto 18px; }
.block.alt .icon-badge { background: var(--white); }

/* Terrasse: zwei Hochformat-Videos nebeneinander */
.terrace-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.terrace-videos video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-md); background: var(--cream-2); }

/* ---------- Opening hours ---------- */
.hours-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.hours-list { list-style: none; margin: 26px 0 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hours-list .day { font-family: var(--serif); font-size: 1.25rem; }
.hours-list .time { color: var(--gold-soft); font-variant-numeric: tabular-nums; text-align: right; }
.hours-list li.closed .time { color: var(--wine-light); font-style: italic; }
.badge-note { display:inline-block; margin-top: 22px; padding: 8px 16px; border:1px solid rgba(255,255,255,.25); border-radius: 999px; font-size:.85rem; letter-spacing:.04em; }

/* ---------- Menu preview / teaser ---------- */
.menu-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 56px; margin-top: 44px; }
.m-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.m-item .m-name { font-family: var(--serif); font-size: 1.3rem; }
.m-item .m-desc { display:block; font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-top: 2px; }
.m-item .m-price { font-family: var(--serif); font-size: 1.25rem; color: var(--wine); white-space: nowrap; }
.block.dark .m-item { border-color: rgba(255,255,255,.12); }
.block.dark .m-item .m-price { color: var(--gold); }
.block.dark .m-item .m-desc { color: rgba(251,247,240,.6); }

/* ---------- Celebrations CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.cta-band p { max-width: 56ch; margin-inline: auto; color: rgba(255,255,255,.85); }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px 0 36px; }
.chip { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 8px 18px; font-size: .9rem; }

/* ---------- Contact / map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); }
.contact-card { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.contact-row { display:flex; gap:16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { color: var(--wine); flex:none; margin-top: 3px; }
.contact-row .k { font-size:.74rem; letter-spacing:.18em; text-transform: uppercase; color: var(--muted); }
.contact-row .v { font-size: 1.15rem; }
.map-frame { border:0; width:100%; height:100%; min-height: 360px; border-radius: var(--radius); box-shadow: var(--shadow-md); filter: saturate(.9); }
.map-facade {
  position: relative; width:100%; min-height: 360px; height:100%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); cursor: pointer;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(194,161,77,.18), transparent 60%),
    linear-gradient(150deg, var(--cream-2), #e8dfce);
}
.map-facade::before {
  content:""; position:absolute; inset:0; opacity:.5;
  background-image:
    linear-gradient(rgba(125,31,43,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,31,43,.12) 1px, transparent 1px);
  background-size: 38px 38px, 38px 38px;
}
.map-facade-inner {
  position: relative; z-index:1; height:100%; min-height:360px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  text-align:center; padding: 30px; color: var(--wine);
}
.map-facade-inner strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.map-facade-inner small { color: var(--muted); max-width: 30ch; font-size:.8rem; }
.map-facade-inner .map-load { margin-top: 4px; }
.map-facade iframe { border:0; width:100%; height:100%; min-height:360px; display:block; }

/* ---------- Footer ---------- */
.site-footer { background: #15120f; color: rgba(251,247,240,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color:#fff; font-family: var(--sans); font-size: .8rem; letter-spacing:.2em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .f-brand { font-family: var(--serif); font-size: 1.8rem; color:#fff; }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li { padding: 5px 0; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; font-size:.85rem; color: rgba(251,247,240,.5); }
.webcredit { display:inline-flex; align-items:center; gap:10px; color: rgba(251,247,240,.62); transition: opacity .2s ease; }
.webcredit:hover { opacity: .8; }
.webcredit img { display:block; height:24px; width:auto; flex:none; }
.webcredit-label { font-size:.78rem; letter-spacing:.04em; opacity:.85; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, #2a1216, #15120f); color:#fff; padding: 160px 0 70px; text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 60ch; margin: 14px auto 0; }

/* ---------- Full menu page ---------- */
/* Sticky-Steuerleiste: Tab-Umschalter + (für à la carte) Kategorie-Pillen */
.menu-controls {
  position: sticky; top: 60px; z-index: 40;
  background: rgba(251,247,240,.97); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.menu-tabs { display: flex; gap: 10px; justify-content: center; padding-top: 16px; }
.menu-tab {
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .02em;
  padding: 11px 30px; border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-tab:hover { border-color: var(--gold); color: var(--wine); }
.menu-tab.active { background: var(--wine); color: #fff; border-color: var(--wine); }

.menu-nav { background: transparent; }
.menu-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: thin; }
.menu-nav a { white-space: nowrap; font-size:.85rem; font-weight:600; letter-spacing:.04em; padding: 8px 16px; border-radius: 999px; color: var(--ink-soft); transition: .2s; }
.menu-nav a:hover { background: var(--cream-2); color: var(--wine); }
.menu-nav a.active { background: var(--wine); color:#fff; }

.menu-tabpanel[hidden] { display: none; }

/* Intro-Block des Mittagstisch-Tabs */
.lunch-intro { text-align: center; padding: 56px 0 8px; }
.lunch-intro .lead { margin: 14px auto 0; }

.menu-section { padding: 56px 0 8px; scroll-margin-top: 150px; }
.menu-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.menu-section .cat-note { color: var(--muted); margin-top: 4px; font-style: italic; }
.menu-list { margin-top: 28px; }
.menu-list .row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 6px 16px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.menu-list .num { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; font-weight:600; min-width: 1.6em; }
.menu-list .name { font-family: var(--serif); font-size: 1.35rem; }
.menu-list .desc { grid-column: 2; color: var(--ink-soft); font-size: .98rem; }
.menu-list .price { font-family: var(--serif); font-size: 1.3rem; color: var(--wine); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-allergen { margin-top: 44px; padding: 22px 26px; background: var(--cream-2); border-radius: var(--radius-sm); font-size: .92rem; color: var(--ink-soft); }

/* ---------- Legal page ---------- */
.legal { padding: 60px 0 100px; }
.legal .container { max-width: 860px; }
.legal h2 { font-size: 1.9rem; margin: 44px 0 12px; }
.legal h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; margin: 28px 0 8px; color: var(--wine); }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; }
.legal .imp-card { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.legal .imp-card .imp-k { display:inline-block; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-top:6px; }
.legal .imp-card mark { background:#fbe6c2; color:var(--ink); padding:1px 6px; border-radius:4px; }
.legal .imp-card p { margin-bottom: .9em; }
.legal details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.legal summary { cursor: pointer; font-family: var(--serif); font-size: 1.3rem; padding: 14px 0; list-style: none; display:flex; justify-content: space-between; align-items:center; }
.legal summary::-webkit-details-marker { display:none; }
.legal summary::after { content:"+"; color: var(--wine); font-size: 1.5rem; }
.legal details[open] summary::after { content:"–"; }
.legal details .body { padding-bottom: 18px; }

/* =====================================================================
   Bilder / Fotos  (Galerie, Hero-Foto, Über-uns-Foto)
   Drop-in: Dateien in /img ablegen – fehlende Bilder zeigen Platzhalter.
   ===================================================================== */

/* Hero-Hintergrundfoto (optional: img/hero.jpg) */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero-photo.loaded { opacity: .42; }
.hero::after { /* Lesbarkeits-Overlay über dem Foto */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(30,16,18,.55) 0%, rgba(18,15,12,.78) 100%);
}
.hero.has-photo::after { opacity: 1; }
.hero:not(.has-photo)::after { display: none; }

/* Über-uns-Foto: füllt die figure-card, Zitat liegt darüber */
.figure-card .figure-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.figure-card.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(93,20,29,.25) 0%, rgba(40,12,15,.82) 100%);
}

/* Galerie / Impressionen – aufgeräumtes, gleichmäßiges Raster */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 48px;
}
.gphoto {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: var(--cream-2);
  aspect-ratio: 4 / 3;
}
.gphoto img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gphoto:hover img { transform: scale(1.05); }

/* Badge (z. B. auf dem Saal-Video im Feiern-Bereich) */
.gphoto-badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(29,26,22,.62); backdrop-filter: blur(4px);
  color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

.gallery-cta { text-align: center; margin-top: 36px; }
.ig-link { display:inline-flex; align-items:center; gap:.5em; color: var(--wine); font-weight:600; }
.ig-link:hover { color: var(--wine-dark); }

@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .gallery { grid-template-columns: 1fr; } }

/* Video im Feiern-Bereich (Hochformat-„Reel") */
.feiern-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,6vw,64px); align-items: center; }
.feiern-text .chip-row { justify-content: flex-start; }
.feiern-video {
  position: relative; width: min(320px, 86vw); aspect-ratio: 9 / 16;
  margin-inline: auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.18);
}
.feiern-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .feiern-grid { grid-template-columns: 1fr; text-align: center; }
  .feiern-text .chip-row { justify-content: center; }
  .feiern-video { margin-top: 8px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .split, .hours-wrap, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .menu-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .infobar .container { grid-template-columns: 1fr; }
  .infobar .item + .item { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-left: 10px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Wichtig: backdrop-filter auf dem Header macht ihn zum Containing-Block für
     das fixe Menü-Panel und sperrt es ein. Auf Mobil daher solider Hintergrund. */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 8px; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: #fff !important; font-size: 1.2rem; font-family: var(--serif); padding: 10px 0; }
  .nav-links a.nav-phone { margin-top: 16px; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-links.open ~ .nav-toggle, .nav-toggle.open { color:#fff; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-list .row { grid-template-columns: auto 1fr; }
  .menu-list .price { grid-column: 2; text-align: right; }
  .menu-list .desc { grid-column: 1 / -1; }
  .hero-scroll { display: none; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
