/* =====================================================================
   Casa Culinaria Minden – Neue Designsprache
   Editorial Fine-Dining (Leit-Referenz "L'Essence du Rouge") in den
   Markenfarben: Rot #B43636 · Creme · Bordeaux #3D1A1A
   ===================================================================== */

:root {
  --rot: #B43636;
  --rot-tief: #9C2D2D;
  --bordeaux: #3D1A1A;
  --creme: #F6F1E5;
  --creme-tief: #E9E1BC;
  --anthrazit: #363636;
  --weiss: #FFFFFF;
  --panel: #6B2222;
  --linie: rgba(61, 26, 26, 0.18);
  --r-card: 28px;
  --r-bild: 22px;
  --linie-hell: rgba(246, 241, 229, 0.25);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bordeaux);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

::selection { background: var(--rot); color: var(--weiss); }

/* ---------- Typografie ---------- */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--bordeaux);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--rot); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 1.1rem;
}
.on-dark .eyebrow, .on-dark h2, .on-dark h3, .on-dark p { color: var(--creme); }
.on-dark h2 em, .on-dark h3 em { color: var(--creme-tief); }

p.lead { font-size: 1.1rem; }
.muted { color: var(--anthrazit); font-size: 0.95rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.1rem;
  border: 1px solid var(--rot);
  border-radius: 999px;
  color: var(--rot);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s cubic-bezier(0.32, 0.72, 0, 1), transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--rot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: -1;
}
.btn:hover { color: var(--weiss); }
.btn:hover::after { transform: scaleX(1); }
.btn--fill { background: var(--rot); color: var(--weiss); }
.btn--fill::after { background: var(--bordeaux); }
.btn--hell { border-color: var(--creme); color: var(--creme); }
.btn--hell::after { background: var(--creme); }
.btn--hell:hover { color: var(--rot); }

.textlink {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rot);
  text-decoration: none;
  border-bottom: 1px solid var(--rot);
  padding-bottom: 0.25rem;
  transition: opacity 0.25s ease;
}
.textlink:hover { opacity: 0.6; }

/* ---------- Urlaubs-Banner ---------- */
.urlaub-banner {
  display: none;
  background: var(--bordeaux);
  color: var(--creme);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 0.7rem 3rem;
  position: relative;
}
.urlaub-banner.aktiv { display: block; }
.urlaub-banner button {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--creme);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--creme);
  border-bottom: 1px solid var(--linie);
  position: relative;
  z-index: 50;
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--pad);
  max-width: var(--max);
  margin-inline: auto;
}
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a, .header-meta a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bordeaux);
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links a.aktiv, .header-meta a:hover { color: var(--rot); }
.header-logo img { height: 34px; width: auto; max-width: 46vw; object-fit: contain; }
.header-meta { display: flex; justify-content: flex-end; align-items: center; gap: 1.3rem; }
.header-meta a { white-space: nowrap; }
.header-meta .tel { color: var(--rot); }
@media (max-width: 1180px) { .header-meta .adresse { display: none; } }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 60;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bordeaux);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.offen span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.offen span:nth-child(2) { opacity: 0; }
.burger.offen span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--creme);
  border-bottom: 1px solid var(--linie);
  padding: 1.2rem var(--pad) 2rem;
}
.mobile-nav.offen { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--bordeaux);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--linie);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .nav-links, .header-meta { display: none; }
  .burger { display: block; }
  .header-grid { grid-template-columns: 40px 1fr 40px; }
  .header-logo { justify-self: center; }
}

/* ---------- Split-Hero (Mockup-Signatur) ---------- */
.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  min-height: min(88vh, 860px);
}
.split-hero--flach { min-height: min(72vh, 700px); }
.sh-bild { position: relative; overflow: hidden; }
.sh-bild > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out both;
}
.sh-karte {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3.5rem);
  bottom: 0;
  z-index: 2;
  display: block;
  background: var(--rot);
  color: var(--weiss);
  text-decoration: none;
  border-radius: var(--r-card) var(--r-card) 0 0;
  padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.6rem, 2.8vw, 2.6rem);
  max-width: min(320px, 70%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
.sh-karte:hover { transform: translateY(-6px); }
.sh-karte .sk-titel {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  color: var(--weiss);
}
.sh-karte .sk-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--weiss);
}
.sh-panel {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  color: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.6rem, 5vw, 5.5rem);
}
.sh-loewe {
  position: absolute;
  right: -12%;
  top: -6%;
  width: 85%;
  max-width: none;
  opacity: 0.16;
  filter: brightness(0.55) saturate(1.2);
  pointer-events: none;
  user-select: none;
}
.sh-panel > * { position: relative; }
.sh-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--weiss);
  margin-bottom: 1.4rem;
}
.sh-panel h1 {
  color: var(--weiss);
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 1.02;
  max-width: 12ch;
}
.sh-panel h1 em { color: var(--creme-tief); }
.sh-cta { margin-top: 2.4rem; }
.sh-ital {
  margin-top: 2.6rem;
  color: var(--creme-tief);
  font-weight: 600;
  font-size: 0.98rem;
  max-width: 46ch;
}
.sh-deut {
  margin-top: 1.4rem;
  color: var(--weiss);
  font-weight: 500;
  font-size: 0.98rem;
  max-width: 48ch;
}
.btn--pill-hell {
  background: var(--rot);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--weiss);
}
.btn--pill-hell::after { background: var(--bordeaux); }
@media (max-width: 900px) {
  .split-hero { grid-template-columns: 1fr; min-height: 0; }
  .sh-bild { min-height: 58vh; order: 2; }
  .sh-panel { order: 1; padding-top: 3.2rem; padding-bottom: 3.6rem; }
}

/* ---------- Hero (alt) ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 0; position: relative; }
.hero .container { position: relative; }
.hero h1 { max-width: 20ch; }
.hero-sub {
  max-width: 44ch;
  margin-top: 1.6rem;
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-loewe {
  position: absolute;
  right: var(--pad);
  top: -1.5rem;
  width: clamp(120px, 16vw, 210px);
  opacity: 0.10;
  pointer-events: none;
}
.hero-bild {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  max-height: 72vh;
}
.hero-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out both;
}
@keyframes kenburns {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .hero-bild img, .sh-bild > img { animation: none; } }

/* ---------- Sektionen ---------- */
.sektion { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.sektion--rot { background: var(--rot); }
.sektion--bordeaux { background: var(--panel); position: relative; overflow: hidden; }
.sektion--bordeaux .container { position: relative; }
.loewe-wasserzeichen { position: absolute; right: -8%; bottom: -18%; width: 46%; opacity: 0.12; filter: brightness(0.55) saturate(1.2); pointer-events: none; }
.sektion--creme-tief { background: var(--creme-tief); }

/* Editorial-Split: schmale Textspalte + Inhalt */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.split--mitte { align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Zahlen-Storytelling */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2rem 1.5rem;
  margin-top: 3rem;
  padding-top: 2.6rem;
  border-top: 1px solid var(--linie);
}
.stat .zahl {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--rot);
  line-height: 1;
}
.stat .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--anthrazit);
  margin-top: 0.6rem;
}

/* Bildcluster */
.bild-cluster { display: grid; grid-template-columns: 2fr 1fr; gap: 1.2rem; align-items: end; }
.bild-cluster img, .split .reveal-bild img, .split .reveal-bild { border-radius: var(--r-bild); }
.bild-cluster .klein { max-width: 100%; }
.bild-cluster figcaption { font-size: 0.78rem; color: var(--anthrazit); margin-top: 0.6rem; letter-spacing: 0.04em; }

/* ---------- Menü-Liste (typografisch) ---------- */
.menu-kat { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.menu-kat > h3 { margin-bottom: 0.4rem; }
.menu-kat > .kat-desc { color: var(--anthrazit); font-size: 0.92rem; margin-bottom: 1.6rem; }
.gericht {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--linie);
}
.gericht:last-child { border-bottom: 0; }
.gericht .name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.2;
}
.gericht .preis {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--rot);
  white-space: nowrap;
}
.gericht .desc { grid-column: 1 / -1; font-size: 0.9rem; color: var(--anthrazit); max-width: 60ch; }

.on-dark .gericht { border-color: var(--linie-hell); }
.on-dark .gericht .name { color: var(--creme); }
.on-dark .gericht .preis { color: var(--creme-tief); }
.on-dark .gericht .desc { color: rgba(246, 241, 229, 0.75); }

/* ---------- Rotes Angebots-Panel ---------- */
.angebot-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 780px) { .angebot-duo { grid-template-columns: 1fr; } }
.angebot {
  border: 1px solid var(--linie-hell);
  border-radius: var(--r-card);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--creme);
  background: rgba(61, 26, 26, 0.18);
}
.angebot .eyebrow { color: var(--creme-tief); }
.angebot h3 { color: var(--weiss); font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.angebot .gross-preis {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--weiss);
  line-height: 1;
  margin: 1.1rem 0 0.9rem;
}
.angebot p { color: rgba(246, 241, 229, 0.92); }
.angebot .hinweis { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1.2rem; color: var(--creme-tief); }

/* ---------- Rundbogen-Portrait (Signatur-Form) ---------- */
.arch, .split .arch.reveal-bild {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  max-width: 430px;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

.zitat {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--rot);
  border-left: 2px solid var(--rot);
  padding-left: 1.4rem;
  margin-top: 1.8rem;
}
.zitat-name { font-family: var(--font-sans); font-style: normal; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--anthrazit); margin-top: 0.9rem; }

/* ---------- SW-Emotionsblock im roten Panel ---------- */
.sw-block {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) { .sw-block { grid-template-columns: 1fr; } }
.sw-block .foto { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); max-width: 440px; border-radius: var(--r-bild); overflow: hidden; }
.sw-block h2 { color: var(--weiss); }
.sw-block h2 em { color: var(--creme-tief); }
.sw-block p { color: rgba(246, 241, 229, 0.92); }

/* ---------- Galerie-Reihe ---------- */
.galerie-reihe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 720px) { .galerie-reihe { grid-template-columns: 1fr; } }
.galerie-reihe img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--r-bild); }

/* ---------- Öffnungszeiten / Lage ---------- */
.zeiten-liste { list-style: none; margin-top: 1.4rem; }
.zeiten-liste li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--linie);
  font-size: 0.95rem;
}
.zeiten-liste li span:first-child { font-weight: 600; }
.on-dark .zeiten-liste li { border-color: var(--linie-hell); }

.info-karte {
  background: var(--creme-tief);
  border-radius: var(--r-card);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.info-karte h3 { margin-bottom: 0.4rem; }
.info-karte + .info-karte { margin-top: 1.2rem; }

/* ---------- Löwen-Ornament (dezenter Trenner) ---------- */
.loewe-ornament {
  display: block;
  width: 74px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  opacity: 0.85;
}
.loewe-ornament--klein { width: 54px; margin-bottom: 1.4rem; }
.footer-band { position: relative; }
.footer-band .loewe-band {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(30%, 300px);
  opacity: 0.14;
  filter: brightness(0.4);
  pointer-events: none;
}

/* ---------- Jobs: gleiche Kartenhöhen + Benefits ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.jobs-grid .info-karte {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.jobs-grid .info-karte ul { flex-grow: 1; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.8rem;
}
.benefit {
  border: 1px solid var(--linie-hell);
  border-radius: var(--r-card);
  background: rgba(61, 26, 26, 0.18);
  padding: 1.8rem 1.9rem;
}
.benefit .b-zahl {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--creme-tief);
  margin-bottom: 0.9rem;
}
.benefit h3 { color: var(--weiss); font-size: 1.25rem; margin-bottom: 0.5rem; }
.benefit p { color: rgba(246, 241, 229, 0.88); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-liste { border-top: 1px solid var(--linie); }
.faq-item { border-bottom: 1px solid var(--linie); }
.faq-frage {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--bordeaux);
  padding: 1.4rem 0;
  cursor: pointer;
}
.faq-frage .plus {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rot);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.offen .plus { transform: rotate(45deg); }
.faq-antwort {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-antwort p { padding: 0 3rem 1.5rem 0; color: var(--anthrazit); font-size: 0.95rem; max-width: 68ch; }

/* ---------- Footer ---------- */
.footer-band {
  background: var(--rot);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
}
.footer-band img {
  width: min(88%, 980px);
  margin-inline: auto;
  height: auto;
}
.site-footer {
  background: var(--bordeaux);
  color: var(--creme);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.45fr 0.85fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--linie-hell);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .zeiten-liste li {
  font-size: 0.82rem;
  gap: 0.8rem;
  padding: 0.55rem 0;
}
.site-footer .zeiten-liste li span { white-space: nowrap; }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creme-tief);
  margin-bottom: 1rem;
}
.site-footer a { color: var(--creme); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.22rem 0; }
.footer-unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.78rem;
  color: rgba(246, 241, 229, 0.65);
}
.footer-unten a { color: rgba(246, 241, 229, 0.65); }
.made-with .herz { color: var(--rot); font-style: normal; }
.made-with a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reservieren-Sticky (mobil) ---------- */
.reservieren-sticky {
  display: none;
  border-radius: 999px;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--rot);
  color: var(--weiss);
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem;
  box-shadow: 0 12px 30px rgba(61, 26, 26, 0.35);
}
@media (max-width: 900px) { .reservieren-sticky { display: block; } .site-footer { padding-bottom: 6.5rem; } }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  border-radius: 18px;
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 640px);
  background: var(--bordeaux);
  color: var(--creme);
  padding: 1.4rem 1.6rem;
  z-index: 100;
  display: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.cookie-banner.sichtbar { display: block; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.55; }
.cookie-banner a { color: var(--creme-tief); }
.cookie-aktionen { display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }
.cookie-aktionen .btn { padding: 0.7rem 1.4rem; font-size: 0.72rem; }

/* ---------- Unterseiten-Hero ---------- */
.seiten-hero { padding: clamp(3rem, 6vw, 5rem) 0 0; }
.seiten-hero h1 { max-width: 18ch; }
.seiten-hero .hero-sub { margin-top: 1.2rem; }
.seiten-hero .hero-bild { max-height: 52vh; }
.seiten-hero .hero-bild img { object-position: center 68%; }

/* ---------- Motion-Grundzustände ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal-bild { clip-path: inset(0 0 100% 0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal-bild { clip-path: none; }
}

/* ---------- Rechtstexte ---------- */
.recht { max-width: 780px; }
.recht h1 { margin-bottom: 2rem; }
.recht h2 { font-size: 1.6rem; margin: 2.4rem 0 0.8rem; }
.recht h3 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; }
.recht p, .recht li { font-size: 0.95rem; margin-bottom: 0.8rem; }
.recht ul { padding-left: 1.4rem; }
