/* ============================================================
   leistungen.css — SCHICHT 03 (Leistungen + Slide-Over-Panel)
                    und SCHICHT 05 (Tradition)
   ============================================================ */

/* Kellenstrich inline nutzbar machen (base.css setzt svg auf block).
   Das <use>-SVG trägt selbst keine viewBox — ohne aspect-ratio fällt
   `height: auto` auf die SVG-Default-Höhe von 150px zurück. */
.leistungen .strich,
.tradition .strich,
.lpanel .strich {
  display: inline-block;
  aspect-ratio: 240 / 44;
  height: auto;
}

/* ============================================================
   1 — LEISTUNGEN
   ============================================================ */

.leistungen { background: var(--bg-1); }

/* ---------- Kopf ---------- */
.leistungen__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-m);
  margin-bottom: clamp(48px, 7vw, 96px);
}
.leistungen__title { margin-top: 0.15em; }
.leistungen__intro p { color: var(--fg-2); max-width: 46ch; }
.leistungen__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  margin-top: var(--space-m);
  text-transform: uppercase;
  color: var(--fg-muted);
}
.leistungen__hint .strich { flex: none; }

@media (min-width: 900px) {
  .leistungen__head {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
    column-gap: clamp(32px, 5vw, 80px);
  }
  .leistungen__head > .eyebrow { grid-column: 1 / -1; }
  .leistungen__intro { align-self: end; padding-bottom: 0.35em; }
}

/* ---------- Grid: asymmetrisch (2 + 3) ---------- */
.leistungen__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
}

@media (min-width: 700px) {
  .leistungen__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lcard--feature { grid-column: 1 / -1; }
  /* Sieben Karten nach der Feature-Karte: die letzte stuende sonst allein
     in einer halben Zeile. Sie bekommt die volle Breite. */
  .lcard:nth-child(8) { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .leistungen__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lcard:nth-child(1) { grid-column: 1 / 8;  }   /* Innenputz — groß */
  .lcard:nth-child(2) { grid-column: 8 / 13; }
  .lcard:nth-child(3) { grid-column: 1 / 5;  }
  .lcard:nth-child(4) { grid-column: 5 / 9;  }
  .lcard:nth-child(5) { grid-column: 9 / 13; }
  .lcard:nth-child(6) { grid-column: 1 / 5;  }
  .lcard:nth-child(7) { grid-column: 5 / 9;  }
  .lcard:nth-child(8) { grid-column: 9 / 13; }
}

/* ---------- Hinweis: das Angebot geht ueber die acht Karten hinaus ---------- */
.leistungen__more {
  display: flex;
  align-items: baseline;
  gap: var(--space-s);
  margin-top: clamp(28px, 3.4vw, 44px);
  max-width: 62ch;
  color: var(--fg-muted);
  font-size: var(--t-m);
}
.leistungen__more .strich {
  flex: none;
  width: 2.6rem;
  transform: translateY(0.15em);
}
.leistungen__more a {
  color: var(--fg-1);
  box-shadow: inset 0 -2px 0 var(--accent);
  white-space: nowrap; /* Aufforderung nie mitten im Satz umbrechen */
}
.leistungen__more a:hover { background: var(--accent); }

/* ---------- Karte ---------- */
.lcard {
  --lcard-ar: 3 / 2;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: var(--r-s);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Kellenstrich-Wipe über die gesamte Kartenfläche */
.lcard::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--accent-soft);
  clip-path: polygon(-15% 116%, -2% 101%, 0 101%, 0 101%, 0 101%, -15% 131%);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lcard__media {
  position: relative;
  z-index: 0;
  aspect-ratio: var(--lcard-ar);
  overflow: hidden;
  background: var(--bg-3);
}
.lcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lcard__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px) clamp(18px, 2vw, 26px);
}
.lcard__num {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.1em 0.3em;
  align-self: flex-start;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lcard__title {
  margin-top: 0.55em;
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  text-wrap: balance;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lcard__line {
  margin-top: 0.7em;
  font-size: var(--t-s);
  color: var(--fg-2);
  max-width: 34ch;
}
.lcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 40px);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-1);
}
.lcard__arrow {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Große Feature-Karte: Text darf atmen */
.lcard--feature .lcard__title { font-size: clamp(1.5rem, 2.6vw, 2.4rem); }
.lcard--feature .lcard__line  { font-size: var(--t-m); max-width: 38ch; }

/* Klickfläche über der gesamten Karte (Tastatur + Touch ≥ 44px) */
.lcard__hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: var(--r-s);
}
.lcard__hit:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }

/* Detail-Inhalt lebt im Markup (SEO), wird per JS ins Panel geklont */
.lcard__detail { display: none; }

/* Hover / Focus (nur Zeigergeräte) */
@media (hover: hover) and (pointer: fine) {
  .lcard:hover,
  .lcard:focus-within { box-shadow: inset 0 0 0 1px var(--line-strong); }
  .lcard:hover::after,
  .lcard:focus-within::after {
    clip-path: polygon(-15% -31%, 115% -31%, 131% 0%, 115% 131%, -2% 116%, -15% 131%);
  }
  .lcard:hover .lcard__media img,
  .lcard:focus-within .lcard__media img { transform: scale(1.04); }
  .lcard:hover .lcard__title,
  .lcard:focus-within .lcard__title { transform: translateX(5px); }
  .lcard:hover .lcard__num,
  .lcard:focus-within .lcard__num { background: var(--accent-bright); color: var(--fg-1); }
  .lcard:hover .lcard__arrow,
  .lcard:focus-within .lcard__arrow { transform: translateX(6px); }
}

/* Bild-Seitenverhältnisse je Breakpoint (kein Layout-Shift) */
@media (min-width: 700px) {
  .lcard { --lcard-ar: 4 / 3; }
  .lcard--feature { --lcard-ar: 16 / 9; }
}
@media (min-width: 1100px) {
  .lcard--feature { --lcard-ar: 16 / 11; }
  .lcard:nth-child(2) { --lcard-ar: 1 / 1; }
  .lcard:nth-child(n + 3) { --lcard-ar: 4 / 3; }
}

/* ---------- Mobil: gestapelte Karten straffen ----------
   Ziel: fünf Karten bleiben in einem Zug scrollbar. Flachere Bilder,
   das Nummern-Etikett wandert als Fläche in die Bildecke (spart eine
   ganze Zeile Höhe und sitzt fest an der Kante statt zu schweben). */
@media (max-width: 699px) {
  .leistungen__grid { gap: 18px; }

  .lcard { --lcard-ar: 16 / 9; }
  .lcard--feature { --lcard-ar: 4 / 3; }

  /* Bezugspunkt ist .lcard__body (position: relative) — translateY(-100%)
     setzt das Etikett bündig auf die Unterkante des Bildes. */
  .lcard__num {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(-100%);
    font-size: 1.5rem;
    padding: 0.22em 0.42em;
  }
  .lcard--feature .lcard__num { font-size: 1.75rem; }

  .lcard__body { padding: 18px 20px 20px; }
  .lcard__title { margin-top: 0; font-size: 1.45rem; }
  .lcard--feature .lcard__title { font-size: 1.7rem; }
  .lcard__line { margin-top: 0.5em; max-width: 40ch; }
  .lcard--feature .lcard__line { font-size: var(--t-s); }
  .lcard__cta { padding-top: 20px; }

  /* Touch hat kein Hover — dafür eine kurze Tipp-Rückmeldung */
  .lcard__hit:active { background: var(--accent-soft); }
}

/* ============================================================
   2 — SLIDE-OVER-DETAILPANEL
   ============================================================ */

.lpanel {
  --lpanel-pad: clamp(24px, 5vw, 44px);
  position: fixed;
  inset: 0;
  z-index: var(--z-panel);
}
.lpanel[hidden] { display: none; }
/* Während der Schließ-Transition nichts blockieren */
.lpanel:not(.is-open) { pointer-events: none; }
.lpanel.is-open { pointer-events: auto; }

.lpanel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 16, 0.55);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.lpanel.is-open .lpanel__backdrop { opacity: 1; }

.lpanel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 92vw);
  height: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg-4);
  box-shadow: -32px 0 90px rgba(23, 19, 16, 0.22);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.lpanel.is-open .lpanel__sheet { transform: translateX(0); }
.lpanel__sheet:focus { outline: none; }

.lpanel__close {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-4);
  color: var(--fg-1);
  box-shadow: 0 4px 18px rgba(23, 19, 16, 0.18);
  transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lpanel__close svg { width: 22px; height: 22px; }
.lpanel__close:hover { background: var(--accent); color: var(--bg-1); }
.lpanel__close:active { transform: scale(0.94); }

/* Griff-Balken existiert nur im mobilen Bottom-Sheet (per JS erzeugt) */
.lpanel__grip { display: none; }

.lpanel__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: clamp(32px, 6vw, 56px);
}

.lpanel__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
}
.lpanel__media img { width: 100%; height: 100%; object-fit: cover; }

.lpanel__head {
  padding: clamp(26px, 4vw, 38px) var(--lpanel-pad) 0;
  display: flex;
  align-items: baseline;
  gap: 0.9em;
}
.lpanel__num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
  background: var(--accent-bright);
  color: var(--fg-1);
  padding: 0.08em 0.22em;
  flex: none;
}
.lpanel__title {
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
}

.lpanel__body { padding: 0 var(--lpanel-pad); }
.lpanel__body > * { margin-top: clamp(22px, 3vw, 32px); }

.ldetail__lead {
  font-size: var(--t-m);
  color: var(--fg-2);
  max-width: 46ch;
}
.ldetail__h {
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 0.9em;
  border-bottom: 1px solid var(--line);
  margin-top: clamp(30px, 4vw, 44px) !important;
}
.ldetail__h + * { margin-top: clamp(16px, 2.2vw, 22px); }

.ldetail__note {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-s);
  color: var(--fg-muted);
  font-size: var(--t-s);
  max-width: 46ch;
}

.ldetail__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 16px);
}
.ldetail__steps li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1em;
  font-size: var(--t-s);
  color: var(--fg-2);
}
.ldetail__steps .strich { margin-top: 0.45em; }

.ldetail__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ldetail__tags li {
  font-size: var(--t-xs);
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 0.55em 0.9em;
  border-radius: var(--r-xs);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  background: var(--bg-1);
}

.lpanel__foot {
  padding: clamp(30px, 4.5vw, 44px) var(--lpanel-pad) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-s);
  border-top: 1px solid var(--line);
  margin-top: clamp(32px, 5vw, 48px);
}
.lpanel__note { color: var(--fg-muted); }
.lpanel__note a { color: var(--fg-1); border-bottom: 1px solid var(--line-strong); }
.lpanel__note a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 599px) {
  .lpanel__sheet { width: 100%; }
  .lpanel__media { aspect-ratio: 3 / 2; }
}

/* ------------------------------------------------------------
   2b — MOBIL: dasselbe Panel als BOTTOM-SHEET (< 900px)
   Von rechts einfahren ist Desktop-Bildsprache. Auf dem Handy
   kommt das Sheet von unten, mit Griff und Wisch-zum-Schließen.
   Desktop (>= 900px) bleibt unverändert.
   ------------------------------------------------------------ */
@media (max-width: 899px) {
  /* Die fixe Nav liegt auf --z-nav (90) und verdeckte bisher den oberen
     Sheet-Rand samt Schließen-Knopf. Ein modales Sheet gehört darüber. */
  .lpanel {
    z-index: calc(var(--z-nav) + 5);
    overscroll-behavior: contain;
  }
  /* Wischen neben dem Sheet darf die Seite dahinter nicht bewegen */
  .lpanel__backdrop { touch-action: none; }

  .lpanel__sheet {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 92vh;
    height: 92svh;
    max-height: 92svh;
    transform: translateY(100%);
    /* expo.out */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -20px 60px rgba(23, 19, 16, 0.3);
  }
  .lpanel.is-open .lpanel__sheet { transform: translateY(0); }

  /* Während der Geste folgt das Sheet 1:1 dem Finger — ohne Nachlauf */
  .lpanel.is-dragging .lpanel__sheet,
  .lpanel.is-dragging .lpanel__backdrop { transition: none; }

  /* ---------- Griff-Balken (per JS erzeugt) ---------- */
  .lpanel__grip {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    height: 52px;
    position: relative;
    z-index: 3;
    background: var(--bg-4);
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
  }
  .lpanel.is-dragging .lpanel__grip { cursor: grabbing; }
  .lpanel__grip::before {
    content: '';
    width: 46px;
    height: 4px;
    background: var(--fg-1);
    opacity: 0.22;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .lpanel.is-dragging .lpanel__grip::before {
    opacity: 0.5;
    transform: scaleX(1.14);
  }

  /* Schließen sitzt mobil in der Griffzeile, nicht über dem Bild */
  .lpanel__close {
    top: 4px;
    right: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    box-shadow: none;
  }
  .lpanel__close:hover { background: transparent; color: var(--fg-1); }

  /* Kopfbereich ist ebenfalls Ziehfläche → keine Textauswahl beim Wischen */
  .lpanel.is-dragging .lpanel__scroll { user-select: none; -webkit-user-select: none; }

  .lpanel__scroll { touch-action: pan-y; }
  /* feste Höhe statt aspect-ratio + max-height: sonst zieht der Browser
     die BREITE zusammen, um das Seitenverhältnis zu halten */
  .lpanel__media {
    aspect-ratio: auto;
    height: min(30svh, 66vw);
  }
  /* Ohne das startet ein Zeigerzug auf dem Bild den nativen Bild-Drag
     des Browsers — der bricht die Wischgeste mit pointercancel ab. */
  .lpanel__media img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
  }
}

/* ============================================================
   3 — TRADITION
   ============================================================ */

.tradition { background: var(--bg-1); }

.tradition__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.tradition__h2 { max-width: 14ch; }

.tradition__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 6vw, 64px);
}

/* ---------- Linke Spalte: riesige Jahreszahl ---------- */
.tradition__year {
  position: relative;
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: var(--hero-letter-spacing);
  text-transform: uppercase;
  color: var(--fg-1);
  user-select: none;
}
.tradition__year-layer { display: block; }
.tradition__year-layer--to {
  position: absolute;
  inset: 0;
  opacity: 0;
  color: var(--accent);
}

/* ---------- Mobile Zeitmarke (per JS erzeugt, Desktop aus) ---------- */
.tradition__markwrap { display: none; }

.tradition__meta {
  display: flex;
  align-items: flex-start;
  gap: 0.9em;
  margin-top: var(--space-m);
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.7;
}
.tradition__meta .strich { flex: none; margin-top: 0.3em; }

/* ---------- Rechte Spalte: Generationen ---------- */
.tradition__main {
  display: flex;
  flex-direction: column;
}

.gen__label {
  display: block;
  text-transform: uppercase;
  color: var(--fg-1);
  border-left: 5px solid var(--accent);
  padding-left: 0.7em;
  margin-bottom: 0.9em;
}
.gen__text {
  font-size: var(--t-l);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 52ch;
  text-wrap: pretty;
}

.gen__divider {
  margin-block: clamp(30px, 4.5vw, 48px);
  opacity: 0.85;
}

/* ---------- Bildmoment mit Parallax ---------- */
.tradition__figure { margin-block: clamp(40px, 6vw, 72px); }
.tradition__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-s);
  background: var(--bg-3);
}
.tradition__img {
  width: 100%;
  height: 114%;          /* Reserve für den Parallax-Versatz */
  position: absolute;
  top: -7%;
  left: 0;
  object-fit: cover;
  will-change: transform;
}
.tradition__caption {
  margin-top: var(--space-s);
  color: var(--fg-muted);
  max-width: 44ch;
  line-height: 1.7;
}

/* ---------- Abschluss ---------- */
.tradition__close {
  margin-top: clamp(56px, 8vw, 112px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
  font-size: var(--t-xl);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  max-width: 26ch;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .tradition__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(48px, 7vw, 120px);
  }
  .tradition__sticky {
    position: sticky;
    top: clamp(90px, 16vh, 160px);
  }
  .tradition__figure { margin-block: clamp(56px, 7vw, 88px); }
  .tradition__close {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 30ch;
  }
}

@media (max-width: 899px) {
  /* Die zweispaltige Sticky-Zahl gibt es mobil nicht — an ihre Stelle
     tritt die Zeitmarke (siehe unten). Das Original-Element entfällt. */
  .tradition__year { display: none; }
  .tradition__meta { margin-top: 0; }
  .tradition__head { margin-bottom: clamp(24px, 5vw, 40px); }

  /* Bildmoment randlos: das Bild geht bis an die Bildschirmkanten */
  .tradition__figure {
    margin-inline: calc(var(--gutter) * -1);
    margin-block: clamp(34px, 8vw, 60px);
  }
  .tradition__frame { aspect-ratio: 4 / 5; }
  .tradition__caption { padding-inline: var(--gutter); }

  /* ---------- Zeitmarke: klebt, wechselt, liegt hinter dem Text ----------
     Setzt erst nach der Überschrift ein (JS blendet sie ein), ist ein
     Vielfaches größer als die H2 und links angeschnitten — dadurch keine
     Doppelung mit „Seit 1959.", sondern eine eigene Ebene. */
  .tradition .container { position: relative; }

  .tradition__markwrap {
    display: block;
    position: sticky;
    top: clamp(96px, 18vh, 156px);
    height: 0;
    z-index: 0;
    opacity: 0;               /* JS steuert Ein-/Ausblendung */
    pointer-events: none;
  }
  .tradition__mark {
    position: absolute;
    top: 0;
    left: calc(var(--gutter) * -1);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.76;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.11);
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
  }
  .tradition__marklayer {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    gap: 0.03em;
    opacity: 0;
    will-change: transform, opacity;
  }
  /* Die drei Zahlen teilen sich eine Größe (gleiche Laufweite, die Marke
     tickt weiter), „Heute" wird kleiner gesetzt, damit das Wort dieselbe
     Versalhöhe bekommt und noch aufs Display passt. */
  .tradition__marklayer--a,
  .tradition__marklayer--b,
  .tradition__marklayer--c { font-size: min(46vw, 28svh); }
  .tradition__marklayer--d { font-size: min(40vw, 24svh); }

  /* Der Schlusspunkt ist das gelbe Nuhn-Quadrat (Fläche, keine Textfarbe) */
  .tradition__markdot {
    display: block;
    flex: none;
    width: 0.13em;
    height: 0.13em;
    margin-bottom: 0.04em;
    background: var(--accent);
    /* Gedämpft auf Höhe der Zahlenmarke: bei 0.5 landete das Quadrat als
       vermeintliches Text-Highlight mitten im darüberliegenden Fließtext */
    opacity: 0.22;
  }

  /* Inhalt liegt über der Marke */
  .tradition__head,
  .tradition__grid > *,
  .tradition__close { position: relative; z-index: 1; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lcard__media img,
  .lcard__title,
  .lcard__arrow { transition: none !important; transform: none !important; }
  .tradition__img { transform: none !important; }
}
