/* =========================================================
   Conditorei am Oberhof, Tettnang (Demo)
   Design-Richtung: Editoriales Confiserie-Atelier. Tiefes Bordeaux
   (#85171c, echte Logofarbe) als dominante Leitfarbe, warmes Creme als
   Grund, Kakao-Braun und ein feiner Gold/Sahne-Akzent fuer die Confiserie.
   Hochwertiger Serif (Gilda Display) auf ruhiger Grotesk (Mona Sans),
   feine Rauten-/Linien-Ornamente, asymmetrische Raster, scharfe Hairlines.
   Fonts lokal gehostet (DSGVO).
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
@font-face {
  font-family: "Gilda Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/gildadisplay-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: "Mona Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/monasans-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 echten Logofarbe #85171c */
  --wine:       #85171c;   /* Leitfarbe: tiefes Bordeaux/Weinrot (Logo) */
  --wine-deep:  #5e0f14;   /* dunkler fuer Footer/Tafeln/Hover */
  --wine-700:   #74141a;   /* Zwischenton fuer Verlaeufe */
  --wine-glow:  #a8242b;   /* helleres Weinrot fuer Akzentpunkte */
  --rose:       #e9c9c5;   /* helles Rose/Weinrot auf dunklem Grund */

  --cocoa:      #3a2018;   /* warmes Kakao-Braun (Text/Tafeln) */
  --cocoa-soft: #6b4a3d;   /* gedaempfter Kakaoton fuer Fliesstext */

  --gold:       #b8893f;   /* Altgold/Karamell, feine Linien & Details */
  --gold-soft:  #d8b878;   /* weicheres Gold fuer Text auf dunkel */
  --gold-line:  rgba(184, 137, 63, 0.42);

  --cream:      #f6efe4;   /* heller Grund: warmes Creme */
  --cream-soft: #f1e7d8;   /* zweiter Cremeton */
  --surface:    #fcf8f0;   /* fast weisser, warmer Kartenton */

  --text:       #2e1c16;   /* sehr dunkles Kakao statt Schwarz */
  --muted:      #6b554b;   /* gedaempfter Braunton */
  --hairline:   rgba(46, 28, 22, 0.16);
  --hairline-2: rgba(46, 28, 22, 0.08);

  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3.25rem);
  --radius: 4px;          /* bewusst scharf-editorial, NICHT soft-bubble */
  --radius-lg: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 28px 64px -34px rgba(94, 15, 20, 0.55);
  --shadow-card: 0 1px 2px rgba(58, 32, 24, 0.05), 0 18px 46px -34px rgba(94, 15, 20, 0.5);

  --font-display: "Gilda Display", "Hoefler Text", Georgia, serif;
  --font-body: "Mona Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- 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;
  font-weight: 400;
  -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: 400;
  line-height: 1.1;
  letter-spacing: 0.002em;
  color: var(--wine-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.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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(--wine-deep);
  color: #f1dcd8;
  font-size: 0.74rem;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 0.55rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: var(--gold-soft); font-weight: 600; }

/* ---------- Markenzeichen / Monogramm-Emblem ---------- */
.emblem { width: 46px; height: 46px; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 228, 0.86);
  border-bottom: 1px solid var(--hairline-2);
}
.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: 76px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.36rem;
  color: var(--wine);
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--wine); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 0.6rem;
  background: var(--wine);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.6rem 1.3rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--wine-deep) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  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(--wine-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.96rem;
  padding: 0.85rem 1.6rem;
  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 .pin {
  width: 26px; height: 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-deep); transform: translateY(-2px); }
.btn-primary .pin { background: rgba(255,255,255,0.2); }
.btn-primary:hover .pin { transform: translateX(3px); }
.btn-gold { background: var(--gold); color: #2e1c0c; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-gold .pin { background: rgba(46,28,12,0.16); }
.btn-gold:hover .pin { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--wine); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--wine); background: rgba(133,23,28,0.06); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(246,239,228,0.42); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(246,239,228,0.1); transform: translateY(-2px); }
.btn-on-dark { background: var(--gold); color: #2e1c0c; }
.btn-on-dark:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-on-dark .pin { background: rgba(46,28,12,0.16); }
.btn-on-dark:hover .pin { transform: translateX(3px); }

/* ---------- Eyebrow / Label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--wine);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold); }

/* feine goldene Rautenlinie als Trenner */
.diamond-rule {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--gold);
  margin: 0;
}
.diamond-rule::before, .diamond-rule::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.diamond-rule::after { background: linear-gradient(90deg, var(--gold-line), transparent); }
.diamond-rule span {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex: none;
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 700px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.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(115% 90% at 84% -14%, rgba(184,137,63,0.24), transparent 54%),
    radial-gradient(90% 80% at 4% 112%, rgba(168,36,43,0.30), transparent 52%),
    linear-gradient(155deg, var(--wine-700) 0%, var(--wine-deep) 86%);
  color: #f3dfdb;
  overflow: hidden;
}
/* feines Rautenmuster im Hero */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M22 0L44 22 22 44 0 22z' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 10vw, 7rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  display: block;
  margin-bottom: 0.6rem;
}
.hero-lead {
  color: #ecccc7;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  margin-top: 1.6rem;
  max-width: 46ch;
}
.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.6rem;
  margin-top: 2.6rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(243,223,219,0.18);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-meta .k { font-family: var(--font-display); font-size: 1.28rem; color: var(--cream); }
.hero-meta .l { font-size: 0.8rem; color: #d6aaa4; letter-spacing: 0.02em; }

/* Hero-Karte: Confiserie-Vitrine (CSS-Illustration) */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(246,239,228,0.08), rgba(246,239,228,0.02));
  border: 1px solid rgba(246,239,228,0.16);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), var(--shadow-soft);
}
.hero-card .vitrine { width: 100%; height: auto; }
.hero-card .cap {
  margin-top: 1.3rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: #ecccc7;
}
.hero-card .cap b { color: var(--cream); font-weight: 600; }

.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(246,239,228,0.08);
  border: 1px solid rgba(246,239,228,0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  margin-bottom: 1.4rem;
}
.badge .seal {
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(184,137,63,0.22);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.badge .txt { font-size: 0.84rem; color: #ecccc7; }
.badge .txt b { color: var(--cream); font-weight: 600; }

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

/* ---------- Split / Intro ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split.flip > :first-child { order: 2; }
.lede { color: var(--muted); font-size: 1.12rem; }

.feature-list { list-style: none; margin: 1.6rem 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: var(--radius);
  background: rgba(133,23,28,0.1); color: var(--wine);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* dunkle Tafel */
.panel-dark {
  background:
    radial-gradient(82% 95% at 0% 0%, rgba(184,137,63,0.22), transparent 58%),
    linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem);
  color: #f3dfdb; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.panel-dark::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(184,137,63,0.16), transparent 66%);
}
.panel-dark .kicker {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-soft); line-height: 1; display: block; margin-bottom: 0.7rem;
}
.panel-dark h3 { color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.8rem; }
.panel-dark p { color: #ecccc7; 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(246,239,228,0.3); border-radius: 999px;
  padding: 0.4rem 0.95rem;
}

/* ---------- Highlights (asymmetrisches Bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}
.tile {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 2.5vw, 2.3rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 1px 2px rgba(58,32,24,0.06), 0 28px 54px -32px rgba(94,15,20,0.6);
}
.tile h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.99rem; }
.tile .ic {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(133,23,28,0.1);
  color: var(--wine);
  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(184,137,63,0.2); color: #97702e; }
.tile.rose .ic { background: rgba(233,201,197,0.6); color: var(--wine); }

.tile.feature {
  background:
    radial-gradient(95% 130% at 100% 0%, rgba(184,137,63,0.24), transparent 56%),
    linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #f3dfdb;
  border-color: transparent;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile.feature h3 { color: var(--cream); font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.tile.feature p { color: #ecccc7; }
.tile.feature .ic { background: rgba(246,239,228,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); }

/* ---------- Karten / Sortiment ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.menu-card {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 2.5vw, 2.2rem);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 1px 2px rgba(58,32,24,0.06), 0 28px 54px -32px rgba(94,15,20,0.6);
}
.menu-card .ix {
  font-family: var(--font-display);
  color: var(--rose); font-size: 1.6rem; line-height: 1;
}
.menu-card h3 { font-size: 1.42rem; margin: 0.6rem 0 0.5rem; }
.menu-card p { color: var(--muted); font-size: 0.96rem; }
.menu-card .ic {
  position: absolute; top: clamp(1.7rem,2.5vw,2.2rem); right: clamp(1.7rem,2.5vw,2.2rem);
  width: 42px; height: 42px; border-radius: var(--radius);
  background: rgba(133,23,28,0.1); color: var(--wine);
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-card.highlight {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(184,137,63,0.22), transparent 56%),
    linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #f3dfdb; border-color: transparent;
}
.menu-card.highlight h3 { color: var(--cream); }
.menu-card.highlight p { color: #ecccc7; }
.menu-card.highlight .ix { color: var(--gold-soft); }
.menu-card.highlight .ic { background: rgba(246,239,228,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: 3px solid var(--gold);
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}
.menu-note .ic { color: var(--wine); flex: none; margin-top: 2px; }
.menu-note p { color: var(--text); }
.menu-note strong { color: var(--wine-deep); }

/* ---------- Saison-Streifen ---------- */
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.season-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.season-card h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.7rem; }
.season-card ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.5rem; }
.season-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; }
.season-card li::before { content: ""; width: 6px; height: 6px; margin-top: 0.6rem; flex: none; transform: rotate(45deg); }
.season-winter { background: linear-gradient(158deg, var(--surface) 0%, #f3ead9 100%); }
.season-winter h3 { color: var(--wine-deep); }
.season-winter li { color: var(--muted); }
.season-winter li::before { background: var(--wine); }
.season-easter {
  background:
    radial-gradient(85% 120% at 80% 0%, rgba(184,137,63,0.26), transparent 56%),
    linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #f3dfdb;
}
.season-easter h3 { color: var(--cream); }
.season-easter li { color: #ecccc7; }
.season-easter li::before { background: var(--gold-soft); }

/* ---------- 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: 1px solid var(--hairline-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--wine);
}
.hours-card h3 { font-size: 1.45rem; }
.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.72rem 0; border-bottom: 1px dashed var(--hairline);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--wine-deep); }
.hours-list .time { color: var(--muted); font-size: 0.96rem; text-align: right; }
.hours-list li.rest .time { color: var(--wine); font-weight: 600; }
.hours-list li.prod .time { color: var(--cocoa-soft); font-style: italic; }
.hours-note {
  margin-top: 1.2rem; font-size: 0.85rem; color: var(--muted);
  background: rgba(184,137,63,0.15); border-radius: var(--radius); padding: 0.8rem 1rem;
}

/* ---------- Standort / Anfahrt ---------- */
.locate-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.locate-card {
  background:
    radial-gradient(80% 110% at 100% 0%, rgba(184,137,63,0.2), transparent 56%),
    linear-gradient(158deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #f3dfdb; border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 3.4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}
.locate-card h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.8rem; }
.locate-card p { color: #ecccc7; }
.locate-card .addr { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin: 1.2rem 0 0.4rem; }
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; color: var(--cream); font-weight: 600; font-size: 0.95rem;
  padding: 0.7rem 1.2rem; border: 1px solid rgba(246,239,228,0.4); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-link:hover { border-color: var(--cream); background: rgba(246,239,228,0.1); }
.map-link.on-light { color: var(--wine); border-color: var(--hairline); }
.map-link.on-light:hover { border-color: var(--wine); background: rgba(133,23,28,0.06); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(85% 130% at 100% 0%, rgba(184,137,63,0.24), transparent 56%),
    linear-gradient(155deg, var(--wine), var(--wine-deep));
  color: #f3dfdb; 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.8rem, 3.6vw, 2.7rem); max-width: 22ch; }
.cta-band p { color: #ecccc7; 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.9rem, 3.8vw, 2.7rem); }
.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: var(--radius);
  background: rgba(133,23,28,0.1); color: var(--wine);
  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(--wine); }

/* Formular: integriert in dunkle Weinrot-Tafel */
.form-card {
  background:
    radial-gradient(78% 95% at 100% 0%, rgba(184,137,63,0.2), transparent 56%),
    linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #f3dfdb;
  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: #e5beb8; 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: #e5beb8; font-weight: 600; margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(246,239,228,0.08);
  border: 1px solid rgba(246,239,228,0.2);
  border-radius: var(--radius);
  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: #dba9a2; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(246,239,228,0.14);
}
.field textarea { resize: vertical; min-height: 124px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: #d6a39c; margin-top: 1rem; line-height: 1.55; }

/* ---------- Inhaltsseiten-Hero ---------- */
.page-hero {
  background:
    radial-gradient(95% 120% at 90% -20%, rgba(184,137,63,0.22), transparent 56%),
    linear-gradient(158deg, var(--wine-700), var(--wine-deep));
  color: #f3dfdb;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M22 0L44 22 22 44 0 22z' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.6rem, 8vw, 6rem); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.3rem, 5.2vw, 3.7rem); max-width: 20ch; }
.page-hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.page-hero p { color: #ecccc7; margin-top: 1.1rem; max-width: 58ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: #d6aaa4; margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Prosa / Story ---------- */
.prose { max-width: 720px; }
.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.7rem, 3.2vw, 2.3rem); 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(184,137,63,0.26), transparent 60%),
    linear-gradient(150deg, var(--wine) 0%, var(--wine-700) 55%, var(--wine-deep) 100%);
  min-height: 360px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
}
.story-figure .vitrine { width: 74%; height: auto; }
.story-figure .cap {
  position: absolute; left: 1.6rem; bottom: 1.3rem;
  font-family: var(--font-display); font-style: italic;
  color: var(--cream); font-size: 1.7rem; line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

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

/* ---------- Anlasstorten-Liste ---------- */
.occasion-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}
.occasion-card {
  border-radius: var(--radius);
  padding: clamp(1.7rem, 2.6vw, 2.3rem);
  min-height: 200px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--hairline-2);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.occasion-card:hover {
  transform: translateY(-4px); border-color: var(--gold-line);
  box-shadow: 0 1px 2px rgba(58,32,24,0.06), 0 28px 54px -32px rgba(94,15,20,0.6);
}
.occasion-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.occasion-card p { font-size: 0.96rem; color: var(--muted); }
.occasion-card .motif { position: absolute; top: 1.4rem; right: 1.4rem; opacity: 0.9; color: var(--wine); }
.occasion-card.span-7 { grid-column: span 7; }
.occasion-card.span-5 { grid-column: span 5; }
.occasion-card.span-6 { grid-column: span 6; }
.occasion-card.span-4 { grid-column: span 4; }
.occasion-card.span-8 { grid-column: span 8; }
.occasion-card.span-12 { grid-column: span 12; }
.occasion-card.dark {
  background:
    radial-gradient(85% 120% at 80% 0%, rgba(184,137,63,0.26), transparent 56%),
    linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #f3dfdb; border-color: transparent;
}
.occasion-card.dark h3 { color: var(--cream); }
.occasion-card.dark p { color: #ecccc7; }
.occasion-card.dark .motif { color: var(--gold-soft); }

/* ---------- Prozess-Schritte ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.steps li {
  position: relative; padding: 1.4rem 0 1.4rem 3.6rem;
  border-bottom: 1px dashed var(--hairline); counter-increment: step;
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 1.3rem;
  width: 2.3rem; height: 2.3rem; border-radius: 999px;
  background: rgba(133,23,28,0.1); color: var(--wine);
  font-family: var(--font-display); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.steps p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
.legal h2 { font-size: 1.5rem; margin-top: 2.6rem; margin-bottom: 0.7rem; }
.legal h3 { font-size: 1.14rem; 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(--wine); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.datenschutz-title { hyphens: manual; }
.callout {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--wine);
  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(--wine); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: rgba(184,137,63,0.22);
  color: #8a6722;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine-deep);
  color: #d6aaa4;
  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(246,239,228,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand .brand-name { color: var(--gold-soft); }
.footer-brand .brand-sub { color: var(--rose); }
.footer-about { color: #cb9d97; font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 {
  font-family: var(--font-display); color: var(--cream); font-size: 1.12rem;
  letter-spacing: 0; margin: 0 0 1rem; font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #d6aaa4; 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: #b1837d;
}
.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: 480px; }
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .hours-grid { grid-template-columns: 1fr; }
  .locate-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .season-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; }
  .occasion-card.span-7, .occasion-card.span-5, .occasion-card.span-6, .occasion-card.span-4, .occasion-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(94,15,20,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: var(--radius); }
  .nav-links a::after { display: none; }
  .nav-links a.active { background: rgba(133,23,28,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(94,15,20,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; }
  .hero-meta { gap: 1.1rem 1.6rem; }
}
