/* ==========================================================================
   pages.css – CalitO eSmoKe
   Sektions-/Seiten-spezifische Komponenten (Hero, Karten, Galerien …).
   Tokens & globale Bausteine: tokens.css / main.css.
   ========================================================================== */

/* ==========================================================================
   HERO (index.html) – Editorial/Industrial: Übergroße Typo, Mono-Meta,
   Koordinaten-Rail, roter Tropfen als Satzzeichen. Dunkel, clean, markant.
   ========================================================================== */
.hero {
  position: relative;
  background: var(--surface-dark);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(2.5rem, 1.5rem + 7vw, 6rem) 0;
}

/* atmosphärische Tiefe: roter Glow oben rechts + dunkle Vignette unten */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 88% -5%, rgba(164, 17, 17, 0.30), transparent 60%),
    radial-gradient(70% 60% at 0% 105%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 0;
}

/* Designter Rauch-Hintergrund (kein Video): tiefschwarz + driftender Nebel/Rauch
   + roter Glow + feine Körnung. Alles per Code, gestochen scharf. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 95% at 88% -12%, rgba(164,17,17,0.30), transparent 55%),
    radial-gradient(90% 80% at 6% 112%, rgba(255,255,255,0.05), transparent 55%),
    #111112;
}
/* weiche, langsam driftende Nebelschwaden (zwei Ebenen für Tiefe) */
.hero__fog {
  position: absolute;
  inset: -25%;
  will-change: transform;
}
.hero__fog--a {
  background:
    radial-gradient(40% 34% at 32% 42%, rgba(190,192,200,0.11), transparent 62%),
    radial-gradient(34% 30% at 68% 58%, rgba(210,212,220,0.08), transparent 62%);
  animation: heroFogA 26s ease-in-out infinite alternate;
}
.hero__fog--b {
  background:
    radial-gradient(46% 38% at 58% 30%, rgba(150,152,160,0.10), transparent 60%),
    radial-gradient(30% 26% at 18% 74%, rgba(180,182,190,0.07), transparent 62%);
  animation: heroFogB 34s ease-in-out infinite alternate;
}
@keyframes heroFogA {
  from { transform: translate3d(-6%, -3%, 0) scale(1.05); }
  to   { transform: translate3d(7%, 4%, 0) scale(1.2); }
}
@keyframes heroFogB {
  from { transform: translate3d(5%, 3%, 0) scale(1.14); }
  to   { transform: translate3d(-7%, -4%, 0) scale(1.0); }
}
/* organische Rauch-Textur (SVG-Turbulenz), driftet via background-position –
   läuft zuverlässig auch auf iOS-Safari (transform + mix-blend-mode fror dort ein).
   Zwei gegenläufige Ebenen für volumetrischen, lebendigen Rauch. */
.hero__smoke {
  position: absolute;
  inset: 0;
  background: url(../img/hero-smoke.svg) 0 0 / 820px 820px repeat;
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: heroSmoke 42s linear infinite;
}
/* Versatz = ganzes Vielfaches der Kachel -> nahtloser Endlos-Loop */
@keyframes heroSmoke {
  from { background-position: 0 0; }
  to   { background-position: -820px -820px; }
}
.hero__smoke--b {
  background-size: 1180px 1180px;
  opacity: 0.30;
  animation: heroSmokeB 63s linear infinite;
}
@keyframes heroSmokeB {
  from { background-position: 0 0; }
  to   { background-position: 1180px -1180px; }
}
/* feine Film-Körnung */
.hero__grain {
  position: absolute;
  inset: 0;
  background: url(../img/hero-grain.svg) 0 0 / 170px 170px repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  animation: heroGrain 0.7s steps(3) infinite;
}
@keyframes heroGrain {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-2%, 1%); }
  66%  { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,18,0.62), rgba(17,17,18,0.14) 58%, rgba(17,17,18,0.38)),
    linear-gradient(180deg, rgba(17,17,18,0.14), transparent 42%, rgba(17,17,18,0.66));
}
/* ---- MOBIL / TOUCH: leichte Variante (Performance) -----------------------
   Auf Handy/Tablet ist die Desktop-Fassung zu teuer: zwei vollflächige
   Rauch-Ebenen mit background-position-Animation (auf iOS kein Compositor-
   Pfad -> Repaint jeden Frame) PLUS mix-blend-mode und ein flackerndes Grain
   mit Blend -> spürbares Ruckeln (iPhone/iPad). Hier deshalb:
   - nur EINE Rauch-Ebene, animiert per transform (GPU-komposit), OHNE Blend
     (transform + mix-blend-mode friert auf iOS ein – ohne Blend läuft's rund)
   - Ebene ist um genau eine Kachel (820px) größer und wandert um eine Kachel
     -> nahtloser Endlos-Loop
   - zweite Rauch-Ebene aus, Grain statisch und ohne Blend, Nebel kleiner.
   Optisch nah an Desktop, aber flüssig. Desktop bleibt unverändert. */
@media (pointer: coarse), (hover: none), (max-width: 900px) {
  .hero__smoke {
    inset: auto;
    top: 0;
    left: 0;
    width: calc(100% + 820px);
    height: calc(100% + 820px);
    mix-blend-mode: normal;
    opacity: 0.34;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: heroSmokeTouch 42s linear infinite;
  }
  @keyframes heroSmokeTouch {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-820px, -820px, 0); }
  }
  .hero__smoke--b { display: none; }
  .hero__grain {
    animation: none;
    mix-blend-mode: normal;
    opacity: 0.035;
    transform: none;
  }
  .hero__fog { inset: -12%; }
  @keyframes heroFogA {
    from { transform: translate3d(-4%, -2%, 0) scale(1.02); }
    to   { transform: translate3d(4%, 3%, 0) scale(1.1); }
  }
  @keyframes heroFogB {
    from { transform: translate3d(3%, 2%, 0) scale(1.08); }
    to   { transform: translate3d(-4%, -3%, 0) scale(1.0); }
  }
}

/* Reduzierte Bewegung: keine Animation, ruhiger Rauch-Hintergrund bleibt */
@media (prefers-reduced-motion: reduce) {
  .hero__fog, .hero__smoke, .hero__grain { animation: none; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  padding-bottom: var(--section-y);
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* --- Meta-Zeile oben: Logo-Badge + Statuszeile ------------------------- */
.hero__top {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-bottom: var(--space-7);
  margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--line-dark);
}
.hero__status {
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__status .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(164,17,17,0.6);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(164,17,17,0.55); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(164,17,17,0); }
}

/* --- Headline-Block ---------------------------------------------------- */
.hero__main { min-width: 0; }

.hero__title {
  font-size: var(--fs-mega);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-6);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
/* eingerückte zweite/dritte Zeile = treppenartiger Editorial-Versatz.
   „zum" beginnt etwa mittig unter dem „e" von „Beratung". */
.hero__title .line--indent { padding-left: 0.62em; }
.hero__title .text-accent { color: var(--red); }
/* Wort mit angehängtem Tropfen-Punkt (Logo-Motiv) */
.hero__title .drop-end {
  position: relative;
  white-space: nowrap;
}
.hero__title .drop-end .drop {
  width: 0.18em; height: 0.18em;
  margin-left: 0.12em;
}

.hero__lead {
  font-size: var(--fs-500);
  color: var(--grey-light);
  max-width: 48ch;
  margin-bottom: var(--space-7);
}

/* Alle vier Hero-Elemente (CTA, 18+-Badge, Online-Shop, Hood) im 2×2-Raster,
   exakt gleich breit und – dank align-items:stretch – gleich hoch. */
.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
  max-width: 660px;
  margin-bottom: var(--space-6);
}
.hero__actions > .btn,
.hero__actions > .badge-18 { width: 100%; }
.hero__actions > .badge-18 { justify-content: center; }
@media (max-width: 560px) {
  .hero__actions { grid-template-columns: 1fr; }
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  color: var(--grey-light);
}
.hero__note .sep { color: var(--red); }

/* --- Koordinaten-Rail (rechts, vertikal): die drei Filialen ------------ */
.hero__rail {
  display: none;
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}
@media (min-width: 960px) {
  .hero__rail { display: grid; gap: var(--space-5); justify-items: end; text-align: right; }
}
.hero__rail .rail-item {
  display: grid;
  gap: 2px;
  padding-right: var(--space-4);
  border-right: 2px solid var(--line-dark);
  transition: border-color var(--dur) var(--ease);
}
.hero__rail .rail-item:hover { border-color: var(--red); }
.hero__rail .rail-no { color: var(--red); }
.hero__rail .rail-city {
  font-family: var(--font-display);
  font-size: var(--fs-600);
  color: var(--white);
  letter-spacing: 0.02em;
}

@media (min-width: 960px) {
  .hero__title { font-size: clamp(4rem, 1rem + 10vw, 9rem); }
}

/* ==========================================================================
   PAGE-HERO (Unterseiten): kompakter, gleiche Sprache wie der Start-Hero
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--surface-dark);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3rem, 2rem + 6vw, 6rem) clamp(2.5rem, 2rem + 4vw, 4.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 92% -10%, rgba(164,17,17,0.28), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 60rem; }

/* großer, blasser Graffiti-Schriftzug als Hintergrund-Tag */
.page-hero__tag {
  position: absolute;
  right: clamp(0.75rem, 3vw, 2.5rem);
  bottom: clamp(0.5rem, 2vw, 1.25rem);
  z-index: 0;
  font-family: var(--font-display);
  /* gedeckelt, damit auch das längste Wort ("Datenschutz") komplett ins
     Bild passt und nicht von der Sektionskante abgeschnitten wird */
  font-size: clamp(2.5rem, 12vw, 7.5rem);
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}
.page-hero__title { font-size: var(--fs-900); line-height: 1.22; margin-block: var(--space-4) var(--space-5); }
.page-hero__title .text-accent { color: var(--red); }
/* Marker-Wörter im Titel brauchen etwas Luft, damit der Spray-Hintergrund
   nicht in die Zeile darüber läuft */
.page-hero__title .mark { color: var(--red); }
.page-hero__lead { font-size: var(--fs-500); color: var(--grey-light); max-width: 52ch; }

/* Breadcrumb (mono) */
.crumb {
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.crumb a:hover { color: var(--white); }
.crumb .sep { color: var(--red); margin-inline: 0.4em; }

/* ==========================================================================
   STANDORTE-TEASER / Filial-Karten
   ========================================================================== */
.loc-grid { display: grid; gap: var(--space-6); }
@media (min-width: 720px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }

.loc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.loc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.loc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.loc-card:hover .loc-card__media img { transform: scale(1.05); }
.loc-card__no {
  position: absolute;
  top: var(--space-3); left: var(--space-3);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-300);
  color: var(--white);
  background: var(--red);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
}
.loc-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.loc-card__city { font-size: var(--fs-700); }
.loc-card__meta { font-size: var(--fs-400); color: var(--grey); display: grid; gap: var(--space-1); }
.loc-card__meta a:hover { color: var(--red); }
/* Feiertags-/Schließtage-Hinweis unter dem Teaser-Lead */
.note-hours { margin-top: var(--space-7); font-size: var(--fs-300); color: var(--grey); max-width: 66ch; margin-inline: auto; text-align: center; }
.loc-card__hours {
  font-size: var(--fs-300);
  color: var(--ink);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-light);
}
.loc-card__foot { margin-top: auto; padding-top: var(--space-4); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  color: var(--red);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* roter Hover-Overlay auf Filial-Karten */
.loc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(126, 13, 13, 0.0));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.loc-card:hover .loc-card__media::after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(22,22,22,0) 35%, rgba(164,17,17,0.55));
}
.loc-card__view {
  position: absolute;
  left: var(--space-3); bottom: var(--space-3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.loc-card:hover .loc-card__view { opacity: 1; transform: translateY(0); }
.loc-card__view svg { width: 1em; height: 1em; }

/* ==========================================================================
   STATS-BAND – große Mono-Zahlen mit Count-up
   ========================================================================== */
.stats {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: var(--space-4) var(--space-2); position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line-dark);
}
@media (max-width: 799px) { .stat:nth-child(odd)::before { display: none; } }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  line-height: 1;
  color: var(--white);
}
.stat__num .unit { color: var(--red); }
.stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: var(--space-2);
}

/* ==========================================================================
   MANIFEST / STATEMENT – großer typografischer Scroll-Moment
   ========================================================================== */
.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
  color: var(--white);
  padding-block: clamp(5rem, 3rem + 9vw, 10rem);
}
.manifesto__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.manifesto__eyebrow { justify-content: center; margin-bottom: var(--space-5); }
.manifesto__text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 1rem + 6.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
}
.manifesto__text .o { color: var(--red); }
.manifesto__sub {
  margin-top: var(--space-5);
  font-size: var(--fs-500);
  color: var(--grey-light);
}
/* großes Deko-Wort als Tag in der unteren rechten Ecke des dunklen Bereichs */
.manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.manifesto__bg span {
  position: absolute;
  right: clamp(0.75rem, 3vw, 2.5rem);
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  font-family: var(--font-display);
  /* in die Ecke gesetzt, gedeckelt – komplett im Bild, nicht abgeschnitten */
  font-size: clamp(2.75rem, 13vw, 9rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  max-width: 100%;
}

/* ==========================================================================
   FEATURE-LISTE ("Warum CalitO") – nummeriert, editorial
   ========================================================================== */
.feature-grid { display: grid; gap: var(--space-6); }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-8); } }

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4) var(--space-5);
  padding-block: var(--space-5);
  border-top: 1px solid var(--line-dark);
}
.feature__no {
  font-family: var(--font-mono);
  font-size: var(--fs-500);
  color: var(--red);
  font-weight: 700;
  line-height: 1;
}
.feature__title { font-size: var(--fs-600); margin-bottom: var(--space-2); }
.feature__text { color: var(--grey-light); font-size: var(--fs-400); }

/* Helle Sektionen: Trennlinie und Text anpassen (Kontrast) */
.section--light .feature,
.section--white .feature { border-top-color: var(--line-light); }
.section--light .feature__text,
.section--white .feature__text { color: var(--grey); }

/* ==========================================================================
   SORTIMENT – sachliche Kategorie-Karten (KEINE Claims)
   ========================================================================== */
.cat-grid { display: grid; gap: var(--space-4); }
@media (min-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--space-5);
  min-height: 9.5rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.cat-card.is-active { border-color: var(--red); }
@media (hover: hover) {
  .cat-card:hover { border-color: var(--red); transform: translateY(-4px); }
}

/* Bild-Ebene: per Hover (Desktop) bzw. Tap (.is-active, Mobil) sichtbar */
.cat-card__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,0.45), rgba(22,22,22,0.82));
}
.cat-card:focus-visible .cat-card__img,
.cat-card.is-active .cat-card__img { opacity: 1; }
@media (hover: hover) {
  .cat-card:hover .cat-card__img { opacity: 1; }
}

.cat-card__no { font-family: var(--font-mono); font-size: var(--fs-300); color: var(--grey); transition: color var(--dur) var(--ease); }
.cat-card__name { font-size: var(--fs-600); margin-block: var(--space-2) var(--space-2); transition: color var(--dur) var(--ease); }
.cat-card__text { font-size: var(--fs-300); color: var(--grey); transition: color var(--dur) var(--ease); }

/* Textfarben umkehren, sobald das Bild erscheint */
.cat-card.is-active .cat-card__no { color: var(--red); }
.cat-card.is-active .cat-card__name { color: var(--white); }
.cat-card.is-active .cat-card__text { color: var(--grey-light); }
@media (hover: hover) {
  .cat-card:hover .cat-card__no { color: var(--red); }
  .cat-card:hover .cat-card__name { color: var(--white); }
  .cat-card:hover .cat-card__text { color: var(--grey-light); }
}

/* Hinweis nur auf Touch-Geräten (kein Hover) */
.cat-card__hint {
  display: none;
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--dur) var(--ease);
}
.cat-card.is-active .cat-card__hint { color: var(--grey-light); }
@media (hover: none) { .cat-card__hint { display: inline-block; } }
/* Einspaltige Touch-Ansicht: Bild folgt dem Scrollen -> „Tippen"-Hinweis weg. */
@media (hover: none) and (max-width: 559px) { .cat-card__hint { display: none; } }

.cat-card::after {
  content: "";
  position: absolute;
  left: var(--space-5); bottom: var(--space-4);
  width: 0; height: 3px;
  background: var(--red);
  transition: width var(--dur) var(--ease-out);
  z-index: 1;
}
.cat-card.is-active::after { width: 28px; }
@media (hover: hover) {
  .cat-card:hover::after { width: 28px; }
}

/* ==========================================================================
   TEASER-BAND (Bonuskarte) + CTA-BAND (Online-Shop)
   ========================================================================== */
.band {
  position: relative;
  overflow: hidden;
}
.band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 860px) {
  .band__inner { grid-template-columns: 1.3fr 1fr; gap: var(--space-8); }
  .band__inner--cta { grid-template-columns: 1fr auto; }
}
.band__title { font-size: var(--fs-800); margin-bottom: var(--space-4); }
.band__title .text-accent { color: var(--red); }
.band__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
@media (min-width: 860px) { .band__actions { justify-content: flex-end; } }

/* großer Outline-Schriftzug als Deko im CTA-Band */
.band__ghost {
  font-family: var(--font-display);
  /* vollständig sichtbar im Band, nicht über die Kante hinaus */
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.10);
  position: absolute;
  right: clamp(0.75rem, 3vw, 2.5rem);
  bottom: clamp(0.5rem, 2vw, 1.25rem);
  z-index: 0;
  white-space: nowrap;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   BEWERTUNGEN (Startseite) – echte Google-Rezensionen, sachlich/service-bezogen
   ========================================================================== */
.reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.stars {
  display: inline-flex;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: #f0b429; /* warmes Gold – klares Rating-Signal */
  line-height: 1;
}
.reviews__rating-label {
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.04em;
  color: var(--grey-light);
}

.review-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-top: var(--space-7);
}
@media (min-width: 600px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}
/* großes Anführungszeichen als dezente Deko */
.review::before {
  content: "\201C";
  position: absolute;
  top: 0.05em; right: var(--space-4);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.22;
  pointer-events: none;
}
.review .stars { font-size: 1rem; }
.review__text {
  margin: 0;
  font-size: var(--fs-400);
  line-height: 1.55;
  color: var(--offwhite);
}
.review__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
}
.review__avatar {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
}
.review__who { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.review__name { font-weight: 700; color: var(--white); }
.review__src {
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.03em;
  color: var(--grey-light);
}
.reviews__cta {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* roter Akzentstrich oben, der bei Hover/aktivem Zustand „aufzieht" */
.review::after {
  content: "";
  position: absolute;
  top: -1px; left: var(--space-5); right: var(--space-5);
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}

/* Lebendige Mikrointeraktionen nur auf echten Hover-Geräten */
@media (hover: hover) {
  .review {
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease),
                background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .review:hover {
    transform: translateY(-7px);
    border-color: rgba(164, 17, 17, 0.55);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.85);
  }
  .review:hover::after { transform: scaleX(1); }
  .review::before { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out); transform-origin: top right; }
  .review:hover::before { opacity: 0.42; transform: scale(1.12) rotate(-3deg); }
  .review__avatar { transition: transform 0.4s var(--ease-out); }
  .review:hover .review__avatar { transform: scale(1.08) rotate(-4deg); }
  .review .stars { transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease); transform-origin: left center; }
  .review:hover .stars { transform: scale(1.06); filter: drop-shadow(0 0 6px rgba(240, 180, 41, 0.5)); }
}

/* ==========================================================================
   GALERIE (standorte.html) – einfache responsive Foto-Galerie
   ========================================================================== */
.gallery {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--ink);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery figure:hover img { transform: scale(1.06); }
/* erstes Bild groß */
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ==========================================================================
   FILIAL-BLOCK (standorte.html): Kopf mit Adresse/Zeiten + Galerie
   ========================================================================== */
.branch { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Sticky-Header-Offset für alle per Nav angesprungenen Anker-Ziele
   (Sektionen auf service.html/informationen.html sowie aufklappbare Details),
   damit die Überschrift nicht unter dem Header verschwindet. */
section[id],
details[id],
figure[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }
.branch + .branch { margin-top: var(--section-y); }
.branch__head {
  display: grid;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
@media (min-width: 820px) { .branch__head { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.branch__title { font-size: var(--fs-800); }
.branch__title .idx { font-family: var(--font-mono); font-size: 0.5em; color: var(--red); vertical-align: middle; margin-right: 0.4em; }
.branch__info { display: grid; gap: var(--space-2); font-size: var(--fs-400); }
.branch__info a:hover { color: var(--red); }

/* Öffnungszeiten-Tabelle */
.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-400); }
.hours th, .hours td { text-align: left; padding: var(--space-2) 0; border-bottom: 1px solid var(--line-light); }
.hours th { font-weight: 600; color: var(--ink); white-space: nowrap; padding-right: var(--space-5); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.hours td { color: var(--grey); font-variant-numeric: tabular-nums; }
.section--dark .hours th, .section--dark .hours td { border-color: var(--line-dark); }
.section--dark .hours th { color: var(--white); }
.section--dark .hours td { color: var(--grey-light); }

/* ==========================================================================
   KARTEN-EMBED (Standorte) – eingebettete Google-Maps-Karte
   ========================================================================== */
.map-embed {
  position: relative;
  width: 100%;
  margin-block: var(--space-6) var(--space-7);
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--surface-dark);
}
@media (min-width: 600px) { .map-embed { min-height: 240px; } }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* DSGVO: Zustimmungs-Overlay – die Karte lädt erst nach Klick auf „Karte laden“. */
.map-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6);
  text-align: center;
  background: var(--surface-dark);
}
.map-consent__text {
  max-width: 44ch;
  font-size: var(--fs-300);
  color: var(--grey-light);
  margin: 0;
}
.map-embed.is-loaded .map-consent { display: none; }

/* ==========================================================================
   PROSE (Über uns / Service / Rechtstexte): angenehme Lesebreite
   ========================================================================== */
.prose { max-width: var(--container-narrow); }
.prose h2 { font-size: var(--fs-700); margin-top: var(--space-7); margin-bottom: var(--space-4); }
.prose h3 { font-size: var(--fs-600); margin-top: var(--space-6); margin-bottom: var(--space-3); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul:not([role="list"]) { margin: var(--space-4) 0; padding-left: 0; list-style: none; display: grid; gap: var(--space-3); }
.prose ul:not([role="list"]) li { position: relative; padding-left: 1.6em; color: var(--ink-soft); }
.prose ul:not([role="list"]) li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 0.5em; height: 0.5em;
  background: var(--red);
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
}
/* Link-Styling NICHT auf Buttons anwenden (sonst roter, unterstrichener Text
   auf rotem Button -> unlesbar). */
.prose a:not(.btn) { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* .prose auf dunklen Sektionen: helle Schrift statt ink-soft (sonst dunkel auf
   dunkel -> unlesbar, z. B. VdeH-Abschnitt auf ueber-uns.html). */
.section--ink .prose p,
.section--dark .prose p,
.section--ink .prose li,
.section--dark .prose li { color: rgba(255, 255, 255, 0.82); }
.section--ink .prose h2,
.section--dark .prose h2,
.section--ink .prose h3,
.section--dark .prose h3 { color: var(--white); }

/* Abschluss-Aussage (z. B. „Warum Fachgeschäft?" auf ueber-uns) – links-bündig
   wie der übrige Seiteninhalt, mit rotem Akzentstrich vor dem Schlusssatz. */
.closing-note {
  margin-top: var(--space-5);
  font-weight: 700;
  color: var(--ink);
}
.closing-note::before {
  content: "";
  display: block;
  width: 36px; height: 3px;
  margin: 0 0 var(--space-4);
  border-radius: 3px;
  background: var(--red);
}

/* Über-uns: Fließtext links-bündig im Standard-Container und etwas breiter,
   damit der Inhalt so breit wirkt wie auf den übrigen Seiten – statt einer
   schmalen, mittig schwebenden Lesespalte. Überschriften bleiben über dem Text. */
.prose--wide { max-width: 64rem; }
.about-block + .about-block { margin-top: var(--space-9); }
/* Eyebrow direkt über dem Titel: enger Abstand wie auf den anderen Seiten
   (sonst greift das große margin-top der .prose h2). */
.prose--wide .eyebrow { margin-bottom: var(--space-3); }
.prose--wide .eyebrow + h2 { margin-top: 0; }

/* Kleiner, dezenter Webdesigner-Credit (Impressum). */
.webcredit {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-300);
  color: var(--grey);
}
.webcredit img {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease);
}
.webcredit a:hover img,
.webcredit a:focus-visible img { opacity: 1; }

/* Info-Karten (Service: Mischen-Guide, Über uns: Garantie) */
.info-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: var(--space-5); }
.info-card h3 { font-size: var(--fs-600); margin-bottom: var(--space-3); }

/* großformatige Service-Infografik */
.figure-wide { margin: 0; }
.figure-wide img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  background: var(--white);
}
.figure-wide figcaption { margin-top: var(--space-3); font-size: var(--fs-300); color: var(--grey); }

/* VdeH-Mitglieds-Logo als heller Chip (Über CalitO + Footer-Markenblock) */
.vdeh-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  text-decoration: none;
  width: max-content;
  max-width: 100%;
}
.vdeh-logo img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.vdeh-logo:hover img { transform: translateY(-2px); box-shadow: var(--shadow-md, 0 10px 30px rgba(0,0,0,.18)); }
.vdeh-logo__label {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide, 0.08em);
  text-transform: uppercase;
  font-weight: 700;
}
/* Footer-Variante: kleiner, heller Label-Text auf dunklem Grund */
.footer__vdeh { margin-top: var(--space-5); }
.footer__vdeh img { width: 150px; }
.footer__vdeh .vdeh-logo__label { color: rgba(255, 255, 255, 0.55); }

/* ==========================================================================
   Geschenkgutschein-Abschnitt (#gutschein)
   ========================================================================== */
.gift { display: grid; gap: var(--space-7); align-items: start; }
@media (min-width: 900px) { .gift { grid-template-columns: 1.05fr 1fr; gap: var(--space-8); } }
.gift__media {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
/* roter Marken-Akzent oben */
.gift__media img { display: block; width: 100%; height: auto; }
.gift__body p { color: var(--ink-soft); }
.gift__note { font-size: var(--fs-300); color: var(--grey); }
.gift__body .btn { margin-top: var(--space-6); }

/* Chip-/Tag-Liste (einlösbar für …) */
.tag-list { list-style: none; margin: var(--space-5) 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag-list li {
  padding: 0.5em 1em;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  font-size: var(--fs-300);
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Kontakt-Karten (#kontakt)
   ========================================================================== */
.contact-grid { display: grid; gap: var(--space-5); }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card__icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(164, 17, 17, 0.08);
  color: var(--red);
  margin-bottom: var(--space-4);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: var(--fs-500); margin-bottom: var(--space-2); }
.contact-card p { color: var(--ink-soft); font-size: var(--fs-300); margin-bottom: var(--space-4); }
.contact-card .link-arrow { margin-top: auto; }
.contact-card__social { display: flex; gap: var(--space-3); margin-top: auto; }
.contact-card__social a {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.contact-card__social a:hover { border-color: var(--red); background: var(--red); color: #fff; }
.contact-card__social svg { width: 20px; height: 20px; fill: currentColor; }

.contact-cta { margin-top: var(--space-7); }

/* ==========================================================================
   PLATZHALTER-Block (Inhalt liefert Yannick) – klar markiert
   ========================================================================== */
.placeholder {
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  background: var(--red-tint);
  padding: var(--space-5) var(--space-6);
  color: var(--ink);
}
.placeholder__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-2);
}
.placeholder p { color: var(--ink-soft); }
.placeholder p + p { margin-top: var(--space-3); }
.section--dark .placeholder { color: var(--white); background: rgba(164,17,17,0.18); }
.section--dark .placeholder p { color: var(--grey-light); }

/* ==========================================================================
   FAQ – Accordions (native <details>/<summary>, ohne JS, zugänglich)
   ========================================================================== */
.faq-group { display: grid; gap: var(--space-7); }
.faq-cat__head { margin-bottom: var(--space-4); }
.faq-cat__title { font-size: var(--fs-700); }
.faq-cat__intro { color: var(--grey); margin-top: var(--space-2); max-width: 70ch; }

.faq-list { display: grid; gap: var(--space-3); }

.faq {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq[open] { box-shadow: var(--shadow-sm); }

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--fs-500);
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red); }
.faq__q:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

.faq__icon {
  flex: 0 0 auto;
  margin-left: auto;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateY(-50%);
}
.faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq[open] .faq__icon { transform: rotate(45deg); color: var(--red); }

.faq__a { padding: 0 var(--space-6) var(--space-5); }
.faq__a > :first-child { margin-top: 0; }
.faq__a h3 {
  font-size: var(--fs-500);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.faq__a p { color: var(--ink-soft); }
.faq__a p + p { margin-top: var(--space-3); }
.faq__a a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__a a:hover { color: var(--red-deep); }
.faq__a ul { margin: var(--space-3) 0; padding-left: 0; list-style: none; display: grid; gap: var(--space-2); }
.faq__a ul li { position: relative; padding-left: 1.5em; color: var(--ink-soft); }
.faq__a ul li::before {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--red);
}
.faq__a .faq__sub { font-weight: 700; color: var(--ink); margin-top: var(--space-4); }

@media (prefers-reduced-motion: no-preference) {
  .faq[open] .faq__a { animation: faqReveal var(--dur) var(--ease-out); }
  @keyframes faqReveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

