/* ==========================================================================
   Schriften — selbst gehostet
   Liegen als woff2 in assets/fonts/ und werden bewusst NICHT von
   fonts.googleapis.com geladen: sonst geht bei jedem Seitenaufruf die
   IP-Adresse der Besucher an Google, und genau das macht eine
   Einwilligung nötig. So stellt die Seite keine einzige Verbindung
   zu Dritten her.

   Nur der latin-Subset – Umlaute, ß, €, § und typografische
   Anführungszeichen liegen alle darin.
   Archivo, Caveat und IBM Plex Sans sind Variable Fonts, deshalb eine
   Datei pro Familie mit Gewichtsbereich statt einer je Schnitt.
   ========================================================================== */
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('assets/fonts/ibm-plex-sans-var.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/caveat-var.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/ibm-plex-mono-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ==========================================================================
   Mini Market Kempten — Website
   Dunkle Automaten-Optik mit LED-Grün. Vanilla CSS, mobile-first.

   Licht-Konzept: EIN durchgehender Verlauf über die gesamte Dokumenthöhe
   (body::before) trägt die Helligkeit von oben nach unten. Sektionen setzen
   nur noch weich ein- und ausblendende Flächen darauf. Dadurch gibt es
   keine harten Farbkanten zwischen den Bereichen mehr, und weil nichts
   davon animiert ist, kann beim Scrollen auch nichts ruckeln.
   ========================================================================== */

:root {
  /* --- Palette, aus den Vor-Ort-Fotos ---
     Schwarz ist nie neutral, sondern minimal grün unterlaufen: Das Licht
     der LED-Decke färbt den ganzen Raum, und die Seite tut dasselbe. --- */
  --bg:        #060908;
  --surface:   #0E1310;
  --surface-2: #131A16;

  /* Die Röhre selbst. --neon bleibt als Alias, damit nichts bricht. */
  --led:       #2BFF9E;
  --neon:      #2BFF9E;
  --brand:     #2BFF9E;

  --cream:        #F4F4F1;
  --neon-pink:    #FF3B6B;   /* Buchstaben des OPEN-Schilds am Eingang */
  --neon-violet:  #8A4DFF;   /* Leuchtrahmen des OPEN-Schilds */

  /* --- Lichtskala ---------------------------------------------------
     Sechs Stufen derselben Röhrenfarbe. Jede leuchtende Kante, jeder
     Hover, jeder Schein im Projekt greift ausschließlich hierauf zu. */
  --l1: rgba(43, 255, 158, 0.06);
  --l2: rgba(43, 255, 158, 0.12);
  --l3: rgba(43, 255, 158, 0.22);
  --l4: rgba(43, 255, 158, 0.40);
  --l5: rgba(43, 255, 158, 0.65);
  --l6: rgba(43, 255, 158, 0.95);

  /* --- Vier Leuchtweiten, mehr braucht es nicht --- */
  --glow-1: 0 0 6px var(--l5);
  --glow-2: 0 0 16px var(--l4);
  --glow-3: 0 0 34px var(--l3);

  --text:       var(--cream);
  --text-mute:  rgba(244, 244, 241, 0.62);
  --text-faint: rgba(244, 244, 241, 0.56); /* 0.40 ergab nur 3,55:1 – zu wenig für 12–13px */
  --line:       rgba(244, 244, 241, 0.11);
  --line-soft:  rgba(244, 244, 241, 0.06);

  /* --- Type --- */
  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body:    'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
  --font-script:  'Caveat', cursive;

  /* --- Space --- */
  --s1: 8px;  --s2: 16px; --s3: 24px;
  --s4: 40px; --s5: 64px; --s6: 96px;

  /* --- Zustände: ruhend und angeleuchtet. Zwei Stufen, überall gleich --- */
  --edge-rest:  0 0 0 1px var(--l1), 0 0 24px -14px var(--l4);
  --edge-lit:   0 0 0 1px var(--l3), var(--glow-3);
  --glow-line:  var(--glow-1);
  --glow-inset: inset 0 26px 30px -32px var(--l6);

  --radius: 14px;
  --container: 1160px;
  --gutter: 20px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  position: relative;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 5px var(--l2), 0 0 26px var(--l4);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.mono { font-family: var(--font-mono); }
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: auto; z-index: 999;
  background: var(--neon); color: #05130C;
  padding: 12px 18px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: var(--s2); top: var(--s2); }

/* ---------- Grundlicht: ein Verlauf über das ganze Dokument ----------
   Liegt als absolut positionierte Ebene über der vollen body-Höhe, nicht
   fixiert – es scrollt also mit und wandert beim Scrollen kontinuierlich
   durch die Stufen. Reines Malen, kein JS, keine Animation. */
body::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    #0A1611 0%,
    #081310 8%,
    #060B09 20%,
    #070F0C 32%,
    #060A08 44%,
    #08110E 56%,
    #060A08 68%,
    #081310 80%,
    #060B09 92%,
    #050807 100%);
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* Flächen, die sich vom Grundlicht abheben sollen: oben und unten
   ausgeblendet, damit keine sichtbare Kante entsteht. */
.panel > * { position: relative; z-index: 1; }
.panel::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(20, 28, 24, 0) 0%,
    rgba(20, 28, 24, 0.55) 14%,
    rgba(20, 28, 24, 0.55) 86%,
    rgba(20, 28, 24, 0) 100%);
}

/* ---------- Trenner zwischen den Bereichen ----------
   Haarlinie, die zu beiden Seiten ausläuft, mit einem kleinen leuchtenden
   Knoten in der Mitte. Statisch – ein wanderndes Licht hat hier vorher nur
   wie ein Fehler ausgesehen. */
.divider {
  position: relative;
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg,
    transparent, var(--l1) 10%, var(--l3) 50%, var(--l1) 90%, transparent);
}
.divider::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 7px var(--l5), 0 0 16px var(--l3);
}

/* ---------- Neon-Rahmen: Kästen, Bilder, Karten ---------- */
.neon-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--l3);
  box-shadow: var(--edge-rest), var(--glow-inset);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.neon-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--neon) 25%, var(--neon) 75%, transparent);
  opacity: 0.7;
  box-shadow: var(--glow-line);
}
.neon-frame:hover {
  border-color: var(--l4);
  box-shadow: var(--edge-lit), var(--glow-inset);
}

/* ---------- Fotos ---------- */
.photo {
  width: 100%; height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0E0E0E;
}
.photo-frame { margin: 0; }
.photo-cap {
  position: relative; z-index: 2;
  padding: 9px 14px;
  font-size: 0.72rem; line-height: 1.45;
  color: var(--text-faint);
  background: rgba(8, 8, 8, 0.72);
  border-top: 1px solid var(--l2);
}

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.eyebrow.neon { color: var(--neon); }
/* Heller als --text-faint, damit 12-px-Text auf dunkler Fläche lesbar bleibt */
.eyebrow-muted { color: rgba(244, 244, 241, 0.66); }

.section { position: relative; padding-block: var(--s5); }
@media (min-width: 860px) { .section { padding-block: var(--s6); } }

.section-head { max-width: 60ch; margin-bottom: var(--s4); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--s2);
}
.section-sub { color: var(--text-mute); font-size: 1.02rem; }

/* ---------- Reveal ----------
   Nur mit aktivem JS ausblenden – sonst bliebe die Seite ohne JS leer. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding-inline: 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn-primary { background: var(--brand); color: #06130A; }
.btn-primary:hover {
  box-shadow: 0 0 0 1px var(--l5), 0 6px 26px -6px var(--l5);
}
.btn-primary:active { transform: scale(0.975); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover {
  border-color: var(--neon); color: var(--neon);
  box-shadow: var(--edge-rest), inset 0 0 22px -14px var(--neon);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 12, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--container); margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
}

.lockup {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
/* Das Logo ist eine Bilddatei mit festem Seitenverhältnis. Nur die Höhe wird
   gesetzt, die Breite folgt – so bleibt es in jeder Zeile gleich hoch.

   Im Markup steht assets/logo-dark.png, nicht logo.png. Im Original ist der
   Einkaufskorb schwarz und ragt über den grünen Fleck hinaus, ebenso das M und
   das T von MARKET – auf dem fast schwarzen Seitenhintergrund fällt das weg.
   In logo-dark.png ist dieses Schwarz durch --cream ersetzt, Grün und Weiß
   sind unverändert. logo.png ist das freigestellte Original für hellen Grund,
   logo-original.jpg die unbearbeitete Datei vom Inhaber. */
.lockup-logo {
  height: 46px; width: auto; display: block; flex-shrink: 0;
}
.lockup--small .lockup-logo { height: 38px; }

.site-nav { display: flex; gap: var(--s3); font-weight: 500; font-size: 0.94rem; }
.site-nav a {
  text-decoration: none; color: var(--text-mute);
  padding-block: 6px; border-bottom: 1.5px solid transparent;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.site-nav a:hover { color: var(--neon); border-bottom-color: var(--neon); }

/* Schmale Fenster: die Navigation rutscht in eine zweite Zeile, statt wie
   vorher ganz zu verschwinden. Vier kurze Ziele passen auch auf 320 px –
   ein Burger-Menü wäre dafür zu viel Mechanik. */
@media (max-width: 859px) {
  .header-inner { flex-wrap: wrap; row-gap: 4px; padding-block: 9px; }
  .site-nav {
    order: 3; width: 100%;
    justify-content: space-between; gap: var(--s1);
    padding-top: 2px;
    border-top: 1px solid var(--line-soft);
    font-size: 0.85rem;
  }
  /* Tippfläche auf ~36 px bringen, ohne die Kopfzeile aufzublähen */
  .site-nav a { padding-block: 9px; }
}

/* ---------- Social-Knöpfe im Header ----------
   Nur Symbole, absichtlich in der Neonfarbe der Seite statt in den
   Markenfarben – ein Instagram-Verlauf und das TikTok-Cyan/Magenta würden
   im dunklen Grün wie Fremdkörper sitzen. */
.header-actions { display: flex; align-items: center; gap: var(--s1); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--text-mute);
  border: 1px solid var(--line);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover {
  color: var(--neon); border-color: var(--neon);
  box-shadow: var(--edge-rest);
}

/* Nachbau des OPEN-Neonschilds am Eingang: violett leuchtender Rahmen,
   pinkrote Röhrenschrift */
.open-signet {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 0.76rem; white-space: nowrap;
  border: 1px solid rgba(138, 77, 255, 0.85);
  background: rgba(52, 18, 74, 0.35);
  box-shadow:
    0 0 14px rgba(138, 77, 255, 0.5),
    inset 0 0 12px rgba(138, 77, 255, 0.28);
}
.open-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 9px 1px rgba(255, 59, 107, 0.95);
  animation: breathe 3s ease-in-out infinite;
  flex-shrink: 0;
}
.open-word {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.14em;
  color: #FF6E93;
  text-shadow:
    0 0 5px rgba(255, 59, 107, 0.95),
    0 0 14px rgba(255, 59, 107, 0.65),
    0 0 26px rgba(138, 77, 255, 0.5);
}
@keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Logo, zwei Social-Knöpfe und das OPEN-Signet passen zusammen nicht in eine
   Zeile – bei 320 px bräuchte es eine dritte und der Kopf wäre 137 px hoch.
   Das Signet weicht: „durchgehend offen“ steht im Hero, in den Kacheln und
   beim Standort noch einmal, die Profile stehen oben sonst nirgends.
   Muss NACH der .open-signet-Regel stehen – gleiche Spezifität, und eine
   Media Query erhöht sie nicht. */
@media (max-width: 859px) {
  .open-signet { display: none; }
}

@media (max-width: 620px) {
  .lockup-logo { height: 38px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--container); margin-inline: auto;
  padding: var(--s5) var(--gutter);
  display: grid; gap: var(--s5); align-items: center;
}
.hero-copy { position: relative; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.7rem, 9vw, 4.7rem);
  line-height: 0.97;
  letter-spacing: -0.025em;
  margin-bottom: var(--s3);
}
.hero-title-accent {
  color: var(--neon);
  text-shadow: 0 0 34px var(--l4);
}
.hero-sub {
  max-width: 46ch; font-size: 1.08rem;
  color: var(--text-mute); margin-bottom: var(--s3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s2); }
/* Auf dem Handy stehen die beiden Knöpfe untereinander – dann auf gleiche
   Breite ziehen, sonst franst die Kante aus. */
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
}
.hero-meta {
  margin-top: var(--s3); font-size: 0.8rem;
  color: var(--text-faint); letter-spacing: 0.04em;
}
.hero-photo {
  position: relative; justify-self: center;
  width: min(100%, 540px);
}
.hero-photo .photo { aspect-ratio: 3 / 2; }
/* Tagaufnahme leicht abdunkeln und ins Seitenschwarz auslaufen lassen,
   damit sie nicht als heller Block im dunklen Layout steht. */
.hero-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 12, 9, 0.3), transparent 30%),
    radial-gradient(120% 95% at 50% 45%, transparent 42%, rgba(6, 12, 9, 0.55) 100%);
}
.hero-photo-cap {
  position: relative; z-index: 2;
  padding: 10px 14px;
  font-size: 0.73rem; letter-spacing: 0.04em;
  color: var(--text-faint);
  background: rgba(8, 8, 8, 0.72);
  border-top: 1px solid var(--l2);
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.02fr 0.98fr; padding-block: var(--s6); }
  .hero-photo { justify-self: end; width: 100%; max-width: 560px; }
}

/* ---------- Auf einen Blick ---------- */
.usp-list { display: grid; gap: var(--s3); }
.usp-item {
  position: relative;
  padding: var(--s3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--l1), transparent 60%), var(--surface-2);
  border: 1px solid var(--line-soft);
  box-shadow: var(--glow-inset);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.usp-item::before {
  content: '';
  position: absolute; top: 0; left: var(--s3); right: var(--s3); height: 1.5px;
  background: linear-gradient(90deg, var(--neon), transparent);
  box-shadow: var(--glow-line);
  opacity: 0.55;
  transition: opacity 0.25s var(--ease);
}
.usp-item:hover {
  border-color: var(--l4);
  box-shadow: var(--edge-lit), var(--glow-inset);
  transform: translateY(-2px);
}
.usp-item:hover::before { opacity: 1; }
.usp-icon {
  width: 28px; height: 28px; color: var(--neon); margin-bottom: var(--s2);
  filter: drop-shadow(0 0 8px var(--l5));
}
.usp-title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; margin-bottom: 6px; }
.usp-text { color: var(--text-mute); font-size: 0.95rem; max-width: 34ch; }

@media (min-width: 780px) {
  .usp-list { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Bezahlen ---------- */
.pay { display: grid; gap: var(--s4); align-items: start; }

/* Akzeptanz-Symbole auf hellen Kacheln – so hängen sie auch am Terminal.
   Die Marken-SVGs sind nachgezeichnete Akzeptanzmarken, keine Originaldateien. */
.pay-brands { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-brand {
  width: 74px; height: 48px;
  display: grid; place-items: center;
  padding: 5px 8px;
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--l3), 0 0 24px -12px var(--l6);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.pay-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--l5), 0 0 32px -8px var(--l6);
}
.pay-brand svg { width: 100%; height: auto; }

.pay-cash {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  margin-top: var(--s3);
  color: var(--text-mute); font-size: 0.95rem; max-width: 46ch;
}
.pay-cash-tag {
  flex-shrink: 0;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--neon);
  border: 1px solid var(--l4);
  background: var(--l1);
}
.pay-extra {
  margin-top: var(--s2);
  font-size: 0.74rem; letter-spacing: 0.08em;
  color: var(--text-faint);
}

.pay-proofs { display: grid; gap: var(--s3); }
.pay-proofs .photo { aspect-ratio: 16 / 10; }

@media (min-width: 720px) {
  .pay-proofs { grid-template-columns: 1fr 1fr; }
}
/* 1fr/1fr statt einer schmaleren linken Spalte: sechs Akzeptanz-Kacheln
   brauchen ~500 px, sonst rutscht Bargeld allein in eine zweite Zeile. */
@media (min-width: 980px) {
  .pay { grid-template-columns: 1fr 1fr; gap: var(--s5); }
}

/* ---------- Sortiment: Oberkategorien ---------- */
.cat-grid { display: grid; gap: var(--s3); }
@media (min-width: 620px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--l2);
  box-shadow: var(--glow-inset);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.cat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--neon) 25%, var(--neon) 75%, transparent);
  opacity: 0.5;
  box-shadow: var(--glow-line);
  transition: opacity 0.25s var(--ease);
}
.cat:hover {
  transform: translateY(-3px);
  border-color: var(--l4);
  box-shadow: var(--edge-lit), var(--glow-inset);
}
.cat:hover::before { opacity: 1; }

.cat-media { margin: 0; }
.cat-media .photo { aspect-ratio: 4 / 3; }
.cat-body {
  padding: var(--s3);
  border-top: 1px solid var(--line-soft);
}
.cat-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.22rem; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cat-meta {
  font-size: 0.73rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--neon);
}

.cat-hint {
  margin-top: var(--s4);
  color: var(--text-mute); font-size: 0.95rem;
}
.cat-hint a {
  color: var(--neon); text-decoration: none;
  border-bottom: 1px solid var(--l4);
}
.cat-hint a:hover { border-bottom-color: var(--neon); text-shadow: 0 0 14px var(--l5); }

/* ---------- 18+ ---------- */
.restricted .section-head h2 { color: rgba(244, 244, 241, 0.9); }

/* Ausweiskontrolle: der Hinweis, der im Abschnitt am meisten zählt, deshalb
   als eigener Kasten und nicht als weiterer Fließtext. */
.age-check {
  display: flex; align-items: flex-start; gap: var(--s2);
  margin-bottom: var(--s4);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius);
  border: 1px solid var(--l3);
  background: var(--surface);
  box-shadow: var(--glow-inset);
  font-size: 0.95rem; color: var(--text-mute);
  max-width: 62ch;
}
.age-check svg {
  width: 26px; height: 26px; flex-shrink: 0;
  color: var(--neon);
  filter: drop-shadow(0 0 8px var(--l4));
}
.age-check strong { color: var(--text); font-weight: 600; }

.restricted-inner { display: grid; gap: var(--s4); align-items: start; }
.restricted-media .photo { aspect-ratio: 4 / 3; }

.restricted-list { display: grid; gap: var(--s3); }
.restricted-list li {
  padding-left: var(--s3);
  border-left: 2px solid var(--line);
  transition: border-color 0.25s var(--ease);
}
.restricted-list li:hover { border-left-color: var(--l4); }
.restricted-list h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; margin-bottom: 5px;
}
.restricted-list p { color: var(--text-mute); font-size: 0.95rem; max-width: 46ch; }

@media (min-width: 860px) {
  .restricted-inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--s5); }
}

/* ---------- Ablauf ---------- */
.steps { display: grid; gap: var(--s4); }
.step {
  position: relative;
  border-top: 1px solid var(--l3);
  padding-top: var(--s2);
}
.step::before {
  content: '';
  position: absolute; top: -1px; left: 0; width: 46px; height: 2px;
  background: var(--neon); box-shadow: var(--glow-line);
}
.step-photo { margin-top: var(--s3); }
.step-photo .photo { aspect-ratio: 16 / 10; }
.step-num {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--neon); margin-bottom: 8px;
}
.step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; margin-bottom: 8px;
}
.step p { color: var(--text-mute); max-width: 42ch; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- FAQ ----------
   Aufklappen macht das <details>-Element von sich aus. Der Marker wird
   ausgeblendet und durch ein eigenes Plus-Zeichen ersetzt, das sich im
   offenen Zustand zum Minus dreht. */
.faq-list { display: grid; gap: var(--s2); max-width: 74ch; }

.faq-item {
  border-top: 1px solid var(--line);
  transition: border-color 0.25s var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item[open], .faq-item:hover { border-top-color: var(--l4); }

.faq-item summary {
  display: flex; align-items: baseline; gap: var(--s2);
  padding: var(--s2) 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--neon); outline-offset: 3px;
}

.faq-item summary h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem; line-height: 1.3;
  flex: 1;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.25rem; line-height: 1;
  color: var(--neon);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { content: '–'; }

.faq-answer {
  padding-bottom: var(--s3);
}
.faq-answer p {
  color: var(--text-mute); font-size: 0.95rem;
  max-width: 62ch;
}

/* ---------- Standort ---------- */
.standort-inner { display: grid; gap: var(--s5); align-items: center; }
.standort-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.85rem, 4.6vw, 2.6rem);
  line-height: 1.07; letter-spacing: -0.02em; margin-bottom: var(--s2);
}
.standort-text { color: var(--text-mute); max-width: 44ch; }

.contact-list {
  margin: var(--s3) 0 var(--s2);
  display: grid; gap: var(--s2);
  border-top: 1px solid var(--line-soft);
  padding-top: var(--s3);
}
.contact-list dt {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 3px;
}
.contact-list dd { font-size: 1rem; }
/* Die Telefonnummer ist auf dem Handy ein Anruf-Link und damit die
   wichtigste Schaltfläche im Abschnitt – entsprechend grosse Tippfläche. */
.contact-list a {
  display: inline-flex; align-items: center;
  min-height: 44px;
  color: var(--neon); text-decoration: none;
  border-bottom: 1px solid var(--l4);
  transition: text-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.contact-list a:hover { border-bottom-color: var(--neon); text-shadow: 0 0 14px var(--l5); }

.standort-copy .btn { margin-top: var(--s3); }

/* Kartenbild als Link. Liegt lokal, lädt nichts von Dritten – erst der
   Klick führt zu Google Maps. */
.standort-map {
  position: relative; display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--l3);
  box-shadow: var(--edge-rest);
  background: var(--surface);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.standort-map::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--neon) 25%, var(--neon) 75%, transparent);
  opacity: 0.7;
  box-shadow: var(--glow-line);
  pointer-events: none;
}
.standort-map .photo { aspect-ratio: 3 / 2; }
.standort-map:hover { border-color: var(--l4); box-shadow: var(--edge-lit); }

/* Schaltfläche im Bild – macht sichtbar, dass der Klick weiterführt */
.map-cta {
  position: absolute; z-index: 2;
  left: var(--s2); bottom: var(--s2);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--brand); color: #06130A;
  font-size: 0.86rem; font-weight: 600;
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.8);
  transition: box-shadow 0.25s var(--ease);
}
.map-cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.standort-map:hover .map-cta { box-shadow: 0 0 0 1px var(--l5), 0 6px 24px -6px var(--l5); }

.map-credit {
  margin-top: var(--s1);
  font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--text-faint);
}

@media (min-width: 880px) {
  .standort-inner { grid-template-columns: 0.9fr 1.1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(6, 10, 8, 0.72);
}
.footer-inner {
  padding-block: var(--s4);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s2) var(--s4);
}
.footer-brand { display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; }
.footer-address { font-size: 0.8rem; color: var(--text-faint); }
.footer-note { color: var(--text-mute); font-size: 0.86rem; flex: 1 1 260px; max-width: 52ch; }
/* Eigene Zeile am Fuß des Footers statt als vierte Spalte – sonst hängen
   die Links alleine unter den anderen Blöcken. */
.footer-bottom {
  flex: 1 0 100%;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--s1) var(--s3);
  padding-top: var(--s1);
  border-top: 1px solid var(--line-soft);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s3); }

.footer-social { display: flex; flex-wrap: wrap; gap: var(--s1); }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 14px 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-mute); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.footer-social svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-social a:hover {
  color: var(--neon); border-color: var(--neon);
  box-shadow: var(--edge-rest);
}
.footer-legal a {
  display: inline-flex; align-items: center; min-height: 40px;
  font-size: 0.82rem; color: var(--text-mute); text-decoration: none;
  border-bottom: 1px solid var(--l3);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.footer-legal a:hover { color: var(--neon); border-bottom-color: var(--neon); }

.footer-pay {
  display: flex; align-items: baseline; gap: 6px 10px; flex-wrap: wrap;
  flex: 1 1 280px; min-width: 0;
  font-size: 0.8rem;
}
.footer-pay-label {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-faint);
}
.footer-pay-link {
  color: var(--text-mute); text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--l3);
  transition: color 0.18s var(--ease), text-shadow 0.18s var(--ease);
}
.footer-pay-link:hover { color: var(--neon); text-shadow: 0 0 14px var(--l4); }

/* ==========================================================================
   Aktion des Monats — Banner unter dem Hero
   Inhalte kommen aus aktion.js; hier steht nur das Aussehen.
   ========================================================================== */
.promo { position: relative; padding-block: var(--s5); }
.promo[hidden] { display: none; }
.promo-inner { display: grid; gap: var(--s3); align-items: center; }

.promo-media { position: relative; }
/* 3:2 statt 4:3 – das Aktionsbild ist ein breites Produktfoto, ein engerer
   Ausschnitt würde die äußeren Geräte abschneiden. */
.promo-media .photo { aspect-ratio: 3 / 2; }

/* Ribbon quer über die Bildecke – als Aktion erkennbar, bevor man liest */
.promo-ribbon {
  position: absolute; z-index: 3;
  top: 20px; left: -52px;
  width: 190px; padding: 7px 0;
  transform: rotate(-38deg);
  text-align: center;
  background: var(--brand);
  color: #06130A;
  font-family: var(--font-display); font-weight: 900;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 0 26px var(--l5);
}

.promo-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; margin-bottom: var(--s2);
  border-radius: 999px;
  border: 1px solid var(--l4);
  background: var(--l1);
  box-shadow: var(--edge-rest);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--neon);
}
.promo-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px 1px var(--l6);
  animation: breathe 3s ease-in-out infinite;
}
.promo-month {
  color: var(--text-faint);
  letter-spacing: 0.08em; text-transform: none; font-weight: 500;
}
.promo-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 4.4vw, 2.35rem);
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}
.promo-text { color: var(--text-mute); max-width: 46ch; margin-bottom: var(--s3); }
.promo-cta[hidden] { display: none; }
.promo-legal {
  margin-top: var(--s2);
  font-family: var(--font-mono);
  font-size: 0.73rem; line-height: 1.5;
  color: var(--text-faint); max-width: 48ch;
}
.promo-legal[hidden] { display: none; }

@media (min-width: 880px) {
  .promo-inner { grid-template-columns: 0.85fr 1.15fr; gap: var(--s5); }
}

/* ==========================================================================
   Rechtstexte — Impressum
   Reine Lesetypografie: eine schmale Spalte, keine Leuchteffekte außer der
   Haarlinie zwischen den Abschnitten. Der Rest der Seite darf glühen,
   ein Impressum soll man lesen können.
   ========================================================================== */
.legal { padding-block: var(--s5) var(--s6); }
.legal .wrap { max-width: 760px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.05; letter-spacing: -0.02em;
}
.legal p { color: var(--text-mute); }
.legal a { color: var(--neon); text-decoration: none; border-bottom: 1px solid var(--l4); }
.legal a:hover { border-bottom-color: var(--neon); text-shadow: 0 0 14px var(--l5); }
.legal code {
  font-family: var(--font-mono); font-size: 0.88em;
  color: var(--text); background: var(--surface-2);
  padding: 1px 5px; border-radius: 4px;
}

/* --- Entwurfs-Werkzeuge für Rechtstexte ---------------------------------
   Im Impressum aktuell nicht mehr in Gebrauch: dort ist alles ausgefüllt.
   Bewusst stehen gelassen für die Datenschutzerklärung – dort markieren
   .draft-note, .ph und .ph-hint wieder die offenen Stellen. Wenn diese
   Seite fertig ist und keine weitere folgt, können die drei Blöcke raus. */

/* Entwurfshinweis – fällt weg, sobald alle Platzhalter gefüllt sind */
.draft-note {
  margin-bottom: var(--s4);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius);
  border: 1px solid rgba(246, 190, 44, 0.4);
  background: rgba(246, 190, 44, 0.07);
  color: rgba(244, 244, 241, 0.86) !important;
  font-size: 0.92rem;
}
.draft-note strong { color: #F6BE2C; }

.legal-block {
  padding-top: var(--s4);
  margin-top: var(--s4);
  border-top: 1px solid var(--line-soft);
}
.legal-block h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.22rem; letter-spacing: -0.01em;
  margin-bottom: var(--s2);
}
.legal-block p + p { margin-top: var(--s2); }
.legal-lead { margin-bottom: var(--s2); }

.legal-list { display: grid; gap: var(--s3); }
.legal-list dt {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 5px;
}
.legal-list dd { color: var(--text-mute); }

/* Aufzählungen in der Datenschutzerklärung. Der Punkt wird selbst gesetzt
   statt über list-style, damit er die Markenfarbe tragen kann. */
.legal-bullets {
  display: grid; gap: 8px;
  margin: var(--s2) 0;
  list-style: none;
}
.legal-bullets li {
  position: relative;
  padding-left: var(--s3);
  color: var(--text-mute);
  font-size: 0.95rem;
}
.legal-bullets li::before {
  content: '';
  position: absolute; left: 2px; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--neon);
}

/* Offene Stelle: bewusst auffällig, damit nichts davon versehentlich
   online geht. Gelb statt Neongrün – Grün ist hier die Markenfarbe und
   würde wie ein normales Element aussehen. */
.ph {
  display: inline-block;
  padding: 2px 9px;
  border: 1px dashed rgba(246, 190, 44, 0.55);
  border-radius: 6px;
  background: rgba(246, 190, 44, 0.08);
  color: rgba(246, 190, 44, 0.92);
  font-family: var(--font-mono);
  font-size: 0.82rem; line-height: 1.5;
}
.ph-hint {
  display: block;
  margin-top: 7px;
  font-size: 0.8rem; line-height: 1.5;
  color: var(--text-faint);
}
p.ph-hint { margin-top: var(--s1); }

.legal-back { margin-top: var(--s5); }
