/* =========================================================================
   Metzgerei Haller — Website
   Markenpalette (appetitlich, traditionell, seit 1896):
   Metzger-Bordeaux #8E2434 · dunkler #6E1B28 · tief #571421
   Warmes Creme/Papier #F7EFE6 · Ink/Anthrazit #241A17
   Zweitakzent Senf/Gold #C8873F (sparsam)
   Schriften lokal gehostet (assets/fonts), keine externen Requests.
   ========================================================================= */

/* ---------- Lokale Schriften ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url("assets/fonts/fraunces-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/familjen-grotesk-latin.woff2") format("woff2");
}

:root {
  /* Markenpalette (roh) */
  --brand-red:   #8E2434;   /* Metzger-Bordeaux */
  --brand-hi:    #C34B5B;   /* helleres Rot für dunklen Grund */
  --ember:       #6E1B28;   /* dunkleres Bordeaux (Hover/Tiefe) */
  --brand-deep:  #571421;   /* tiefstes Rot */
  --gold:        #C8873F;   /* Senf/Gold, nur sparsam */
  --braun:       #3E2020;   /* warmes Bordeaux-Braun — Heritage-Dunkel */
  --kohle:       #211714;   /* fast schwarz, warm */
  --stein:       #A89B8B;   /* warmes Grau */
  --creme:       #F7EFE6;
  --creme-2:     #EFE3D4;
  --papier:      #FBF6EE;

  /* Semantisch — Light (Default, immer heller Erststart) */
  --bg:          var(--papier);
  --bg-alt:      var(--creme);
  --bg-sunk:     var(--creme-2);
  --surface:     #FFFFFF;
  --ink:         #241A17;
  --ink-soft:    #5A4C43;
  --line:        #E7DBC9;
  --line-strong: #D2C2A9;
  --brand:       var(--brand-red);
  --brand-ink:   var(--ember);   /* Rot als Text auf hell -> dunkler f. Kontrast */
  --on-brand:    var(--creme);   /* helle Schrift auf Bordeaux-Flächen */
  --dark-bg:     var(--braun);
  --dark-ink:    var(--creme);
  --dark-line:   #5A2E33;
  --shadow:      0 1px 2px rgba(33,23,20,.06), 0 12px 34px -18px rgba(33,23,20,.30);
  --shadow-lg:   0 30px 70px -40px rgba(33,23,20,.55);

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --rad: 3px;          /* bewusst crisp, kein rounded-lg-Look */
  --rad-card: 6px;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Familjen Grotesk", system-ui, -apple-system, sans-serif;

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.15rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.25rem);
  --step-4:  clamp(2.7rem, 1.9rem + 3.8vw, 5.5rem);
  --step-5:  clamp(3.4rem, 2rem + 6vw, 7.5rem);
}

/* Dark NUR über data-theme (Systemeinstellung erzwingt keinen dunklen Erststart) */
:root[data-theme="dark"] {
  --bg:          #1A1210;
  --bg-alt:      #20160F;
  --bg-sunk:     #261A14;
  --surface:     #251815;
  --ink:         #F3E6DA;
  --ink-soft:    #C7B4A5;
  --line:        #3A2925;
  --line-strong: #503A34;
  --brand:       #B23A4B;         /* aufgehelltes Rot, auf dunklem Grund lesbar */
  --brand-ink:   #E08B96;         /* Rot-Akzent als Text auf dunkel */
  --on-brand:    var(--creme);
  --dark-bg:     #150E0C;
  --dark-ink:    var(--creme);
  --dark-line:   #3A2925;
  --shadow:      0 1px 2px rgba(0,0,0,.4), 0 14px 40px -20px rgba(0,0,0,.7);
  --shadow-lg:   0 30px 80px -40px rgba(0,0,0,.8);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.02; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 3px; border-radius: 2px; }
:root[data-theme="dark"] :focus-visible { outline-color: var(--brand-hi); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.eyebrow {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .14em;
  font-size: var(--step--1);
  color: var(--brand-ink);
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand);
  display: inline-block;
}
.section-title { font-size: var(--step-3); max-width: 20ch; }
.lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 46ch; margin-top: 1rem; line-height: 1.4; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--brand); --_fg: var(--on-brand);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 600; font-size: var(--step-0);
  padding: .82em 1.4em; border-radius: var(--rad); border: 2px solid var(--_bg);
  background: var(--_bg); color: var(--_fg); text-decoration: none;
  cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  line-height: 1;
}
.btn:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--ghost { --_bg: transparent; --_fg: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn--on-dark { --_fg: var(--on-brand); }
.btn--ghost.btn--on-dark { --_fg: var(--creme); border-color: rgba(247,239,230,.35); }
.btn--ghost.btn--on-dark:hover { background: var(--creme); color: var(--braun); border-color: var(--creme); }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; gap: 1.2rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--f-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.brand-name span {
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-top: .18rem;
}
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: .96rem;
  padding: .5rem .7rem; border-radius: var(--rad); color: var(--ink-soft);
  transition: color .15s ease, background .15s ease; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-sunk); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.theme-toggle {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink); cursor: pointer; transition: background .15s, border-color .15s;
}
.theme-toggle:hover { background: var(--bg-sunk); border-color: var(--line-strong); }
/* Icon spiegelt den Zustand: hell = Mond (auf dunkel schalten), dunkel = Sonne */
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; border-radius: var(--rad); cursor: pointer;
  color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor;
  margin-inline: auto; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

/* ================= HERO ================= */
.hero { position: relative; overflow: clip; background: var(--braun); color: var(--creme); }
/* Illustriertes Hero-Bild als Hintergrund, Bordeaux-Schleier darüber für Lesbarkeit */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(142,36,52,.5), transparent 55%),
    radial-gradient(90% 80% at 8% 110%, rgba(110,27,40,.42), transparent 60%),
    linear-gradient(100deg, rgba(41,20,22,.92) 0%, rgba(53,26,28,.74) 45%, rgba(53,26,28,.5) 100%),
    linear-gradient(180deg, rgba(58,30,32,.55), rgba(53,26,28,.82));
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(3.5rem, 9vw, 8rem) 0 0;
  display: grid; gap: 2.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; align-self: start;
  font-family: var(--f-display); font-variant: small-caps; letter-spacing: .1em;
  font-size: .95rem; font-weight: 600;
  padding: .45rem 1rem; border: 1px solid rgba(247,239,230,.28); border-radius: 100px;
  color: var(--creme);
}
.hero-badge b { color: var(--gold); }
.hero h1 {
  font-size: var(--step-5);
  font-weight: 340;
  letter-spacing: -.02em;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--brand-hi); font-weight: 400; }
.hero h1 .line2 { font-weight: 600; }
.hero-sub { font-size: var(--step-1); max-width: 44ch; color: #ecdcd0; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3rem);
  padding: 1.6rem 0; margin-top: .5rem;
  border-top: 1px solid rgba(247,239,230,.16);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-family: var(--f-display); font-size: var(--step-2); color: var(--creme); font-weight: 600; line-height: 1; }
.hero-meta span { font-size: .82rem; letter-spacing: .06em; color: #d0bcac; margin-top: .35rem; text-transform: uppercase; }

/* Skyline aus dem Logo als Fußleiste des Hero */
.hero-skyline { position: relative; z-index: 2; margin-top: 1.5rem; }
.hero-skyline svg { width: 100%; height: auto; display: block; color: var(--bg); }

/* ================= STATS / ÜBER ================= */
.about { position: relative; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-body p + p { margin-top: 1.1rem; }
.about-body .lead { margin-bottom: 1.4rem; }
.about-figure {
  position: relative; border-radius: var(--rad-card); overflow: hidden;
  aspect-ratio: 4/5; background:
    repeating-linear-gradient(135deg, var(--creme-2) 0 22px, var(--creme) 22px 44px);
  border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center;
  color: var(--ink-soft); text-align: center; padding: 2rem;
}
.about-figure .ph-note { font-size: .8rem; letter-spacing: .05em; }
.about-emblem { width: min(62%, 260px); opacity: .96; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--rad-card);
  overflow: hidden; margin-top: clamp(2.5rem, 5vw, 4rem);
}
.stat { background: var(--surface); padding: 1.6rem 1.4rem; }
.stat b { display: block; font-family: var(--f-display); font-size: var(--step-3); color: var(--brand-ink); font-weight: 600; line-height: 1; }
.stat span { display: block; margin-top: .5rem; font-size: .9rem; color: var(--ink-soft); }

/* ================= SORTIMENT ================= */
.sortiment { background: var(--bg-alt); }
/* Bild-Banner (z. B. Sortiment-Theke) */
.media-banner {
  margin: 0 0 2.6rem; border-radius: var(--rad-card); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-sunk);
}
.media-banner img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; aspect-ratio: 20 / 9;
}
@media (max-width: 680px) { .media-banner img { aspect-ratio: 4 / 3; } }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.sec-head .lead { margin-top: .6rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--rad-card); padding: 1.7rem 1.6rem 1.8rem; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card:hover::after { transform: scaleY(1); }
.card .idx { font-family: var(--f-display); font-size: .9rem; color: var(--stein); font-variant: small-caps; letter-spacing: .1em; }
.card h3 { font-size: var(--step-2); margin: .5rem 0 .6rem; font-weight: 560; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .ico { width: 34px; height: 34px; color: var(--brand); margin-bottom: 1rem; }

/* ================= USP: QUALITÄT (dunkel) ================= */
.quality { background: var(--kohle); color: var(--creme); position: relative; overflow: clip; }
.quality::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(80% 120% at 100% 0%, rgba(142,36,52,.4), transparent 55%);
}
.quality .wrap { position: relative; z-index: 2; }
.quality-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.quality .eyebrow { color: var(--gold); }
.quality h2 { color: var(--creme); font-size: var(--step-3); }
.quality-lead { color: #e7d7cc; font-size: var(--step-1); line-height: 1.4; }
.dlg-seal {
  display: inline-grid; place-items: center; text-align: center;
  width: 190px; height: 190px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--creme);
  background: radial-gradient(circle at 50% 35%, rgba(142,36,52,.3), transparent 70%);
  padding: 1rem;
}
.dlg-seal b { font-family: var(--f-display); font-size: 3rem; line-height: .9; color: var(--gold); font-weight: 600; }
.dlg-seal .t { font-variant: small-caps; letter-spacing: .12em; font-size: .8rem; margin-top: .35rem; }
.q-list { display: grid; gap: 0; }
.q-item { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.3rem 0; border-top: 1px solid var(--dark-line); }
.q-item:first-child { border-top: 0; }
.q-item .qn { font-family: var(--f-display); font-variant: small-caps; letter-spacing: .1em; color: var(--stein); font-size: .95rem; padding-top: .25rem; }
.q-item h3 { color: var(--creme); font-size: var(--step-1); font-weight: 560; }
.q-item p { color: #cbb8ab; margin-top: .35rem; font-size: .97rem; }

/* ================= PARTYSERVICE ================= */
.party { position: relative; overflow: clip; }
.party-card {
  background:
    linear-gradient(115deg, var(--braun), #5a2a2e 70%);
  color: var(--creme); border-radius: var(--rad-card); overflow: hidden;
  display: grid; grid-template-columns: 1.2fr .9fr; box-shadow: var(--shadow-lg);
  position: relative;
}
.party-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(70% 100% at 0% 100%, rgba(142,36,52,.45), transparent 55%);
}
.party-content { position: relative; z-index: 2; display: flex; flex-direction: column; }
/* Bildpanel (Catering-Platte) im Partyservice-Card */
.party-media { position: relative; z-index: 2; min-height: 320px; }
.party-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.party-text { padding: clamp(2rem, 4vw, 3.5rem); position: relative; z-index: 2; }
.party-text .eyebrow { color: var(--gold); }
.party-text h2 { color: var(--creme); font-size: var(--step-3); }
.party-text p { color: #e7d7cc; margin-top: 1rem; max-width: 42ch; }
.party-feats { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.6rem 0; }
.chip {
  font-size: .85rem; padding: .4rem .85rem; border: 1px solid rgba(247,239,230,.3);
  border-radius: 100px; color: var(--creme);
}
.party-aside {
  position: relative; z-index: 2; margin-top: auto;
  padding: clamp(2rem,4vw,3.5rem);
  border-top: 1px solid rgba(247,239,230,.18);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.party-aside .big { font-family: var(--f-display); font-size: var(--step-2); color: var(--creme); }
.party-aside a { color: var(--gold); font-weight: 600; text-decoration: none; }
.party-aside a:hover { text-decoration: underline; }

/* Mittagstisch-Band */
.mittag { background: var(--brand); color: var(--on-brand); }
.mittag .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.mittag h2 { font-size: var(--step-2); color: var(--on-brand); max-width: 24ch; }
.mittag .eyebrow { color: var(--creme); }
.mittag .eyebrow::before { background: var(--gold); }
.mittag p { max-width: 40ch; font-weight: 500; color: rgba(247,239,230,.92); }
.mittag .btn { --_bg: var(--kohle); --_fg: var(--creme); border-color: var(--kohle); }
.mittag .btn:hover { --_bg: #000; border-color: #000; }

/* ================= STANDORTE ================= */
.locations { background: var(--bg-alt); }
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.loc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--rad-card);
  overflow: hidden; display: flex; flex-direction: column;
}
.loc-head {
  padding: 1.6rem 1.7rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.loc-head h3 { font-size: var(--step-2); font-weight: 560; }
.loc-head .tag { font-variant: small-caps; letter-spacing: .1em; font-size: .8rem; color: var(--brand-ink); font-family: var(--f-display); }
.loc-body { padding: 1.7rem; display: grid; gap: 1.3rem; }
.loc-row { display: grid; grid-template-columns: 1.15rem 1fr; gap: .8rem; align-items: start; }
.loc-row svg { width: 1.15rem; height: 1.15rem; color: var(--brand); margin-top: .2rem; }
.loc-row a { color: inherit; text-decoration: none; }
.loc-row a:hover { color: var(--brand-ink); text-decoration: underline; }
.hours { display: grid; gap: .25rem; font-size: .96rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding: .15rem 0; border-bottom: 1px dashed var(--line); }
.hours dt { color: var(--ink-soft); }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; }
.loc-foot { margin-top: auto; padding: 1.2rem 1.7rem; border-top: 1px solid var(--line); background: var(--bg-sunk); }

/* ================= KONTAKT ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.contact-list { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.contact-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .k { font-variant: small-caps; letter-spacing: .08em; color: var(--ink-soft); font-family: var(--f-display); font-size: .95rem; }
.contact-item a { color: var(--brand-ink); text-decoration: none; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

/* Karte: Klick-zum-Laden (kein externer Request ohne Klick) */
.map-box {
  border: 1px solid var(--line); border-radius: var(--rad-card); overflow: hidden;
  min-height: 340px; position: relative; background: var(--bg-sunk);
}
.map-ph {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(142,36,52,.06), rgba(142,36,52,.06)),
    repeating-linear-gradient(0deg, var(--bg-sunk) 0 26px, var(--bg-alt) 26px 27px),
    repeating-linear-gradient(90deg, var(--bg-sunk) 0 26px, var(--bg-alt) 26px 27px);
  display: grid; place-items: center; text-align: center; color: var(--ink-soft);
  padding: 1.5rem;
}
.map-ph .pin { width: 40px; height: 40px; color: var(--brand); margin: 0 auto; }
.map-ph .lbl { font-size: .82rem; letter-spacing: .05em; margin: .6rem 0 1rem; }
.map-box iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-hint { font-size: .78rem; color: var(--ink-soft); margin-top: .7rem; }

/* ================= CTA ================= */
.cta { background: var(--kohle); color: var(--creme); text-align: center; overflow: clip; position: relative; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 120%, rgba(142,36,52,.4), transparent 60%); }
.cta .wrap { position: relative; z-index: 2; display: grid; justify-items: center; gap: 1.5rem; }
.cta h2 { color: var(--creme); font-size: var(--step-4); max-width: 16ch; font-weight: 380; }
.cta h2 em { font-style: italic; color: var(--brand-hi); }
.cta .hero-actions { justify-content: center; }

/* ================= FOOTER ================= */
.site-footer { background: var(--braun); color: var(--creme); padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
.foot-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.foot-brand img { width: 52px; height: 52px; border-radius: 50%; }
.foot-brand b { font-family: var(--f-display); font-size: 1.4rem; }
.site-footer p { color: #dcc9bd; max-width: 34ch; font-size: .95rem; }
.foot-col h4 { font-variant: small-caps; letter-spacing: .1em; color: var(--gold); font-size: .95rem; margin-bottom: 1rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-col a { color: var(--creme); text-decoration: none; font-size: .95rem; opacity: .88; }
.foot-col a:hover { opacity: 1; color: var(--gold); }
.foot-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--dark-line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #ccb9ad;
}
.foot-bottom a { color: inherit; }

/* ================= COOKIE-/DATENSCHUTZ-HINWEIS ================= */
.cookie-note {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 640px; margin-inline: auto;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--rad-card);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  transform: translateY(0); opacity: 1;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-note[hidden] { display: none; }
.cookie-note.is-hiding { transform: translateY(140%); opacity: 0; }
.cookie-note p { font-size: .88rem; color: var(--ink-soft); flex: 1 1 16rem; margin: 0; line-height: 1.5; }
.cookie-note a { color: var(--brand-ink); font-weight: 600; }
.cookie-note .btn { padding: .6em 1.1em; font-size: .92rem; }
@media (prefers-reduced-motion: reduce) {
  .cookie-note { transition: none; }
}

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .card, .arr { transition: none !important; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: .5rem; box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav-links a { padding: .9rem 1rem; }
  .about-grid, .quality-grid, .contact-grid { grid-template-columns: 1fr; }
  .party-card { grid-template-columns: 1fr; }
  .party-media { order: -1; min-height: 240px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-figure { max-width: 420px; }
}
@media (max-width: 680px) {
  .cards { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 1.4rem 2rem; }
  .quality-grid { text-align: left; }
  .dlg-seal { width: 150px; height: 150px; }
}

/* ---------- Standort-Nadel (blaue Karten-Nadel als Overlay) ---------- */
.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 40px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .35));
  animation: mapMarkerIn .35s ease-out both;
}
.map-marker svg { display: block; width: 100%; height: 100%; }
@keyframes mapMarkerIn {
  from { opacity: 0; transform: translate(-50%, -130%); }
  to   { opacity: 1; transform: translate(-50%, -100%); }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker { animation: none; }
}
