/* =========================================================
   AMMOSHINE – Fahrzeugaufbereitung Herford
   Richtung „Nachtaufnahme": fast schwarz, Serifenschrift,
   viel Luft. Glanz entsteht durch Licht auf Kanten und Lack,
   nicht durch Leuchteffekte.
   ========================================================= */

/* ---------- Schriften ----------
   Liegen lokal auf dem eigenen Server. Beim Aufruf der Seite wird
   keine Verbindung zu Google oder einem anderen Anbieter aufgebaut.
   Manrope ist ein Variable Font: eine Datei deckt 400 bis 700 ab. */
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-serif-400i-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-serif-400i-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-serif-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-serif-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: dark;

  --night: #0a0a0b;
  --night-2: #101013;
  --night-3: #15151a;

  --bone: #efece6;
  --bone-soft: #c9c5bd;
  --dim: #8b8880;
  --faint: #5c5a55;

  /* Haarlinien: gedämpft, und eine, die Licht fängt */
  --hair: rgba(239, 236, 230, 0.14);
  --hair-strong: rgba(239, 236, 230, 0.28);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --breit: 1240px;
  --rand: clamp(1.25rem, 5vw, 4rem);
  --kopf: 76px;
  --luft: clamp(5rem, 12vw, 11rem);

  --weich: cubic-bezier(0.22, 0.75, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kopf) + 2rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.ist-gesperrt {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 1px solid var(--bone);
  outline-offset: 4px;
}

::selection {
  background: var(--bone);
  color: var(--night);
}

/* =========================================================
   Glanz – die drei Bausteine, aus denen alles Glänzende
   auf dieser Seite gebaut ist
   ========================================================= */

/* 1. Metall: senkrechter Verlauf in der Schrift selbst.
      Die untere Ebene deckt immer vollständig – sonst wird
      Text an Stellen ohne Verlauf unsichtbar. */
.metall {
  color: var(--bone);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .metall {
    background-image:
      linear-gradient(101deg, transparent 38%, rgba(255, 255, 255, 0.92) 50%, transparent 62%),
      linear-gradient(
        176deg,
        #ffffff 0%,
        #f4f1eb 22%,
        #a8a49b 48%,
        #f4f1eb 72%,
        #ffffff 100%
      );
    background-size: 260% 100%, 100% 100%;
    background-position: 130% 0, 0 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: politur 9s var(--weich) 2.5s infinite;
  }
}

@keyframes politur {
  0%,
  70% {
    background-position: 130% 0, 0 0;
  }
  92%,
  100% {
    background-position: -30% 0, 0 0;
  }
}

/* 2. Lichtkante: eine Haarlinie, die in der Mitte heller wird,
      als würde Licht über eine Chromkante laufen */
.lichtkante {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(239, 236, 230, 0.2) 16%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(239, 236, 230, 0.2) 84%,
    transparent 100%
  );
}

/* 3. Lackfläche: oben eine helle Kante, nach unten auslaufend –
      wie Licht, das auf eine polierte Fläche trifft */
.lack {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.015) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* =========================================================
   Grundbausteine
   ========================================================= */
.spur {
  width: 100%;
  max-width: var(--breit);
  margin-inline: auto;
  padding-inline: var(--rand);
}

.nur-fuer-screenreader {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.sprunglink {
  position: absolute;
  top: -100px;
  left: var(--rand);
  z-index: 200;
  padding: 0.8rem 1.25rem;
  background: var(--bone);
  color: var(--night);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: top 0.2s var(--weich);
}

.sprunglink:focus {
  top: 1rem;
}

/* Kleine Versalzeile über Überschriften */
.vorzeile {
  margin: 0 0 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}

.abschnitt {
  position: relative;
  padding-block: var(--luft);
}

.abschnitt__kopf {
  max-width: 44rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.titel {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  text-wrap: balance;
}

.titel em {
  font-style: italic;
  color: var(--dim);
}

.vorspann {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--bone-soft);
  font-size: clamp(1rem, 0.97rem + 0.25vw, 1.125rem);
}

/* Knöpfe – nie gefüllt, nur eine Lichtkante oben */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1.05em 1.9em;
  border: 1px solid var(--hair-strong);
  color: var(--bone);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0) 62%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: border-color 0.35s var(--weich), background-color 0.35s var(--weich),
    transform 0.35s var(--weich);
}

.knopf:hover {
  border-color: rgba(239, 236, 230, 0.55);
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.knopf--leise {
  border-color: var(--hair);
  color: var(--dim);
  background-image: none;
  box-shadow: none;
}

.knopf--leise:hover {
  color: var(--bone);
  border-color: var(--hair-strong);
}

.knopf__symbol {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  fill: currentColor;
}

/* =========================================================
   Kopfzeile
   ========================================================= */
.kopf {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--kopf);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.4s var(--weich);
}

.kopf.ist-gescrollt {
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kopf.ist-gescrollt::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 236, 230, 0.22) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(239, 236, 230, 0.22) 70%,
    transparent
  );
}

.kopf__spur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* Wortmarke – groß geschrieben, in Metall */
.marke {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  padding-right: 0.15em;
}

.marke__zusatz {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}

.menue {
  display: none;
  gap: clamp(1.5rem, 2.6vw, 2.75rem);
}

.menue a {
  position: relative;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  padding-block: 0.6rem;
  transition: color 0.3s var(--weich);
}

.menue a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(239, 236, 230, 0.2));
  transition: right 0.4s var(--weich);
}

.menue a:hover,
.menue a.ist-aktiv {
  color: var(--bone);
}

.menue a:hover::after,
.menue a.ist-aktiv::after {
  right: 0;
}

.kopf__rechts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.kopf__tel {
  display: none;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.kopf__tel svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--dim);
  flex: none;
}

/* Menüschalter fürs Handy */
.schalter {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--hair);
  cursor: pointer;
  transition: border-color 0.3s var(--weich);
}

.schalter:hover {
  border-color: var(--hair-strong);
}

.schalter__strich {
  width: 17px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.35s var(--weich), opacity 0.2s linear;
}

.schalter[aria-expanded="true"] .schalter__strich:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.schalter[aria-expanded="true"] .schalter__strich:nth-child(2) {
  opacity: 0;
}

.schalter[aria-expanded="true"] .schalter__strich:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.handymenue {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--kopf) + 2rem) var(--rand) 2.5rem;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--weich), visibility 0.35s;
}

.handymenue.ist-offen {
  opacity: 1;
  visibility: visible;
}

.handymenue ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.handymenue li + li {
  border-top: 1px solid var(--hair);
}

.handymenue a {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 9vw, 2.6rem);
  line-height: 1.1;
}

.handymenue__fuss {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}

/* =========================================================
   Bühne (Hero)
   ========================================================= */
.buehne {
  position: relative;
  padding-top: var(--kopf);
}

.buehne__bild {
  position: relative;
  /* width MUSS gesetzt sein: sonst schrumpft die Box durch aspect-ratio
     zusammen mit max-height auch in der Breite, statt nur zu beschneiden */
  width: 100%;
  aspect-ratio: 16 / 10;
  /* bewusst niedriger als der Bildschirm, damit die Überschrift
     nicht zu weit nach unten rutscht */
  max-height: 62svh;
  overflow: hidden;
  background: var(--night-2);
}

.buehne__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* leicht unterhalb der Mitte: dort sitzt das Fahrzeug im Bild */
  object-position: center 53%;
}

/* Licht, das von oben in die Szene fällt */
.buehne__licht {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(56% 66% at 50% 32%, rgba(255, 255, 255, 0.13), transparent 72%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, transparent 20%, rgba(10, 10, 11, 0.62) 86%, var(--night) 100%);
}

.buehne__notiz {
  position: absolute;
  right: var(--rand);
  bottom: 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* heller als sonst und mit Schatten: die Zeile liegt auf dem
     hellen Bodenreflex des Fotos */
  color: var(--bone-soft);
  text-shadow: 0 1px 8px rgba(10, 10, 11, 0.9);
}

.buehne__text {
  position: relative;
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

.buehne__titel {
  font-size: clamp(2.1rem, 1.1rem + 4.4vw, 4.4rem);
  max-width: 21ch;
  text-wrap: balance;
}

.buehne__titel em {
  font-style: italic;
  color: var(--dim);
}

.buehne__unter {
  margin-top: 1.75rem;
  max-width: 33rem;
  color: var(--bone-soft);
  font-size: clamp(1rem, 0.97rem + 0.3vw, 1.1875rem);
}

.buehne__knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.buehne__zusicherung {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--faint);
}

/* Kennzahlen unter der Bühne */
.kennzahlen {
  display: grid;
  gap: 0;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--hair);
}

.kennzahl {
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--hair);
}

.kennzahl:last-child {
  border-bottom: 0;
}

.kennzahl__wert {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  line-height: 1;
}

.kennzahl__text {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

/* =========================================================
   Leistungen
   ========================================================= */
.leistungen {
  border-top: 1px solid var(--hair);
}

.leistung {
  display: grid;
  gap: 0.75rem 3rem;
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--hair);
  transition: background-color 0.5s var(--weich);
}

.leistung:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

.leistung__nr {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  padding-top: 0.5rem;
}

.leistung__titel {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}

.leistung__text {
  color: var(--dim);
  font-size: 0.9375rem;
  max-width: 30rem;
}

/* =========================================================
   Preise
   ========================================================= */
.preise {
  display: grid;
  border-top: 1px solid var(--hair);
}

.preis {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--hair);
}

.preis:last-child {
  border-bottom: 0;
}

.preis__name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}

.preis__wert {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  line-height: 0.95;
}

.preis__wert small {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-right: 0.6rem;
  vertical-align: 0.9em;
}

.preis__dauer {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--faint);
}

.preis__liste {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.preis__liste li {
  font-size: 0.875rem;
  color: var(--dim);
}

.preishinweis {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 0.6rem;
  max-width: 44rem;
  font-size: 0.8125rem;
  color: var(--faint);
}

/* =========================================================
   Abbinder
   ========================================================= */
.abbinder {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--hair);
  color: var(--faint);
  font-size: 0.8125rem;
}

.abbinder__zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .kennzahlen {
    grid-template-columns: 1fr 1fr;
  }

  .kennzahl {
    border-bottom: 0;
    border-right: 1px solid var(--hair);
    padding-inline-end: 1.5rem;
  }

  .kennzahl:nth-child(2n) {
    border-right: 0;
  }

  .kennzahl:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hair);
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  }
}

@media (min-width: 900px) {
  .menue,
  .kopf__tel {
    display: flex;
  }

  .schalter {
    display: none;
  }

  .kennzahlen {
    grid-template-columns: repeat(4, 1fr);
  }

  .kennzahl {
    border-bottom: 0;
    border-right: 1px solid var(--hair);
  }

  .kennzahl:nth-child(2n) {
    border-right: 1px solid var(--hair);
  }

  .kennzahl:last-child {
    border-right: 0;
  }

  .leistung {
    grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .preise {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 clamp(1.5rem, 3vw, 3rem);
  }

  .preis {
    border-bottom: 0;
    border-right: 1px solid var(--hair);
    padding-right: clamp(1.5rem, 3vw, 3rem);
  }

  .preis:last-child {
    border-right: 0;
  }
}

/* =========================================================
   Weniger Bewegung
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .metall {
    animation: none !important;
    background-position: 130% 0, 0 0 !important;
  }
}

/* =========================================================
   Ablauf
   ========================================================= */
.ablauf {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.schritt {
  position: relative;
  padding-top: 1.75rem;
}

.schritt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(239, 236, 230, 0.18) 34%,
    rgba(239, 236, 230, 0.08) 100%
  );
}

.schritt__nr {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--faint);
}

.schritt__titel {
  margin-top: 0.9rem;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
}

.schritt__text {
  margin-top: 0.7rem;
  color: var(--dim);
  font-size: 0.9375rem;
}

/* =========================================================
   Wer zu Ihnen kommt
   ========================================================= */
.leute {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

/* Ohne Porträts trägt eine Lichtkante die Gliederung */
.person {
  position: relative;
  padding-top: 1.75rem;
}

.person::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(239, 236, 230, 0.18) 34%,
    rgba(239, 236, 230, 0.08) 100%
  );
}

.person__rolle {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.person__name {
  margin-top: 0.85rem;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
}

.person__jahre {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hair);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bone-soft);
}

.person__text {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.9375rem;
  max-width: 28rem;
}

.zitat {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hair);
}

.zitat p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem);
  line-height: 1.18;
  max-width: 28ch;
  text-wrap: balance;
}

.zitat footer {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

/* =========================================================
   Einzugsgebiet
   ========================================================= */
.gebiet {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.25rem);
  line-height: 1.5;
  color: var(--faint);
  max-width: 34ch;
}

.gebiet .hier {
  color: var(--bone);
}

.gebiet span + span::before {
  content: " · ";
  color: var(--faint);
}

.gebiet__notiz {
  margin-top: 2.5rem;
  max-width: 32rem;
  color: var(--dim);
  font-size: 0.9375rem;
}

/* =========================================================
   Häufige Fragen
   ========================================================= */
.fragen {
  max-width: 50rem;
  border-top: 1px solid var(--hair);
}

.frage {
  border-bottom: 1px solid var(--hair);
}

.frage__kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  transition: color 0.3s var(--weich);
}

.frage__kopf::-webkit-details-marker {
  display: none;
}

.frage__kopf:hover {
  color: #ffffff;
}

.frage__zeichen {
  position: relative;
  flex: none;
  width: 13px;
  height: 13px;
  translate: 0 -2px;
}

.frage__zeichen::before,
.frage__zeichen::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bone-soft);
  transition: transform 0.35s var(--weich);
}

.frage__zeichen::after {
  transform: rotate(90deg);
}

.frage[open] .frage__zeichen::after {
  transform: rotate(0deg);
}

.frage__text {
  padding-bottom: 1.75rem;
  max-width: 44rem;
  color: var(--dim);
  font-size: 0.9375rem;
}

.frage__text p + p {
  margin-top: 0.8rem;
}

/* =========================================================
   Kontakt
   ========================================================= */
.kontakt {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.wege {
  margin-top: 2.5rem;
  border-top: 1px solid var(--hair);
}

.weg {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hair);
  transition: padding-left 0.35s var(--weich);
}

.weg:hover {
  padding-left: 0.5rem;
}

.weg svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  fill: var(--faint);
  transition: fill 0.35s var(--weich);
}

.weg:hover svg {
  fill: var(--bone);
}

.weg__art {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.weg__wert {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  word-break: break-word;
}

.zeiten {
  margin-top: 2.5rem;
  color: var(--dim);
  font-size: 0.9rem;
}

.zeiten dt {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.4rem;
}

.zeiten dd {
  margin: 0 0 1rem;
}

/* Formular: Unterstriche statt Kästen */
.formular {
  display: grid;
  gap: 1.75rem;
}

.feldreihe {
  display: grid;
  gap: 1.75rem;
}

.feld {
  position: relative;
}

.feld__name {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.7rem;
}

.feld__pflicht {
  color: var(--bone-soft);
}

.feld input,
.feld select,
.feld textarea {
  width: 100%;
  padding: 0.6rem 0 0.75rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair-strong);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.15rem;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.3s var(--weich);
}

.feld textarea {
  font-family: var(--sans);
  font-size: 1rem;
  min-height: 6rem;
  resize: vertical;
  line-height: 1.6;
}

.feld select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%238b8880' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  background-size: 10px;
  padding-right: 1.75rem;
}

.feld select option {
  background: var(--night-2);
  color: var(--bone);
}

.feld input::placeholder,
.feld textarea::placeholder {
  color: var(--faint);
  font-family: var(--sans);
  font-size: 0.9375rem;
}

.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.feld__fehler {
  display: block;
  margin-top: 0.5rem;
  min-height: 1.1em;
  font-size: 0.8125rem;
  color: #e8a8a0;
}

.feld.hat-fehler input,
.feld.hat-fehler select,
.feld.hat-fehler textarea {
  border-bottom-color: #e8a8a0;
}

.haken {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.haken input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.25rem 0 0;
  accent-color: var(--bone);
  cursor: pointer;
  flex: none;
}

.haken__text {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.55;
}

.haken__text a {
  color: var(--bone-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.haken .feld__fehler {
  grid-column: 1 / -1;
}

.formular__meldung {
  display: none;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(232, 168, 160, 0.4);
  color: #e8a8a0;
  font-size: 0.9rem;
}

.formular__meldung.ist-sichtbar {
  display: block;
}

.formular__fuss {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.formular__hinweis {
  font-size: 0.8125rem;
  color: var(--faint);
}

.honigtopf {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Danke-Zustand */
.danke {
  display: none;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.formular-huelle.ist-fertig .formular {
  display: none;
}

.formular-huelle.ist-fertig .danke {
  display: block;
}

.danke__titel {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem);
}

.danke__text {
  margin-top: 1rem;
  max-width: 30rem;
  color: var(--dim);
}

/* =========================================================
   Fußzeile
   ========================================================= */
.fuss {
  padding-block: clamp(3.5rem, 7vw, 5rem) 7rem;
  border-top: 1px solid var(--hair);
}

.fuss__oben {
  display: grid;
  gap: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--hair);
}

.fuss__satz {
  margin-top: 1.25rem;
  max-width: 24rem;
  color: var(--dim);
  font-size: 0.9375rem;
}

.fuss__titel {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.1rem;
}

.fuss__liste {
  display: grid;
  gap: 0.7rem;
  color: var(--dim);
  font-size: 0.9375rem;
}

.fuss__liste a:hover {
  color: var(--bone);
}

.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  color: var(--faint);
  font-size: 0.8125rem;
}

.fuss__recht {
  display: flex;
  gap: 1.5rem;
}

.fuss__recht a:hover {
  color: var(--bone);
}

/* =========================================================
   Feste Leiste auf dem Handy
   ========================================================= */
.leiste {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem var(--rand) calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.4s var(--weich);
}

.leiste::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 236, 230, 0.2) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(239, 236, 230, 0.2) 70%,
    transparent
  );
}

.leiste.ist-sichtbar {
  transform: translateY(0);
}

.leiste .knopf {
  flex: 1;
  padding-inline: 0.75rem;
  font-size: 0.625rem;
}

/* =========================================================
   Rechtsseiten
   ========================================================= */
.recht {
  padding-top: calc(var(--kopf) + clamp(3rem, 8vw, 6rem));
  padding-bottom: var(--luft);
}

.recht__inhalt {
  max-width: 44rem;
}

.recht h1 {
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
  margin-bottom: 3rem;
}

.recht h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  margin: 3rem 0 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hair);
}

.recht h3 {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 1.75rem 0 0.6rem;
}

.recht p,
.recht li {
  color: var(--dim);
  font-size: 0.9375rem;
}

.recht p + p {
  margin-top: 0.9rem;
}

.recht address {
  font-style: normal;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.8;
}

.recht ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.recht ul li {
  position: relative;
  padding-left: 1.5rem;
}

.recht ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.7rem;
  height: 1px;
  background: var(--hair-strong);
}

.recht a {
  color: var(--bone-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recht__zurueck {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.recht__zurueck:hover {
  color: var(--bone);
}

/* =========================================================
   Breakpoints für die neuen Abschnitte
   ========================================================= */
@media (min-width: 640px) {
  .feldreihe--zwei {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .ablauf {
    grid-template-columns: 1fr 1fr;
  }

  .leute {
    grid-template-columns: 1fr 1fr;
  }

  .fuss__oben {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .ablauf {
    grid-template-columns: repeat(4, 1fr);
  }

  .kontakt {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .leiste {
    display: none;
  }

  .fuss {
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
  }
}

/* =========================================================
   Zusätzlich buchbar
   ========================================================= */
.extras {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 46rem;
}

.extras__titel {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.5rem;
}

.extra {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hair);
}

.extra:first-of-type {
  border-top: 1px solid var(--hair);
}

.extra__name {
  font-size: 0.9375rem;
  color: var(--bone-soft);
}

.extra__preis {
  flex: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.extra__preis--offen {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
