/* ==========================================================================
   Fahrschule Groß, Salem-Mimmenhausen, Demo-Gestaltungsvorschlag
   Charakter: bodenständig-kompetent, Nutzfahrzeug-/Straßen-DNA.
   Kraftvoll, verlässlich, modern. Bewegung als dezentes Motiv
   (Fahrbahn-Mittellinie). Seriös genug für Lkw/Bus/Berufskraftfahrer.
   Farbwelt: Anthrazit #131316 · Rot #E52600 · Tiefrot #BB0000 ·
             Weiß/Hellgrau · Textgrau #333333
   Schriften: Bricolage Grotesque (Display) + Public Sans (Body), lokal
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/public-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --ink: #131316;          /* Anthrazit: dunkle Flächen, Header, Hero */
  --ink-2: #1d1d20;        /* etwas heller, abgesetzte dunkle Flächen */
  --ink-3: #2a2a2e;        /* Linien/Kanten auf Dunkel */
  --paper: #f6f5f3;        /* heller Grundton */
  --white: #ffffff;
  --text: #333333;         /* Fließtext auf hell */
  --text-soft: #56565b;    /* abgesetzter Fließtext */
  --red: #e52600;          /* Leitfarbe: CTAs, Akzente, Fahrbahn */
  --red-deep: #bb0000;     /* Hover / Tiefe */
  --line: #e0ded9;         /* Trennlinien auf hell */
  --line-dark: rgba(246, 245, 243, 0.14);

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Public Sans", "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Fahrbahn-Mittellinie als wiederkehrendes Motiv */
  --dash: repeating-linear-gradient(
    90deg,
    var(--red) 0 28px,
    transparent 28px 52px
  );
  --dash-white: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0 28px,
    transparent 28px 52px
  );
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.03rem;
  line-height: 1.68;
  color: var(--text);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
::selection { background: var(--red); color: var(--white); }

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  hyphens: manual;
}

h1 {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.75rem, 4.4vw, 2.9rem);
  text-transform: uppercase;
}
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.01em; }

.mark { color: var(--red); }

p { max-width: 64ch; color: var(--text-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 4px;
  background: var(--red);
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  color: var(--text-soft);
}

/* Fahrbahn-Trennlinie als eigenständiges Element */
.roadline {
  height: 6px;
  width: clamp(120px, 22vw, 240px);
  background: var(--dash);
  margin-top: 1.3rem;
}
.roadline--center { margin-inline: auto; }

/* ---------- Demo-Hinweisleiste ---------- */
.demo-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem var(--pad);
  border-bottom: 3px solid var(--red);
}
.demo-bar strong { font-weight: 700; color: #ff7a52; }

/* ---------- Header & Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.3vw, 2rem);
}
.nav a {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  padding-block: 0.3rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav a[aria-current="page"] { color: var(--red); }

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.62rem 1.2rem !important;
  transition: background 0.25s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--red-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  background: var(--white);
  margin-block: 5px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    border-bottom: 3px solid var(--red);
    padding: 0.5rem var(--pad) 1.5rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 0.85rem; font-size: 1rem; width: 100%; }
  .nav__cta { margin-top: 0.8rem; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--solid:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }

.btn--light { border-color: var(--white); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.5rem, 8vw, 6rem);
}
/* schräges Fahrbahn-Band im Hintergrund */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 75%;
  height: 150%;
  background:
    linear-gradient(115deg, transparent 38%, rgba(229, 38, 0, 0.14) 38%, rgba(229, 38, 0, 0.14) 41%, transparent 41%),
    linear-gradient(115deg, transparent 52%, var(--ink-2) 52%);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 .mark { color: var(--red); }
.hero .lead { color: rgba(246, 245, 243, 0.82); margin-bottom: 2.2rem; max-width: 54ch; }
.hero .eyebrow { color: #ff7a52; }
.hero .eyebrow::before { background: var(--red); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero-Bildfläche rechts: stilisiertes Straßen-/Lkw-Motiv */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__art::before {
  /* perspektivische Fahrbahn */
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 140%;
  height: 70%;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      to top,
      rgba(255,255,255,0.85) 0 7%,
      transparent 7% 17%
    );
  -webkit-mask-image: linear-gradient(to top, #000 0 55%, transparent 92%);
          mask-image: linear-gradient(to top, #000 0 55%, transparent 92%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.55;
}
.hero__monogram {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 9rem);
  color: var(--white);
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.04em;
}
.hero__monogram span { color: var(--red); display: block; font-size: 0.42em; letter-spacing: 0.12em; margin-top: 0.4rem; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 340px; margin-inline: auto; aspect-ratio: 5 / 4; width: 100%; }
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--paper { background: var(--paper); }
.section--alt { background: var(--white); border-block: 1px solid var(--line); }

.section--dark {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(246, 245, 243, 0.78); }
.section--dark .eyebrow { color: #ff7a52; }

.section__head { max-width: 780px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section__head p { margin-top: 1rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center p { margin-inline: auto; }

/* ---------- Klassen-/Leistungs-Kacheln ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--ink);
  position: relative;
  transition: background 0.3s var(--ease);
}
a.tile:hover { background: var(--paper); }
a.tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
a.tile:hover::before { transform: scaleX(1); }
.tile--lead { background: var(--ink); color: var(--paper); }
.tile--lead h3 { color: var(--white); }
.tile--lead p { color: rgba(246, 245, 243, 0.76); }
a.tile--lead:hover { background: var(--ink-2); }
.tile__icon { width: 42px; height: 42px; color: var(--red); flex: none; }
.tile p { font-size: 0.96rem; }
.tile__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.tile--lead .tile__more { color: #ff7a52; }

/* Tag/Hinweis-Chip (z. B. „auf Anfrage") */
.chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border: 1.5px solid var(--line);
  color: var(--text-soft);
  align-self: flex-start;
}
.chip--red { border-color: var(--red); color: var(--red); }
.tile--lead .chip { border-color: var(--ink-3); color: rgba(246,245,243,0.8); }

/* ---------- Klassen-Gruppen (klassen.html) ---------- */
.classgroup {
  border-top: 1px solid var(--line);
  padding-block: clamp(2rem, 4.5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.2rem, 4vw, 3.5rem);
}
.classgroup:last-of-type { border-bottom: 1px solid var(--line); }
.classgroup__title { display: flex; flex-direction: column; gap: 0.6rem; }
.classgroup__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
}
.codes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: var(--white);
  min-width: 3.2rem;
  text-align: center;
}
.code--red { background: var(--red); }
.classgroup__body p + p { margin-top: 0.7rem; }

@media (max-width: 760px) {
  .classgroup { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- USP / Vorteile ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.feature {
  border-top: 4px solid var(--red);
  padding-top: 1.2rem;
}
.feature h3 { margin-bottom: 0.5rem; }
.feature p { font-size: 0.96rem; }
.feature__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---------- BKF-Seite: Modul-/Ablaufliste ---------- */
.steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: step;
}
.step {
  background: var(--white);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.96rem; }

/* Hervorgehobener Förder-Block */
.foerder {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.foerder::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 6px;
  background: var(--dash);
}
.foerder h3 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.8rem; }
.foerder p { color: rgba(246, 245, 243, 0.85); }
.foerder .chip { border-color: var(--red); color: #ff7a52; margin-bottom: 1rem; }

/* Listen mit Häkchen */
.checklist { list-style: none; margin-top: 1.2rem; }
.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.9rem;
  border-bottom: 1px dashed var(--line);
  color: var(--text-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 0.85rem; height: 0.5rem;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
.section--dark .checklist li { color: rgba(246,245,243,0.82); border-color: var(--ink-3); }

/* ---------- Lage-Teaser ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.panel {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.panel h3 { color: var(--white); }
.panel p { color: rgba(246,245,243,0.8); }
.panel__road {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--dash);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 7px;
  background: var(--dash-white);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-band p { margin-inline: auto; margin-bottom: 1.8rem; color: rgba(255,255,255,0.9); }
.cta-band .tel {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.cta-band .tel:hover { color: var(--ink); }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-cell {
  background: var(--white);
  padding: clamp(1.6rem, 3vw, 2.3rem);
}
.contact-cell h3 { margin-bottom: 0.7rem; }
.contact-cell .big {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--red);
  display: inline-block;
}
.contact-cell .big:hover { color: var(--ink); }
.contact-cell address { font-style: normal; color: var(--text-soft); }
.contact-cell p { font-size: 0.97rem; }
.contact-cell .ext {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Kontaktformular (gestalterisch, nicht funktional) ---------- */
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  outline: none;
  background: var(--white);
}
.form__note {
  font-size: 0.86rem;
  color: var(--text-soft);
  background: var(--paper);
  border-left: 4px solid var(--red);
  padding: 0.8rem 1rem;
}
@media (max-width: 560px) {
  .form .row { grid-template-columns: 1fr; }
}

/* ---------- Hinweis-Box ---------- */
.note-box {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.note-box .tile__icon { color: var(--red); margin-top: 0.15rem; }
.note-box h3 { margin-bottom: 0.4rem; }
.note-box p { font-size: 0.98rem; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.4rem; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 2.2rem 0 0.8rem;
}
.legal p, .legal address {
  margin-bottom: 1rem;
  font-style: normal;
  color: var(--text-soft);
  max-width: 70ch;
}
.legal h1.hyph { overflow-wrap: normal; word-break: normal; }

.demo-note {
  background: var(--white);
  border: 2px solid var(--red);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.demo-note strong { color: var(--red-deep); }

.placeholder {
  background: #fdeae4;
  border: 1px dashed var(--red);
  padding: 0.1rem 0.5rem;
  font-size: 0.9em;
  color: var(--red-deep);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: rgba(246, 245, 243, 0.74);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.93rem;
  border-top: 4px solid var(--red);
}
.site-foot a { color: var(--paper); }
.site-foot a:hover { color: #ff7a52; }
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.foot-grid h3 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding-block: 0.25rem; }
.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(246, 245, 243, 0.5);
}

/* ---------- Einblend-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }
}
