/* ==========================================================================
   Y&O DETAILING — styles.css
   Single source of truth: ../../DESIGN.md
   Premium dark · Tiefschwarz + Premium-Rot · Montserrat / Cormorant Garamond
   Brand spec: design.md (CI vom Inhaber)
   ========================================================================== */

/* ----------------------------------------------------------------- Fonts -- */
/* Self-hosted (DSGVO: kein Laden von Google-Servern). Variable woff2. */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-var.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-var.woff2") format("woff2");
  font-weight: 500 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-italic-var.woff2") format("woff2");
  font-weight: 400 700; font-style: italic; font-display: swap;
}

/* ---------------------------------------------------------------- Tokens -- */
:root {
  /* color — from design.md */
  --black: #0A0A0A;        /* Tiefschwarz · Hauptfarbe / Seite */
  --ink: #060606;          /* tiefer als Schwarz für Kontrast-Pops */
  --anthracite: #161618;   /* Anthrazit-Bereich · Karten */
  --anthracite-2: #1E1E1E; /* design.md Anthrazit · alt-Sektionen */
  --graphite: #2A2A2E;     /* Dunkelgrau · sekundäre Elemente */
  --elevated: #242428;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --white: #FFFFFF;
  --silver: #BFBFC4;       /* Fließtext auf Schwarz */
  --muted: #9A9AA2;        /* Mikro-Text — klärt WCAG AA 4.5:1 auf Schwarz */
  --red: #D00721;          /* Premium-Rot · Akzent (sparsam, max. 10–15 %) */
  --red-hover: #E61230;
  --red-tint: rgba(208, 7, 33, 0.12);
  --red-line: rgba(208, 7, 33, 0.35);
  --red-glow: rgba(208, 7, 33, 0.28);

  /* type */
  --ff-display: "Montserrat", system-ui, sans-serif;
  --ff-body: "Montserrat", system-ui, sans-serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --fs-hero: clamp(2.6rem, 6vw, 5.25rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-display-serif: clamp(2.4rem, 5.5vw, 4.5rem);
  --fs-lead: clamp(1.1rem, 1.5vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.76rem;

  /* space + shape */
  --container: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 2.25rem);
  --section-y: clamp(5rem, 10vw, 9rem);
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* motion — emil curves */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);        /* strong ease-out */
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur: 0.3s;
  --dur-fast: 0.16s;
}

/* ------------------------------------------------------------------ Reset - */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* [hidden] muss auch gegen display:grid/flex aus Komponenten-Klassen gewinnen */
[hidden] { display: none !important; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-gutter: stable;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--silver);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* -------------------------------------------------------------- Typography */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
strong, b { color: var(--white); font-weight: 600; }
.u-red { color: var(--red); }
.u-serif {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}
::selection { background: var(--red); color: var(--white); }

/* ------------------------------------------------------------- Primitives -- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container--wide { max-width: 1340px; }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--anthracite-2); }
.section--ink { background: var(--ink); }
.section__head { max-width: 48rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: var(--fs-h2); }
.section__intro { margin-top: 1.25rem; font-size: var(--fs-lead); color: var(--silver); max-width: 58ch; }
.section__head--center .section__intro { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--ff-display); font-weight: 600;
  font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 1px; background: var(--red); opacity: 0.8; }
.section__head--center .eyebrow { justify-content: center; }

.lead { font-size: var(--fs-lead); color: var(--silver); }
.measure { max-width: 64ch; }

/* Decorative serif slogan lockup */
.slogan { font-family: var(--ff-serif); font-style: italic; font-weight: 500; color: var(--white); }

/* ---------------------------------------------------- Image placeholders -- */
/* On-brand "Foto folgt" surface — dark gloss panel. */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, #1c1c20 0%, #0d0d0f 60%, #090909 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  color: var(--muted);
  isolation: isolate;
}
.ph::after { /* soft sweeping highlight = lack-gloss feel */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
}
.ph__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  padding: 0.5rem 0.85rem; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(0,0,0,0.3);
}
.ph__icon { width: 16px; height: 16px; opacity: 0.7; }

/* ---------------------------------------------------------------- Buttons -- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  --btn-bd: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  min-height: 52px; padding: 0 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  transition: transform var(--dur-fast) var(--ease), background-color var(--dur) ease,
              color var(--dur) ease, box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn__icon { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease); }
.btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--btn-bg); box-shadow: 0 10px 30px -10px var(--red-glow); }
  .btn:hover .btn__icon { transform: translateX(3px); }
  .btn--ghost:hover, .btn--outline:hover { box-shadow: none; }
}
.btn--primary:where(:hover) { background: var(--red-hover); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: var(--line-strong); }
@media (hover: hover) and (pointer: fine) { .btn--outline:hover { --btn-bd: var(--white); } }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: transparent; padding-inline: 0.4rem; }
.btn--block { display: flex; width: 100%; }
.btn--lg { min-height: 58px; padding: 0 2.1rem; font-size: 1rem; }
.btn--sm { min-height: 44px; padding: 0 1.2rem; font-size: 0.88rem; }

/* WhatsApp pill */
.btn--wa { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: var(--line-strong); }
.btn--wa .btn__icon { color: #25D366; }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; min-height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--white); }
.brand__mark { width: 38px; height: 38px; color: var(--white); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--white);
}
.brand__sub {
  font-family: var(--ff-display); font-weight: 500; font-size: 0.6rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); margin-top: 0.28rem;
}
.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--ff-display); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.01em;
  color: var(--silver); position: relative; padding-block: 0.4rem;
  white-space: nowrap;
  transition: color var(--dur) ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--white); }
  .nav__link:hover::after { transform: scaleX(1); }
}
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__cta { display: none; white-space: nowrap; }
.brand__name, .brand__sub { white-space: nowrap; }

/* Mobile menu toggle */
.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; align-items: center;
}
.nav__toggle span {
  /* ganzzahlige Höhe: 3×2px + 2×5px Gap = 16px → zentriert bei (44−16)/2 = 14px,
     alles volle Pixel — keine halbpixeligen, dünner wirkenden Außenstriche */
  width: 22px; height: 2px; background: var(--white); display: block;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  /* top folgt der echten Header-Höhe (JS setzt --header-h), 80px als Fallback */
  position: fixed; inset: var(--header-h, 80px) 0 0 0; z-index: 99;
  background: var(--black);
  padding: 1.5rem var(--pad-x) 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex; flex-direction: column; gap: 0.4rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__drawer.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.nav__drawer a {
  font-family: var(--ff-display); font-weight: 500; font-size: 1.4rem; color: var(--white);
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
}
.nav__drawer .btn { margin-top: 1.5rem; }
/* Offenes Menü: Header-Streifen oben ebenfalls deckend, sonst scheint der Body durch */
.site-header:has(.nav.is-open) {
  background: var(--black);
  border-bottom-color: var(--line);
}
@media (min-width: 1080px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__drawer { display: none; }
}

/* -------------------------------------------------------------------- Hero */
.hero { position: relative; padding-top: clamp(7rem, 14vw, 10rem); padding-bottom: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero::before { /* radial gloss glow */
  content: ""; position: absolute; top: -20%; right: -10%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, var(--red-tint), transparent 65%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
.hero__title { font-size: var(--fs-hero); letter-spacing: -0.03em; }
.hero__title .u-serif { font-size: 1.04em; letter-spacing: -0.01em; }
.hero__slogan {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white); margin-top: 0.4rem;
}
.hero__lead { margin-top: 1.6rem; font-size: var(--fs-lead); color: var(--silver); max-width: 46ch; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__meta {
  margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start;
  font-size: var(--fs-small); color: var(--muted);
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero__meta-item svg { width: 17px; height: 17px; color: var(--red); }
.hero__visual { position: relative; }
.hero__visual .ba { aspect-ratio: 4 / 3.4; }
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  /* Visual ausgeblendet → Copy nutzt die volle Breite (einspaltig) */
  .hero__grid:has(.hero__visual[hidden]) { grid-template-columns: 1fr; }
  .hero__lead { margin-top: 1.8rem; }
}

/* ------------------------------------------------------------- Trust strip */
.trust {
  border-block: 1px solid var(--line);
  background: var(--ink);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.trust__item {
  background: var(--ink); padding: clamp(1.5rem, 4vw, 2.6rem) 1.25rem; text-align: center;
  /* echte Borders statt 1px-Gap-Trick: der verschwindet bei Subpixel-Rundung */
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.trust__item:nth-child(odd) { border-left: 0; }
.trust__item:nth-child(-n+2) { border-top: 0; }
.trust__num {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white); letter-spacing: -0.02em; line-height: 1;
}
.trust__num span { color: var(--red); }
.trust__label {
  margin-top: 0.6rem; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
@media (min-width: 760px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  /* :nth-child(odd) wiederholen, sonst gewinnt die spezifischere Mobile-Regel */
  .trust__item, .trust__item:nth-child(odd) { border-top: 0; border-left: 1px solid var(--line); }
  .trust__item:first-child { border-left: 0; }
}

/* ---------------------------------------------------------------- Services */
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
@media (min-width: 680px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .services__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  /* Bento: vary spans so it isn't a generic equal-card row */
  .service:nth-child(1) { grid-column: span 4; }
  .service:nth-child(2) { grid-column: span 2; }
  .service:nth-child(3) { grid-column: span 2; }
  .service:nth-child(4) { grid-column: span 2; }
  .service:nth-child(5) { grid-column: span 2; }
  .service:nth-child(6) { grid-column: span 3; }
  .service:nth-child(7) { grid-column: span 3; }
}
.service {
  position: relative; overflow: hidden;
  background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.85rem; min-height: 200px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service::before { /* corner sheen on hover */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, var(--red-tint), transparent 55%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .service:hover { border-color: var(--red-line); transform: translateY(-3px); }
  .service:hover::before { opacity: 1; }
}
.service__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; color: var(--red);
  background: var(--red-tint); border: 1px solid var(--red-line);
}
.service__icon svg { width: 22px; height: 22px; }
.service__title { font-size: var(--fs-h3); color: var(--white); }
.service__text { font-size: var(--fs-small); color: var(--silver); }
.service__tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted);
  padding: 0.3rem 0.7rem; border: 1px solid var(--line); border-radius: 100px;
}
.service__soon {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  color: var(--red); background: var(--red-tint);
  border: 1px solid var(--red-line); border-radius: 100px;
  padding: 0.32rem 0.75rem;
}

/* ------------------------------------------------------- Before / After -- */
.ba {
  position: relative; width: 100%; aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  touch-action: pan-y; user-select: none; -webkit-user-select: none;
  background: var(--ink);
}
.ba__layer { position: absolute; inset: 0; display: grid; place-items: center; }
/* lift placeholder label so the centered drag-grip doesn't cover it */
.ba__after .ph__label { transform: translateY(-58px); }
/* AFTER = glossy result (full, underneath) */
.ba__after {
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg, #201416 0%, #141417 55%, #0a0a0c 100%);
}
/* BEFORE = matte / dull (clipped on top) */
.ba__before {
  background:
    linear-gradient(135deg, #1a1a1a 0%, #171717 60%, #131313 100%);
  filter: grayscale(1) brightness(0.82) contrast(0.95);
  clip-path: inset(0 var(--ba-clip, 50%) 0 0);
  will-change: clip-path;
}
.ba__tag {
  position: absolute; top: 0.9rem; font-family: var(--ff-display); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 100px; background: rgba(0,0,0,0.55);
  border: 1px solid var(--line); color: var(--white);
}
.ba__tag--before { left: 0.9rem; }
.ba__tag--after { right: 0.9rem; color: var(--white); border-color: var(--red-line); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%);
  width: 2px; background: var(--white); transform: translateX(-1px);
  z-index: 3; box-shadow: 0 0 0 1px rgba(0,0,0,0.3);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--black);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.6);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba__hint {
  position: absolute; bottom: 0.9rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted);
  background: rgba(0,0,0,0.5); padding: 0.3rem 0.7rem; border-radius: 100px;
  pointer-events: none; transition: opacity var(--dur) ease;
}
.ba.is-touched .ba__hint { opacity: 0; }

/* Gallery of before/after */
.ba-gallery { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }

/* "In Produktion"-Panel, solange noch keine Vorher/Nachher-Fotos vorliegen */
.coming {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}
.coming__icon { width: 40px; height: 40px; color: var(--red); margin-bottom: 1.2rem; }
.coming__title { font-size: var(--fs-h3); color: var(--white); margin-bottom: 0.7rem; }
.coming__text { font-size: var(--fs-small); color: var(--silver); max-width: 48ch; margin: 0 auto; }

/* TikTok-Galerie (Click-to-Load hinter Consent) */
.tt-gallery { display: grid; grid-template-columns: 1fr; gap: 1.1rem; max-width: 1020px; margin-inline: auto; }
@media (min-width: 720px) { .tt-gallery { grid-template-columns: repeat(3, 1fr); } }
.tt-card {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.tt-card iframe { display: block; width: 100%; height: 100%; border: 0; }
.tt-gate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 1.5rem;
}
.tt-gate__icon { width: 30px; height: 30px; color: var(--red); }
.tt-gate__text { font-size: 0.8rem; color: var(--muted); max-width: 30ch; }
@media (min-width: 800px) { .ba-gallery { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------- Packages */
.packages__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
@media (min-width: 620px) { .packages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .packages__grid { grid-template-columns: repeat(4, 1fr); } }
.package {
  position: relative; display: flex; flex-direction: column;
  background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2rem);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .package:hover { transform: translateY(-4px); border-color: var(--line-strong); }
}
.package--featured { border-color: var(--red-line); background: linear-gradient(180deg, var(--red-tint), transparent 30%), var(--anthracite); }
.package__badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); background: var(--red); padding: 0.35rem 0.85rem; border-radius: 100px;
  white-space: nowrap;
}
.package__name {
  font-family: var(--ff-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.package__price { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.35rem; }
.package__amount { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 2.8rem); color: var(--white); letter-spacing: -0.02em; }
.package__from { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.package__rule { margin: 1.4rem 0; height: 1px; background: var(--line); }
.package__features { display: flex; flex-direction: column; gap: 0.75rem; font-size: var(--fs-small); }
.package__features li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--silver); }
.package__features svg { width: 17px; height: 17px; color: var(--red); flex: none; margin-top: 0.2rem; }
/* margin-top:auto pinnt alle CTAs auf dieselbe Höhe, auch bei ungleich vielen Punkten */
.package__cta { margin-top: auto; }
.package__features { margin-bottom: 1.8rem; }
.packages__note,
.section__note {
  margin-top: 2rem; text-align: center; font-size: var(--fs-small); color: var(--muted);
}
.packages__note strong,
.section__note strong { color: var(--silver); }
.packages__note--storno { margin-top: 2.4em; }

/* ---------------------------------------------------------------- Process */
.process__grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 1fr; gap: 1.1rem; counter-reset: step; }
@media (min-width: 680px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: clamp(1.6rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--anthracite);
}
.step__num {
  font-family: var(--ff-serif); font-style: italic; font-weight: 600;
  font-size: 2.6rem; line-height: 1; color: var(--red); margin-bottom: 1rem;
}
.step__title { font-size: var(--fs-h3); color: var(--white); margin-bottom: 0.5rem; }
.step__text { font-size: var(--fs-small); color: var(--silver); }

/* ------------------------------------------------------------------ About */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
  /* Foto ausgeblendet → Copy nutzt die volle Breite */
  .about__grid:has(.about__visual[hidden]) { grid-template-columns: 1fr; }
}
.about__visual .ph { aspect-ratio: 4 / 5; }
.about__values { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
.about__value { display: flex; align-items: center; gap: 0.7rem; font-size: var(--fs-small); color: var(--silver); }
.about__value svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ------------------------------------------------------------ Testimonials */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
/* Solange nur eine Rezension existiert: einspaltig, zentriert */
.reviews__grid--single { grid-template-columns: 1fr; justify-items: center; }
.review--featured { max-width: 780px; }
.review--featured .review__quote { font-size: 1.2rem; }
.review {
  display: flex; flex-direction: column; gap: 1.2rem;
  background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.1rem);
}
.review__stars { display: flex; gap: 0.2rem; color: var(--red); }
.review__stars svg { width: 18px; height: 18px; }
.review__quote { font-family: var(--ff-serif); font-style: italic; font-weight: 500; font-size: 1.35rem; line-height: 1.45; color: var(--white); }
.review__by { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--graphite), var(--anthracite-2));
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 600; color: var(--silver); font-size: 0.9rem;
}
.review__name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.review__car { font-size: 0.82rem; color: var(--muted); }

/* ------------------------------------------------------------------- Area */
.area__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) { .area__grid { grid-template-columns: 1fr 1fr; } }
.area__list { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area__chip {
  font-family: var(--ff-display); font-weight: 500; font-size: 0.85rem;
  padding: 0.5rem 1rem; border: 1px solid var(--line); border-radius: 100px; color: var(--silver);
}
.area__map .ph { aspect-ratio: 4 / 3; }
.area__map iframe {
  display: block; width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  /* OSM-Karte an das dunkle Theme angleichen */
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.92);
}
.map-gate {
  aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--anthracite);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; text-align: center; padding: 2rem;
}
.map-gate__icon { width: 34px; height: 34px; color: var(--red); }
.map-gate__text { font-size: var(--fs-small); color: var(--muted); max-width: 42ch; }
.area__map { position: relative; }
.area__map-open {
  position: absolute; right: 0.9rem; bottom: 0.9rem; z-index: 2;
  background: rgba(10, 10, 10, 0.88);
}
/* Roter Pin in Kartenmitte (= Standort, da OSM den bbox-Mittelpunkt zentriert) */
.area__map-pin {
  position: absolute; left: 50%; top: 50%; width: 40px; height: 40px;
  transform: translate(-50%, -94%);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
  pointer-events: none; z-index: 1;
}
/* Solange das Consent-Gate sichtbar ist, weder Maps-Button noch Pin darüberlegen */
.map-gate:not([hidden]) ~ .area__map-open,
.map-gate:not([hidden]) ~ .area__map-pin { display: none; }

/* ----------------------------------------------------------- Consent banner */
.consent {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 200; width: min(680px, calc(100% - 2rem));
  background: var(--anthracite); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 1.15rem 1.3rem; box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}
.consent__text { font-size: 0.85rem; line-height: 1.55; color: var(--silver); }
.consent__text a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { margin-top: 0.95rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* Formular: zwei Versandwege nebeneinander (mobil gestapelt) */
.form__actions { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
@media (min-width: 620px) { .form__actions { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--white);
}
.faq__icon { width: 22px; height: 22px; flex: none; position: relative; color: var(--red); transition: transform var(--dur) var(--ease); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 1.6px; }
.faq__icon::after { width: 1.6px; height: 14px; transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.faq__panel-inner { overflow: hidden; }
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__answer { padding-bottom: 1.5rem; color: var(--silver); font-size: var(--fs-body); max-width: 64ch; }

/* ---------------------------------------------------------------- Contact */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 920px) { .contact__grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact__methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact__method {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--anthracite);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) { .contact__method:hover { border-color: var(--red-line); transform: translateY(-2px); } }
.contact__method-icon { width: 42px; height: 42px; border-radius: 10px; flex: none; display: grid; place-items: center; color: var(--red); background: var(--red-tint); border: 1px solid var(--red-line); }
.contact__method-icon svg { width: 20px; height: 20px; }
.contact__method-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact__method-value { font-family: var(--ff-display); font-weight: 600; color: var(--white); }
.contact__storno { margin-top: 1.5rem; font-size: var(--fs-small); color: var(--muted); padding: 1rem 1.2rem; border: 1px solid var(--line); border-left: 2px solid var(--red); border-radius: var(--radius); background: var(--ink); }

.form { background: var(--anthracite); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.field__label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--silver); }
.field__label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; background: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint);
}
.field__help { font-size: 0.78rem; color: var(--muted); }
.form__note { margin-top: 0.5rem; font-size: 0.78rem; color: var(--muted); }

/* ----------------------------------------------------------------- Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--ink); padding-block: clamp(3.5rem, 7vw, 5rem); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__slogan { font-family: var(--ff-serif); font-style: italic; color: var(--silver); font-size: 1.2rem; max-width: 32ch; }
.footer__col-title { font-family: var(--ff-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__list a, .footer__list span { color: var(--silver); font-size: var(--fs-small); transition: color var(--dur) ease; }
@media (hover: hover) and (pointer: fine) { .footer__list a:hover { color: var(--white); } }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--silver); transition: border-color var(--dur) ease, color var(--dur) ease; }
.footer__social svg { width: 19px; height: 19px; }
@media (hover: hover) and (pointer: fine) { .footer__social:hover { border-color: var(--red-line); color: var(--white); } }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* -------------------------------------------------------- Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.12s; }
.reveal[data-delay="3"] { transition-delay: 0.18s; }
.reveal[data-delay="4"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --------------------------------------------------------- Legal/content -- */
.site-header--legal {
  position: sticky; background: rgba(10,10,10,0.72);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.legal { padding-top: clamp(7rem, 12vw, 9rem); padding-bottom: var(--section-y); }
.legal__doc { max-width: 760px; margin-inline: auto; }
.legal__doc h1 { font-size: var(--fs-h2); margin-bottom: 2rem; }
.legal__doc h2 { font-size: 1.4rem; margin: 2.5rem 0 0.8rem; }
.legal__doc p, .legal__doc address { margin-bottom: 1rem; color: var(--silver); font-style: normal; }
.legal__stand { margin-top: 2.5rem; font-size: var(--fs-small); color: var(--muted); }
.legal__doc a { color: var(--red); }
.legal__placeholder { padding: 1rem 1.2rem; border: 1px solid var(--red-line); border-left: 2px solid var(--red); border-radius: var(--radius); background: var(--red-tint); color: var(--silver); font-size: var(--fs-small); margin-bottom: 2rem; }

/* skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--red); color: #fff; padding: 0.8rem 1.2rem; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }
