/* ==========================================================================
   WAMA'S Burger, Öhringen — Gestaltung "Bonschienen-Bahnen"
   Jeder Abschnitt ist ein Bestellbon, der an einer Stahlschiene über der
   dunklen Passwand hängt. Alles lokal, keine externen Ressourcen.
   ========================================================================== */

/* --- Schriften (lokal, nichts von außen) --------------------------------- */
@font-face {
  font-family: "Rethink Sans";
  src: url("schriften/rethink-sans-var-latin.woff2") format("woff2");
  font-weight: 400 800; font-style: normal; font-display: swap;
  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: "Rethink Sans";
  src: url("schriften/rethink-sans-var-latin-ext.woff2") format("woff2");
  font-weight: 400 800; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("schriften/schibsted-grotesk-var-latin.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
  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: "Schibsted Grotesk";
  src: url("schriften/schibsted-grotesk-var-latin-ext.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Caveat";
  src: url("schriften/caveat-600-latin.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
  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: "Caveat";
  src: url("schriften/caveat-600-latin-ext.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --creme:      #f6f1e4;   /* Bonpapier */
  --creme-tief: #ece5d3;   /* Bonpapier, zweite Lage */
  --wand:       #1b1c1f;   /* Passwand */
  --wand-hell:  #26282c;
  --tinte:      #17181b;   /* Text auf Bonpapier */
  --grau:       #5c6167;   /* Nebenangaben auf Bonpapier */
  --grau-hell:  #b6bcc2;   /* Nebenangaben auf Passwand */
  --rot:        #d8232a;   /* Wamas-Rot, aus dem Apostroph der Wortmarke */
  --rot-tief:   #a8151b;   /* rote Schrift auf Bonpapier */
  --stahl:      #9aa0a6;

  --bon-breite: 68rem;
  --rand:       clamp(1.15rem, 4vw, 2.75rem);

  --schrift-titel: "Rethink Sans", "Helvetica Neue", Arial, sans-serif;
  --schrift-text:  "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --schrift-hand:  "Caveat", "Segoe Script", cursive;
}

/* --- Grundgerüst ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--schrift-text);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--creme);
  background: var(--wand);
  overflow-x: hidden;
}

/* feine Fugen in der Passwand — reines CSS, kein Bild */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #202226 0%, var(--wand) 40%, #17181b 100%);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--schrift-titel);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.9rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .6vw, 1.4rem); }
p  { margin: 0 0 1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 3px;
  border-radius: 2px;
}

.nur-fuer-screenreader {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sprungmarke {
  position: absolute; left: .5rem; top: -4rem; z-index: 200;
  background: var(--rot); color: #fff; padding: .75rem 1.15rem;
  font-weight: 700; border-radius: 0 0 6px 6px; transition: top .15s;
}
.sprungmarke:focus { top: 0; }

/* --- Kopf (bleibt beim Scrollen oben) ------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: 100;
  background: rgba(19,20,23,.96);
  border-bottom: 1px solid rgba(154,160,166,.22);
  backdrop-filter: saturate(140%) blur(6px);
}
.kopf-innen {
  max-width: var(--bon-breite); margin: 0 auto;
  padding: .55rem var(--rand);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Wortmarke als Text nachgebaut — scharf in jeder Größe, kein Bild nötig */
.wortmarke {
  font-family: var(--schrift-titel);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--creme);
  display: inline-flex; align-items: baseline; gap: 0;
  padding: .35rem .1rem;
  line-height: 1;
}
.wortmarke .apostroph { color: var(--rot); }
.wortmarke .zusatz {
  font-family: var(--schrift-text); font-weight: 500; font-size: .58rem;
  letter-spacing: .22em; color: var(--stahl); margin-left: .7rem; align-self: center;
  text-transform: uppercase;
}
@media (max-width: 26rem) { .wortmarke .zusatz { display: none; } }

.menue-knopf {
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 44px; min-width: 44px; padding: .5rem .8rem;
  background: transparent; border: 1px solid rgba(154,160,166,.45);
  border-radius: 4px; color: var(--creme);
  font: 600 .85rem/1 var(--schrift-text); letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer;
}
.menue-knopf:hover { border-color: var(--rot); }
.menue-knopf .balken { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.menue-knopf .balken::before, .menue-knopf .balken::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.menue-knopf .balken::before { top: -6px; }
.menue-knopf .balken::after  { top: 6px; }
.menue-knopf[aria-expanded="true"] .balken { background: transparent; }
.menue-knopf[aria-expanded="true"] .balken::before { top: 0; transform: rotate(45deg); }
.menue-knopf[aria-expanded="true"] .balken::after  { top: 0; transform: rotate(-45deg); }

.haupt-navigation ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: .15rem;
}
.haupt-navigation a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .25rem .7rem; text-decoration: none;
  font-weight: 500; font-size: .95rem; color: var(--grau-hell);
  border-bottom: 2px solid transparent;
}
.haupt-navigation a:hover { color: var(--creme); border-bottom-color: var(--rot); }
.haupt-navigation a[aria-current="page"] { color: var(--creme); border-bottom-color: var(--rot); }
.haupt-navigation .knopf-navi {
  background: var(--rot); color: #fff; border-bottom: 0; border-radius: 3px;
  padding: .25rem 1rem; font-weight: 700; margin-left: .4rem;
}
.haupt-navigation .knopf-navi:hover { background: #ef2f36; color: #fff; }

@media (max-width: 60rem) {
  .haupt-navigation {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #131417; border-bottom: 3px solid var(--rot);
    padding: .5rem var(--rand) 1.1rem;
  }
  .haupt-navigation.offen { display: block; }
  .haupt-navigation ul { flex-direction: column; align-items: stretch; gap: 0; }
  .haupt-navigation a {
    padding: .55rem .2rem; font-size: 1.05rem;
    border-bottom: 1px solid rgba(154,160,166,.18);
  }
  .haupt-navigation a[aria-current="page"], .haupt-navigation a:hover { border-bottom-color: var(--rot); }
  .haupt-navigation .knopf-navi { margin: .7rem 0 0; justify-content: center; }
}
@media (min-width: 60.0625rem) { .menue-knopf { display: none; } }

/* --- Der Bon an der Schiene ---------------------------------------------- */
.bahn { padding: clamp(2.2rem, 6vw, 4rem) var(--rand) 0; }
.bahn:last-of-type { padding-bottom: clamp(2.2rem, 6vw, 4rem); }

.bon {
  max-width: var(--bon-breite); margin: 0 auto;
  position: relative;
  background: var(--creme);
  color: var(--tinte);
  padding: clamp(2.4rem, 5vw, 3.2rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.75), 0 2px 0 rgba(0,0,0,.35);
}
/* leichte Kippung — jeder Bon anders, wie aufgesteckt */
.bahn:nth-of-type(2n)   .bon { transform: rotate(-.32deg); }
.bahn:nth-of-type(3n+1) .bon { transform: rotate(.28deg); }

/* Stahlschiene über dem Bon */
.bon::before {
  content: "";
  position: absolute; left: -1.5%; right: -1.5%; top: -10px; height: 7px;
  background: linear-gradient(180deg, #cdd2d7 0%, #9aa0a6 45%, #6a7076 60%, #b3b9bf 100%);
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0,0,0,.6);
}
/* roter Klemmreiter */
.bon::after {
  content: "";
  position: absolute; left: clamp(1.25rem, 4vw, 3rem); top: -16px;
  width: 46px; height: 30px;
  background: linear-gradient(180deg, var(--rot) 0%, #ad171d 100%);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 3px 6px rgba(0,0,0,.5), inset 0 -6px 0 rgba(0,0,0,.18);
}

/* Bonkopfzeile */
.bon-kopf {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem 1.1rem;
  margin: 0 0 1.6rem;
  padding-bottom: .6rem;
  border-bottom: 2px dashed rgba(23,24,27,.28);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--grau);
}
.bon-kopf .nr { color: var(--rot-tief); }

/* --- Handschrift-Notizen mit Bogenpfeil ---------------------------------- */
.notiz {
  font-family: var(--schrift-hand);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.15;
  color: var(--rot-tief);
  transform: rotate(-2.2deg);
  display: inline-block;
}
.notiz-block { position: relative; display: flex; align-items: flex-start; gap: .35rem; margin: 1.4rem 0; }
.notiz-block .pfeil { flex: 0 0 auto; width: 54px; height: 40px; color: var(--rot-tief); }
.notiz--hell { color: #f0a5a8; }
.bon .notiz-block { max-width: 34rem; }

/* --- Einstieg (Hero) ------------------------------------------------------ */
.einstieg .bon { padding-top: clamp(2.6rem, 5vw, 3.4rem); }
.einstieg-raster {
  display: grid; gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 52rem) { .einstieg-raster { grid-template-columns: 1.15fr .85fr; } }

.einstieg h1 { margin-bottom: .35rem; }
.einstieg h1 .apostroph { color: var(--rot); }
.einstieg .unterzeile {
  font-family: var(--schrift-titel); font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  font-size: clamp(.8rem, .72rem + .35vw, .95rem);
  color: var(--grau); margin-bottom: 1.2rem;
}
.einstieg .anriss { font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); max-width: 34rem; }

/* Gummistempel Öffnungsstatus */
.stempel {
  display: inline-block;
  transform: rotate(-6deg);
  border: 3px solid var(--rot-tief);
  color: var(--rot-tief);
  font-family: var(--schrift-titel); font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  font-size: clamp(.78rem, .72rem + .28vw, .92rem);
  padding: .45rem .9rem; border-radius: 4px;
  opacity: .88;
  line-height: 1.25;
}
.stempel[data-status="zu"] { border-color: var(--grau); color: var(--grau); transform: rotate(4deg); }

/* --- Marken / Pillen ------------------------------------------------------ */
.marken { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 1.3rem 0; padding: 0; }
.marken li {
  font-family: var(--schrift-titel); font-weight: 700;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid rgba(23,24,27,.35); border-radius: 999px;
  padding: .35rem .8rem;
}
.marken li.hervor { background: var(--tinte); color: var(--creme); border-color: var(--tinte); }

/* --- Knöpfe --------------------------------------------------------------- */
.knopf-reihe { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0 0; }
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .7rem 1.4rem;
  font-family: var(--schrift-titel); font-weight: 800; font-size: 1rem;
  letter-spacing: .02em; text-decoration: none; border-radius: 3px;
  border: 2px solid var(--tinte); background: var(--tinte); color: var(--creme);
  cursor: pointer;
}
.knopf:hover { background: #000; border-color: #000; }
.knopf--rot { background: var(--rot); border-color: var(--rot); color: #fff; }
.knopf--rot:hover { background: #b8171e; border-color: #b8171e; }
.knopf--linie { background: transparent; color: var(--tinte); }
.knopf--linie:hover { background: rgba(23,24,27,.08); }
.bahn--dunkel .knopf--linie { color: var(--creme); border-color: var(--creme); }
.bahn--dunkel .knopf--linie:hover { background: rgba(246,241,228,.12); }

/* --- Bonzeilen (Speisekarte) ---------------------------------------------- */
.gruppe { margin: 0 0 2.6rem; }
.gruppe:last-child { margin-bottom: 0; }
.gruppe > h3 {
  font-size: clamp(1.3rem, 1.15rem + .7vw, 1.7rem);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .15rem;
}
.gruppe .gruppe-notiz {
  font-family: var(--schrift-hand); font-size: 1.35rem; color: var(--rot-tief);
  margin: 0 0 1rem; transform: rotate(-1.2deg); display: inline-block;
}

.zeilen { list-style: none; margin: 0; padding: 0; }
.zeile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed rgba(23,24,27,.28);
}
.zeile:first-child { border-top: 1px dashed rgba(23,24,27,.28); }
.zeile .name {
  font-family: var(--schrift-titel); font-weight: 700;
  font-size: 1.06rem; letter-spacing: .01em;
  text-transform: uppercase;
}
.zeile .preis {
  font-weight: 700; font-size: 1.06rem;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  align-self: start;
}
.zeile .beschreibung {
  grid-column: 1 / -1;
  font-size: .95rem; color: var(--grau); margin: 0;
}
.zeile .name, .zeile .beschreibung { overflow-wrap: break-word; }
.zeile .preis-doppel { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .35rem .9rem; font-variant-numeric: tabular-nums; }
/* Zeile mit zwei Preisen (klein/groß) bekommt auf schmalen Geräten eine eigene Zeile */
@media (max-width: 34rem) {
  .zeile--doppel { grid-template-columns: 1fr; }
  .zeile--doppel .preis { justify-self: start; }
  .zeile--doppel .preis-doppel { justify-content: flex-start; }
}
.zeile .preis-doppel span { white-space: nowrap; }
.zeile .preis-doppel b { font-weight: 700; }
.zeile .preis-doppel em { font-style: normal; color: var(--grau); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }

.hinweis-marke {
  display: inline-block; vertical-align: .1em; margin-left: .5rem;
  font-family: var(--schrift-text); font-weight: 700;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .15rem .45rem; border-radius: 2px;
}
.hinweis-marke.scharf      { background: var(--rot); color: #fff; }
.hinweis-marke.vegetarisch { background: #2f6b34; color: #fff; }

/* Zusatzstoff-Ziffern als Fußnote */
a.zusatz {
  font-size: .78rem; color: var(--grau); text-decoration: none;
  border-bottom: 1px dotted var(--grau);
  font-variant-numeric: tabular-nums; white-space: nowrap;
  padding: .1rem .15rem;
}
a.zusatz:hover { color: var(--rot-tief); border-bottom-color: var(--rot-tief); }
a.zusatz::before { content: "("; }
a.zusatz::after  { content: ")"; }

.legende {
  margin-top: 2.4rem; padding: 1.2rem 1.3rem;
  background: var(--creme-tief); border-left: 5px solid var(--rot);
  font-size: .9rem;
}
.legende h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.legende dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .15rem .6rem; }
.legende dt { font-weight: 700; font-variant-numeric: tabular-nums; }
.legende dd { margin: 0; color: var(--grau); }

/* --- Ausschnitte aus der gedruckten Karte -------------------------------- */
.ausschnitte {
  display: grid; gap: .6rem; list-style: none; padding: 0; margin: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 40rem) { .ausschnitte { grid-template-columns: repeat(4, 1fr); } }
.ausschnitte figure { margin: 0; background: #0d0d0e; }
.ausschnitte img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ausschnitte figcaption {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grau-hell); padding: .5rem .55rem; font-weight: 500;
}
.bon .ausschnitte figcaption { color: var(--grau); background: var(--creme-tief); }

/* --- Kartenblätter (Scans) ------------------------------------------------ */
.kartenblaetter { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin: 0; }
@media (min-width: 46rem) { .kartenblaetter { grid-template-columns: 1fr 1fr; } }
.kartenblatt { margin: 0; }
.kartenblatt img { width: 100%; border: 1px solid rgba(23,24,27,.25); }
.kartenblatt figcaption { font-size: .85rem; color: var(--grau); margin-top: .45rem; }

/* --- Öffnungszeiten-Tabelle ---------------------------------------------- */
.zeiten { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.zeiten caption { text-align: left; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--grau); padding-bottom: .5rem; font-weight: 700; }
.zeiten th, .zeiten td { text-align: left; padding: .6rem .3rem; border-bottom: 1px dashed rgba(23,24,27,.28); }
.zeiten th { font-weight: 700; font-family: var(--schrift-titel); text-transform: uppercase; letter-spacing: .04em; }
.zeiten td { text-align: right; font-weight: 500; }
.zeiten tr[data-heute] th, .zeiten tr[data-heute] td { background: rgba(216,35,42,.09); color: var(--rot-tief); font-weight: 700; }

/* --- Info-Reihen (Kontakt, Wege) ----------------------------------------- */
.info-raster { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .info-raster { grid-template-columns: 1fr 1fr; } }
@media (min-width: 66rem) { .info-raster--drei { grid-template-columns: repeat(3, 1fr); } }

.info-block h3 { margin-bottom: .3rem; }
.info-block p { margin-bottom: .5rem; }
.kontaktliste { list-style: none; margin: 0; padding: 0; }
.kontaktliste li { padding: .3rem 0; }
.kontaktliste a { font-weight: 700; }

/* --- Dunkle Bahn (Passwand-Einschub, ohne Bon) --------------------------- */
.bahn--dunkel { padding-top: clamp(2.6rem, 7vw, 4.5rem); padding-bottom: clamp(2.6rem, 7vw, 4.5rem); }
.bahn--dunkel .innen { max-width: var(--bon-breite); margin: 0 auto; }
.bahn--dunkel h2 { color: var(--creme); }
.bahn--dunkel p { color: var(--grau-hell); }

/* --- Karte (Zwei-Klick) --------------------------------------------------- */
.karte-platzhalter {
  border: 2px dashed rgba(23,24,27,.35);
  background: var(--creme-tief);
  padding: 1.5rem; text-align: center;
}
.karte-platzhalter p { max-width: 34rem; margin-left: auto; margin-right: auto; font-size: .95rem; color: var(--grau); }
.karte-rahmen { width: 100%; height: 420px; border: 0; display: block; }

/* --- Formular ------------------------------------------------------------- */
.formular { display: grid; gap: 1rem; max-width: 42rem; }
.feld { display: grid; gap: .3rem; }
.feld label { font-weight: 700; font-size: .92rem; }
.feld .hilfe { font-size: .82rem; color: var(--grau); }
.feld input, .feld textarea, .feld select {
  font: inherit; font-size: 1rem;
  padding: .7rem .8rem; min-height: 48px;
  border: 2px solid rgba(23,24,27,.4); border-radius: 3px;
  background: #fffdf7; color: var(--tinte); width: 100%;
}
.feld textarea { min-height: 9rem; resize: vertical; }
.feld input:focus, .feld textarea:focus, .feld select:focus { border-color: var(--rot); }
.feld-einwilligung { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.feld-einwilligung input { width: 24px; height: 24px; min-height: 24px; margin-top: .2rem; }
.feld-einwilligung label { font-weight: 400; font-size: .92rem; }
.formular-hinweis {
  background: var(--creme-tief); border-left: 5px solid var(--stahl);
  padding: .9rem 1.1rem; font-size: .9rem; color: var(--grau);
}
.formular-antwort { font-weight: 700; color: var(--rot-tief); }
.formular-antwort:empty { display: none; }

/* --- Rechtstexte ---------------------------------------------------------- */
.rechtstext { max-width: 46rem; }
.rechtstext h2 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); margin-top: 2rem; }
.rechtstext h2:first-of-type { margin-top: 0; }
.rechtstext h3 { font-size: 1.1rem; margin-top: 1.4rem; }
.rechtstext ul { padding-left: 1.2rem; }
.rechtstext li { margin-bottom: .35rem; }
.rechtstext address { font-style: normal; margin-bottom: 1em; }

/* --- Fuß ------------------------------------------------------------------ */
.fuss {
  border-top: 1px solid rgba(154,160,166,.22);
  padding: clamp(2rem, 5vw, 3rem) var(--rand);
  margin-top: clamp(2rem, 5vw, 3rem);
  font-size: .95rem;
}
.fuss-innen {
  max-width: var(--bon-breite); margin: 0 auto;
  display: grid; gap: 1.6rem; grid-template-columns: 1fr;
}
@media (min-width: 46rem) { .fuss-innen { grid-template-columns: 1.2fr 1fr 1fr; } }
.fuss h2 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stahl); margin-bottom: .7rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { padding: .22rem 0; }
.fuss a { color: var(--grau-hell); text-decoration: none; border-bottom: 1px solid transparent; }
.fuss a:hover { color: var(--creme); border-bottom-color: var(--rot); }
.fuss address { font-style: normal; color: var(--grau-hell); }
.fuss .wortmarke { font-size: 1.35rem; padding-left: 0; }
.fuss-schluss {
  max-width: var(--bon-breite); margin: 1.8rem auto 0;
  padding-top: 1.1rem; border-top: 1px solid rgba(154,160,166,.16);
  font-size: .82rem; color: var(--stahl);
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; justify-content: space-between;
}

/* --- Kleinkram ------------------------------------------------------------ */
.abstand-oben { margin-top: 2rem; }
.kein-umbruch { white-space: nowrap; }
.zentriert { text-align: center; }
