/* ==========================================================================
   Bereket Gastro — Design System
   Dunkel, hochwertig. Cormorant Garamond + Inter. Bronze-Akzent.
   ========================================================================== */

:root {
  --bg:          #0a0a0a;
  --bg-2:        #111110;
  --bg-3:        #171614;
  --line:        rgba(255, 255, 255, 0.10);
  --line-soft:   rgba(255, 255, 255, 0.06);
  --text:        #f2efea;
  /* Deckkraft so gewählt, dass auch kleine Texte den WCAG-AA-Kontrast (4.5:1) halten */
  --muted:       rgba(242, 239, 234, 0.68);
  --muted-2:     rgba(242, 239, 234, 0.55);

  /* Markenrot direkt aus dem Logo ausgelesen: #8c0202.
     Für Flächen (Buttons) reicht das aus — mit weißer Schrift ~8:1 Kontrast.
     Für kleine Texte auf Schwarz ist es zu dunkel, dafür der hellere Ableger --accent. */
  --brand:       #8c0202;
  --brand-hi:    #a81616;
  --accent:      #d9524a;
  --accent-hi:   #e8695f;
  --accent-soft: rgba(217, 82, 74, 0.13);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1220px;
  --nav-h: 82px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Lange deutsche Komposita sollen auf schmalen Displays umbrechen statt rauszuragen */
h1, h2, h3, p, li, address, .stat__label { overflow-wrap: break-word; hyphens: auto; }

::selection { background: var(--brand); color: #fff; }

/* ---------- Tastatur-Bedienung ---------- */

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

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--brand); color: #fff;
  padding: 12px 22px; font-size: 0.82rem; font-weight: 500; letter-spacing: .08em;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

/* ---------- Layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 88px 0; }
.section--alt { background: var(--bg-2); }
.section--line { border-top: 1px solid var(--line-soft); }

/* ---------- Typografie ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.12; letter-spacing: 0.01em; }

.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.4vw, 2rem); }

h2 em, h1 em, .h-lg em { font-style: italic; color: var(--accent); }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch;
  margin-top: 26px;
}

.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hi); transform: translateY(-2px); }

.btn--ghost { border-color: rgba(255,255,255,0.28); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn--wa { background: #25d366; color: #08240f; }
.btn--wa:hover { background: #3ae078; transform: translateY(-2px); }

.btn--sm { padding: 12px 24px; font-size: 0.74rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); transition: gap .3s ease;
}
.link-arrow:hover { gap: 18px; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s ease, border-color .4s ease, height .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  height: 68px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.nav__brand { display: flex; align-items: center; gap: 12px; }
/* Das Logo ist ein Quer-Lockup (Stierkopf + Schriftzug, ~16:9).
   Deshalb über die Höhe skaliert — hoch genug, dass „BEREKET GASTRO" lesbar bleibt. */
.nav__logo { height: 52px; width: auto; transition: height .4s ease; }
.nav.is-stuck .nav__logo { height: 40px; }

/* Text-Fallback, solange kein Logo-Bild vorhanden ist */
.brandmark { font-family: var(--serif); line-height: 1; }
.brandmark__name { display: block; font-size: 1.42rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; }
.brandmark__sub  { display: block; font-family: var(--sans); font-size: 0.56rem; font-weight: 400; letter-spacing: 0.42em; text-transform: uppercase; color: var(--accent); margin-top: 5px; }

.nav__menu { display: flex; align-items: center; gap: 38px; }
.nav__link {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0; transition: color .3s ease;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .35s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__burger { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.nav__burger span {
  position: absolute; left: 10px; width: 24px; height: 1.5px; background: var(--text);
  transition: transform .35s ease, opacity .25s ease;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative; width: 100%;
  height: 100vh; height: 100svh;      /* svh: kein Springen beim Ein-/Ausblenden der Browserleiste */
  min-height: 620px; max-height: 1100px;
  overflow: hidden; background: #0a0a0a;
}

/* Poster als CSS-Hintergrund: sichtbar, bevor (oder falls) das Video lädt */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0a0a0a center / cover no-repeat;
}

.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }

/* Kräftig genug, dass die weiße Schrift auch über hellen Bildstellen
   (Metzgerkittel!) sicher lesbar bleibt. */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.55) 24%,
      rgba(0,0,0,0.62) 52%,
      rgba(0,0,0,0.86) 86%,
      rgba(10,10,10,1) 100%);
}
.hero__overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 52%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.12) 34%, rgba(0,0,0,0.62) 100%);
}

.hero__content {
  position: relative; z-index: 3;
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--nav-h) 28px 120px;
}

/* Im Hero über die Breite skaliert — bei einem Quer-Lockup wirkt das ruhiger */
.hero__logo {
  width: clamp(250px, 40vw, 520px); height: auto; max-height: 42vh;
  object-fit: contain; margin: 0 auto;
  filter: drop-shadow(0 6px 40px rgba(0,0,0,.65));
}

.hero .brandmark__name { font-size: clamp(2.6rem, 8vw, 5.6rem); font-weight: 300; letter-spacing: 0.14em; text-shadow: 0 2px 40px rgba(0,0,0,.6); }
.hero .brandmark__sub  { font-size: clamp(0.6rem, 1.1vw, 0.78rem); letter-spacing: 0.5em; margin-top: 12px; color: rgba(242,239,234,.72); }

.hero__rule { width: 68px; height: 1px; background: var(--accent); margin: 34px auto 30px; opacity: .9; }

.hero__slogan {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.65rem, 3.7vw, 3rem); line-height: 1.2;
  text-shadow: 0 2px 34px rgba(0,0,0,.55);
}

.hero__kicker {
  margin-top: 22px; max-width: 46ch;
  font-size: clamp(0.9rem, 1.2vw, 1.02rem); font-weight: 300; color: rgba(242,239,234,.78);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* Nur-für-Screenreader/Tastatur-Umschalter zum Anhalten des Hero-Videos.
   Optisch versteckt, wird beim Tabben sichtbar (WCAG 2.2.2 ohne Bild-Element). */
.sr-toggle {
  position: absolute; left: -9999px; top: auto; z-index: 6;
  width: 1px; height: 1px; overflow: hidden;
}
.sr-toggle:focus {
  left: 26px; bottom: 26px; top: auto; width: auto; height: auto;
  padding: 11px 20px; border: 1px solid var(--accent); border-radius: 100px;
  background: rgba(10,10,10,0.85); color: #fff;
  font-size: 0.72rem; letter-spacing: 0.12em;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scroll i { display: block; width: 1px; height: 46px; background: linear-gradient(180deg, var(--accent), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* Einblend-Animation Hero */
.hero__reveal { opacity: 0; transform: translateY(26px); animation: heroUp 1.4s cubic-bezier(.2,.7,.3,1) forwards; }
.hero__reveal--1 { animation-delay: .25s; }
.hero__reveal--2 { animation-delay: .5s; }
.hero__reveal--3 { animation-delay: .72s; }
.hero__reveal--4 { animation-delay: .92s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* Innenseiten-Header (kleiner Hero ohne Video) */
.pagehead { position: relative; padding: calc(var(--nav-h) + 96px) 0 84px; border-bottom: 1px solid var(--line-soft); background: var(--bg-2); overflow: hidden; }
.pagehead::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(192,134,63,.13), transparent 62%);
}
.pagehead .wrap { position: relative; z-index: 2; }
.crumbs { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.crumbs a:hover { color: var(--accent); }

/* ==========================================================================
   Zahlen-Leiste
   ========================================================================== */

.stats { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 52px 26px; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 400; color: var(--accent); line-height: 1; }
.stat__num small { font-size: 0.46em; letter-spacing: .04em; margin-left: 3px; }
.stat__label { margin-top: 14px; font-size: 0.74rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   Karten / Leistungen
   ========================================================================== */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 46px 38px 42px;
  position: relative;
  transition: border-color .4s ease, transform .4s ease, background .4s ease;
}
.card:hover { border-color: rgba(192,134,63,.42); transform: translateY(-5px); background: var(--bg-3); }
.card__ico { width: 46px; height: 46px; margin-bottom: 28px; color: var(--accent); }
.card__ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.1; }
.card h3 { font-size: 1.62rem; margin-bottom: 16px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__list { list-style: none; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.card__list li { position: relative; padding-left: 20px; font-size: 0.9rem; color: var(--muted); margin-bottom: 9px; }
.card__list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 1px; background: var(--accent); }
.card__list li:last-child { margin-bottom: 0; }

/* ==========================================================================
   Ablauf
   ========================================================================== */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 0 30px 0 0; position: relative; }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--serif); font-size: 3.1rem; font-weight: 300; color: rgba(192,134,63,.32); line-height: 1;
  display: block; margin-bottom: 20px;
}
.step::after { content: ''; position: absolute; top: 22px; left: 62px; right: 22px; height: 1px; background: var(--line-soft); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.32rem; margin-bottom: 12px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ==========================================================================
   Split (Bild + Text)
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.split--rev .split__media { order: 2; }

.split__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-3); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
/* Breites Motiv (z. B. Lieferfahrzeug) — Querformat, damit nichts abgeschnitten wird */
.split__media--wide { aspect-ratio: 16 / 10; }
.split__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.checklist { list-style: none; margin-top: 34px; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 16px; color: var(--muted); font-size: 0.98rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 15px; height: 8px;
  border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.checklist strong { color: var(--text); font-weight: 500; }

/* ==========================================================================
   Bild-Platzhalter (greift, wenn Foto fehlt)
   ========================================================================== */

.ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background:
    linear-gradient(135deg, #1b1a17 0%, #121110 100%);
  color: var(--muted-2); text-align: center; padding: 24px;
}
.ph::before {
  content: ''; width: 34px; height: 34px; opacity: .55;
  background: currentColor;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.2'%3E%3Crect x='3' y='4' width='18' height='16' rx='1'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.6'/%3E%3Cpath d='M3 17l5-5 4 4 3-3 6 6'/%3E%3C/svg%3E");
  mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.2'%3E%3Crect x='3' y='4' width='18' height='16' rx='1'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.6'/%3E%3Cpath d='M3 17l5-5 4 4 3-3 6 6'/%3E%3C/svg%3E");
}
.ph span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }
.ph code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.66rem; color: rgba(192,134,63,.72); letter-spacing: .04em; }

/* ==========================================================================
   Referenzen
   ========================================================================== */

.refs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; border: 1px solid var(--line-soft); }
.ref {
  flex: 1 1 20%; min-width: 190px; padding: 44px 22px; text-align: center;
  border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  transition: background .35s ease;
}
.ref:hover { background: var(--bg-2); }
.ref__name { font-family: var(--serif); font-size: 1.38rem; font-weight: 400; letter-spacing: .03em; }
.ref__type { margin-top: 7px; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }

/* ==========================================================================
   Halal-Band
   ========================================================================== */

.halalband {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 54px;
  max-width: 940px; margin: 0 auto;
}
.halalband__seal { width: 150px; height: auto; flex-shrink: 0; }
.halalband__text .eyebrow { margin-bottom: 16px; }
.halalband__text h2 { margin-bottom: 18px; }
.halalband__text p { color: var(--muted); max-width: 52ch; }

@media (max-width: 720px) {
  .halalband { grid-template-columns: 1fr; gap: 26px; text-align: center; justify-items: center; }
  .halalband__seal { width: 118px; }
  .halalband__text p { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   Kundenstimmen
   ========================================================================== */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: var(--bg-2); border: 1px solid var(--line-soft); padding: 42px 36px; position: relative; }
.quote::before {
  content: '\201C'; position: absolute; top: 6px; left: 26px;
  font-family: var(--serif); font-size: 5.4rem; line-height: 1; color: rgba(192,134,63,.22);
}
.quote p { position: relative; font-family: var(--serif); font-style: italic; font-size: 1.24rem; line-height: 1.55; color: var(--text); }
.quote footer { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.quote__who { font-size: 0.88rem; font-weight: 500; }
.quote__where { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: 5px; }

/* ==========================================================================
   Sprachen
   ========================================================================== */

.langs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.lang {
  padding: 11px 24px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted);
  transition: border-color .3s ease, color .3s ease;
}
.lang:hover { border-color: var(--accent); color: var(--text); }

/* ==========================================================================
   CTA-Band
   ========================================================================== */

.cta { position: relative; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(192,134,63,.20), transparent 68%);
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.cta__phone { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--text); margin-top: 34px; letter-spacing: .02em; }
.cta__phone:hover { color: var(--accent); }

/* ==========================================================================
   Formular
   ========================================================================== */

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; font-family: var(--sans); font-size: 0.96rem; font-weight: 300;
  border-radius: 2px; transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: var(--bg-3);
}
.field textarea { resize: vertical; min-height: 132px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23c0863f' stroke-width='1.4'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 42px; }
.form__note { font-size: 0.78rem; color: var(--muted-2); }
.form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.consent { display: flex; align-items: flex-start; gap: 12px; font-size: 0.84rem; color: var(--muted); cursor: pointer; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Kontakt-Kacheln
   ========================================================================== */

.infoblock { border: 1px solid var(--line-soft); background: var(--bg-2); }
.infoblock__item { padding: 30px 34px; border-bottom: 1px solid var(--line-soft); }
.infoblock__item:last-child { border-bottom: 0; }
.infoblock__label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.infoblock__value { font-size: 1.05rem; color: var(--text); }
.infoblock__value a:hover { color: var(--accent); }
.infoblock__value small { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 6px; }

.maplink { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line-soft); background: var(--bg-3); }
.maplink__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.014) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #1a1917, #101010);
  transition: background .35s ease;
}
.maplink:hover .maplink__inner { background: linear-gradient(135deg, #221f1a, #141312); }
.maplink__pin { width: 34px; height: 34px; color: var(--accent); }
.maplink__pin svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.2; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: #070707; border-top: 1px solid var(--line-soft); padding: 84px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; }
.footer__brandtext { color: var(--muted); font-size: 0.92rem; margin-top: 24px; max-width: 34ch; }
.footer h4 { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; }
.footer li a, .footer address { font-size: 0.92rem; color: var(--muted); font-style: normal; transition: color .3s ease; }
.footer li a:hover { color: var(--accent); }
.footer address a:hover { color: var(--accent); }

.footer__seals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.seal { padding: 7px 14px; border: 1px solid var(--line); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }

.footer__bar {
  border-top: 1px solid var(--line-soft); padding: 26px 0;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted-2);
}
.footer__bar nav { display: flex; gap: 26px; }
.footer__bar a:hover { color: var(--accent); }

/* ==========================================================================
   Rechtstexte
   ========================================================================== */

.legal { max-width: 780px; }
.legal h2 { font-size: 1.7rem; margin: 52px 0 18px; }
.legal h3 { font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .02em; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 0.96rem; margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal .todo { background: rgba(192,134,63,.10); border-left: 2px solid var(--accent); padding: 14px 18px; color: var(--text); font-size: 0.9rem; }

/* Footer-Logo */
.footer__brand { display: inline-flex; }
.footer__logo { height: 54px; width: auto; }

/* ==========================================================================
   Cookie-Hinweis
   ========================================================================== */

.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300;
  max-width: 720px; margin: 0 auto;
  background: rgba(18, 17, 16, 0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  display: grid; gap: 18px;
  transform: translateY(140%);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.cookie.is-in { transform: none; }
.cookie__text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.cookie__text strong { color: var(--text); font-weight: 500; }
.cookie__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie__actions .btn { flex: 1 1 auto; }

@media (max-width: 560px) {
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie__actions { flex-direction: column-reverse; }
  .cookie__actions .btn { width: 100%; }
}

/* ==========================================================================
   Modal — Angebot anfragen
   ========================================================================== */

.modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 5px; padding: 44px 42px 40px;
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.modal.is-open .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--muted); font-size: 1.5rem; line-height: 1;
  transition: background .25s ease, color .25s ease;
}
.modal__close:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.modal__eyebrow { margin-bottom: 12px; }
.modal__box h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 10px; }
.modal__intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.modal .form { gap: 16px; }
.modal__status { font-size: 0.92rem; padding: 14px 16px; border-radius: 3px; display: none; }
.modal__status.is-error { display: block; background: rgba(217,82,74,.12); border: 1px solid rgba(217,82,74,.4); color: #f0b0aa; }
.modal__status.is-ok { display: block; background: rgba(120,180,90,.12); border: 1px solid rgba(120,180,90,.4); color: #bfe0a8; }

/* ==========================================================================
   Scroll-Reveal
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .split { gap: 46px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .step::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .section--tight { padding: 66px 0; }
  .section__head { margin-bottom: 46px; }

  .nav__burger { display: block; }
  .nav__menu {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 8px;
    padding: 100px 24px 40px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: rgba(8,8,8,.985); backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; }
  /* Tap-Targets: mind. 48 px hoch */
  .nav__link { font-size: 1.05rem; letter-spacing: 0.2em; padding: 14px 8px; min-height: 48px; display: flex; align-items: center; }
  .nav__link::after { display: none; }
  .nav__menu .btn { margin-top: 18px; width: 100%; max-width: 280px; padding: 17px 32px; }

  /* Eingabefelder: 16 px verhindert das automatische Zoomen auf iOS */
  .field input, .field textarea, .field select { font-size: 16px; padding: 15px 16px; }
  .consent input { width: 22px; height: 22px; }

  /* Fußzeilen-Links bequem treffbar */
  .footer li a { display: inline-block; padding: 5px 0; }
  .footer__bar nav a { padding: 8px 0; display: inline-block; }

  .grid-3, .grid-2, .quotes { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line-soft); padding: 38px 20px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  .split { grid-template-columns: 1fr; gap: 38px; }
  .split--rev .split__media { order: 0; }
  .split__media { aspect-ratio: 4 / 3; }
  .split__media--wide { aspect-ratio: 16 / 10; }   /* Fahrzeug bleibt auch mobil quer */

  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pagehead { padding: calc(var(--nav-h) + 62px) 0 58px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .hero { min-height: 560px; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .card { padding: 36px 28px; }
  .quote { padding: 34px 26px; }
  .ref { flex: 1 1 100%; min-width: 0; border-right: 0; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; }
}

/* Kleine Displays: Hero darf nicht höher als der Bildschirm werden */
@media (max-width: 400px) {
  .hero { min-height: 540px; }
  .hero__content { padding-bottom: 60px; }
  .btn { padding: 15px 22px; letter-spacing: .12em; }
  .stat { padding: 30px 14px; }
  .stat__label { font-size: 0.68rem; letter-spacing: .1em; }
}

/* Querformat am Handy: Hero-Inhalt muss reinpassen, nicht abgeschnitten werden */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { height: auto; min-height: 0; padding: calc(var(--nav-h) + 30px) 0 60px; }
  .hero__content { position: static; height: auto; padding: 0 28px; }
  .hero__scroll { display: none; }
  .hero .brandmark__name { font-size: 2.6rem; }
  .hero__slogan { font-size: 1.6rem; }
  .hero__rule { margin: 20px auto 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__reveal { opacity: 1; transform: none; }
}
