/* =========================================================
   Rock 'n' Wurst — Stylesheet
   Farben, Typografie und Muster laut CI-Guideline.
   ========================================================= */

:root {
  /* --- Markenfarben --- */
  --kohle:  #1A1A1A;
  --glut:   #7A1F1F;
  --flamme: #D9641C;
  --senf:   #D9A441;
  --asche:  #F0E6D2;

  /* --- Abgeleitete Töne --- */
  --kohle-2: #242424;
  --kohle-3: #2E2E2E;
  --asche-2: #E2D5BB;

  /* --- Layout --- */
  --wrap: 1180px;
  --pad: 24px;
  --radius: 4px;
  --header-h: 76px;

  --shadow: 0 18px 40px rgba(0, 0, 0, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Grundlagen ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* schneidet die schräg gestellte Laufschrift seitlich ab.
     "clip" statt "hidden", damit der Sticky-Header weiter klebt. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--asche);
  color: var(--kohle);
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  /* Anton ist sehr eng gesetzt: bei zu kleinem Zeilenabstand stossen
     die Punkte von Ä/Ö/Ü an die Zeile darüber. */
  line-height: 1.04;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

::selection { background: var(--flamme); color: var(--asche); }

:focus-visible {
  outline: 3px solid var(--flamme);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--kohle);
  color: var(--asche);
  padding: 12px 20px;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--flamme);
  --btn-fg: var(--asche);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), box-shadow .18s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 100, 28, .32);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--flamme);
  color: var(--asche);
}
.btn-primary:hover { background: var(--glut); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--asche);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--asche);
  color: var(--kohle);
  border-color: var(--asche);
  box-shadow: none;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--kohle);
  color: var(--asche);
  border-bottom: 1px solid rgba(240, 230, 210, .12);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--asche);
  flex: 0 0 auto;
}

.brand-flame { width: 34px; height: auto; }

/* Logo in der Kopfzeile */
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}

.brand-word {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-apo { color: var(--flamme); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--asche);
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--flamme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 11px 22px; font-size: 14px; }

/* Warenkorb in der Kopfzeile — bleibt auch auf dem Handy sichtbar */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 2px solid rgba(240, 230, 210, .28);
  border-radius: var(--radius);
  color: var(--asche);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.nav-cart:hover {
  border-color: var(--flamme);
  background: rgba(217, 100, 28, .16);
}
.nav-cart svg { width: 21px; height: 21px; flex: 0 0 auto; }

.nav-cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--flamme);
  color: var(--asche);
  border-radius: 11px;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: .02em;
}
/* Ohne Inhalt kein Punkt — der Warenkorb ist dann eben leer. */
.nav-cart-count:empty { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 42px;
  padding: 10px 8px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--asche);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 var(--pad) 0;
  background: var(--kohle-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s var(--ease);
}
.mobile-nav.is-open {
  max-height: 420px;
  padding: 16px var(--pad) 26px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--asche);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240, 230, 210, .12);
}
.mobile-nav .btn {
  margin-top: 16px;
  border-bottom: 0;
  color: var(--asche);
}

/* ---------- Reveal-Animation ---------- */

/* Nur ausblenden, wenn JavaScript läuft — sonst wäre die Seite leer. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  .map-pin-glow { animation: none !important; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--kohle);
  color: var(--asche);
  overflow: hidden;
}

/* Licht von oben plus Glut aus den Ecken — kein Streifenmuster mehr */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Scheinwerfer von oben, direkt hinter dem Logo */
    radial-gradient(78% 52% at 50% -6%, rgba(217, 100, 28, .26), transparent 64%),
    /* Glut links */
    radial-gradient(48% 42% at 10% 26%, rgba(217, 100, 28, .15), transparent 66%),
    /* Glut rechts */
    radial-gradient(48% 44% at 92% 46%, rgba(122, 31, 31, .55), transparent 66%);
  pointer-events: none;
}

/* Vignette für Tiefe, und nach unten sauber zu Kohle auslaufend, damit der
   Übergang zum Laufband keine sichtbare Kante bekommt */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 92% at 50% 40%, transparent 40%, rgba(0, 0, 0, .5) 100%),
    linear-gradient(to bottom, transparent 60%, var(--kohle) 97%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5vw, 64px) var(--pad) clamp(44px, 6vw, 76px);
  text-align: center;
}

/* Logo als Kopf des Hero. Die Breite hängt auch an der Fensterhöhe (vh):
   auf flachen Laptop-Bildschirmen bleibt dadurch genug Platz, damit
   Headline und Button ohne Scrollen sichtbar sind. */
.hero-logo {
  width: min(320px, 58vw, 27vh);
  height: auto;
  margin: 0 auto clamp(16px, 2vw, 24px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--senf);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 84px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--flamme); }

/* Auf breiten Displays passt "KÜHLE GETRÄNKE, HEISSE WURST." in eine Zeile,
   auf schmalen bricht sie sonst mitten im zweiten Halbsatz um — dieser
   Umbruch schaltet sich erst dann zu und trennt sauber am Komma. */
.hero h1 .br-schmal { display: none; }
@media (max-width: 780px) {
  .hero h1 .br-schmal { display: inline; }
}

.lede {
  max-width: 660px;
  margin: 0 auto 26px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--asche-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

/* ---------- Countdown ---------- */

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cd-box {
  min-width: 96px;
  padding: 16px 12px 12px;
  background: rgba(240, 230, 210, .06);
  border: 1px solid rgba(240, 230, 210, .16);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  backdrop-filter: blur(2px);
}

.cd-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1;
  color: var(--asche);
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--senf);
}

.countdown.is-live .cd-num { color: var(--flamme); }

/* ---------- Marquee (Signature-Element) ---------- */

/* Das Band liegt in einem dunklen Streifen. Dessen Unterkante ist parallel
   zur Schräglage beschnitten — dadurch entsteht neben dem Band nirgends eine
   gerade Hell/Dunkel-Kante, egal wie breit das Fenster ist. */
.marquee-wrap {
  background: var(--kohle);
  padding: calc(12px + 1.5vw) 0 calc(20px + 1.5vw);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.9vw), 0 100%);
}

.marquee {
  background: var(--flamme);
  color: var(--kohle);
  padding: 14px 0;
  margin: 0;
  overflow: hidden;
  transform: rotate(-1.6deg) scale(1.06);
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  white-space: nowrap;
  /* Dauer ist auf die Textlänge abgestimmt: bei längeren Sprüchen muss sie mit
     wachsen, sonst zieht das Band zu schnell durch. */
  animation: marquee 68s linear infinite;
}

.marquee-track span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2.6vw, 26px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sektionen ---------- */

.section { padding: clamp(60px, 8vw, 100px) 0; }

.section-head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--glut);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(30px, 5.2vw, 54px);
}

.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(26, 26, 26, .78);
}

/* Dunkle Sektion */
.section-dark {
  background: var(--kohle);
  color: var(--asche);
}
.section-dark .kicker { color: var(--senf); }
.section-dark .section-sub { color: var(--asche-2); }

/* ---------- Feature-Kacheln ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .10);
  border-top: 5px solid var(--flamme);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  color: var(--glut);
  margin-bottom: 18px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(26, 26, 26, .78);
  font-size: 16px;
}

/* ---------- Line-up (Plakat-Satz) ---------- */

/* Gesetzt wie ein Festivalplakat: der Kopfact gross und in Flammenorange,
   darunter Reihen, die von Stufe zu Stufe kleiner werden. Die Namen einer
   Reihe trennt ein Punkt. */
.lineup {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--asche);
}

/* Zwischenzeile mit Strich links und rechts, wie die Tagesangabe
   auf echten Plakaten. */
.lineup-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 28px;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: .26em;
  color: var(--senf);
}
.lineup-tag::before,
.lineup-tag::after {
  content: "";
  height: 2px;
  width: clamp(28px, 8vw, 90px);
  background: currentColor;
  opacity: .55;
}
.lineup-tag-end {
  margin: 34px 0 0;
}

.lineup-row {
  margin: 0 0 18px;
  line-height: 1.14;
  letter-spacing: .04em;
}

.act + .act::before {
  content: "•";
  margin: 0 .5em;
  color: var(--flamme);
}

/* Die Schriftgrössen sind auf die Zeichenzahl der jeweiligen Reihe
   abgestimmt: jede Reihe soll auf einer Zeile stehen bleiben. Wer Namen
   ergänzt oder verlängert, prüft das am besten kurz nach. */
.row-1 {
  font-size: clamp(30px, 6vw, 76px);
  color: var(--flamme);
  margin-bottom: 24px;
}
.row-2 { font-size: clamp(19px, 2.2vw, 27px); }
.row-3 { font-size: clamp(18px, 2.0vw, 24px); }
.row-4 { font-size: clamp(17px, 1.85vw, 22px); }
.row-5 { font-size: clamp(13px, 1.5vw, 17px); }
.row-6,
.row-7 {
  font-size: clamp(13px, 1.45vw, 16px);
  color: rgba(240, 230, 210, .82);
}
.row-7 { font-size: clamp(13px, 1.4vw, 15px); }
.row-6 { margin-bottom: 10px; }

/* Ab hier wird die Zeile zu eng für Trennpunkte — jeder Name bekommt
   seine eigene Zeile. */
@media (max-width: 780px) {
  .act { display: block; }
  .act + .act { margin-top: 9px; }
  .act + .act::before { content: none; }
  .lineup-row { margin-bottom: 22px; }
  .row-6 { margin-bottom: 22px; }
}

/* ---------- CTA-Band ---------- */

.cta-band {
  background: var(--glut);
  color: var(--asche);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band .kicker { color: var(--senf); }
.cta-band h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 4px; }
.cta-band .section-sub { color: var(--asche-2); margin-top: 12px; }
.cta-band .btn-primary { background: var(--asche); color: var(--kohle); }
.cta-band .btn-primary:hover { background: var(--senf); color: var(--kohle); }

/* =========================================================
   Anreise: eigene Karte + Info-Liste
   ========================================================= */

.anreise-grid {
  display: grid;
  gap: 26px;
}

/* Die Karte ist fast quadratisch — der Rahmen schrumpft mit, sonst stünde
   sie mit viel leerer dunkler Fläche links und rechts da. Zentriert wird
   über justify-self, nicht über auto-Margins: die nähmen dem Grid-Item das
   Stretch und es fiele auf seine Intrinsic-Breite zusammen. */
.map-frame {
  margin: 0;
  width: 100%;
  max-width: 640px;
  justify-self: center;
  background: var(--kohle);
  border-radius: var(--radius);
  border-top: 5px solid var(--flamme);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-scroll {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}

/* Deckel als Pixelwert, nicht als Prozent: als Flex-Kind wuerde die Karte
   bei max-width:100% auf ihre Intrinsic-Breite zusammenfallen. */
.map {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}

.map-note {
  padding: 14px 20px 18px;
  font-size: 13px;
  /* mindestens 4.5:1 Kontrast, sonst nicht barrierefrei lesbar */
  color: rgba(240, 230, 210, .62);
}

/* Hinweis nur auf schmalen Displays, wo die Karte scrollt */
.map-swipe { display: none; }

/* --- Kartenelemente --- */

.map-bg     { fill: var(--kohle); }
.map-stripe { stroke: rgba(240, 230, 210, .05); stroke-width: 1; }
.map-tree   { fill: rgba(240, 230, 210, .08); }

/* Bebaute Talsohle: hebt den Ort dezent vom Wald ab */
.map-landuse { fill: rgba(240, 230, 210, .05); }

/* Feld- und Waldwege am Kartenrand */
.map-track {
  fill: none;
  stroke: rgba(240, 230, 210, .20);
  stroke-width: 3;
  stroke-linecap: round;
}

/* Bäche */
.map-stream {
  fill: none;
  stroke: rgba(240, 230, 210, .14);
  stroke-width: 4;
  stroke-linecap: round;
}

/* Hof- und Erschliessungswege */
.map-road-service {
  fill: none;
  stroke: rgba(240, 230, 210, .32);
  stroke-width: 5;
  stroke-linecap: round;
}

/* Öffentliche Parkflächen (aus den OSM-Daten) */
.map-parkarea {
  fill: rgba(240, 230, 210, .09);
  stroke: rgba(240, 230, 210, .18);
  stroke-width: 1;
}

.map-river {
  fill: none;
  stroke: rgba(240, 230, 210, .26);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bahnlinie: durchgehende Schiene plus Schwellen quer dazu */
.map-rail {
  fill: none;
  stroke: rgba(240, 230, 210, .45);
  stroke-width: 2.5;
}
.map-rail-ties {
  fill: none;
  stroke: rgba(240, 230, 210, .45);
  stroke-width: 13;
  stroke-dasharray: 2.5 11;
}

.map-road-casing {
  fill: none;
  stroke: #0D0D0D;
  stroke-width: 14;
  stroke-linecap: round;
}
.map-road {
  fill: none;
  stroke: rgba(240, 230, 210, .80);
  stroke-width: 10;
  stroke-linecap: round;
}
.map-road-minor {
  fill: none;
  stroke: rgba(240, 230, 210, .52);
  stroke-width: 7;
  stroke-linecap: round;
}

/* Parkzone: hervorgehobener Strassenabschnitt */
.map-parkzone {
  fill: none;
  stroke: var(--senf);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 12 7;
  opacity: .75;
}

/* Zugangspfeil von der Pfaffenroter Strasse */
.map-arrow {
  fill: none;
  stroke: var(--flamme);
  stroke-width: 3.5;
  stroke-linecap: round;
}
.map-arrow-head { fill: var(--flamme); }

/* Häuser */
.map-building rect,
.map-building polygon {
  fill: rgba(240, 230, 210, .13);
  stroke: rgba(240, 230, 210, .20);
  stroke-width: 1;
}
.map-building-main rect,
.map-building-main polygon {
  fill: var(--flamme);
  stroke: var(--asche);
  stroke-width: 1.5;
}
.map-building-num {
  fill: var(--kohle);
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  text-anchor: middle;
}

/* Strassennamen laufen direkt auf der Strasse mit — die dunkle Kontur
   dahinter haelt sie ueber Fahrbahn, Haeusern und Bahn lesbar. */
.map-street {
  fill: rgba(240, 230, 210, .62);
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  paint-order: stroke;
  stroke: var(--kohle);
  stroke-width: 5;
  stroke-linejoin: round;
}
.map-hint { font-size: 11px; fill: rgba(240, 230, 210, .38); }

/* Haltestelle */
.map-stop circle { fill: var(--kohle); stroke: var(--asche); stroke-width: 3; }
.map-stop .map-stop-dot { fill: var(--asche); stroke: none; }

/* Parkplatz */
.map-park circle { fill: var(--senf); }
.map-park text {
  fill: var(--kohle);
  font-family: 'Anton', sans-serif;
  font-size: 21px;
  text-anchor: middle;
}

/* Bühne */
.map-pin { fill: var(--flamme); }
.map-dot { fill: var(--flamme); }
.map-pin-glow {
  fill: rgba(217, 100, 28, .16);
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPulse 2.8s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(.8);  opacity: .5; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Beschriftungs-Schilder */
.lbl rect {
  fill: var(--kohle);
  stroke: rgba(240, 230, 210, .20);
  stroke-width: 1;
}
.lbl-lead { stroke: rgba(240, 230, 210, .35); stroke-width: 1.5; }

.lbl-t {
  fill: var(--asche);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .05em;
}
.lbl-s {
  fill: var(--senf);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .14em;
}

.lbl-s-accent { fill: var(--flamme); font-size: 10.5px; letter-spacing: .10em; }

.lbl-accent rect { fill: var(--flamme); stroke: none; }
.lbl-accent .lbl-t { fill: var(--kohle); font-size: 14px; }

/* Richtungsangaben: dezenter Kasten, damit sie über den Strassen lesbar bleiben */
.lbl-plain rect { fill: var(--kohle); stroke: none; }

/* Strassenschild */
.map-shield rect { fill: var(--kohle); stroke: rgba(240, 230, 210, .45); stroke-width: 1.5; }
.map-shield text {
  fill: var(--asche);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  text-anchor: middle;
  letter-spacing: .04em;
}

.map-dir {
  fill: rgba(240, 230, 210, .45);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
}
.map-dir-end { text-anchor: end; }

.map-compass circle { fill: none; stroke: rgba(240, 230, 210, .22); stroke-width: 1.5; }
.map-compass path { fill: var(--flamme); }
.map-compass text {
  fill: var(--senf);
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  text-anchor: middle;
  letter-spacing: .1em;
}

/* --- Info-Liste neben der Karte --- */

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* feste Stufen statt auto-fit: so bleiben bei vier Karten
     die Reihen immer gleichmässig gefüllt (4 / 2+2 / 1) */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1000px) {
  .info-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .info-list { grid-template-columns: 1fr; }
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .10);
  border-left: 4px solid var(--flamme);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.info-row:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, .10);
}

.info-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--glut);
}
.info-icon svg { width: 100%; height: 100%; }

.info-row h3 { font-size: 20px; margin-bottom: 6px; }

.info-row p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(26, 26, 26, .76);
}
.info-row strong { font-weight: 600; color: var(--kohle); }

/* ---------- Festival-Einmaleins (FAQ) ---------- */

/* Eigener Farbton, damit der Abschnitt sich von der hellen
   Anreise-Sektion darüber absetzt, ohne dunkel zu werden. */
.section-tint { background: var(--asche-2); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px 28px;
  margin: 0;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .10);
  border-top: 4px solid var(--senf);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, .10);
}

.faq-item dt {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.12;
  font-size: 19px;
  margin-bottom: 10px;
}

.faq-item dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(26, 26, 26, .78);
}
.faq-item dd a { color: var(--glut); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--kohle);
  color: var(--asche);
  padding: 54px 0 44px;
  border-top: 4px solid var(--flamme);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 8px;
}

.footer-brand .brand-word { font-size: 20px; }

.footer-claim {
  font-family: 'Anton', sans-serif;
  letter-spacing: .3em;
  color: var(--senf);
  font-size: 14px;
  margin: 4px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 10px 0 4px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--asche);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 230, 210, .35);
  padding-bottom: 2px;
}
.footer-nav a:hover { color: var(--flamme); border-bottom-color: var(--flamme); }

.footer-copy {
  font-size: 14px;
  color: rgba(240, 230, 210, .62);
  max-width: 620px;
  margin: 0;
}

/* Nur für Screenreader */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Rechtstexte (Impressum, Datenschutz) ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 38px 0 14px;
}
.legal h2:first-of-type { margin-top: 26px; }
.legal h3 {
  font-size: 19px;
  margin: 26px 0 8px;
}
.legal p, .legal ul { font-size: 16.5px; }
.legal ul { padding-left: 20px; margin: 0 0 1em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--glut); }
.legal .adresse {
  border-left: 4px solid var(--flamme);
  padding: 4px 0 4px 18px;
  margin-bottom: 1.4em;
}
.legal .stand {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 26, 26, .15);
  font-size: 14px;
  color: rgba(26, 26, 26, .62);
}

/* =========================================================
   Formular- und Inhaltsseiten (tickets.php, admin/)
   ========================================================= */

.page {
  background: var(--kohle);
  color: var(--asche);
  min-height: calc(100vh - var(--header-h));
  padding: clamp(48px, 7vw, 84px) 0 clamp(60px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 15% 0%, rgba(217, 100, 28, .22), transparent 60%);
  pointer-events: none;
}
.page > .wrap { position: relative; z-index: 1; }

.card {
  background: var(--asche);
  color: var(--kohle);
  border-radius: var(--radius);
  border-top: 6px solid var(--flamme);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
}

.card-narrow {
  max-width: 560px;
  margin: 0 auto;
}

.card h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
.card h2 { font-size: clamp(24px, 3.4vw, 34px); }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--glut);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--kohle);
  background: #fff;
  border: 2px solid rgba(26, 26, 26, .18);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--flamme);
  box-shadow: 0 0 0 4px rgba(217, 100, 28, .18);
}

.field-hint {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(26, 26, 26, .62);
}

.form-actions { margin-top: 28px; }
.form-actions .btn { width: 100%; }

.notice {
  padding: 16px 18px;
  border-radius: var(--radius);
  border-left: 5px solid var(--flamme);
  background: rgba(217, 100, 28, .12);
  margin-bottom: 24px;
  font-size: 16px;
}
.notice-error {
  border-left-color: var(--glut);
  background: rgba(122, 31, 31, .12);
  color: var(--glut);
}
.notice-success {
  border-left-color: #2f7a3a;
  background: rgba(47, 122, 58, .12);
}

.back-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--asche);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Tabelle im Admin-Bereich */
.table-scroll {
  overflow-x: auto;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 560px;
}

table.data th,
table.data td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(26, 26, 26, .12);
}

table.data th {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--kohle);
  color: var(--asche);
  border-bottom: 0;
}

table.data tbody tr:hover { background: rgba(217, 100, 28, .08); }

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.stat {
  flex: 1 1 180px;
  padding: 18px 20px;
  background: var(--kohle);
  color: var(--asche);
  border-radius: var(--radius);
  border-left: 5px solid var(--flamme);
}
.stat .stat-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  line-height: 1;
}
.stat .stat-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--senf);
}

/* Tickets einer Bestellung in der Admin-Tabelle */
.admin-tickets {
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-tickets li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 5px 0;
}
.admin-tickets li + li { border-top: 1px solid rgba(26, 26, 26, .1); }
.admin-tickets .is-storniert { opacity: .55; }
.admin-tickets .is-storniert .admin-ticket-nr { text-decoration: line-through; }

.admin-ticket-art {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--glut);
  min-width: 108px;
}
.admin-ticket-nr {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.admin-ticket-status,
.ticket-fehlt {
  font-size: 13px;
  color: rgba(26, 26, 26, .6);
}
.admin-tickets .link-btn { font-size: 13px; }

.btn-danger {
  background: transparent;
  border: 2px solid var(--glut);
  color: var(--glut);
  padding: 7px 14px;
  font-size: 12px;
  box-shadow: none;
}
.btn-danger:hover {
  background: var(--glut);
  color: var(--asche);
  box-shadow: none;
}

.admin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Die Knöpfe oben rechts: nebeneinander, auf schmalen Schirmen umbrechend. */
.admin-head-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Ticketshop: Auswahl → Warenkorb → Bestellung
   ========================================================= */

.card-shop {
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Schrittanzeige ---------- */

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: 860px;
  margin: 0 auto 26px;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, .45);
}

.step a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.step a:hover { color: var(--senf); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.step.is-done { color: var(--senf); }
.step.is-active { color: var(--asche); }
.step.is-active .step-num {
  background: var(--flamme);
  border-color: var(--flamme);
  color: var(--asche);
}

/* ---------- Artikel im Shop ---------- */

.artikel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  border: 2px solid rgba(26, 26, 26, .12);
  border-radius: var(--radius);
  background: rgba(26, 26, 26, .03);
}

.artikel-bild,
.korb-bild {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: var(--radius);
  background: var(--kohle);
  color: var(--flamme);
}
.artikel-bild svg,
.korb-bild svg { width: 52px; height: 52px; }

.artikel-text h2 { font-size: 26px; margin-bottom: 6px; }

/* Kurzes Schildchen neben dem Ticketnamen ("mit Bier" / "alkoholfrei") */
.artikel-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  padding: 4px 10px 3px;
  border-radius: 999px;
  background: var(--senf);
  color: var(--kohle);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.artikel-zusatz {
  margin: 0 0 6px;
  font-size: 16px;
  color: rgba(26, 26, 26, .72);
}

.artikel-meta {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--glut);
}

.artikel-preis {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  line-height: 1;
}

.preis-notiz {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(26, 26, 26, .55);
}

.artikel-kauf { min-width: 210px; }
.artikel-kauf .field { margin-bottom: 14px; }
.artikel-kauf .btn { width: 100%; }

.btn-korb svg { width: 19px; height: 19px; }

.shop-hinweis {
  margin: 24px 0 0;
  font-size: 14px;
  color: rgba(26, 26, 26, .62);
}
.shop-hinweis a { color: var(--glut); }

/* ---------- Warenkorb ---------- */

.korb-liste {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgba(26, 26, 26, .12);
}

.korb-zeile {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 26, .12);
}

.korb-text h2 { font-size: 22px; margin-bottom: 4px; }

.korb-einzel {
  margin: 0;
  font-size: 14px;
  color: rgba(26, 26, 26, .6);
}

/* Mengenwahl: zwei Knöpfe, dazwischen die Zahl. Kommt ohne
   JavaScript aus — jeder Knopf schickt das Formular ab. */
.korb-menge {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(26, 26, 26, .18);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.mengen-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  color: var(--kohle);
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.mengen-btn:hover:not(:disabled) { background: var(--flamme); color: var(--asche); }
.mengen-btn:disabled { opacity: .3; cursor: not-allowed; }

.mengen-zahl {
  min-width: 40px;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 19px;
}

.korb-summe {
  min-width: 92px;
  text-align: right;
  font-family: 'Anton', sans-serif;
  font-size: 21px;
}

.korb-fuss {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

/* Knopf, der aussieht wie ein Link (Warenkorb leeren) */
.link-btn {
  padding: 0;
  border: 0;
  background: none;
  color: var(--glut);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.link-btn:hover { color: var(--flamme); }

.korb-gesamt {
  margin-left: auto;
  text-align: right;
}
.korb-gesamt-label {
  display: block;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--glut);
}
.korb-gesamt-wert {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  line-height: 1.1;
}
.korb-gesamt-notiz {
  display: block;
  font-size: 13px;
  color: rgba(26, 26, 26, .55);
}

.btn-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 28px;
}

/* Geister-Knopf auf hellem Grund */
.btn-ghost-hell {
  background: transparent;
  border-color: rgba(26, 26, 26, .3);
  color: var(--kohle);
}
.btn-ghost-hell:hover {
  background: var(--kohle);
  border-color: var(--kohle);
  color: var(--asche);
}

/* ---------- Bestellung abschliessen ---------- */

.bestell-raster {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.bestell-uebersicht {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--kohle);
  color: var(--asche);
}
.bestell-uebersicht h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--senf);
}

.uebersicht-liste {
  margin: 0;
  padding: 0;
  list-style: none;
}
.uebersicht-liste li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 230, 210, .14);
  font-size: 15px;
}
/* Bewusst Oswald statt Anton: das Mal-Zeichen ist in Anton
   winzig und geht neben der Ziffer unter. */
.uebersicht-menge {
  font-weight: 600;
  color: var(--flamme);
  white-space: nowrap;
}
.uebersicht-name { flex: 1 1 auto; }
.uebersicht-preis { white-space: nowrap; }

.uebersicht-gesamt {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 0;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
}

.uebersicht-notiz {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--asche-2);
}

.uebersicht-zurueck {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--senf);
}

/* Bestellnummer auf der Bestätigung */
.bestell-nummer {
  margin: 22px 0;
  padding: 16px 20px;
  border: 2px dashed rgba(26, 26, 26, .25);
  border-radius: var(--radius);
  text-align: center;
}
.bestell-nummer-label {
  display: block;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--glut);
}
.bestell-nummer-wert {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  letter-spacing: .06em;
}

/* ---------- Ticketnummern auf der Bestätigung ---------- */

.ticket-liste-titel {
  margin: 26px 0 6px;
  font-size: 20px;
}

.ticket-liste {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgba(26, 26, 26, .12);
}

.ticket-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(26, 26, 26, .12);
}

.ticket-art {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticket-nummer {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--glut);
}

/* ---------- Ticket zurückgeben ---------- */

.storno-formular { margin-top: 26px; }

/* Ticketnummern liest man leichter, wenn die Ziffern Platz haben. */
.feld-nummer {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .16em;
}

.storno-daten {
  margin: 26px 0 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--kohle);
  color: var(--asche);
}
.storno-daten > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(240, 230, 210, .14);
}
.storno-daten > div:last-child { border-bottom: 0; }
.storno-daten dt {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--senf);
}
.storno-daten dd {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  letter-spacing: .04em;
}

/* ---------- Mobil ---------- */

/* Zwischen 900 und 1100 px wird es in der Kopfzeile eng: der Warenkorb
   behält sein Symbol, die Beschriftung fällt weg. */
@media (max-width: 1100px) {
  .main-nav { gap: 22px; }
  .nav-cart-label { display: none; }
  .nav-cart { padding: 9px 11px; }
}

@media (max-width: 900px) {
  .main-nav,
  .nav-cta { display: none; }

  .menu-toggle { display: flex; margin-left: 0; }
  .mobile-nav { display: flex; }

  /* Der Warenkorb bleibt sichtbar und rückt neben den Hamburger. */
  .nav-cart { margin-left: auto; }

  .artikel {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .artikel-kauf {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .bestell-raster { grid-template-columns: 1fr; }
  .bestell-uebersicht { order: -1; }

  .marquee { transform: rotate(-2deg) scale(1.1); }
  .marquee-wrap {
    padding: calc(12px + 2vw) 0 calc(18px + 2vw);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.6vw), 0 100%);
  }
}

/* Auf schmalen Displays wird die Karte sonst unlesbar klein —
   deshalb bekommt sie eine Mindestbreite und darf seitlich scrollen. */
@media (max-width: 700px) {
  .map { min-width: 600px; }
  .map-swipe { display: inline; color: var(--senf); }
}

/* Warenkorbzeile: auf schmalen Displays untereinander statt nebeneinander */
@media (max-width: 680px) {
  .korb-zeile {
    grid-template-columns: auto 1fr;
    gap: 14px 18px;
  }
  .korb-menge { grid-column: 1 / -1; }
  .korb-summe {
    grid-column: 2;
    grid-row: 3;
    min-width: 0;
  }
  .korb-weg {
    grid-column: 1;
    grid-row: 3;
  }

  .korb-fuss { flex-direction: column; }
  .korb-gesamt { margin-left: 0; text-align: left; }
  .btn-reihe { justify-content: stretch; }
  .btn-reihe .btn { flex: 1 1 200px; }

  .steps { gap: 8px 18px; font-size: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-word { font-size: 20px; }
  .brand-flame { width: 28px; }
  .hero-actions .btn { width: 100%; }
  .cd-box { min-width: 72px; padding: 12px 8px 10px; }

  .cta-band-inner .btn { width: 100%; }

  .artikel {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .artikel-preis { font-size: 26px; }
}
