/* ==========================================================================
   Kremling Logistik UG (haftungsbeschränkt) – Salzgitter
   Stylesheet: Marken-Tokens, Typografie, Layout, Komponenten
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens (Farben exakt aus dem Logo gemessen)
   -------------------------------------------------------------------------- */
:root {
  /* Marke */
  --navy:        #0C2A4D;   /* Hauptfarbe – aus Logo "KREMLING" */
  --navy-deep:   #04203F;   /* dunkler – Footer, Hover, Overlays */
  --navy-700:    #173A63;   /* etwas heller – Akzentflächen */

  --steel:       #6E7479;   /* Sekundär-Grau – "LOGISTIK" */
  --steel-dark:  #545454;   /* dunkles Grau aus Logo */
  --steel-light: #9AA0A6;   /* helles Grau – Captions, Linien */

  /* Neutral */
  --ink:    #15202B;
  --paper:  #FFFFFF;
  --mist:   #F3F5F8;
  --line:   #E2E7EC;

  /* Typografie */
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-text:    "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "Consolas", monospace;

  /* Typo-Skala (fluide) */
  --fs-caption: 0.875rem;                          /* 14 */
  --fs-base:    1.0625rem;                         /* 17 */
  --fs-lead:    clamp(1.125rem, 1.4vw, 1.25rem);   /* 18–20 */
  --fs-h3:      clamp(1.375rem, 2vw, 1.75rem);     /* 22–28 */
  --fs-h2:      clamp(1.75rem, 3.2vw, 2.625rem);   /* 28–42 */
  --fs-h1:      clamp(2.125rem, 5vw, 4rem);        /* 34–64 */

  --header-h: 76px;
  --radius: 6px;
}

/* --------------------------------------------------------------------------
   2. Reset / Grundlagen
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Verhindert horizontales Scrollen durch das nach rechts
     verschobene Off-Canvas-Menü. Auf html (Root) propagiert das
     auf den Viewport und lässt position:sticky intakt. */
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: var(--navy); }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.05;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

/* Anker landen nicht unter dem Sticky-Header */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Sichtbarer Tastatur-Fokus */
:focus-visible {
  outline: 3px solid var(--navy-700);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* --------------------------------------------------------------------------
   3. Layout-Helfer
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}

.section { padding-block: clamp(64px, 9vw, 116px); }
.section--mist { background: var(--mist); }

/* Eyebrow: kleine Versalien mit Sperrung + Signatur-Routenlinie */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Signatur-Element: dünne Routenlinie mit Pfeilspitze nach links
   (greift den Pfeil aus dem Logo auf) */
.route-line {
  flex: none;
  width: 56px;
  height: 10px;
  color: var(--navy);
}

.section-head { max-width: 720px; }
.section-head h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-head .lead {
  font-size: var(--fs-lead);
  color: var(--steel-dark);
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.btn--light:hover { background: var(--mist); border-color: var(--mist); color: var(--navy-deep); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: #fff;
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.14); border-color: currentColor; }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: #fff; }

.btn .icon { flex: none; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo img { height: 46px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a:not(.btn) {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.site-nav .btn { padding: 10px 20px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }

  /* Panel klappt unter dem Header auf (kein Überstand nach rechts,
     der horizontales Scrollen erzeugen könnte) */
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 24px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -16px 0 40px rgba(4, 32, 63, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform 0.22s ease, opacity 0.22s ease,
                visibility 0s linear 0.22s;
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-nav a:not(.btn) {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .site-nav .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 88vh, 820px);
  color: #fff;
  overflow: hidden;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navy-Overlay: links dicht (Textfläche), rechts offen */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4, 32, 63, 0.92) 0%,
    rgba(4, 32, 63, 0.72) 46%,
    rgba(12, 42, 77, 0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 12vh, 130px);
  max-width: 780px;
}

.hero .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero .route-line { color: #fff; }

.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  max-width: 16ch;
}

.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Vertrauens-Streifen unter dem Hero */
.trust-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  padding-block: 14px;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip__item { display: inline-flex; align-items: center; }

.trust-strip__item + .trust-strip__item::before {
  content: "·";
  margin-inline: 14px;
  color: var(--steel-light);
}

/* --------------------------------------------------------------------------
   7. Leistungen (alternierende Bild/Text-Reihen, bewusst keine Karten-Trios)
   -------------------------------------------------------------------------- */
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(44px, 6vw, 76px);
}

.service-row--flip .service-row__media { order: 2; }
.service-row--flip .service-row__body  { order: 1; }

.service-row__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 32, 63, 0.16);
}

.service-row__body h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  text-transform: uppercase;
}

.service-row__body .service-num {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--steel);          /* nicht steel-light: Kontrast WCAG AA */
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.service-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--steel-dark);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 2px;
  background: var(--navy);
}

@media (max-width: 820px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row--flip .service-row__media { order: 0; }
  .service-row--flip .service-row__body  { order: 0; }
}

/* Dispo-Band (dritter Leistungspunkt + Zwischen-CTA) */
.dispo-band {
  margin-top: clamp(48px, 7vw, 88px);
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.dispo-band h3 {
  color: #fff;
  font-size: var(--fs-h3);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.35em;
}

.dispo-band p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

.dispo-band .btn--light:hover { background: var(--paper); }

/* --------------------------------------------------------------------------
   8. Über uns
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-grid h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
}

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy);
}

.facts li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.facts .facts__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}

.facts .facts__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

/* Teambild unter dem Über-uns-Text */
.about-photo {
  margin: clamp(36px, 5vw, 56px) 0 0;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 32, 63, 0.16);
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   9. Ablauf (einzige Stelle mit 01–04-Nummerierung: echte Reihenfolge)
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  margin: clamp(40px, 6vw, 64px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

/* Verbindende Routenlinie (Signatur-Motiv) */
.steps::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--line);
}

.step { position: relative; padding-top: 30px; }

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--navy);
}

.step__num {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 6px 0 8px;
}

.step p {
  margin: 0;
  color: var(--steel-dark);
  font-size: 0.98rem;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 30px;
  }

  /* Linie läuft mobil vertikal an den Punkten entlang */
  .steps::before {
    top: 8px;
    bottom: 8px;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .step { padding-top: 0; padding-left: 0; }
  .step::before { left: -30px; top: 4px; }
}

/* --------------------------------------------------------------------------
   10. Fuhrpark / Einsatzgebiet
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(36px, 5vw, 56px);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery figure:hover img { transform: scale(1.04); opacity: 0.92; }

@media (prefers-reduced-motion: reduce) {
  .gallery img { transition: none; }
  .gallery figure:hover img { transform: none; }
}

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Kennwert-Zeile unter der Galerie */
.meta-strip {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.meta-strip span + span::before {
  content: "·";
  margin-inline: 14px;
  color: var(--steel-light);
}

/* --------------------------------------------------------------------------
   11. Kontakt
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 56px);
}

.contact-block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.contact-block address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Dispo-Nummer prominent */
.dispo-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 18px;
}

.dispo-card .dispo-card__label {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.dispo-card a {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.dispo-card a:hover { text-decoration: underline; }

.dispo-card p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-rows {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.contact-rows li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.contact-rows .label {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 2px;
}

.contact-rows .value { text-align: right; font-weight: 600; }
.contact-rows .value a { text-decoration: none; }
.contact-rows .value a:hover { text-decoration: underline; }

/* Formular */
.contact-form {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  background: #fff;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--navy-700);
  outline-offset: 0;
  border-color: var(--navy-700);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-field .error-msg {
  display: none;
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #A33000;
}

.form-field.has-error input,
.form-field.has-error textarea { border-color: #A33000; }
.form-field.has-error .error-msg { display: block; }

.form-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--steel);
  margin: 0;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  display: none;
}

.form-status.is-ok {
  display: block;
  background: #E8F1E9;
  color: #1E5631;
}

.form-status.is-info {
  display: block;
  background: #FFF4E8;
  color: #8A4A0B;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Karte (lädt erst nach Einwilligung – Datenschutz) */
.map-consent {
  margin-top: clamp(36px, 5vw, 56px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-consent__inner {
  text-align: center;
  color: #fff;
  padding: 40px 24px;
  max-width: 520px;
}

.map-consent__inner h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-consent__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.map-consent iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.site-footer__logo img { width: 150px; height: auto; margin-bottom: 18px; }

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin: 0 0 14px;
}

.site-footer ul + h4 { margin-top: 22px; }

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

.site-footer li { padding: 4px 0; }

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--steel-light);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   13. Scroll-Reveals (dezent; respektiert Reduced Motion)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   14. Unterseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.legal {
  max-width: 760px;
  padding-block: clamp(48px, 7vw, 88px);
}

.legal h1 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 2em;
}

.legal .notice {
  background: #FFF4E8;
  border-left: 4px solid #C75B12;
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #8A4A0B;
  font-weight: 600;
}
