/* =========================================================
   Autogarage Milchbuck GmbH — Theme
   Farben, Typografie und Raster nach dem Entwurf «Startseite B»,
   übernommen aus website/styles.css und auf das Block-Markup von
   WordPress angepasst (Gruppen, Absätze, Listen, Bilder, Details).
   Formular: form.css. Schriften: fonts.css.
   ========================================================= */

:root {
  --ink-900: #0A0D11;
  --ink-800: #10151B;
  --ink-700: #171D25;
  --light-050: #F2F5F8;
  --white-soft: #FBFCFD;
  --line-light: #CBD3DC;
  --line-dark: rgba(234, 240, 246, .18);
  --line-ink: rgba(16, 21, 27, .28);
  --text-dark: #10151B;
  --text-muted-dark: #5A6672;
  --text-light: #EAF0F6;
  --text-muted-light: #A9B4C1;
  --text-dim: #8C98A6;
  --accent: #2A7BF0;
  --action: #EE6420;
  --error-ink: #7A1B1F;

  --gutter: clamp(20px, 4vw, 96px);
  --section-pad: clamp(72px, 9vw, 142px);
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --display: Archivo, "Arial Black", "Helvetica Neue", sans-serif;

  /* Pfeil der Knöpfe als Maske, damit er die Textfarbe übernimmt */
  --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 9'%3E%3Cpath d='M0 4.5h17.2M13.6 1l3.6 3.5-3.6 3.5' fill='none' stroke='%23000' stroke-width='1.6'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.004em;
  text-wrap: balance;
}
h1 { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.02; color: #FFF; }
h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05; }
p { margin: 0; text-wrap: pretty; }
figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.mono { font-family: var(--mono); }
.container { width: 100%; padding-inline: var(--gutter); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--gutter); top: -60px; z-index: 50;
  background: var(--action); color: #FFF; padding: 12px 18px; font-weight: 600;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

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

/* ---------- Chip ---------- */
.chip {
  display: inline-flex; align-items: center;
  padding: 7px 13px 6px;
  background: var(--accent); color: #FFF;
  font-family: var(--mono); font-size: 10.5px; line-height: 1.6; letter-spacing: .22em;
}

/* Ausgangswert für die Eingangsanimation der Chips: ganz sichtbar.
   GSAP zieht die Füllung von links nach rechts bis zu diesem Wert. */
.chip { clip-path: inset(0 0 0 0); }

/* ---------- Knöpfe ----------
   .btn steht im Kopf und im Formular, .wp-block-button__link im Block «Buttons».
   Die Variante (btn--action, btn--ghost) steht beim Block auf dem Wrapper. */
.btn,
.wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 52px; padding: 0 26px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1.2;
  border: none; border-radius: 0; cursor: pointer;
  transition: transform .16s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover,
.wp-block-button__link:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn.btn--light { background: #FFF; color: var(--ink-900); height: 46px; padding: 0 22px; font-size: 14.5px; }

.btn.btn--action,
.btn--action > .wp-block-button__link {
  background: var(--action); color: #FFF; height: 56px; padding: 0 32px; font-size: 15.5px;
}
.btn--action > .wp-block-button__link::after,
.btn__arrow {
  content: ""; flex: 0 0 auto; width: 18px; height: 9px;
  background: currentColor;
  -webkit-mask: var(--arrow) center / contain no-repeat;
  mask: var(--arrow) center / contain no-repeat;
}

.btn--ghost > .wp-block-button__link {
  background: transparent; color: var(--text-light);
  border: 1px solid rgba(234, 240, 246, .34); height: 56px; padding: 0 28px; font-weight: 500;
}
.btn--ghost > .wp-block-button__link:hover {
  background: rgba(234, 240, 246, .10); border-color: rgba(234, 240, 246, .6); filter: none;
}

/* ---------- Kopf ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 13, 17, .92);
  backdrop-filter: blur(10px);
}
.admin-bar .header { top: 32px; }
.header__bar {
  height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.header__rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(234,240,246,0) 0%, rgba(234,240,246,.34) 26%, rgba(234,240,246,.34) 74%, rgba(234,240,246,0) 100%);
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--display); font-variation-settings: "wdth" 112; font-weight: 800;
  text-transform: uppercase; font-size: 16px; letter-spacing: .01em; color: #FFF;
}
.logo__sub { font-size: 9px; letter-spacing: .36em; color: var(--text-dim); margin-top: 5px; }

.nav { font-size: 13.5px; }
.nav__list {
  display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px);
  margin: 0; padding: 0; list-style: none;
}
/* Versalien: etwas kleiner und leicht gesperrt, sonst wirken sie gedrängt. */
.nav__link {
  position: relative; display: block; padding: 6px 0; color: #B7C2CE; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  transition: color .18s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: currentColor; transition: width .26s cubic-bezier(.2,.7,.3,1);
}
.nav__link:hover { color: #FFF; }
.nav__link:hover::after { width: 100%; }

/* Der Eintrag zur Sektion, in der man gerade steht, behält den Strich;
   in Blau, damit er sich vom weissen Strich beim Überfahren unterscheidet. */
.nav__link.is-current { color: #FFF; }
.nav__link.is-current::after { width: 100%; background: var(--accent); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(234, 240, 246, .26); color: var(--text-light); cursor: pointer;
}

/* ---------- Hero: Gruppe mit Bild-Block und Textgruppe ---------- */
.hero { position: relative; display: flex; flex-direction: column; min-height: min(84vh, 760px); }
.hero__media { position: absolute; inset: 0 0 0 auto; width: 54%; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  animation: zoom 1.5s cubic-bezier(.16,.8,.3,1) both;
}
/* Verlauf über dem Bild */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink-900) 0%, rgba(10,13,17,.88) 24%, rgba(10,13,17,.30) 66%, rgba(10,13,17,.06) 100%);
}
/* Blauer Schein unten links */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(880px 520px at 6% 76%, rgba(42,123,240,.20), rgba(10,13,17,0) 68%);
}
.hero__inner {
  position: relative; z-index: 2; flex-grow: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: clamp(20px, 2.4vw, 30px);
  padding: clamp(48px, 7vw, 76px) var(--gutter);
}
.hero__inner > * { max-width: 690px; }
.lead { font-size: clamp(16.5px, 1.4vw, 18.5px); line-height: 1.66; color: var(--text-muted-light); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 4px; }

@keyframes zoom { from { transform: scale(1.06); } to { transform: none; } }

/* ---------- Laufband ----------
   Im Editor: ein Absatz und eine Liste. Das Skript setzt beides in einen
   Lauf und hängt eine zweite, gleiche Kopie an; die Spur wandert um genau
   einen Lauf nach links und springt dann unsichtbar zurück. */
.marquee {
  --marquee-gap: clamp(20px, 2.4vw, 34px);
  display: flex; align-items: center; gap: var(--marquee-gap);
  padding: clamp(16px, 1.6vw, 22px) clamp(10px, 1.2vw, 17px);
  background: var(--ink-900);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden; white-space: nowrap;
}
.marquee.is-ready { display: block; padding: 0; }
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__run {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: var(--marquee-gap);
  padding: clamp(16px, 1.6vw, 22px) clamp(10px, 1.2vw, 17px);
}
.marquee__lead,
.marquee__list,
.marquee__list li { display: flex; align-items: center; gap: var(--marquee-gap); }
.marquee__list { margin: 0; padding: 0; list-style: none; }
.marquee__lead {
  font-family: var(--display); font-variation-settings: "wdth" 112; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.004em;
  font-size: clamp(17px, 1.8vw, 24px); line-height: 1; color: var(--light-050);
}
.marquee__list li {
  font-family: var(--mono); font-size: clamp(12px, 1.1vw, 15px); letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted-light);
}
/* Punkt nach dem Titel und nach jeder Marke */
.marquee__lead::after,
.marquee__list li::after {
  content: ""; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
@keyframes marquee { from { transform: none; } to { transform: translateX(-50%); } }

/* ---------- Abschnitte ---------- */
.section { padding: var(--section-pad) var(--gutter); }
.section--light { background: var(--light-050); color: var(--text-dark); }
.section--ink { background: var(--ink-800); }

.section__head {
  display: grid; grid-template-columns: 7fr 4fr; gap: clamp(24px, 4vw, 64px);
  align-items: end; margin-bottom: clamp(34px, 4vw, 54px);
}
.section__headline { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.section__intro { font-size: 16px; line-height: 1.72; color: var(--text-muted-dark); }

/* ---------- Leistungen: Details-Blöcke als Akkordeon ----------
   Nummern per CSS-Zähler, damit Umsortieren im Editor nichts verschiebt.
   Das Skript legt Liste und Bild in .acc__panel > .acc__inner, damit die
   Höhe weich auf- und zugeht. */
.acc {
  --acc-num: 34px; --acc-gap: clamp(12px, 1.8vw, 24px); --acc-icon: 38px;
  width: 100%; border-top: 1px solid var(--line-light);
  counter-reset: leistung;
}
.acc > .wp-block-details { border-bottom: 1px solid var(--line-light); counter-increment: leistung; }
.acc summary {
  display: flex; align-items: center; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  color: var(--text-dark);
  font-family: var(--display); font-variation-settings: "wdth" 112; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.004em;
  font-size: clamp(18px, 2vw, 26px); line-height: 1.14; text-wrap: balance;
  transition: background .2s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: #E8EDF2; }
/* Nummer und Titel auf gemeinsamer Grundlinie; den Rahmen .acc__title
   setzt das Skript. Ohne Skript (und im Editor) steht die Nummer direkt
   im summary. */
.acc__title { display: flex; align-items: baseline; gap: var(--acc-gap); }
.acc__title::before,
.acc .wp-block-details:not(.acc__item) > summary::before {
  content: counter(leistung, decimal-leading-zero);
  flex: 0 0 var(--acc-num);
  font-family: var(--mono); font-variation-settings: normal; font-size: 11px; font-weight: 500;
  letter-spacing: .26em; color: var(--accent);
}
/* Plus/Minus: zwei Balken als Hintergrund; der senkrechte schrumpft beim Öffnen */
.acc summary::after {
  content: ""; flex: 0 0 auto; margin-left: auto;
  width: var(--acc-icon); height: var(--acc-icon);
  background:
    linear-gradient(var(--text-dark), var(--text-dark)) center / var(--acc-icon) 2px no-repeat,
    linear-gradient(var(--text-dark), var(--text-dark)) center / 2px var(--acc-icon) no-repeat;
  transition: transform .4s cubic-bezier(.3,.8,.3,1), background-size .3s ease;
}
.acc .is-open > summary::after,
.acc .wp-block-details[open]:not(.acc__item) > summary::after {
  transform: rotate(180deg);
  background-size: var(--acc-icon) 2px, 2px 0;
}

.acc__panel {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .42s cubic-bezier(.3,.8,.3,1), opacity .3s ease;
  opacity: 0;
}
.is-open > .acc__panel { grid-template-rows: 1fr; opacity: 1; }
.acc__inner {
  min-height: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px);
  padding-bottom: 0;
  transition: padding-bottom .42s cubic-bezier(.3,.8,.3,1);
}
.is-open .acc__inner { padding-bottom: 40px; }
/* Die Liste beginnt dort, wo der Titel beginnt: Breite der Nummer plus
   derselbe Abstand, der im Titel zwischen Nummer und Text steht. */
.acc__list { list-style: none; margin: 0; padding-left: calc(var(--acc-num) + var(--acc-gap)); }
.acc__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 7px 0;
  font-size: clamp(16px, 1.25vw, 17.5px); line-height: 1.45; color: var(--text-dark);
}
.acc__list li::before {
  content: ""; flex: 0 0 auto;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.acc__figure { display: flex; justify-content: flex-end; align-items: flex-end; }
.acc__figure img {
  width: 50%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  background: var(--ink-900); filter: grayscale(1) contrast(1.05);
}

/* ---------- Über uns: Text und Galerie als Bilderfolge ---------- */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.about__text { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.about__text p:not(.chip) { font-size: 16px; line-height: 1.76; color: var(--text-muted-light); }
.placeholder {
  margin-top: 6px; border: 1px dashed rgba(234, 240, 246, .24); padding: 14px 16px;
  font-family: var(--mono); font-size: 10.5px; line-height: 1.8; letter-spacing: .08em;
}
.about__text .placeholder { color: var(--text-dim); }

/* Ohne Skript stehen die Bilder mit Beschriftung untereinander. */
.slider { display: flex; flex-direction: column; gap: 18px; }
.slider figcaption { margin-top: 8px; font-size: 14.5px; color: var(--text-dim); }
.slider__frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-900); }
.slider__frame > .wp-block-image {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .55s ease;
}
.slider__frame > .wp-block-image.is-active { opacity: 1; }
.slider__frame img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.04);
}
.slider__frame figcaption { display: none; }
.slider__mark { position: absolute; top: 0; left: 0; width: 4px; height: 72px; background: var(--action); }
.slider__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.slider__caption { display: flex; align-items: baseline; gap: 15px; font-size: 14.5px; color: var(--text-dim); }
.slider__counter { font-size: 10.5px; letter-spacing: .22em; color: var(--accent); white-space: nowrap; }
.slider__controls { display: flex; align-items: center; gap: 20px; }
.slider__dots { display: flex; align-items: center; gap: 6px; }
.slider__arrows { display: flex; gap: 4px; }
.dot { height: 3px; width: 38px; border: none; padding: 0; cursor: pointer; background: rgba(234,240,246,.26); transition: background .3s ease; }
.dot.is-active { background: var(--accent); }
.arrow {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(234, 240, 246, .26); color: var(--text-light); cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.arrow:hover { background: rgba(234, 240, 246, .12); border-color: rgba(234, 240, 246, .6); }

/* ---------- Versprechen: helle Fläche, Anführungszeichen in Orange ---------- */
.promise {
  background: var(--light-050); color: var(--text-dark);
  padding: 0 var(--gutter) clamp(96px, 12vw, 180px);
}
.promise::before {
  content: "„"; display: block;
  font-family: var(--display); font-variation-settings: "wdth" 112; font-weight: 800;
  font-size: clamp(100px, 13vw, 190px); line-height: .6;
  color: var(--action);
  margin-bottom: clamp(32px, 5vw, 72px);
}
/* Zeichen bleibt am linken Rand, der Textblock steht mittig darunter */
.promise__text {
  max-width: 848px; margin-inline: auto;
  font-size: clamp(22px, 3.2vw, 42px); font-weight: 500;
  line-height: 1.26; letter-spacing: -.012em;
}

/* ---------- Kontakt: orange Fläche, Tinte als Schrift ----------
   Weiss erreicht auf #EE6420 nur rund 3:1 Kontrast, Tinte rund 7:1.
   Chip und Absendeknopf sind dunkel, weil Blau auf Orange flimmert. */
.contact {
  background: var(--action); color: var(--text-dark);
  padding: var(--section-pad) var(--gutter) 0;
}
.contact h2 { color: var(--text-dark); }
.contact .chip { background: var(--ink-900); color: #FFF; }
.contact .section__intro { color: rgba(16, 21, 27, .9); }
.contact :focus-visible { outline-color: var(--ink-900); }

/* Adresse links, Formular rechts; die Lücke dazwischen ist der Rest
   und wächst damit von selbst mit der Bildschirmbreite. */
.contact__body { display: flex; align-items: flex-start; justify-content: space-between; gap: 4vw; }
.facts {
  flex: 0 1 auto; display: flex; flex-direction: column;
  padding-top: clamp(24px, 3.4vw, 48px);
}
.fact { display: flex; gap: 20px; padding: 24px 0 22px; }
.fact:first-child { padding-top: 0; }
.fact__label {
  flex: 0 0 72px; padding-top: 5px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; color: var(--ink-900);
}
.fact__value { font-size: 16px; line-height: 1.64; color: var(--text-dark); }
.fact__value--big { font-size: 19px; font-weight: 600; }
.fact__value--bold { font-weight: 600; }
.fact__value a:hover { color: #FFF; }

/* ---------- Fuss (footer.php) ---------- */
.site-footer {
  background: var(--action); color: var(--text-dark);
  padding: clamp(56px, 8vw, 104px) var(--gutter) 0;
}
.colophon {
  padding: 30px 0 36px;
  border-top: 1px solid var(--line-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(16, 21, 27, .9);
}
.colophon__links { display: flex; gap: 20px; }
.colophon__links a { text-decoration: underline; text-underline-offset: 3px; }
.colophon__links a:hover { color: #FFF; }
.colophon .mono { font-size: 10px; letter-spacing: .28em; color: rgba(16, 21, 27, .88); }
.site-footer :focus-visible { outline-color: var(--ink-900); }

/* ---------- Einfache Inhaltsseiten (Impressum, Datenschutz) ---------- */
.page-body {
  background: var(--light-050); color: var(--text-dark);
  padding: var(--section-pad) var(--gutter);
}
.page-body__title { max-width: 848px; margin: 0 auto clamp(28px, 4vw, 48px); font-size: clamp(28px, 3.4vw, 42px); color: var(--text-dark); }
.page-body__content { max-width: 848px; margin-inline: auto; }
.page-body__content > * + * { margin-top: 1em; }
.page-body__content h2 { font-size: clamp(18px, 2vw, 22px); margin-top: 2em; }
.page-body__content a { text-decoration: underline; text-underline-offset: 3px; }
.page-body__content a:hover { color: var(--accent); }
.page-body .placeholder { border-color: var(--line-light); color: var(--text-muted-dark); }

/* =========================================================
   Tablet
   ========================================================= */
@media (max-width: 1024px) {
  .section__head { grid-template-columns: 1fr; align-items: start; }
  .about { grid-template-columns: 1fr; }
  .hero__media { width: 62%; }
  .contact__body { flex-direction: column; gap: clamp(32px, 6vw, 56px); }
}

/* =========================================================
   Mobil
   ========================================================= */
@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }

  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink-800); border-bottom: 1px solid var(--line-dark);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px; color: var(--text-light); }
  .burger { display: inline-flex; }
  /* Logo, Knopf und Menüsymbol passen nebeneinander nicht auf ein Telefon;
     der Kontaktknopf steht im Hero und im geöffneten Menü. */
  .header__actions .btn { display: none; }
  .header__bar { height: 72px; }
  .header, .admin-bar .header { position: relative; top: 0; }

  .hero { min-height: 0; }
  .hero__media { width: 100%; }
  .hero__media::after { background: linear-gradient(180deg, rgba(10,13,17,.92) 0%, rgba(10,13,17,.72) 38%, rgba(10,13,17,.94) 100%); }
  .hero__inner { padding-block: 44px 40px; }
  .hero__actions { width: 100%; }
  .hero__actions .wp-block-button,
  .hero__actions .wp-block-button__link { width: 100%; }

  .acc { --acc-icon: 30px; }
  .acc summary { padding: 20px 0; }
  .acc__inner { grid-template-columns: 1fr; }
  /* Wie in der Vorlage: 28 px Luft unter jedem geschlossenen Titel */
  .acc > .wp-block-details { padding-bottom: 28px; transition: padding-bottom .42s cubic-bezier(.3,.8,.3,1); }
  .acc > .wp-block-details.is-open { padding-bottom: 0; }
  .acc__figure img { width: 60%; }

  .slider__bar { align-items: flex-start; }
  .slider__caption { order: 2; width: 100%; }
  .slider__controls { order: 1; width: 100%; justify-content: space-between; }

  .colophon { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================================
   Bewegung reduzieren
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
