/* Automatisch aus style.css herausgeloest (CSS-Diaet, 02.09.2026).
   REGEL: Stile, die nur EINE Seite braucht, wohnen in css/seiten/<seite>.css.
   Gemeinsames wohnt in style.css. Wer hier etwas aendert, prueft mit
   werkzeuge/vor-upload-pruefen.sh und zieht die Cache-Stempel hoch. */

.dt-hero-grid { align-items: center; }

.dt-ablauf { padding: var(--space-md) 0; background: var(--white); }

/* Stillstand-Bento */
.dt-still { padding: var(--space-md) 0; background: var(--panel); }
.dt-still-claim {
  margin: 2px 0 26px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ink);
}
.dt-still-claim em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; color: var(--teal); }
.dt-still-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.dt-tile {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
}
.dt-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dt-tile--block { grid-column: span 6; }
.dt-tile--person { grid-column: span 6; }
.dt-tile-body { padding: 28px 30px 12px; }
.dt-tile-body h3 { margin: 0 0 5px; font-size: 17px; color: var(--ink); }
.dt-tile-body p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.dt-tile-visual { margin-top: auto; padding: 14px 30px 22px; }
.dt-tile-visual svg { display: block; width: 100%; height: auto; }
.dts-win { transform-box: fill-box; transform-origin: left center; }
.dt-tile--block:hover .dts-win { animation: dt-grow-x2 0.9s cubic-bezier(.2,.7,.2,1) 0.05s both; }
.dts-one, .dts-crew { transform-box: fill-box; transform-origin: center; }
.dt-tile--person:hover .dts-one { animation: dts-rise2 0.6s cubic-bezier(.2,.7,.2,1) 0.05s both; }
.dt-tile--person:hover .dts-crew { animation: dts-dim2 0.6s ease 0.3s both; }

/* Vor der Kamera (dunkel) */
.dt-cam h2 { max-width: 26ch; }
.dt-cam-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 52px;
  /* rechte Spalte (Video + 500+-Karte) mittig zur linken ausrichten,
     sonst bleibt unten rechts ein toter Rand (Michi, 31.07.) */
  align-items: center;
  margin-top: 10px;
}
.dt-callout {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--peach);
  background: rgba(255,255,255,0.05);
  border-radius: 0 12px 12px 0;
}
.dt-callout p { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--white); font-weight: 600; }
.dt-callout footer { margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* Vorher / Nachher */
.dt-prep { padding: var(--space-md) 0; background: var(--white); }
/* Schlanke Alternativen-Liste in der dunklen Kamera-Sektion (statt Icon-Kacheln) */
.dt-alt-list { list-style: none; margin: 18px 0 0; padding: 0; max-width: 56ch; }
.dt-alt-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dt-alt-list li:first-child { border-top: 0; }
.dt-alt-list li::before {
  content: '';
  position: absolute; left: 2px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--peach);
}

/* Vorher–Nachher-Fläche „Dein Aufwand endet mit dem Drehtag"
   (eine gemeinsame Karte, Übergang über das Drehtag-Badge; Michi-Brief 31.07.) */
.dt-vn {
  display: grid;
  grid-template-columns: minmax(0, 42fr) 74px minmax(0, 58fr);
  gap: 0 22px;
  margin-top: 32px;
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.dt-vn-vor {
  background: var(--teal-tint);
  border: 1px solid rgba(11,76,78,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.dt-panel-eyebrow {
  margin: 0 0 14px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-dark);
}
.dt-check { list-style: none; margin: 0; padding: 0; }
.dt-check li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(11,76,78,0.1);
  font-size: 14px; line-height: 1.5; color: var(--ink);
}
.dt-check li:first-child { border-top: 0; padding-top: 0; }
.dt-check-mark {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-dark); color: #fff;
}
.dt-check-mark svg { width: 12px; height: 12px; }
.dt-panel-foot {
  margin: 14px 0 0; padding: 9px 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.75);
  border: 1px dashed rgba(11,76,78,0.25);
  font-size: 13px; font-weight: 700; color: var(--teal-dark);
}
.dt-vn-mitte {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.dt-vn-mitte::before {
  content: '';
  position: absolute; top: 10px; bottom: 10px; left: 50%;
  width: 1px; background: var(--border);
}
.dt-vn-badge {
  position: relative; z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--peach); color: var(--teal-dark);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.dt-vn-pfeil {
  position: relative; z-index: 1;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--border);
  color: var(--teal-dark);
}
.dt-vn-pfeil svg { width: 15px; height: 15px; }
.dt-vn-nach { padding: 22px 6px 22px 2px; }
.dt-flow2 { list-style: none; margin: 0; padding: 0; counter-reset: dtflow; position: relative; }
.dt-flow2::before {
  content: '';
  position: absolute; left: 12px; top: 16px; bottom: 16px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--peach) 0%, rgba(11,76,78,0.16) 100%);
}
.dt-flow2 li {
  counter-increment: dtflow;
  display: flex; align-items: baseline; gap: 14px;
  padding: 7px 0;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.dt-flow2 li::before {
  content: counter(dtflow);
  position: relative; z-index: 1;
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; line-height: 1;
  color: var(--teal); border: 2px solid var(--border);
  background: var(--white);
}
.dt-vn-claim {
  margin: 14px 0 0; padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.dt-vn-link {
  display: inline-block; margin-top: 8px;
  font-size: 13.5px; font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(11,76,78,0.28);
  padding-bottom: 1px;
}
.dt-vn-link:hover { border-color: var(--peach-deko); }

/* Vergleich */
.dt-comp { padding: var(--space-md) 0; background: var(--panel); }
.dt-comp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.dt-comp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.dt-comp-card--buendel { border-top: 3px solid var(--peach); box-shadow: var(--shadow-sm); }
.dt-comp-head { margin: 0 0 14px; font-size: 15.5px; font-weight: 800; color: var(--ink); }
.dt-comp-visual { margin-bottom: 14px; }
.dt-comp-visual svg { display: block; width: 100%; height: auto; }
.dt-comp-card ul { list-style: none; margin: 0; padding: 0; }
.dt-comp-card li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.5;
  color: var(--ink-soft);
}
.dt-comp-card li:first-child { border-top: 0; }
.dt-comp-card li::before {
  content: '';
  position: absolute; left: 2px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); opacity: 0.35;
}
.dt-comp-card--buendel li::before { background: var(--peach); opacity: 1; }
.dt-comp-note { margin: 20px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); max-width: 72ch; }

/* Responsive */
@media (max-width: 980px) {
  .dt-still-grid { grid-template-columns: 1fr; }
  .dt-tile--block, .dt-tile--person { grid-column: auto; }
  .dt-cam-grid { grid-template-columns: 1fr; gap: 34px; }
  .dt-vn { grid-template-columns: 1fr; gap: 18px; padding: 22px 20px; }
  .dt-vn-mitte { flex-direction: row; gap: 12px; }
  .dt-vn-mitte::before { top: 50%; bottom: auto; left: 10px; right: 10px; width: auto; height: 1px; }
  .dt-vn-pfeil svg { transform: rotate(90deg); }
  .dt-vn-nach { padding: 0 4px; }
  .dt-comp-grid { grid-template-columns: 1fr; }}

@media (prefers-reduced-motion: reduce) {
  .dt-tile, .dt-tile:hover { transform: none; transition: none; }
  .dt-tile .dts-win, .dt-tile .dts-one, .dt-tile .dts-crew { animation: none !important; }}



/* ==========================================================================
   MOBILE-FEINSCHLIFF (Mobile-Audit 31.07.2026)
   Gilt ausschliesslich bis 640px. Desktop und Tablet bleiben unberuehrt.
   ========================================================================== */
@media (max-width: 640px) {

  /* ---------- Gruppe a ---------- */
  /* /drehtag/ – Der Pfeil klebte am Text: "…Imagefilm ansehen→".
     Die Tippflaechen-Regel weiter unten macht .dt-vn-link auf dem Handy zu
     inline-flex; dabei faellt das Leerzeichen zwischen Linktext und Pfeil-Span
     weg. .service-more hat dafuer schon gap:8px, .dt-vn-link nicht. */
  .dt-vn-link { gap: 6px; }}


/* ==========================================================================
   DREHTAG-KACHELN: ZWEITE FASSUNG IM HOCHFORMAT - 03.08.2026
   --------------------------------------------------------------------------
   Beide Kacheln im Block "Muss mein Betrieb dafuer stillstehen?" waren
   Querformat-SVGs (viewBox 420x118, 3.56:1). Auf dem Handy wurden sie in die
   Kartenbreite gequetscht - Massstab 0.58 - und weil SVG-Text mitskaliert,
   landeten saemtliche Beschriftungen bei 6.9 bis 8.1px. Zum Vergleich: der
   Fliesstext direkt darueber steht bei 15px. Mit CSS war das nicht loesbar,
   die Grade sind im viewBox-Mass bereits angehoben und "17 Uhr" endete bei
   320px exakt auf dem SVG-Rand (x=241 von 242 Einheiten).
   Die zweite Fassung ist 280 statt 420 Einheiten breit, kommt damit auf
   Massstab 0.90 und haelt alle Beschriftungen ueber 11px.
   Ab 521px bleibt die Querformat-Fassung unveraendert.
   ========================================================================== */

.dt-tile-visual .dtv-hoch { display: none; }

/* Die Fusszeile steht als normaler Text unter der Grafik statt im SVG - dort
   wuerde sie mitskalieren und waere wieder zu klein. */
.dt-tile-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--teal-dark);
  opacity: 0.7;
}
@media (min-width: 470px) {
  .dt-tile-note { display: none; }}


@media (max-width: 469px) {
  .dt-tile-visual .dtv-quer { display: none; }
  /* Auf 300px gedeckelt: ungedeckelt waeren die Beschriftungen bei 520px auf
     20.5px gewachsen, also groesser als der Fliesstext daneben. So bleiben sie
     ueber den ganzen Bereich bei 11.2 bis 13.9px. */
  .dt-tile-visual .dtv-hoch { display: block; max-width: 300px; margin-left: auto; margin-right: auto; }

  /* Das Drehfenster waechst jetzt nach unten statt nach rechts - die Zeitachse
     laeuft hier ja senkrecht. */
  .dtv-hoch .dts-win { transform-origin: center top; }
  .dt-tile--block:hover .dtv-hoch .dts-win { animation-name: dt-grow-y; }}

.dth-item {
  position: relative;
  display: grid;
  grid-template-columns: var(--ikon) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.dth-ic {
  width: var(--ikon); height: var(--ikon);
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: 0 0 0 8px var(--white);
}
.dth-ic svg { width: 100%; height: 100%; display: block; }
.dth-h { margin: 2px 0 5px; font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.dth-p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }
@media (max-width: 900px) {
  .dth-item { gap: 18px; }
  .dth-ic { box-shadow: 0 0 0 6px var(--white); }
  .dth-h { font-size: 16px; }}


/* Logo-Band unter dem Drehtag-Hero. Der Pause-Knopf wird von
   js/script.js automatisch an .marquee gehaengt. */
/* traegt zusaetzlich .trust-bar, damit js/script.js den Pause-Knopf
   automatisch anhaengt; nur der Innenabstand weicht ab. */
.dt-trust { padding: 0 0 var(--space-sm); }
.dt-trust-label {
  max-width: var(--container);
  margin: 0 auto 18px;
  padding: 0 24px;
  text-align: center;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== Drehtag: der Ablauf als Tagesleiste (dtl) - 10.08.2026 =====
   Loest .dt-ablauf-grid / .dt-tl / .dt-step ab. Statt fuenf einzelner
   4px-Balken, die nur mit einem Erklaersatz zu verstehen waren, ein
   durchgehender Tag: die Segmente stehen im echten Verhaeltnis
   6,25 / 50 / 18,75 / 18,75 / 6,25. Weil "Start" und "Ende" darunter
   stehen statt Uhrzeiten, faellt der Erklaersatz weg.

   Abstaende und Groessen sind hier bewusst an einer Stelle gebuendelt
   und nicht auf die einzelnen Elemente verteilt - so bleibt der
   Rhythmus bei jeder Breite nachvollziehbar. Der ganze Block liegt
   eine Stufe unter der Sektionstypografie (Michi, 10.08.): er ist die
   Erklaerung zum Ablauf, nicht der Hauptdarsteller der Seite. */

.dtl { margin: 28px 0 0; }
.dtl-kopf {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin: 0 0 9px;
}
.dtl-kopf b { font-size: 13px; font-weight: 700; color: var(--ink); }
.dtl-kopf span {
  font-size: 11px; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal-muted); white-space: nowrap;
}

.dtl-leiste { display: flex; gap: 3px; height: 52px; }
.dtl-seg {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 0; overflow: hidden; padding: 0 6px;
  background: var(--teal-tint); border-radius: 4px;
}
.dtl-seg:first-child { border-radius: 10px 4px 4px 10px; }
.dtl-seg:last-child { border-radius: 4px 10px 10px 4px; }
.dtl-seg > b {
  font-weight: 700; font-style: normal;
  font-size: 13px; line-height: 1; color: var(--teal);
}
/* Der laengste Abschnitt ist der Kern des Tages und bekommt als einziger Farbe. */
.dtl-seg--haupt { background: var(--peach); }
.dtl-seg--haupt > b { color: var(--peach-text); opacity: 0.8; }
.dtl-seg--haupt em {
  font-style: normal; font-size: 13px; font-weight: 800;
  color: var(--peach-text); white-space: nowrap;
}
/* Die Beschriftung im Pfirsich-Segment hat drei Laengen. Gemessen: die lange
   Fassung braucht rund 315px und wuerde sonst unter der Segmentkante
   verschwinden, die mittlere rund 160px. Deshalb wird sie in zwei Stufen
   gekuerzt statt umzubrechen oder abgeschnitten zu werden. */
.dtl-mittel, .dtl-kurz { display: none; }
.dtl-fuss {
  display: flex; justify-content: space-between;
  margin: 7px 0 0; font-size: 11.5px; font-weight: 600; color: var(--teal-muted);
}

.dtl-schritte {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px;
}
.dtl-s {
  display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 14px;
  padding: 15px 0; border-top: 1px solid var(--border);
}
/* Die beiden obersten Eintraege stehen direkt unter der Leiste - dort
   waere eine Linie eine zweite Kante zu viel. */
.dtl-s:nth-child(1), .dtl-s:nth-child(2) { border-top: 0; padding-top: 0; }
/* Fuenf Schritte gehen in zwei Spalten nicht auf - der fuenfte liesse
   unten rechts ein leeres Feld stehen. Er nimmt deshalb die volle Breite,
   dann laeuft seine Trennlinie durch und der Block schliesst sauber ab. */
.dtl-s:last-child { grid-column: 1 / -1; }
.dtl-s strong { display: block; margin: 0 0 2px; font-size: 15.5px; line-height: 1.3; color: var(--ink); }
.dtl-dauer {
  display: block; margin: 0 0 4px;
  font-size: 12.5px; font-weight: 700; color: var(--peach-text);
}
.dtl-s p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }

.dtl-out { margin: 34px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); }
.dtl-out-lab {
  margin: 0 0 15px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal-muted);
}
.dtl-out-reihe { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.dtl-out-reihe div { border-left: 2px solid var(--peach); padding-left: 13px; }
.dtl-out-reihe b { display: block; margin-bottom: 3px; font-size: 14.5px; color: var(--ink); }
.dtl-out-reihe span { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

@media (max-width: 900px) {
  .dtl { margin-top: 26px; }
  .dtl-leiste { height: 46px; }
  .dtl-schritte { grid-template-columns: 1fr; margin-top: 28px; }
  /* Einspaltig ist der zweite Eintrag kein Spaltenkopf mehr und bekommt
     seine Trennlinie zurueck. */
  .dtl-s:nth-child(2) { border-top: 1px solid var(--border); padding-top: 15px; }
  .dtl-out { margin-top: 30px; padding-top: 22px; }
  .dtl-out-reihe { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .dtl-lang { display: none; }
  .dtl-mittel { display: inline; }}

/* Unter 620px ist ein 6,25-Prozent-Segment nur noch rund 20px breit -
   da passt keine Zahl mehr hinein. Die schmalen Abschnitte bleiben als
   reine Flaeche stehen; das Verhaeltnis liest man trotzdem, und die
   Liste darunter benennt jeden Schritt. */
@media (max-width: 620px) {
  .dtl-leiste { gap: 2px; height: 42px; }
  .dtl-seg { gap: 7px; padding: 0 3px; }
  .dtl-seg > b { font-size: 13px; }
  .dtl-seg--schmal > b { display: none; }
  .dtl-mittel { display: none; }
  .dtl-kurz { display: inline; font-size: 12.5px; }}

@media (max-width: 520px) {
  .dtl { margin-top: 22px; }
  .dtl-schritte { margin-top: 24px; }
  .dtl-s { grid-template-columns: 26px minmax(0, 1fr); gap: 12px; padding: 14px 0; }
  .dtl-s:nth-child(2) { padding-top: 14px; }
  .dtl-out { margin-top: 28px; padding-top: 20px; }
  .dtl-out-reihe { grid-template-columns: 1fr; gap: 16px; }}
