/* ============================================================
   WORKTENTS — ein Angebot von AB Industrie Service
   Seiten-Styles. Stylen ausschließlich gegen die Design-Tokens
   aus _ds/.../styles.css (--brand, --space-*, --fs-*, --radius-* …).
   Marken-Regeln: h2 = Markenrot, h1/h3/h4 = Anthrazit,
   Montserrat als Hausschrift, Ethnocentric nur für die Wortmarke.
   ============================================================ */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }

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

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

/* Sektions-Rhythmus & Bänder ----------------------------------- */
.band { padding-block: var(--section-y); }
.band--alt { background: var(--steel-50); }
.band--ink { background: var(--surface-dark); color: var(--text-on-dark); }
.band--ink h2 { color: #fff; }
.band--ink h3, .band--ink h4 { color: #fff; }

/* Eyebrow + Section-Heading ------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--brand); margin: 0 0 var(--space-3);
}
.eyebrow .dot { color: var(--brand); font-weight: 800; }
.band--ink .eyebrow { color: var(--red-400); }
.band--ink .eyebrow .dot { color: var(--red-400); }

.sec-head { max-width: 64ch; margin-bottom: var(--space-8); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .bar::before {
  content: ""; display: block; width: 56px; height: var(--border-bar);
  background: var(--brand); border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.sec-head.center .bar::before { margin-inline: auto; }
.lead {
  font-size: var(--fs-md); line-height: var(--lh-relaxed);
  color: var(--text-muted); max-width: 62ch; margin: 0;
}
.band--ink .lead { color: var(--text-on-dark-muted); }

/* Icons -------------------------------------------------------- */
.ico { width: 24px; height: 24px; stroke: currentColor; flex: none; }
img.ico { object-fit: contain; vertical-align: middle; }
.ico--lg { width: 28px; height: 28px; }

/* Buttons (Spec: versal, fest gefüllt, Hover = nachdunkeln + -2px) */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); height: var(--control-h-md); padding: 0 var(--space-5);
  border-radius: var(--radius-sm); border: 2px solid transparent;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-sm); letter-spacing: var(--ls-wide);
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; }
.btn--lg { height: var(--control-h-lg); padding: 0 var(--space-6); font-size: var(--fs-base); }
.btn--sm { height: var(--control-h-sm); padding: 0 var(--space-4); font-size: var(--fs-xs); }

.btn--primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-press); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-sm); }

.btn--secondary { background: var(--anthrazit); color: #fff; }
.btn--secondary:hover { background: #000; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary:active { transform: translateY(1px); box-shadow: var(--shadow-sm); }

.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline:active { transform: translateY(1px); }

/* Outline auf dunklem Grund / Markenrot-Band */
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: #fff; color: var(--anthrazit); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost-light:active { transform: translateY(1px); }

.btn--on-brand { background: #fff; color: var(--brand); }
.btn--on-brand:hover { background: var(--anthrazit); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--on-brand:active { transform: translateY(1px); }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transform: none; }
}

/* Badge -------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-2xs); letter-spacing: var(--ls-label);
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-sm);
  line-height: 1;
}
.badge--brand { background: var(--brand); color: #fff; }
.badge--ink { background: var(--anthrazit); color: #fff; }
.badge--accent { background: var(--accent); color: #fff; }
.badge--steel { background: var(--steel-100); color: var(--steel-700); }
.badge--soft { background: var(--brand-soft); color: var(--brand); border: 1px solid var(--red-100); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(17,16,11,0.90);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-on-dark);
}
.site-header .wrap {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: 68px; padding-block: var(--space-3);
}
.brand-lockup { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.brand-lockup img { width: 40px; height: 40px; border-radius: var(--radius-md); }
.brand-lockup .wm {
  font-family: var(--font-wordmark); text-transform: uppercase;
  font-size: 19px; letter-spacing: 0.04em; color: #fff; line-height: 1;
}
.brand-lockup .wm .dot { color: var(--red-400); }
.brand-lockup .by {
  font-size: var(--fs-2xs); letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--text-on-dark-muted);
  margin-top: 4px; display: block;
}
.site-nav { display: flex; gap: var(--space-5); margin-left: auto; align-items: center; }
.site-nav a {
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--text-on-dark-muted); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: #fff; }
.header-cta { display: flex; align-items: center; gap: var(--space-4); margin-left: var(--space-5); }
.header-mail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: #fff; text-decoration: none;
}
.header-mail:hover { color: var(--red-400); }
.header-mail { white-space: nowrap; }
.header-mail .ico { width: 16px; height: 16px; }
/* Sprachumschalter — Custom-Dropdown mit Flaggen */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: var(--control-h-sm); padding: 0 10px;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-sm);
  cursor: pointer; line-height: 1;
}
.lang-btn:hover { border-color: var(--red-400); }
.lang-btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.lang-btn .lang-chev { width: 14px; height: 14px; stroke: currentColor; color: var(--text-on-dark-muted); transition: transform var(--dur-fast) var(--ease-out); }
.lang.open .lang-btn .lang-chev { transform: rotate(180deg); }
.lang-cur-flag { display: inline-flex; }
.fl { width: 21px; height: 14px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,0.2); flex: none; }
.lang-name { white-space: nowrap; }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 184px;
  list-style: none; margin: 0; padding: 6px; z-index: 90;
  background: var(--ink-700); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: none;
}
.lang.open .lang-menu { display: block; }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--radius-sm); cursor: pointer;
  color: var(--text-on-dark); font-size: var(--fs-sm); font-weight: var(--fw-semibold);
}
.lang-menu li:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-menu li[aria-selected="true"] { background: rgba(200,36,58,0.18); color: #fff; }
.lang-menu .fl-wrap { display: inline-flex; }

/* Hamburger */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: var(--control-h-sm); height: var(--control-h-sm);
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle .ico { width: 20px; height: 20px; stroke: currentColor; }
.nav-toggle .nt-close { display: none; }
.site-header.nav-open .nav-toggle .nt-open { display: none; }
.site-header.nav-open .nav-toggle .nt-close { display: block; }

/* ============================================================
   HERO — Split (hell): Text links · Schnell-Einstieg-Panel rechts
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--surface-page); border-bottom: 1px solid var(--border-subtle); }
.hero::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0;
  width: 42%; background: var(--grad-steel); z-index: 0;
}
/* Hero-Hintergrund: Baustellenfotos, zufällige Reihenfolge, Crossfade + langsamer Zoom.
   Der weiße Schleier hält die (anthrazitfarbene) Überschrift gut lesbar. */
/* Bildebene bekommt exakt das Bildformat (3:2) -> ganzes Bild sichtbar, kein Beschnitt,
   kein Leerraum. Nach unten weich ausgeblendet (der Hero ist höher, dort sitzt das Wetter). */
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: auto;
  aspect-ratio: 3 / 2; z-index: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
}
/* Ganzes Bild sichtbar (contain) + sanfte Ken-Burns-Bewegung.
   Richtung abwechselnd (rein/raus), damit beide Bilder beim Crossfade
   etwa gleich groß sind -> weicher Wechsel. */
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  opacity: 0; transition: opacity 1400ms ease; will-change: opacity, transform;
}
.hero-bg img.active { opacity: 1; }
.hero-bg.run img:nth-child(odd).active  { animation: hb-in  8000ms ease-out forwards; }
.hero-bg.run img:nth-child(even).active { animation: hb-out 8000ms ease-out forwards; }
@keyframes hb-in  { from { transform: scale(1);    } to { transform: scale(1.07); } }
@keyframes hb-out { from { transform: scale(1.07); } to { transform: scale(1);    } }
/* Schleier nur, wenn wirklich Fotos da sind (sonst bleibt der Hero wie bisher) */
.hero-bg.has-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.93) 30%,
    rgba(255,255,255,0.72) 48%,
    rgba(255,255,255,0.42) 66%,
    rgba(255,255,255,0.24) 100%);
}
@media (prefers-reduced-motion: reduce) { .hero-bg.run img.active { animation: none; } }

.hero .wrap { position: relative; z-index: 1; padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: var(--space-6); }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: var(--space-9); align-items: center; }
.hero-copy { max-width: 56ch; }
.hero h1 {
  color: var(--anthrazit); font-size: clamp(2.25rem, 5.2vw, var(--fs-4xl));
  line-height: var(--lh-tight); letter-spacing: var(--ls-tighter);
  margin: 0 0 var(--space-4);
}
.hero h1 .accent { color: var(--brand); }
.hero .lead { color: var(--text-muted); font-size: var(--fs-md); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-7); }
.hero-chips { display: flex; flex-wrap: nowrap; gap: var(--space-2); margin-top: var(--space-7); }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: var(--fs-2xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-body); padding: 6px 11px;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
  background: var(--surface-card);
}
.hero-chip .ico { width: 14px; height: 14px; color: var(--brand); flex: none; }
@media (max-width: 760px) { .hero-chips { flex-wrap: wrap; } }

/* Schnell-Einstieg-Panel (dunkel) */
.hero-panel {
  position: relative; overflow: hidden;
  background: var(--grad-ink); color: #fff;
  border-radius: var(--radius-lg); padding: var(--space-7);
  box-shadow: var(--shadow-lg);
}
.hero-panel::before {
  content: ""; position: absolute; top: -50px; right: -70px;
  width: 200px; height: 320px; background: var(--grad-slash);
  transform: skewX(-14deg); opacity: 0.85;
}
.hero-panel .pl-head { position: relative; display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-5); }
.hero-panel .pl-title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-lg); color: #fff; }
.hero-panel .pl-kicker { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--red-400); font-weight: var(--fw-bold); }
.hero-cats { position: relative; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.hero-cats a {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-2);
  border-top: 1px solid var(--border-on-dark);
  color: #fff; text-decoration: none;
  transition: padding var(--dur-fast) var(--ease-out);
}
.hero-cats li:last-child a { border-bottom: 1px solid var(--border-on-dark); }
.hero-cats a:hover { padding-left: var(--space-4); }
.hero-cats .ci {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-on-dark); color: var(--red-400);
}
.hero-cats .ci .ico { width: 20px; height: 20px; }
.hero-cats .ct { flex: 1; }
.hero-cats .ct b { display: block; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-base); color: #fff; line-height: 1.2; }
.hero-cats .ct span { font-size: var(--fs-xs); color: var(--text-on-dark-muted); }
.hero-cats .ca { color: var(--text-on-dark-muted); transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.hero-cats .ca .ico { width: 18px; height: 18px; }
.hero-cats a:hover .ca { transform: translateX(3px); color: var(--red-400); }

/* ============================================================
   STAT-LEISTE (Vertrauensband)
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5); border-top: 1px solid var(--border-on-dark);
  background: var(--ink-900);
}
.stat {
  padding: var(--space-7) var(--space-4); text-align: center;
  border-right: 1px solid var(--border-on-dark);
}
.stat:last-child { border-right: 0; }
.stat .v {
  font-family: var(--font-display); font-weight: var(--fw-extrabold);
  font-size: var(--fs-2xl); color: #fff; line-height: 1; letter-spacing: var(--ls-tight);
}
.stat .l {
  display: block; margin-top: var(--space-3);
  font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-on-dark-muted); font-weight: var(--fw-semibold);
}
.stat .eu-flag {
  display: inline-block; width: 50px; height: 33px; border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22); vertical-align: middle;
}

/* ============================================================
   PRODUKT-KARTEN
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.pcard {
  display: flex; flex-direction: column;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-top: var(--border-bar) solid var(--brand);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
/* Bild-Slider (oben in der Karte) */
.pcard-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--steel-100); border-bottom: 1px solid var(--border-subtle); }
.pcard-media-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2);
  background: var(--brand-soft); color: var(--brand);
}
.pcard-media-ph .ico { width: 34px; height: 34px; }
.pcard-media-ph span { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--text-muted); }
.pcard-media .slides { position: absolute; inset: 0; }
.pcard-media .slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity var(--dur-slow) var(--ease-out);
}
.pcard-media .slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .pcard-media .slide { transition: none; } }
.pcard-head {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-6) var(--space-6) var(--space-4);
}
.pcard-ico {
  width: 52px; height: 52px; flex: none; display: grid; place-items: center;
  background: var(--brand-soft); border: 1px solid var(--red-100);
  border-radius: var(--radius-md); color: var(--brand);
}
.pcard-ico .ico { width: 26px; height: 26px; }
.pcard h3 { margin: 0; font-size: var(--fs-lg); }
.pcard-body { padding: 0 var(--space-6) var(--space-5); flex: 1; }
.pcard-body p { color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--lh-relaxed); margin: 0 0 var(--space-4); }
.pcard-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.pcard-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-sm); color: var(--text-body); }
.pcard-feats .ico { width: 18px; height: 18px; color: var(--status-success); margin-top: 1px; }
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-4) var(--space-6); border-top: 1px solid var(--border-subtle);
  background: var(--steel-50);
}
.pcard-price { font-size: var(--fs-sm); color: var(--text-muted); }
.pcard-price b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--anthrazit); }
.pcard-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--brand); text-decoration: none;
}
.pcard-link .ico { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.pcard-link:hover { color: var(--brand-press); }
.pcard-link:hover .ico { transform: translateX(3px); }

/* ============================================================
   BAUSTELLENSCHIRME — kleine Ergänzungs-Sektion
   ============================================================ */
.schirm {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-left: var(--border-bar) solid var(--brand);
  border-radius: var(--radius-lg); padding: var(--space-7); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.schirm-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-7); align-items: center; }
.schirm-main { display: flex; gap: var(--space-5); align-items: flex-start; }
.schirm-ico {
  width: 56px; height: 56px; flex: none; display: grid; place-items: center;
  background: var(--brand-soft); border: 1px solid var(--red-100);
  border-radius: var(--radius-md); color: var(--brand);
}
.schirm-ico .ico { width: 28px; height: 28px; }
.schirm-main h2 { margin: 0; font-size: var(--fs-xl); }
.schirm-main .eyebrow { margin-bottom: var(--space-2); }
.schirm-main p { margin: 0 0 var(--space-4); color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }
.schirm-models { list-style: none; margin: 0; padding: 0 0 0 var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); border-left: 1px solid var(--border-subtle); }
.schirm-models li { display: flex; flex-direction: column; gap: 2px; }
.schirm-models b { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--anthrazit); font-size: var(--fs-md); }
.schirm-models span { font-size: var(--fs-sm); color: var(--text-muted); }

/* Abstand Produkte -> Schirme verkleinern */
#produkte { padding-bottom: var(--space-7); }
#schirme { padding-top: var(--space-4); }

/* Laufende Kachel-Galerie (Marquee) — bündig im unteren Rand der Schirm-Box */
.schirm-marquee {
  position: relative; overflow: hidden;
  margin: var(--space-6) calc(var(--space-7) * -1) calc(var(--space-7) * -1);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.mq-ph { display: flex; align-items: center; justify-content: center; gap: var(--space-2); height: 120px; color: var(--brand); }
.mq-ph .ico { width: 26px; height: 26px; }
.mq-ph span { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--text-muted); }
.has-img .mq-ph { display: none; }
.pcard-media.has-img .pcard-media-ph { display: none; }
.mq-track { display: flex; width: max-content; }
.run .mq-track { animation: mq-scroll linear infinite; }
.run:hover .mq-track { animation-play-state: paused; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-tile { flex: 0 0 auto; width: 160px; height: 160px; margin-right: var(--space-3); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); background: var(--steel-100); }
.mq-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .schirm-marquee.run .mq-track { animation: none; } }
@media (max-width: 560px) { .mq-tile { width: 150px; height: 150px; } }

/* ============================================================
   AUSWAHLHILFE
   ============================================================ */
.guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.gcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-left: var(--border-bar) solid var(--brand);
  border-radius: var(--radius-md); padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.gcard > .ico { width: 28px; height: 28px; color: var(--brand); margin-bottom: var(--space-3); }
.gcard h4 { margin: 0 0 var(--space-2); font-size: var(--fs-md); }
.gcard p { margin: 0 0 var(--space-3); font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }
.gcard .pick {
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--anthrazit);
  display: inline-flex; align-items: center; gap: 6px;
}
.gcard .pick .ico { width: 16px; height: 16px; color: var(--brand); margin: 0; }
/* Ken-Burns-Showcase in der Box — ein großes Bild, langsamer Zoom + Crossfade, unten bündig */
.gcard-show {
  position: relative; overflow: hidden;
  margin: auto calc(var(--space-6) * -1) calc(var(--space-6) * -1);
  border-top: 1px solid var(--border-subtle);
  height: 180px; background: #fff;
}
.ks-ph { display: flex; align-items: center; justify-content: center; gap: var(--space-2); height: 100%; color: var(--brand); }
.ks-ph .ico { width: 26px; height: 26px; }
.ks-ph span { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--text-muted); }
.gcard-show.has-img .ks-ph { display: none; }
.ks-stage { position: absolute; inset: 0; }
/* Ganzes Bild sichtbar (kein Beschnitt), nur sanftes Überblenden */
.ks-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: var(--space-3);
  opacity: 0; transition: opacity 900ms ease; will-change: opacity;
}
.ks-img.active { opacity: 1; }
/* Lebendiger Zoom (±10 %), Richtung abwechselnd: ein Bild klein→groß, das nächste
   groß→klein. So sind beim Crossfade beide Bilder etwa gleich groß → weicher Wechsel. */
.gcard-show.run .ks-img:nth-child(odd).active  { animation: ks-zoom-in  6000ms ease-out forwards; }
.gcard-show.run .ks-img:nth-child(even).active { animation: ks-zoom-out 6000ms ease-out forwards; }
@keyframes ks-zoom-in  { from { transform: scale(1);    } to { transform: scale(1.10); } }
@keyframes ks-zoom-out { from { transform: scale(1.10); } to { transform: scale(1);    } }
@media (prefers-reduced-motion: reduce) { .gcard-show.run .ks-img.active { animation: none; } }

/* ============================================================
   FEATURE-BAND (dunkel) — Wetterschutz / Warum AB
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.fcard {
  padding: var(--space-6); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md); background: rgba(255,255,255,0.04);
}
.fcard .ico { width: 28px; height: 28px; color: var(--red-400); margin-bottom: var(--space-4); }
.fcard h4 { margin: 0 0 var(--space-2); color: #fff; font-size: var(--fs-md); }
.fcard p { margin: 0; font-size: var(--fs-sm); color: var(--text-on-dark-muted); line-height: var(--lh-relaxed); }

/* Hinweisbox (achtung) ---------------------------------------- */
/* TOP-Prinzip (dunkles Band) */
.top-principle { display: flex; align-items: stretch; gap: var(--space-3); margin-top: var(--space-8); }
.tp-step {
  flex: 1; display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md); background: rgba(255,255,255,0.04);
}
.tp-step--on { border-color: var(--red-400); background: rgba(200,36,58,0.12); }
.tp-letter { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--fs-3xl); line-height: 0.9; color: var(--text-on-dark-muted); flex: none; }
.tp-step--on .tp-letter { color: var(--red-400); }
.tp-body h4 { margin: 0 0 var(--space-1); color: #fff; font-size: var(--fs-md); }
.tp-body p { margin: 0; color: var(--text-on-dark-muted); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }
.tp-tag { display: inline-block; margin-top: var(--space-2); font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--red-400); }
.tp-arrow { align-self: center; flex: none; color: var(--text-on-dark-muted); }
.tp-arrow .ico { width: 20px; height: 20px; }
.ws-cta { margin-top: var(--space-7); }

.hinweis {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--steel-50); border: 1px solid var(--border-subtle);
  border-left: var(--border-bar) solid var(--status-warning);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xs);
  padding: var(--space-5) var(--space-6); margin-top: var(--space-8);
}
.hinweis .ico { width: 24px; height: 24px; color: var(--status-warning); flex: none; margin-top: 2px; }
.hinweis h4 { margin: 0 0 var(--space-1); font-size: var(--fs-md); color: var(--anthrazit); }
.hinweis p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ============================================================
   CTA-BAND (Markenrot)
   ============================================================ */
.cta-band { background: var(--brand); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: -40px; right: -80px;
  width: 320px; height: 460px; background: rgba(17,16,11,0.16);
  transform: skewX(-14deg);
}
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; font-size: var(--fs-2xl); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin: var(--space-3) auto 0; font-size: var(--fs-md); }
.cta-band .cta-eyebrow { display: inline-flex; align-items: center; gap: var(--space-2); margin: 0 0 var(--space-3); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(255,255,255,0.85); }
.cta-band .cta-eyebrow .dot { color: #fff; }
.cta-band .cta-lead { max-width: 58ch; }

/* Mitarbeiter-Zitat mit rundem Porträt — Foto links neben dem Slogan */
.cta-quote { display: flex; align-items: center; justify-content: center; gap: var(--space-6); flex-wrap: wrap; text-align: left; max-width: 760px; margin: 0 auto var(--space-4); }
.cta-quote-text { flex: 1 1 380px; min-width: 0; }
.cta-avatar {
  display: block; position: relative; width: 120px; height: 120px; flex: none; margin: 0;
  border-radius: 50%; overflow: hidden; border: 3px solid #fff;
  box-shadow: var(--shadow-md); background: rgba(255,255,255,0.15);
}
.cta-avatar-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.9); }
.cta-avatar-ph .ico { width: 52px; height: 52px; }
.cta-avatar-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-band .cta-quote .cta-slogan { margin: 0; max-width: none; }
.cta-band .cta-attrib { margin: var(--space-2) 0 0; font-size: var(--fs-sm); color: rgba(255,255,255,0.82); }
@media (max-width: 620px) {
  .cta-quote { flex-direction: column; text-align: center; gap: var(--space-4); }
  .cta-quote-text { max-width: none; }
}

/* 3-Schritte-Ablauf */
.cta-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5) var(--space-6); max-width: 940px; margin: var(--space-8) auto 0; text-align: left; }
.cta-step { display: flex; gap: var(--space-4); align-items: flex-start; }
.cta-step .n {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border-radius: var(--radius-pill); background: #fff; color: var(--brand);
  font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--fs-md);
  box-shadow: var(--shadow-sm);
}
.cta-step-body b { display: block; color: #fff; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md); margin-bottom: 2px; }
.cta-step-body span { display: block; color: rgba(255,255,255,0.85); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }

.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-8); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: start; }
.contact-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-top: var(--border-bar) solid var(--brand);
  border-radius: var(--radius-lg); padding: var(--space-7); box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-5); }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ico { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 3px; }
.contact-row .k { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); font-weight: var(--fw-bold); }
.contact-row .v { font-size: var(--fs-md); color: var(--anthrazit); font-weight: var(--fw-semibold); }
.contact-row a.v { text-decoration: none; }
.contact-row a.v:hover { color: var(--brand); }
.contact-note { margin-top: var(--space-6); }
.checklist { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-body); }
.checklist .ico { width: 18px; height: 18px; color: var(--status-success); flex: none; margin-top: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-900); color: var(--text-on-dark-muted); padding-block: var(--space-9) var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); }
.footer-brand img { width: 240px; max-width: 100%; height: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-on-dark-muted); max-width: 38ch; margin: 0; }
.footer-col h5 {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-2xs); letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: #fff; margin: 0 0 var(--space-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--fs-sm); color: var(--text-on-dark-muted); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center;
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid var(--border-on-dark);
  font-size: var(--fs-xs); color: var(--text-subtle);
}
.footer-bottom .dotrow { color: var(--text-on-dark-muted); }
.footer-bottom .dotrow .dot { color: var(--red-400); }

/* ============================================================
   WETTER-WIDGET
   ============================================================ */
#wetter { scroll-margin-top: 90px; }

/* Kompakte Variante im unteren Hero-Bereich (ca. halbe Höhe) */
.weather--hero { margin-top: var(--space-8); border-width: 4px; }
.weather--hero .weather-inner { padding: var(--space-5) var(--space-6); gap: var(--space-6); }
.weather--hero .weather-ico { width: 88px; height: 88px; }
.weather--hero .weather-ico .ico { width: 76px; height: 76px; }
.weather--hero .weather-temp { font-size: var(--fs-2xl); }
.weather--hero .weather-cond { font-size: var(--fs-base); margin-top: 4px; }
.weather--hero .weather-reco-text { margin-bottom: var(--space-4); }
.weather--hero .weather-form { padding: var(--space-4) var(--space-6); }
.weather--hero .weather-badges { padding: var(--space-4) var(--space-6); }

/* Dunkle Karte mit rotem Rahmen — Überschrift sitzt oben im Rahmen */
.weather {
  position: relative; overflow: hidden;
  background: var(--grad-ink); color: #fff;
  border: 6px solid var(--brand);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.weather::before {
  content: ""; position: absolute; top: -50px; right: -70px;
  width: 220px; height: 360px; background: var(--grad-slash);
  transform: skewX(-14deg); opacity: 0.8; z-index: 0;
}
.weather-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }

.weather-head { position: relative; z-index: 1; padding: var(--space-6) var(--space-8) 0; }
.weather-head .eyebrow,
.weather-head .eyebrow .dot { color: var(--red-400); margin-bottom: var(--space-2); }
.weather-head h2 { color: #fff; margin: 0 0 var(--space-2); }
.weather-head .weather-lead { margin: 0; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-on-dark-muted); max-width: 64ch; }

.weather-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7);
  padding: var(--space-7) var(--space-8); align-items: center;
}
.weather-now { display: flex; align-items: center; gap: var(--space-5); }
.weather-ico {
  width: 100px; height: 100px; flex: none; display: grid; place-items: center;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-on-dark); color: var(--red-400);
}
.weather-ico .ico { width: 88px; height: 88px; }
.weather-head-row { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.weather-temp { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--fs-3xl); line-height: 1; color: #fff; letter-spacing: var(--ls-tight); }
.weather-place { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--text-on-dark); }
.weather-place .ico { width: 50px; height: 50px; color: var(--red-400); }
.weather-cond { margin-top: var(--space-2); font-size: var(--fs-md); font-weight: var(--fw-semibold); color: #fff; }
/* Badge-Reihe: nach Trennlinie, alle Badges nebeneinander, gleiche Höhe */
.weather-badges {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: stretch; gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  border-top: 1px solid var(--border-on-dark);
}
.weather-sub, .weather-tags { display: contents; }

/* Einheitliches Badge (Messwert-Chip wie Warn-Tag) — nur die Farbe wechselt je nach Gefahr */
.weather-sub > span,
.weather-tag {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 60px; padding: 3px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-on-dark);
  color: var(--text-on-dark);
  font-family: var(--font-sans); font-weight: var(--fw-semibold);
  font-size: var(--fs-sm); line-height: 1.3; letter-spacing: normal; text-transform: none;
}
.weather-sub > span .ico { width: 50px; height: 50px; flex: none; }
.weather-sub > span[title], .weather-tag[title] { cursor: help; }

/* Gefahrenstufen — gleiche Optik, nur Farbe + weißer Text/Icon */
.weather-sub > span.is-alert,
.weather-tag { color: #fff; }
.weather-sub > span.is-alert img.ico { filter: brightness(0) invert(1); }
.weather-tag { background: rgba(200,36,58,0.26); border-color: var(--red-400); }
.weather-sub > span.is-alert.lvl-warn,  .weather-tag.lvl-warn  { background: rgba(251,192,45,0.22); border-color: #FBC02D; }
.weather-sub > span.is-alert.lvl-hot,   .weather-tag.lvl-hot   { background: rgba(251,140,0,0.24); border-color: #FB8C00; }
.weather-sub > span.is-alert.lvl-danger,.weather-tag.lvl-danger{ background: rgba(244,81,30,0.28); border-color: #F4511E; }
.weather-sub > span.is-alert.lvl-extreme,.weather-tag.lvl-extreme{ background: rgba(200,36,58,0.34); border-color: #C8243A; }
.weather-sub > span.is-alert.lvl-cold,  .weather-tag.lvl-cold  { background: rgba(111,168,255,0.24); border-color: #6FA8FF; }
.weather-reco-label { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--red-400); font-weight: var(--fw-bold); margin-bottom: var(--space-2); }
.weather-reco-text { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-on-dark); margin-bottom: var(--space-4); }
.reco-key { font-weight: var(--fw-extrabold); font-size: 1.12em; color: #fff; }
.weather-form {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center;
  padding: var(--space-5) var(--space-8);
  border-top: 1px solid var(--border-on-dark); background: rgba(0,0,0,0.18);
}
.weather-form input {
  flex: 1; min-width: 180px; height: var(--control-h-md);
  background: rgba(255,255,255,0.96); color: var(--anthrazit);
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm);
  padding: 0 var(--space-4); font-family: var(--font-sans); font-size: var(--fs-base);
}
.weather-form input::placeholder { color: var(--text-muted); }
.weather-form input:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.weather-credit { flex-basis: 100%; margin: var(--space-1) 0 0; font-size: var(--fs-2xs); color: var(--text-on-dark-muted); }
/* Dezente Klickzähler-Box unter den Buttons */
.weather-hits {
  flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 6px 18px;
  margin: var(--space-3) 0 0; padding: 8px 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm); font-size: var(--fs-2xs); color: var(--text-on-dark-muted);
}
.weather-hits span { display: inline-flex; align-items: center; gap: 6px; }
.weather-hits .ico { width: 13px; height: 13px; color: var(--red-400); }
.weather-hits b { color: var(--text-on-dark); font-weight: var(--fw-semibold); }
.weather-privacy { flex-basis: 100%; margin: var(--space-2) 0 0; font-size: var(--fs-2xs); line-height: var(--lh-relaxed); color: var(--text-subtle); max-width: 92ch; }

/* Empfehlungen — zwei ausgerichtete Karten nebeneinander, je mit Produktbild */
.weather-recos {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-top: 1px solid var(--border-on-dark);
}
.reco { display: flex; gap: var(--space-4); align-items: flex-start; }
.reco-thumb {
  width: 76px; height: 76px; flex: none; display: grid; place-items: center; overflow: hidden;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-on-dark); color: var(--red-400);
}
.reco-thumb .ico { width: 38px; height: 38px; }
.reco-thumb img { width: 100%; height: 100%; object-fit: cover; }
.reco-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.reco-body .btn { align-self: flex-start; max-width: 100%; white-space: normal; }

/* Weitere Empfehlungen (Platz 3 + 4) — kleinere Zeile darunter */
.weather-recos-more {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-6);
  padding: var(--space-5) var(--space-8) var(--space-6);
  border-top: 1px solid var(--border-on-dark);
}
.weather-recos-more .more-head {
  grid-column: 1 / -1; margin: 0;
  font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--red-400); font-weight: var(--fw-bold);
}
.reco--sm { gap: var(--space-3); }
.reco--sm .reco-thumb { width: 54px; height: 54px; }
.reco--sm .reco-thumb .ico { width: 26px; height: 26px; }
.reco--sm .weather-reco-text { font-size: var(--fs-xs); line-height: var(--lh-relaxed); color: var(--text-on-dark-muted); margin-bottom: var(--space-2); }
.reco--sm .reco-key { font-size: 1.05em; }
.reco--sm .btn--sm { height: auto; padding: 5px 12px; font-size: var(--fs-2xs); }

/* Vorschau (nächste Stunden + Tage) */
.weather-forecast { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-6); min-width: 0; align-content: start; }
.wf-group { display: flex; flex-direction: column; gap: var(--space-2); }
.wf-h { font-size: var(--fs-2xs); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--red-400); }
.wf-row { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.wf-cell {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 64px; padding: var(--space-3) var(--space-2);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
}
.wf-cell .ico { width: 48px; height: 48px; color: var(--red-400); }
.wf-t { font-size: var(--fs-2xs); font-weight: var(--fw-bold); color: #fff; letter-spacing: var(--ls-wide); text-transform: uppercase; }
.wf-temp { font-size: var(--fs-xs); color: var(--text-on-dark); white-space: nowrap; }

/* ============================================================
   FAQ-AKKORDEON (native details/summary)
   ============================================================ */
.faq { max-width: 880px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border-subtle); border-left: var(--border-bar) solid var(--brand);
  border-radius: var(--radius-md); background: var(--surface-card);
  box-shadow: var(--shadow-xs); margin-bottom: var(--space-4); overflow: hidden;
  transition: background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
/* Geöffnetes Element farblich hervorheben */
.faq details[open] { background: var(--brand-soft); border-color: var(--red-100); border-left-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq details[open] summary { color: var(--brand); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); font-family: var(--font-display);
  font-weight: var(--fw-semibold); font-size: var(--fs-md); color: var(--anthrazit);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { flex: 1; }
.faq summary .plus { width: 22px; height: 22px; flex: none; color: var(--brand); transition: transform var(--dur-base) var(--ease-out); }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq summary:hover { color: var(--brand); }
.faq .answer { padding: 0 var(--space-6) var(--space-5) calc(var(--space-6) + 22px + var(--space-4)); }
.faq .answer p { margin: 0; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-muted); }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .header-mail { display: none; }
}
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; }
  .site-header.nav-open .site-nav {
    display: flex; flex-direction: column; gap: var(--space-1);
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-700); border-bottom: 1px solid var(--border-on-dark);
    padding: var(--space-4) var(--container-pad); box-shadow: var(--shadow-lg);
  }
  .site-header.nav-open .site-nav a { padding: 10px 2px; font-size: var(--fs-md); }
}
@media (max-width: 980px) {
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  /* Text läuft über die volle Breite -> gleichmäßiger Schleier, aber Foto bleibt sichtbar */
  .hero-bg.has-img::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.84) 55%,
      rgba(255,255,255,0.66) 100%);
  }
  /* Fließtext kräftiger, damit er über dem Foto sicher lesbar bleibt */
  .hero-bg.has-img ~ .wrap .lead { color: var(--anthrazit); }
  .cards { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .weather-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .weather-recos { grid-template-columns: 1fr; gap: var(--space-5); }
  .weather-recos-more { grid-template-columns: 1fr; gap: var(--space-4); }
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border-on-dark); }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .schirm-top { grid-template-columns: 1fr; gap: var(--space-5); }
  .schirm-models { border-left: 0; border-top: 1px solid var(--border-subtle); padding: var(--space-5) 0 0; }
  .top-principle { flex-direction: column; }
  .tp-arrow { transform: rotate(90deg); }
  .cta-steps { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 560px) {
  .site-header .wrap { gap: var(--space-2); padding-inline: var(--space-4); }
  .brand-lockup img { width: 32px; height: 32px; }
  .brand-lockup .wm { font-size: 15px; letter-spacing: 0.02em; }
  .brand-lockup .by { display: none; }
  .header-cta { margin-left: auto; gap: var(--space-2); }
  .header-cta .btn--sm { padding: 0 var(--space-3); }
  .lbl-full { display: none; }
  #langCurName { display: none; } /* Sprach-Button: nur Flagge + Pfeil (Wortmarke kollidiert sonst) */
  .weather-temp { font-size: var(--fs-2xl); }
  .weather-inner, .weather-recos, .weather-recos-more { padding-left: var(--space-5); padding-right: var(--space-5); }
  .weather-form { padding-left: var(--space-5); padding-right: var(--space-5); }
}
@media (max-width: 400px) {
  .site-header .wrap { gap: 6px; }
  .brand-lockup { gap: 6px; }
  .brand-lockup img { width: 28px; height: 28px; }
  .brand-lockup .wm { font-size: 13px; }
  .header-cta { gap: 6px; }
  .header-cta .globe { display: none; }
  .lang-chev { display: none; } /* Platz sparen: Sprach-Button nur Flagge */
  select.lang { padding: 0 22px 0 12px; }
}
