/* =========================================================
   Café Höpker, Confiserie · Friedrichshafen-Fischbach (Demo)
   Warme, editoriale Confiserie-Stimmung: Bordeaux als Leitfarbe,
   Creme/Elfenbein als Grund, Champagner-Gold als feiner Akzent.
   Fonts lokal (DSGVO): Newsreader (Display), Instrument Sans (Body),
   Pinyon Script (nur Wortmarke "Café Höpker" / kleine Flourishes).
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/instrumentsans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Pinyon Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/pinyonscript-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Marken-Basis: Bordeaux der Logofarbe */
  --bordeaux:      #933b3f;   /* Leitfarbe: gedaempftes Weinrot (echte Logofarbe) */
  --bordeaux-deep: #682a2b;   /* tiefer fuer Footer/Akzentflaechen/Hover */
  --bordeaux-700:  #7c3236;   /* Zwischenton fuer Verlaeufe */
  --bordeaux-200:  #e7c9c4;   /* helles Bordeaux/Rose auf dunklem Grund */

  --gold:          #c2a060;   /* Champagner-/Altgold, feine Linien & Details */
  --gold-soft:     #d8bd86;   /* weicheres Gold fuer Text auf dunkel */
  --rose:          #f0e2dc;   /* zarter Rose-Hauch fuer Flaechen */

  --cream:         #faf6ef;   /* heller Grund: warmes Elfenbein */
  --cream-soft:    #f7f1e7;   /* zweiter Cremeton */
  --surface:       #fffdf8;   /* fast weisser, warmer Kartenton */

  --text:          #3a2a24;   /* warmes Dunkelbraun statt Schwarz */
  --muted:         #6e5750;   /* gedaempfter Brauntext */
  --hairline:      rgba(58, 42, 36, 0.14);
  --hairline-2:    rgba(58, 42, 36, 0.07);
  --gold-line:     rgba(194, 160, 96, 0.5);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 22px 56px -28px rgba(104, 42, 43, 0.5);
  --shadow-card: 0 1px 2px rgba(104, 42, 43, 0.05), 0 16px 44px -30px rgba(104, 42, 43, 0.55);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-script: "Pinyon Script", "Newsreader", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.008em;
  color: var(--bordeaux-deep);
  margin: 0;
  hyphens: manual;
}
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* feine Papier-/Grain-Textur, fix, performant */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--bordeaux-deep);
  color: #f4e6e2;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.5rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: var(--gold-soft); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.85);
  border-bottom: 1px solid var(--hairline-2);
}
/* Blur als Pseudo-Element, damit der Header KEIN containing block fuer das
   position:fixed Mobil-Drawer wird (backdrop-filter am Element selbst wuerde
   das fixe Menue an den Header binden statt ans Viewport). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 80px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand .emblem { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-script {
  font-family: var(--font-script);
  font-size: 2.3rem;
  color: var(--bordeaux);
  line-height: 0.74;
  margin-bottom: 3px;
}
.brand-sub {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 9px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--bordeaux); background: rgba(147, 59, 63, 0.08); }
.nav-links a.active { color: var(--bordeaux); }
.nav-cta {
  margin-left: 0.45rem;
  background: var(--bordeaux);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.62rem 1.25rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}
.nav-cta:hover { background: var(--bordeaux-deep) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: transparent;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--bordeaux-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary { background: var(--bordeaux); color: #fff; }
.btn-primary:hover { background: var(--bordeaux-deep); transform: translateY(-2px); }
.btn-primary .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .pin { transform: translateX(3px); }
.btn-gold { background: var(--gold); color: #3a2a18; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-gold .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(58,42,24,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-gold:hover .pin { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--bordeaux); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--bordeaux); background: rgba(147,59,63,0.06); }
.btn-on-dark { background: var(--gold); color: #3a2a18; }
.btn-on-dark:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-on-dark .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(58,42,24,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-on-dark:hover .pin { transform: translateX(3px); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(247,241,231,0.4); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(247,241,231,0.1); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--bordeaux);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold); }

/* dekorative Script-Zeile (Flourish) */
.flourish {
  font-family: var(--font-script);
  color: var(--bordeaux);
  line-height: 0.8;
  display: block;
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 92% at 88% -12%, rgba(194,160,96,0.26), transparent 56%),
    radial-gradient(92% 80% at 2% 110%, rgba(240,226,220,0.16), transparent 55%),
    linear-gradient(158deg, var(--bordeaux-700) 0%, var(--bordeaux-deep) 84%);
  color: #f3e6e3;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 28%, rgba(255,247,235,0.05) 0, transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 10vw, 7rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero h1 .accent {
  font-family: var(--font-script);
  color: var(--gold-soft);
  font-size: 1.32em;
  line-height: 0.7;
  display: inline-block;
}
.hero-lead {
  color: #ecd7d2;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-top: 1.6rem;
  max-width: 44ch;
}
.hero-script {
  font-family: var(--font-script);
  color: var(--gold-soft);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.3rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(243,230,227,0.18);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta .k { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.hero-meta .l { font-size: 0.8rem; color: #d9bcb6; letter-spacing: 0.02em; }

/* Hero-Karte: Confiserie-Emblem */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(247,241,231,0.09), rgba(247,241,231,0.02));
  border: 1px solid rgba(247,241,231,0.16);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), var(--shadow-soft);
}
.hero-card .scene { width: 100%; height: auto; }
.hero-card .cap {
  margin-top: 1.3rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: #ecd7d2;
}
.hero-card .cap b { color: var(--cream); font-weight: 600; }

/* Tradition-Badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(247,241,231,0.1);
  border: 1px solid rgba(247,241,231,0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  margin-bottom: 1.4rem;
}
.rating-badge .seal {
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(194,160,96,0.2);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.rating-badge .txt { font-size: 0.84rem; color: #e8cfc9; }
.rating-badge .txt b { color: var(--cream); font-weight: 600; }

/* ---------- Highlights (asymmetrisches Bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(104,42,43,0.06), 0 24px 50px -28px rgba(104,42,43,0.6);
}
.tile h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.99rem; }
.tile .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(147,59,63,0.1);
  color: var(--bordeaux);
  margin-bottom: 1.1rem;
}
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.span-6 { grid-column: span 6; }
.tile.span-4 { grid-column: span 4; }
.tile.span-8 { grid-column: span 8; }
.tile.span-12 { grid-column: span 12; }

.tile.gold .ic { background: rgba(194,160,96,0.2); color: #9a7d33; }
.tile.rose .ic { background: rgba(240,226,220,0.7); color: var(--bordeaux); }

/* Feature-Kachel auf dunklem Bordeaux-Grund */
.tile.feature {
  background:
    radial-gradient(95% 130% at 100% 0%, rgba(194,160,96,0.24), transparent 56%),
    linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: #f3e6e3;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile.feature h3 { color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.tile.feature p { color: #ecd7d2; }
.tile.feature .ic { background: rgba(247,241,231,0.14); color: var(--cream); }
.tile.feature .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-soft); font-weight: 600; font-size: 0.95rem;
}
.tile.feature .more svg { transition: transform 0.25s var(--ease); }
.tile.feature:hover .more svg { transform: translateX(4px); }

/* ---------- Baender ---------- */
.surface-band { background: var(--surface); border-block: 1px solid var(--hairline-2); }
.cream-band { background: var(--cream-soft); }

/* feine goldene Trennlinie */
.gold-rule {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 18%, var(--gold-line) 82%, transparent);
}

/* ---------- Split mit dunkler Tafel ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split.flip > :first-child { order: 2; }
.panel-dark {
  background:
    radial-gradient(80% 95% at 0% 0%, rgba(194,160,96,0.2), transparent 60%),
    linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem);
  color: #f3e6e3; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.panel-dark::after {
  content: ""; position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,160,96,0.16), transparent 65%);
}
.panel-dark .script {
  font-family: var(--font-script); font-size: clamp(2.8rem, 5.5vw, 4rem);
  color: var(--gold-soft); line-height: 0.8; display: block; margin-bottom: 0.6rem;
}
.panel-dark h3 { color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.8rem; }
.panel-dark p { color: #ecd7d2; position: relative; }
.panel-dark .tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; position: relative; }
.panel-dark .pill {
  font-size: 0.82rem; font-weight: 600; color: var(--cream);
  border: 1px solid rgba(247,241,231,0.3); border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.feature-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); }
.feature-list .chk {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: rgba(147,59,63,0.12); color: var(--bordeaux);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.lede { color: var(--muted); font-size: 1.1rem; }

/* ---------- Generationen-Zeitstrahl ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.timeline li {
  position: relative;
  padding: 1.3rem 0 1.3rem 2.4rem;
  border-bottom: 1px dashed var(--hairline);
}
.timeline li:last-child { border-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute; left: 5px; top: 1.85rem;
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--bordeaux);
  box-shadow: 0 0 0 4px rgba(147,59,63,0.12);
}
.timeline li::after {
  content: "";
  position: absolute; left: 9.5px; top: 2.6rem; bottom: -1.3rem;
  width: 1px; background: var(--hairline);
}
.timeline li:last-child::after { display: none; }
.timeline .yr { font-family: var(--font-display); font-size: 1.2rem; color: var(--bordeaux); font-weight: 600; }
.timeline .gen { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; margin-left: 0.6rem; }
.timeline p { color: var(--muted); margin-top: 0.3rem; font-size: 1rem; }
.timeline strong { color: var(--text); font-weight: 600; }

/* ---------- Oeffnungszeiten ---------- */
.hours-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hours-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--bordeaux);
}
.hours-card h3 { font-size: 1.4rem; }
.hours-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.75rem 0; border-bottom: 1px dashed var(--hairline);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--bordeaux-deep); }
.hours-list .time { color: var(--muted); font-size: 0.96rem; text-align: right; }
.hours-list li.rest .time { color: var(--bordeaux); font-weight: 600; }
.hours-note {
  margin-top: 1.2rem; font-size: 0.86rem; color: var(--muted);
  background: rgba(194,160,96,0.16); border-radius: 12px; padding: 0.8rem 1rem;
}

/* ---------- Karten / Kategorien (Confiserie & Café) ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(104,42,43,0.06), 0 24px 50px -28px rgba(104,42,43,0.6); }
.menu-card .ix {
  font-family: var(--font-display);
  color: var(--bordeaux-200); font-size: 1.7rem; line-height: 1;
}
.menu-card h3 { font-size: 1.4rem; margin: 0.6rem 0 0.5rem; }
.menu-card p { color: var(--muted); font-size: 0.96rem; }
.menu-card .ic {
  position: absolute; top: clamp(1.6rem,2.4vw,2.1rem); right: clamp(1.6rem,2.4vw,2.1rem);
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(147,59,63,0.1); color: var(--bordeaux);
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-card.highlight {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(194,160,96,0.22), transparent 56%),
    linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: #f3e6e3;
}
.menu-card.highlight h3 { color: var(--cream); }
.menu-card.highlight p { color: #ecd7d2; }
.menu-card.highlight .ix { color: var(--gold-soft); }
.menu-card.highlight .ic { background: rgba(247,241,231,0.16); color: var(--cream); }

/* ehrlicher Hinweis-Kasten */
.menu-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-left: 4px solid var(--gold);
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}
.menu-note .ic { color: var(--bordeaux); flex: none; margin-top: 2px; }
.menu-note p { color: var(--text); }
.menu-note strong { color: var(--bordeaux-deep); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(85% 130% at 100% 0%, rgba(194,160,96,0.24), transparent 56%),
    linear-gradient(155deg, var(--bordeaux), var(--bordeaux-deep));
  color: #f3e6e3; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 22ch; }
.cta-band p { color: #ecd7d2; margin-top: 0.7rem; max-width: 46ch; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.info-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(147,59,63,0.1); color: var(--bordeaux);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-list .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.info-list a, .info-list span.val { font-weight: 500; color: var(--text); font-size: 1.02rem; }
.info-list a:hover { color: var(--bordeaux); }

/* Formular: integriert in warme dunkle Karte */
.form-card {
  background:
    radial-gradient(78% 95% at 100% 0%, rgba(194,160,96,0.2), transparent 56%),
    linear-gradient(160deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #f3e6e3;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), var(--shadow-soft);
}
.form-card h3 { color: var(--cream); font-size: 1.55rem; margin-bottom: 0.4rem; }
.form-card .hint { color: #e3c4be; font-size: 0.9rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #e3c4be; font-weight: 600; margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(247,241,231,0.08);
  border: 1px solid rgba(247,241,231,0.2);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.82rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #d8b0a9; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(247,241,231,0.14);
}
.field textarea { resize: vertical; min-height: 122px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: #d2a59e; margin-top: 1rem; line-height: 1.5; }

/* ---------- Map-Link ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; color: var(--bordeaux); font-weight: 600; font-size: 0.96rem;
  padding: 0.7rem 1.1rem; border: 1px solid var(--hairline); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-link:hover { border-color: var(--bordeaux); background: rgba(147,59,63,0.06); }

/* ---------- Inhaltsseiten-Hero ---------- */
.page-hero {
  background:
    radial-gradient(95% 120% at 90% -20%, rgba(194,160,96,0.24), transparent 58%),
    linear-gradient(158deg, var(--bordeaux-700), var(--bordeaux-deep));
  color: #f3e6e3;
  overflow: hidden;
}
.page-hero .wrap { padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; }
.page-hero h1 .accent { font-family: var(--font-script); color: var(--gold-soft); font-size: 1.24em; line-height: 0.7; display: inline-block; }
.page-hero p { color: #ecd7d2; margin-top: 1.1rem; max-width: 56ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: #d9bcb6; margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Prosa / Story-Bloecke ---------- */
.prose { max-width: 700px; }
.prose p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.07rem; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 2.4rem 0 1rem; }

.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.story-figure {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(72% 80% at 30% 18%, rgba(194,160,96,0.26), transparent 60%),
    linear-gradient(150deg, var(--bordeaux) 0%, var(--bordeaux-700) 55%, var(--bordeaux-deep) 100%);
  min-height: 340px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
}
.story-figure .scene { width: 72%; height: auto; }
.story-figure .cap {
  position: absolute; left: 1.6rem; bottom: 1.3rem;
  font-family: var(--font-script); color: var(--cream); font-size: 2.6rem; line-height: 0.8;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

/* ---------- Note-Box ---------- */
.note-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--gold);
}
.note-box p { color: var(--muted); font-size: 0.99rem; }
.note-box strong { color: var(--text); }

/* ---------- Erlebnis-Galerie (Café / Garten, CSS-Motive) ---------- */
.exp-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.exp-card {
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  min-height: 230px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-card);
}
.exp-card h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.exp-card p { font-size: 0.97rem; }
.exp-card .motif { position: absolute; top: 1.2rem; right: 1.2rem; opacity: 0.85; }
.exp-card.span-7 { grid-column: span 7; }
.exp-card.span-5 { grid-column: span 5; }
.exp-card.span-6 { grid-column: span 6; }
.exp-card.span-4 { grid-column: span 4; }
.exp-card.span-8 { grid-column: span 8; }

.exp-bordeaux {
  background:
    radial-gradient(85% 120% at 80% 0%, rgba(194,160,96,0.26), transparent 56%),
    linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: #f3e6e3;
}
.exp-bordeaux h3 { color: var(--cream); }
.exp-bordeaux p { color: #ecd7d2; }
.exp-gold {
  background: linear-gradient(155deg, var(--gold) 0%, #ab8a47 100%);
  color: #4a3a18;
}
.exp-gold h3 { color: #3a2c10; }
.exp-gold p { color: #5a4820; }
.exp-cream { background: var(--surface); }
.exp-cream h3 { color: var(--bordeaux-deep); }
.exp-cream p { color: var(--muted); }
.exp-rose {
  background: linear-gradient(155deg, var(--rose) 0%, #e3cabf 100%);
  color: #5a3a36;
}
.exp-rose h3 { color: var(--bordeaux-deep); }
.exp-rose p { color: #74514c; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.legal h2 { font-size: 1.45rem; margin-top: 2.6rem; margin-bottom: 0.7rem; }
.legal h3 { font-size: 1.12rem; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--bordeaux); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.datenschutz-title { word-break: normal; }
.callout {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--bordeaux);
  margin: 1.6rem 0;
}
.callout p { color: var(--text); margin-bottom: 0.5rem; }
.callout .tag {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700; color: var(--bordeaux); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: rgba(194,160,96,0.24);
  color: #8a6c23;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bordeaux-deep);
  color: #d9bcb6;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247,241,231,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 48px; height: 48px; }
.footer-brand .brand-script { color: var(--gold-soft); }
.footer-brand .brand-sub { color: var(--bordeaux-200); }
.footer-about { color: #d0aaa3; font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 {
  font-family: var(--font-display); color: var(--cream); font-size: 1.1rem;
  letter-spacing: 0; margin: 0 0 1rem; font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #d9bcb6; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.82rem; color: #b88f88;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Reveal-Animationen (CSS-only, scroll-driven) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: reveal 0.85s var(--ease) forwards;
    animation-delay: var(--d, 0s);
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}
@keyframes reveal { to { opacity: 1; transform: none; } }
.no-vt .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); animation: none; }
.no-vt .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 470px; }
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .hours-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .tile.span-7, .tile.span-5, .tile.span-6, .tile.span-4, .tile.span-8 { grid-column: span 12; }
  .exp-card.span-7, .exp-card.span-5, .exp-card.span-6, .exp-card.span-4, .exp-card.span-8 { grid-column: span 12; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 350px);
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    overflow-y: auto;
    background: var(--cream);
    padding: 6rem 1.4rem 2rem;
    box-shadow: -22px 0 60px rgba(104,42,43,0.22);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
    border-left: 1px solid var(--hairline);
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links a.active { background: rgba(147,59,63,0.08); }
  .nav-cta { margin: 0.6rem 0 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: block; z-index: 55; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(104,42,43,0.42);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 40;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .brand-script { font-size: 2rem; }
  .hero-meta { gap: 1.1rem 1.6rem; }
}
