/* ============================================================
   Einstein Fugentechnik — Website styles
   Layered on the design-system tokens (../../styles.css).
   Sober, engineered: signal red, cool grays, squared radii,
   restrained shadows, the 6px red bar device.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--red-600); color: #fff; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1360px; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-9); }
.section--contact { padding-top: var(--space-6); }
.section--sunken { background: var(--surface-subtle); }
.section--ink { background: var(--surface-inverse); color: var(--text-inverse); }

/* Floating Objekte layer: solid white rounded card on a dark stage that extends up
   and fades into the aerial image — the fade shows only in the side margins */
.dark-stage {
  position: relative; z-index: 1;
  margin-top: -140px; padding-top: 72px;
  background: linear-gradient(180deg, rgba(22,24,26,0) 0px, rgba(22,24,26,1) 140px);
}
.dark-stage .section--ink { background: transparent; }
.objekte-float {
  position: relative; z-index: 2;
  margin: 0 clamp(12px, 3.2vw, 48px);
  border-radius: 40px;
  background: var(--surface-subtle);
  overflow: hidden;
}
@media (max-width: 820px) {
  .dark-stage { margin-top: -90px; padding-top: 50px; }
  .objekte-float { margin: 0 12px; border-radius: 26px; }
}
.divider { height: 1px; background: var(--border-subtle); border: 0; margin: 0; }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--eyebrow); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--text-brand);
  display: inline-flex; align-items: center; gap: var(--space-2); margin: 0;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); display: inline-block; }
.section--ink .eyebrow, .hero .eyebrow { color: #fff; }
.section--ink .eyebrow::before, .hero .eyebrow::before { background: var(--brand); }

.display {
  font-family: var(--font-display); font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-display); line-height: var(--lh-display);
  color: var(--text-strong); margin: 0; text-wrap: balance;
}
.display--2xl { font-size: var(--display-2xl); }
.display--xl  { font-size: var(--display-xl); }
.display--lg  { font-size: var(--display-lg); }
.display--md  { font-size: var(--display-md); }
.section--ink .display, .hero .display { color: #fff; }

.rule { width: 56px; height: 2px; background: var(--brand); border: 0; margin: var(--space-4) 0; }
.lead {
  font-size: var(--text-lg); line-height: var(--lh-body); color: var(--text-muted);
  max-width: 60ch; margin: 0; text-wrap: pretty;
}
.section--ink .lead { color: var(--text-inverse-muted); }
.mono {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  letter-spacing: var(--tracking-mono);
}

.section-head { margin-bottom: var(--space-8); }
.section-head .display { margin-top: var(--space-3); }
.section-head .lead { margin-top: var(--space-4); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-sans); font-size: var(--text-sm); font-weight: var(--fw-semibold);
  letter-spacing: .01em; line-height: 1; cursor: pointer; white-space: nowrap;
  padding: 14px 22px; border-radius: var(--radius-sm); border: var(--bw-strong) solid transparent;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn svg { flex: 0 0 auto; }
.btn--primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn--primary:active { background: var(--brand-press); border-color: var(--brand-press); }
.btn--outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--border-default); color: var(--text-strong); }
.btn--ghost:hover { border-color: var(--text-faint); background: var(--surface-subtle); }
.btn--on-dark { background: #fff; border-color: #fff; color: var(--gray-900); }
.btn--on-dark:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn--ghost-on-dark { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--soft { background: #fff; border-color: #fff; color: var(--text-strong); }
.btn--soft:hover { background: #F0F1F2; border-color: #F0F1F2; }
.btn--soft:active { background: #E4E6E9; border-color: #E4E6E9; }
/* Header CTA — brand-outlined, clearly visible without dominating */
.btn--ctaheader { background: #fff; border-color: var(--brand); color: var(--text-brand); box-shadow: 0 1px 2px rgba(196,30,58,.12); }
.btn--ctaheader svg { color: var(--brand); }
.btn--ctaheader:hover { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 4px 12px -3px rgba(196,30,58,.4); }
.btn--ctaheader:hover svg { color: #fff; }
.btn--ctaheader:active { transform: translateY(1px); }
.btn--sm { padding: 10px 16px; font-size: var(--text-xs); }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: var(--fw-semibold); font-size: var(--text-sm); color: var(--text-brand);
  letter-spacing: .01em;
}
.textlink svg { transition: transform var(--dur-base) var(--ease-out); }
.textlink:hover svg { transform: translateX(4px); }
.section--ink .textlink { color: #fff; }

/* ---- Tag ---- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .02em;
  color: var(--text-muted); background: var(--surface-sunken);
  border-radius: var(--radius-pill); padding: 4px 11px; line-height: 1.5;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__bar { display: flex; align-items: center; gap: var(--space-5); height: 88px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; cursor: pointer; }
.brand__logo { height: 54px; width: auto; display: block; }
.brand__bar { width: 6px; height: 34px; background: var(--brand); border-radius: 1px; }
.brand__wm { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 18px; letter-spacing: -.01em; color: var(--text-strong); }
.brand__sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--text-body);
  padding: 10px 14px; border-radius: var(--radius-sm); position: relative;
  transition: color var(--dur-fast);
}
.nav__link:hover { color: var(--text-strong); }
.nav__link.is-active { color: var(--text-brand); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brand);
}
.header__actions { display: flex; align-items: center; gap: var(--space-3); flex: 0 0 auto; }
.lang {
  display: inline-flex; border: 1px solid var(--border-default); border-radius: var(--radius-sm); overflow: hidden;
}
.lang button {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 7px 9px; background: transparent; border: 0; color: var(--text-muted); cursor: pointer;
}
.lang button.is-active { background: var(--gray-900); color: #fff; }
.burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  border: 1px solid var(--border-default); border-radius: var(--radius-sm); background: #fff; color: var(--text-strong); cursor: pointer; }

.mobile-nav { display: none; }

/* ============================================================
   Hero — three variants
   ============================================================ */
.hero { position: relative; }

/* variant: photo (full-bleed photo + dark left scrim) */
.hero--photo { min-height: 86vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--gray-900); }
.hero--photo .hero__media { position: absolute; inset: 0; }
.hero--photo .hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* crossfading slideshow */
.hero--photo .hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease-standard); will-change: opacity; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06) translateZ(0); transform-origin: 50% 50%; backface-visibility: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .hero__slide img { animation: heroKen 26s ease-in-out infinite alternate; will-change: transform; }
  .hero__slide:nth-child(2) img { animation-delay: -7s; }
  .hero__slide:nth-child(3) img { animation-delay: -14s; }
  .hero__slide:nth-child(4) img { animation-delay: -21s; }
}
@keyframes heroKen { from { transform: scale(1.06) translate(0, 0) translateZ(0); } to { transform: scale(1.28) translate(-2.5%, -1.8%) translateZ(0); } }
.hero__dots { position: absolute; z-index: 3; right: clamp(16px, 4vw, 52px); bottom: clamp(18px, 4vh, 40px); display: flex; gap: 9px; }
.hero__dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.72); background: transparent; cursor: pointer; transition: width var(--dur-base) var(--ease-out), background var(--dur-base); }
.hero__dot.is-active { width: 26px; background: #fff; border-color: #fff; }
.hero__dot:hover { background: rgba(255,255,255,.55); }
.hero--photo .hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,18,20,.72) 0%, rgba(16,18,20,.44) 24%, rgba(16,18,20,.1) 52%, rgba(16,18,20,0) 78%);
}
.hero--photo .hero__inner { position: relative; padding-block: clamp(64px, 12vh, 132px); max-width: 760px; margin-inline: clamp(24px, 6vw, 96px) auto; }
.hero--photo .display { font-size: clamp(2.6rem, 6vw, var(--display-2xl)); }
.hero__lead { margin-top: var(--space-5); max-width: 52ch; font-size: var(--text-lg); color: rgba(255,255,255,.86); line-height: 1.55; }
.hero__actions { margin-top: var(--space-7); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__proof {
  margin-top: var(--space-7); display: inline-flex; align-items: center; gap: 12px;
  font-size: var(--text-sm); color: rgba(255,255,255,.9);
  border-left: var(--bw-bar) solid var(--brand); padding: 6px 0 6px 16px; max-width: 46ch;
}
.hero--photo .hero__proof {
  color: #fff; padding: 10px 16px 10px 16px;
  background: rgba(16,18,20,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

/* variant: split (text left, photo right) */
.hero--split { background: var(--surface-page); }
.hero--split .hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; gap: 0; }
.hero--split .hero__text { padding-block: clamp(56px, 9vh, 120px); padding-right: var(--space-9); }
.hero--split .display { font-size: clamp(2.4rem, 4.4vw, var(--display-xl)); color: var(--text-strong); }
.hero--split .hero__lead { color: var(--text-muted); }
.hero--split .hero__proof { color: var(--text-body); }
.hero--split .hero__media { position: relative; min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; }
.hero--split .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero--split .hero__media::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--brand); }

/* variant: light (centered technical) */
.hero--light { background: var(--surface-subtle); border-bottom: 1px solid var(--border-subtle); }
.hero--light .hero__inner { padding-block: clamp(64px, 12vh, 128px); max-width: 880px; }
.hero--light .display { font-size: clamp(2.6rem, 5.5vw, var(--display-2xl)); color: var(--text-strong); }
.hero--light .hero__lead { color: var(--text-muted); margin-inline: 0; }
.hero--light .hero__proof { color: var(--text-body); }
.hero--light .hero__media { margin-top: var(--space-8); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); position: relative; }
.hero--light .hero__media img { width: 100%; height: clamp(300px, 42vh, 520px); object-fit: cover; }
.hero--light .hero__media::before { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 6px transparent; border-top: 6px solid var(--brand); z-index: 1; }

/* ============================================================
   Partner marquee
   ============================================================ */
.partners-strip { padding-block: var(--space-7); border-bottom: 1px solid var(--border-subtle); background: #fff; overflow: hidden; }
.partners-strip__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); margin: 0 0 var(--space-4); text-align: center;
}
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 26px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.marquee::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.marquee__track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; display: flex; align-items: center; height: 46px; }
.marquee__logo { height: 38px; width: auto; max-width: 190px; object-fit: contain; display: block; opacity: .82; filter: saturate(.95); transition: opacity var(--dur-base) var(--ease-standard); }
.marquee__item:hover .marquee__logo { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 28px; } }

/* ============================================================
   Claim / feature grid
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); perspective: 1800px; position: relative; z-index: 2; max-width: 412px; margin-left: clamp(0px, 7vw, 130px); }

/* Claims body: feature stack in front, long mirrored stone emerging from behind */
.claims-body { position: relative; margin-top: var(--space-9); }
.claims-stone-col { position: absolute; z-index: 0; top: 50%; left: 26%; width: 98%; transform: translateY(-50%); height: auto; pointer-events: none; }
.claims-stone { width: 100%; height: auto; display: block; pointer-events: none; transform: scaleX(-1); filter: drop-shadow(0 30px 50px rgba(16,18,20,.22)); }
@media (max-width: 900px) {
  .claims-stone-col { position: static; transform: none; width: 100%; max-width: 420px; margin: 0 auto var(--space-4); }
  .feature-grid { max-width: none; }
}
/* Smooth scroll-linked fade-in for the stone (GPU, no JS) */
@keyframes claimsStoneFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes claimsStoneZoom { from { transform: translateY(-50%) translateX(-90px) scale(0.74); } to { transform: translateY(-50%) translateX(110px) scale(1.28); } }

.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: var(--space-3); min-height: 72px;
  padding: var(--space-3) var(--space-5) var(--space-3) calc(var(--space-5) + 10px);
  border-radius: 0;
  background: linear-gradient(108deg, rgba(255,255,255,.58) 0%, rgba(255,255,255,.34) 44%, rgba(255,255,255,.07) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(1.5); backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.55); border-top-color: rgba(255,255,255,.95); border-left-color: rgba(255,255,255,.85);
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,.98),
    inset 0 -14px 30px -10px rgba(255,255,255,.5),
    inset 20px 0 34px -22px rgba(255,255,255,.85),
    inset -22px 0 40px -28px rgba(150,170,190,.4),
    0 3px 0 -1px rgba(255,255,255,.5),
    0 7px 0 -2px rgba(214,224,234,.4),
    0 11px 0 -3px rgba(196,208,220,.32),
    0 26px 40px -18px rgba(24,34,48,.4);
  transition: box-shadow var(--dur-mid, .35s) var(--ease-out, ease), transform var(--dur-mid, .35s);
}
/* red slab edge on the left, with inner bevel to read as thickness */
.feature::before {
  content: ""; position: absolute; top: 0; left: 0; width: 7px; height: 100%; z-index: 3;
  background: linear-gradient(90deg, var(--brand) 0%, #e23, var(--brand) 100%);
  box-shadow: 0 0 18px -2px rgba(196,30,58,.8), inset -1px 0 2px rgba(0,0,0,.25), inset 1px 0 1px rgba(255,255,255,.5);
}
/* glossy top-edge highlight that conveys the cut glass surface */
.feature::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  background:
    linear-gradient(118deg, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(0deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 16%);
}
.feature > * { position: relative; z-index: 2; }
.feature:hover { transform: translateY(-3px);
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,.98),
    inset 0 -14px 30px -10px rgba(255,255,255,.5),
    inset 20px 0 34px -22px rgba(255,255,255,.85),
    inset -22px 0 40px -28px rgba(150,170,190,.4),
    0 4px 0 -1px rgba(255,255,255,.55),
    0 9px 0 -2px rgba(214,224,234,.42),
    0 14px 0 -3px rgba(196,208,220,.34),
    0 32px 48px -18px rgba(24,34,48,.45); }
.feature__icon { flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--brand); background: none; border: 0; margin: 0;
  filter: drop-shadow(0 2px 3px rgba(196,30,58,.28)); }
.feature__icon svg { width: 25px; height: 25px; }
.feature__txt { min-width: 0; }
.feature__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--h5, var(--h4)); color: var(--text-strong); margin: 0 0 3px; letter-spacing: -.01em; }
.feature__body { font-size: var(--text-xs, var(--text-sm)); color: var(--text-muted); margin: 0; line-height: 1.45; }
@media (max-width: 1024px) { .feature { transform: none; } }

/* ---- Two-column intro (system) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: center; }

/* ---- Verbundsystem: dramatic stone hero ---- */
.sys-hero {
  position: relative; overflow: hidden;
  background: var(--surface-subtle);
  padding-block: clamp(48px, 7vw, 104px);
}
.sys-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.sys-hero__lead { color: var(--text-strong); font-weight: 500; font-size: clamp(1.25rem, 2.1vw, 1.6rem); line-height: 1.36; letter-spacing: -.01em; }
.sys-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-7); }
.sys-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-default); background: var(--surface-card); font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em; color: var(--text-strong); }
.sys-chip svg { color: var(--brand); }
.sys-hero__media { position: relative; }
.sys-hero__media::before { content: ""; position: absolute; left: 8%; top: 8%; right: 4%; bottom: 4%; z-index: 0; background: radial-gradient(closest-side, rgba(196,30,58,.16), transparent 72%); filter: blur(26px); }
.sys-hero__stone { position: relative; z-index: 1; width: 100%; max-width: 640px; height: auto; display: block; margin-left: auto; }
.sys-hero__3d { aspect-ratio: 4 / 5; max-width: 560px; min-height: 360px; filter: none; }
.sys-hero__3d canvas { display: block; width: 100%; height: 100%; cursor: grab; }

/* ---- Verbundsystem deep-dive blocks (frameless, transparent technical images) ---- */
.sys-block { padding-block: clamp(56px, 8vw, 124px); }
.sys-block--wide { background: var(--surface-subtle); }
.sys-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.sys-block__text .lead { max-width: 50ch; }
.sys-figure { position: relative; }
.sys-figure img { display: block; width: 100%; height: auto; filter: drop-shadow(0 26px 44px rgba(16,18,20,.18)); }
.sys-figure--wide { max-width: 1040px; margin-left: auto; margin-right: auto; }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .sys-figure img, .sys-hero__stone { animation: sysFloat linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
    @keyframes sysFloat { from { transform: translateY(4%); } to { transform: translateY(-4%); } }
  }
}
.sys-wide__head { max-width: 740px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-9); }
.sys-block--text .sys-text { max-width: 860px; }
/* Stat callout */
.sys-stat { margin-top: var(--space-7); }
.sys-stat--center { display: inline-block; margin-top: var(--space-6); }
.sys-stat__row { display: flex; align-items: baseline; gap: 10px; }
.sys-stat--center .sys-stat__row { justify-content: center; }
.sys-stat__val { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 6vw, 4.6rem); line-height: .9; color: var(--brand); letter-spacing: -.03em; }
.sys-stat__unit { font-family: var(--font-mono); font-size: var(--text-lg); color: var(--text-brand); }
.sys-stat__note { display: block; margin-top: 8px; font-size: var(--text-sm); color: var(--text-muted); letter-spacing: .01em; }
.sys-versatility .display { text-wrap: balance; }
@media (max-width: 900px) {
  .sys-hero__grid { grid-template-columns: 1fr; }
  .sys-hero__media { order: -1; max-width: 460px; }
  .sys-block__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .sys-block__grid > .sys-figure { order: -1; max-width: 520px; }
}

/* ---- Immersive aerial: pinned behind the claims cover, revealed on scroll ---- */
.system-immersive {
  position: relative; z-index: 0; height: 50vw; margin-top: -46px;
  isolation: isolate; overflow: clip;
  display: flex; align-items: center; justify-content: center;
}
/* Parallax: image drifts slower than the page — reads as a fixed backdrop, no layout risk */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .system-immersive__bg {
      animation: aerialParallax linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    @keyframes aerialParallax {
      from { transform: translate3d(0, 2%, 0) scale(1.16); }
      to   { transform: translate3d(0, -7%, 0) scale(1.16); }
    }
  }
}
.system-immersive__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 50% 0%;
  will-change: transform; backface-visibility: hidden; transform: translateZ(0);
}
/* Light black fade from the bottom; headline centered */
.system-immersive__fade {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: var(--space-10) var(--gutter);
  color: #fff;
  background: linear-gradient(0deg, rgba(15,17,19,.94) 0%, rgba(15,17,19,.55) 22%, rgba(15,17,19,.16) 46%, rgba(15,17,19,0) 70%);
}
.system-immersive__fade .eyebrow { color: #fff; justify-content: center; }
.system-immersive__fade .eyebrow::before { background: #fff; }
.system-immersive__headline {
  margin: var(--space-4) 0 0;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.0; letter-spacing: -.015em;
  text-wrap: balance; text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
@media (max-width: 820px) {
  .system-immersive { position: static; height: auto; min-height: 520px; align-items: center; margin-top: 0; }
  .system-immersive__bg { bottom: 0; -webkit-mask-image: none; mask-image: none; }
  .system-immersive__fade {
    bottom: 0; padding: var(--space-9) var(--gutter);
    background: linear-gradient(0deg, rgba(16,18,20,.9) 0%, rgba(16,18,20,.5) 44%, rgba(16,18,20,.12) 74%, rgba(16,18,20,0) 100%);
  }
}
.split__media { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--surface-frame); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--brand); }
.prose p { margin: 0 0 var(--space-4); color: var(--text-body); line-height: var(--lh-body); }
.prose p:last-child { margin-bottom: 0; }

/* ============================================================
   Product cards
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.product {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.product:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product__img { aspect-ratio: 4/3; background:
    repeating-linear-gradient(135deg, var(--gray-100) 0 14px, var(--gray-50) 14px 28px);
  display: flex; align-items: center; justify-content: center; padding: var(--space-5); }
.product__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product__body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1 1 auto; }
.product__name { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--h3); color: var(--text-strong); margin: 0; letter-spacing: -.01em; }
.product__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: var(--space-3) 0; }
.product__desc { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   Product flow — organic "floating stones" (Produkte page)
   ============================================================ */
.prodflow { position: relative; overflow: hidden; background:
    radial-gradient(120% 80% at 85% -10%, var(--red-50) 0%, rgba(251,234,235,0) 55%),
    linear-gradient(180deg, #fff 0%, var(--gray-50) 100%); }
.prodflow__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.prodflow__bg span {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55;
}
.blob-a { width: 520px; height: 520px; top: -120px; left: -160px;
  background: radial-gradient(circle at 35% 35%, var(--red-50), rgba(246,210,212,0) 70%); }
.blob-b { width: 680px; height: 680px; top: 38%; right: -260px;
  background: radial-gradient(circle at 50% 50%, var(--gray-100), rgba(236,237,238,0) 72%); opacity: .8; }
.blob-c { width: 420px; height: 420px; bottom: -160px; left: 30%;
  background: radial-gradient(circle at 50% 50%, var(--red-50), rgba(251,234,235,0) 70%); }

.prodflow .container { position: relative; z-index: 1; }

/* Sticky title header with a muted backdrop; the content sheet scrolls over it */
.pagehead--sticky { position: sticky; top: 88px; z-index: 0; }
.headbg { overflow: hidden; background: var(--surface-subtle); }
.headbg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--head-img);
  background-size: cover; background-position: center 38%;
  filter: grayscale(1) contrast(1.04); opacity: .40;
}
.headbg::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(245,246,247,.45) 0%, rgba(245,246,247,.72) 64%, var(--surface-subtle) 100%);
}
.headbg .hero__inner { position: relative; z-index: 1; }
.prodhead { --head-img: url(assets/hero-plaza-square.jpg); }
.prodhead.headbg::before { opacity: .40; }

/* CTA band with the same faded-image backdrop as the page heroes */
.cta-band { position: relative; overflow: hidden; background: var(--surface-subtle); --head-img: url(assets/hero-plaza-people.jpg); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--head-img); background-size: cover; background-position: center; filter: grayscale(1) contrast(1.04); opacity: .40; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(245,246,247,.45) 0%, rgba(245,246,247,.72) 64%, var(--surface-subtle) 100%); }
.cta-band > .container { position: relative; z-index: 1; }
.syshead  { --head-img: url(assets/obj-commercial-yard.jpg); }

/* ---- Verbundsystem immersive 3D hero (stone floats in a lit room) ---- */
.sys-immersive { position: relative; overflow: hidden; min-height: clamp(540px, 82vh, 840px); background: radial-gradient(95% 90% at 64% 26%, #ffffff 0%, #e8e9eb 68%, #dddfe1 100%); border-bottom: 1px solid var(--border-subtle); }
.sys-immersive__scene { position: absolute; inset: 0; z-index: 0; }
.sys-immersive__scene canvas { display: block; width: 100%; height: 100%; }
.sys-immersive__inner { position: relative; z-index: 1; min-height: clamp(540px, 82vh, 840px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.sys-immersive__copy { max-width: 600px; }
.sys-immersive__copy { max-width: 540px; }
.sys-immersive__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.3rem, 5.4vw, 4.6rem); line-height: 1.0; letter-spacing: -.03em; color: var(--text-strong); margin: 0; white-space: nowrap; }
.sys-immersive__title br { display: block; }
.sys-immersive__prose { margin-top: var(--space-8); }
.sys-immersive__prose .sys-hero__lead { margin-bottom: var(--space-4); }

.sys-immersive__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-6); }
@media (max-width: 820px) { .sys-immersive__title { font-size: clamp(2.2rem, 9vw, 3.4rem); } .sys-intro__grid { grid-template-columns: 1fr; } .sys-intro__chips { flex-direction: row; flex-wrap: wrap; } }
@media (max-width: 820px) { .sys-immersive__title { font-size: clamp(2.2rem, 9vw, 3.4rem); } .sys-intro__grid { grid-template-columns: 1fr; } .sys-intro__chips { flex-direction: row; flex-wrap: wrap; } }
.objhead  { --head-img: url(assets/obj-platz-treppe.jpg); }
.objhead::before { background-position: center 64%; opacity: .42; filter: grayscale(1) contrast(1.12); }

/* Eyebrow on the muted reveal headers: brand red instead of white so it stays legible */
.headbg .eyebrow { color: var(--text-brand); font-size: calc(var(--eyebrow) + 1px); }
.headbg .eyebrow::before { background: var(--brand); }

.prodflow--sheet, .reveal-sheet {
  position: relative; z-index: 1; margin-top: -34px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -22px 50px -30px rgba(22,24,26,.34);
}
.reveal-sheet { background: var(--surface-page); }

/* Home hero reveal: hero pins (shortened), content sheet slides over it from the marquee on */
.home-hero-pin { position: sticky; top: 88px; z-index: 0; }
.home-hero-pin .hero--photo { min-height: 76vh; }
.home-sheet { overflow: clip; }

/* Reveal pair: claims cover (z2, rounded bottom) scrolls up to uncover the pinned aerial below */
.reveal-pair { position: relative; z-index: 1; }
.claims-cover { position: relative; z-index: 1; background: var(--surface-page); border-radius: 0 0 46px 46px; box-shadow: 0 26px 44px -26px rgba(22,24,26,.34); overflow: clip; }
@media (max-width: 820px) { .claims-cover { border-radius: 0; box-shadow: none; overflow: visible; } }
@media (max-width: 820px) {
  .prodflow--sheet, .reveal-sheet { margin-top: -22px; border-radius: 22px 22px 0 0; }
}

.prodrow {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(28px, 5vw, 80px); padding-block: 0; margin-block: clamp(-28px, -3vh, -8px);
}
.prodrow:nth-child(even) .prodrow__visual { order: 2; }

/* Visual: the cut-out stone floats freely above a soft ground shadow */
.prodrow__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: clamp(300px, 36vw, 480px);
}
.prodrow__stone {
  position: relative; z-index: 1; width: clamp(380px, 48vw, 660px); max-width: 112%;
  height: auto;
  animation: stone-float 9s var(--ease-in-out, ease-in-out) infinite;
  will-change: transform;
}
.prodrow__stone--sm { width: clamp(320px, 40vw, 560px); }
.prodrow__stone--xs { width: clamp(280px, 34vw, 480px); }
@keyframes stone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) { .prodrow__stone { animation: none; } }

.prodrow__text { position: relative; }
.prodrow__name {
  font-family: var(--font-display); font-weight: var(--fw-extrabold);
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -.02em;
  color: var(--text-strong); margin: 0;
}
.prodrow__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--space-4) 0 var(--space-4); }
.prodrow__pill {
  display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--border-default);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-muted); backdrop-filter: blur(4px);
}
.prodrow__desc { font-size: var(--text-lg); line-height: 1.6; color: var(--text-muted); margin: 0; max-width: 46ch; text-wrap: pretty; }
.prodrow__cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: var(--space-5);
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-md);
  color: var(--text-brand); background: none; border: 0; padding: 0; cursor: pointer;
  border-bottom: 2px solid transparent; transition: border-color var(--dur-fast) var(--ease-out);
}
.prodrow__cta svg { transition: transform var(--dur-base) var(--ease-out); }
.prodrow__cta:hover { border-bottom-color: var(--brand); }
.prodrow__cta:hover svg { transform: translateX(5px); }

.prodflow__note {
  position: relative; z-index: 1; margin-top: clamp(24px, 5vh, 56px);
  display: flex; align-items: flex-start; gap: 16px;
  padding: var(--space-5) var(--space-6); border-radius: 999px;
  background: rgba(255,255,255,.72); border: 1px solid var(--border-default);
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); max-width: 860px; margin-inline: auto;
}
.prodflow__note .mono { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.65; }
.prodflow__note-dot { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); margin-top: 5px; box-shadow: 0 0 0 5px var(--red-50); }

@media (max-width: 820px) {
  .prodrow { grid-template-columns: 1fr; gap: 8px; padding-block: 48px; text-align: left; }
  .prodrow:nth-child(even) .prodrow__visual { order: 0; }
  .prodrow__visual { min-height: 300px; }
  .prodflow__note { border-radius: var(--radius-lg, 16px); }
}

/* ============================================================
   Category cards (objekte)
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.cat {
  position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; cursor: pointer; background: var(--gray-900);
}
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform var(--dur-slow) var(--ease-out); }
.cat::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(16,18,20,.92) 0%, rgba(16,18,20,.45) 48%, rgba(16,18,20,.10) 100%); }
.cat:hover img { transform: scale(1.05); }
.cat__inner { position: relative; z-index: 2; padding: var(--space-6); width: 100%; text-shadow: 0 1px 3px rgba(0,0,0,.35); }
.cat__title { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--h2); margin: 0; letter-spacing: -.01em; }
.cat__title::before { content: ""; display: block; width: 44px; height: 6px; background: var(--brand); margin-bottom: var(--space-3); }
.cat__blurb { margin: var(--space-2) 0 0; font-size: var(--text-sm); color: rgba(255,255,255,.85); max-width: 42ch; }
.cat__more { margin-top: var(--space-4); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: var(--text-sm); }
.cat__more svg { transition: transform var(--dur-base) var(--ease-out); }
.cat:hover .cat__more svg { transform: translateX(4px); }

/* ---- Report grid ---- */
.filterbar { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-7); }
.chip {
  font-size: var(--text-sm); font-weight: 500; color: var(--text-muted);
  padding: 9px 16px; border: 1px solid var(--border-default); border-radius: var(--radius-pill);
  background: #fff; cursor: pointer; transition: all var(--dur-fast); }
.chip:hover { border-color: var(--text-faint); color: var(--text-strong); }
.chip.is-active { background: var(--gray-900); border-color: var(--gray-900); color: #fff; }

.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.report {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.report:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.report__img { aspect-ratio: 3/2; overflow: hidden; }
.report__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.report:hover .report__img img { transform: scale(1.04); }
.report__body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1 1 auto; }
.report__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 var(--space-2); display: flex; gap: 10px; }
.report__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--h4); color: var(--text-strong); margin: 0 0 var(--space-2); letter-spacing: -.01em; }
.report__excerpt { font-size: var(--text-sm); color: var(--text-muted); margin: 0 0 var(--space-4); line-height: 1.5; flex: 1 1 auto; }
.report__cat { display: inline-block; }

/* ============================================================
   Objektbericht — detail page
   ============================================================ */
.obj-hero { position: relative; min-height: clamp(360px, 52vh, 520px); display: flex; align-items: flex-end; background: var(--gray-900); overflow: hidden; }
.obj-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.obj-hero__veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,18,20,.92) 0%, rgba(16,18,20,.5) 45%, rgba(16,18,20,.08) 100%); }
.obj-hero__inner { position: relative; z-index: 1; padding-block: clamp(40px, 7vh, 72px); color: #fff; }
.obj-hero__title { color: #fff; margin-top: var(--space-3); max-width: 18ch; }
.obj-hero__meta { margin-top: var(--space-4); display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.85); font-size: 13px; }
.obj-hero__dot { color: var(--red-200, #f0a6a9); }
.obj-back { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill); cursor: pointer; margin-bottom: var(--space-5); transition: background var(--dur-base) var(--ease-out); }
.obj-back:hover { background: rgba(255,255,255,.2); }

.obj-detail-grid { display: grid; grid-template-columns: 300px 1fr; gap: var(--space-8); align-items: start; }
.obj-rail { position: sticky; top: 104px; }
.obj-facts { border: 1px solid var(--border-subtle); border-top: 6px solid var(--brand); border-radius: var(--radius-md); padding: var(--space-5); background: var(--surface-card); }
.obj-facts__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-md, 15px); color: var(--text-strong); margin: 0 0 var(--space-1); }
.obj-facts__row { display: flex; flex-direction: column; gap: 3px; padding: 12px 0; border-top: 1px solid var(--border-subtle); }
.obj-facts__k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.obj-facts__v { font-size: 14.5px; font-weight: 600; color: var(--text-strong); line-height: 1.4; }

.obj-main { min-width: 0; }
.obj-lead { font-size: var(--text-lg); line-height: var(--lh-body); color: var(--text-strong); font-weight: 500; margin: 0 0 var(--space-5); text-wrap: pretty; }
.obj-para { font-size: var(--text-md, 16px); line-height: 1.72; color: var(--text-body); margin: 0 0 var(--space-4); text-wrap: pretty; }
.obj-section { margin-top: var(--space-7); }
.obj-section__bar { display: block; width: 40px; height: 3px; background: var(--brand); margin-bottom: var(--space-3); }
.obj-section__h { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--h3); letter-spacing: -.01em; color: var(--text-strong); margin: 0 0 var(--space-4); line-height: 1.2; }
.obj-gallery-wrap { margin-top: var(--space-8); }
.obj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

.obj-figure { margin: var(--space-6) 0 0; cursor: zoom-in; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.obj-figure img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.obj-figure:hover img { transform: scale(1.03); }
.obj-figure--tile { margin: 0; }
.obj-figure--tile img { aspect-ratio: 3 / 2; }
.obj-figure__zoom { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(16,18,20,.6); color: #fff; border-radius: var(--radius-sm); font-size: 15px; }
.obj-figcap { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); margin-top: var(--space-2); line-height: 1.5; }

.obj-rel-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-6); }

.obj-lb { position: fixed; inset: 0; z-index: 200; background: rgba(16,18,20,.93); display: flex; align-items: center; justify-content: center; padding: 40px; box-sizing: border-box; animation: objLbFade .18s ease; }
@keyframes objLbFade { from { opacity: 0; } to { opacity: 1; } }
.obj-lb__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); max-width: 90vw; }
.obj-lb__img { max-width: 88vw; max-height: 76vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: 0 30px 80px -30px rgba(0,0,0,.8); }
.obj-lb__cap { display: flex; align-items: center; gap: 14px; max-width: 72ch; text-align: center; flex-wrap: wrap; justify-content: center; }
.obj-lb__captext { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.5; }
.obj-lb__count { color: rgba(255,255,255,.5); font-size: 12px; white-space: nowrap; }
.obj-lb__btn { position: absolute; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; cursor: pointer; line-height: 1; border-radius: var(--radius-sm); transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.obj-lb__btn:hover { background: var(--brand); border-color: var(--brand); }
.obj-lb__close { top: 24px; right: 28px; width: 44px; height: 44px; font-size: 22px; }
.obj-lb__close:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.obj-lb__prev { left: 28px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
.obj-lb__next { right: 28px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }

@media (max-width: 820px) {
  .obj-detail-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .obj-rail { position: static; }
  .obj-gallery { grid-template-columns: 1fr; }
  .obj-lb { padding: 16px; }
  .obj-lb__prev { left: 10px; }
  .obj-lb__next { right: 10px; }
}

/* ============================================================
   Proof / stats (ink section)
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); overflow: hidden; }
.stat { padding: var(--space-6) var(--space-5); border-right: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; }
.stat:last-child { border-right: 0; }
.stat__label { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: #fff; margin: 0 0 var(--space-4); line-height: 1.3; text-wrap: balance; min-height: 2.6em; }
.stat__val { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.6rem, 2.4vw, 2.1rem); color: #fff; letter-spacing: -.01em; line-height: 1; }
.stat__val .u { font-size: .5em; color: var(--red-200); margin-left: 6px; }
.stat__note { font-size: var(--text-xs); color: var(--text-inverse-muted); margin: var(--space-3) 0 0; line-height: 1.45; }
.stat--hi { background: rgba(196, 30, 58, .1); }
.stat--hi .stat__label { color: var(--red-200); }
.stat--hi .stat__val { color: var(--red-200); }
.stat--muted .stat__val { color: var(--text-inverse-muted); }
.stat--muted .stat__label { color: rgba(255,255,255,.62); }
.source-note { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.5); margin: var(--space-6) 0 0; line-height: 1.6; max-width: 80ch; }
.proof-chart { margin: var(--space-8) 0 0; max-width: 720px; background: #fff; border-radius: var(--radius-lg); padding: clamp(14px, 2.4vw, 26px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.6); }
.proof-chart img { display: block; width: 100%; height: auto; }
.proof-chart__cap { margin: var(--space-4) 0 0; font-family: var(--font-mono); font-size: 11px; line-height: 1.6; color: var(--text-muted); }

/* Federal attestation plaque */
.attest { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-7); padding: var(--space-5) var(--space-6); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.03); max-width: 760px; }
.attest__seal { flex: none; width: 60px; height: 60px; }
.attest__seal svg { display: block; }
.attest__body { min-width: 0; }
.attest__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; color: rgba(255,255,255,.55); margin: 0 0 4px; }
.attest__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.5vw, 18px); color: #fff; margin: 0; line-height: 1.25; text-wrap: balance; }
.attest__sub { font-size: var(--text-xs); color: var(--text-inverse-muted); margin: 6px 0 0; line-height: 1.45; }
@media (max-width: 560px) { .attest { flex-direction: column; align-items: flex-start; gap: var(--space-4); } }

/* ============================================================
   Contact — map + partners + plz
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-8); align-items: start; }

/* ---- Redesigned contact layout: map + subtle Germany panel, intl grid ---- */
.contact-top { display: grid; grid-template-columns: 1.4fr .85fr; gap: var(--space-7); align-items: stretch; }

/* Partner logo grid (2 columns, logo + name below) */
.partner-logos { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.plogo {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: var(--space-3);
  text-align: center; padding: var(--space-5) var(--space-3);
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  cursor: pointer; transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.plogo:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.plogo__img { height: 44px; display: flex; align-items: center; justify-content: center; }
.plogo__img img { max-width: 132px; max-height: 44px; width: auto; height: auto; object-fit: contain; }
.plogo__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--text-strong); line-height: 1.25; letter-spacing: -.01em; }
.plogo--dev { align-items: flex-start; justify-content: center; text-align: left; gap: 3px; background: var(--surface-subtle); border-color: var(--border-default); }
.plogo--dev:hover { border-color: var(--brand); background: var(--surface-subtle); box-shadow: var(--shadow-sm); }
.plogo__eyebrow { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-brand); }
.plogo__devname { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--text-strong); line-height: 1.05; letter-spacing: -.01em; }
.plogo__devcta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.plogo--dev:hover .plogo__devcta { gap: 9px; color: var(--text-brand); }
.de-panel {
  display: flex; flex-direction: column; padding: 2px 0 0 var(--space-2);
}
.de-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: var(--space-3); }
.de-panel__kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 4px; }
.de-panel__title { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: var(--h3); letter-spacing: -.01em; color: var(--text-strong); margin: 0; }
.de-panel__flag { width: 24px; height: 16px; margin-top: 4px; }
.de-logo-list { display: flex; flex-direction: column; flex: 1; }
.de-logo-row {
  display: flex; align-items: center; gap: var(--space-4); width: 100%; text-align: left;
  padding: var(--space-3) var(--space-2); background: none; border: 0; border-radius: var(--radius-sm);
  cursor: pointer; transition: background var(--dur-fast);
}
.de-logo-row + .de-logo-row { border-top: 1px solid var(--border-subtle); }
.de-logo-row:hover { background: var(--surface-subtle); }
.de-logo-row__logo { flex: 0 0 64px; height: 34px; display: flex; align-items: center; }
.de-logo-row__logo img { max-width: 64px; max-height: 34px; width: auto; height: auto; object-fit: contain; }
.de-logo-row__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.de-logo-row__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--text-strong); line-height: 1.2; }
.de-logo-row__city { font-size: var(--text-xs); color: var(--text-muted); }
.de-logo-row__arrow { flex: 0 0 auto; color: var(--text-faint); transition: transform var(--dur-base) var(--ease-out), color var(--dur-fast); }
.de-logo-row:hover .de-logo-row__arrow { transform: translateX(3px); color: var(--text-brand); }

/* International partners — joined under the German list by a divider, same column */
.de-panel__sub { margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--border-default); }
.de-panel__sub-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.intl-list { display: flex; flex-direction: column; margin-top: var(--space-2); }
.intl-row { padding: var(--space-4) var(--space-2); cursor: pointer; border-radius: var(--radius-sm); transition: background var(--dur-fast); }
.intl-row:hover { background: var(--surface-subtle); }
.intl-row + .intl-row { border-top: 1px solid var(--border-subtle); }
.intl-row__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-3); }
.intl-row__logo { flex: 0 0 64px; height: 30px; display: flex; align-items: center; }
.intl-row__logo img { max-width: 64px; max-height: 30px; width: auto; height: auto; object-fit: contain; }
.intl-row__name { flex: 1; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--text-strong); margin: 0; letter-spacing: -.01em; }
.intl-row:hover .de-logo-row__arrow { transform: translateX(3px); color: var(--text-brand); }
.intl-card__countries { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-3); }
.country-chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; line-height: 1;
  padding: 5px 9px; border-radius: 999px; border: 1px solid var(--border-default);
  background: var(--surface-subtle); color: var(--text-body); cursor: pointer; transition: all var(--dur-fast);
}
.country-chip:hover { border-color: var(--brand); color: var(--text-brand); background: var(--red-50); }
.country-chip--off { cursor: default; color: var(--text-muted); }
.country-chip--off:hover { border-color: var(--border-default); color: var(--text-muted); background: var(--surface-subtle); }
.intl-card__more {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; padding: 5px 9px; border-radius: 999px;
  border: 1px dashed var(--border-default); background: none; color: var(--text-brand); cursor: pointer;
}
.intl-card__more:hover { border-style: solid; border-color: var(--brand); }
.geo-modal__countries { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--text-body); margin: 0 0 var(--space-4); }
.mapwrap { position: relative; }
.map {
  position: relative; aspect-ratio: 4/5; background:
    linear-gradient(0deg, var(--gray-50), var(--gray-50)),
    radial-gradient(circle at 50% 40%, rgba(42,77,105,.05), transparent 70%);
  border: 1px solid var(--border-default); border-radius: var(--radius-md); overflow: hidden;
}
.map__grid { position: absolute; inset: 0; background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .5; }
.map__label { position: absolute; left: 16px; top: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.map__region { position: absolute; border: 1px dashed var(--border-default); border-radius: var(--radius-lg); }
.pin {
  position: absolute; transform: translate(-50%, -50%); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--brand); transition: transform var(--dur-fast) var(--ease-standard); z-index: 2;
}
.pin::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--brand); border: 2px solid #fff; border-radius: 50%; box-shadow: var(--shadow-sm); transition: all var(--dur-fast); }
.pin:hover, .pin.is-active { transform: translate(-50%, -50%) scale(1.25); z-index: 4; }
.pin.is-active::after { background: var(--gray-900); box-shadow: 0 0 0 4px rgba(193,18,28,.25); }
.pin__tip {
  position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%);
  background: var(--gray-900); color: #fff; font-size: 11px; white-space: nowrap;
  padding: 5px 9px; border-radius: var(--radius-sm); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-fast); font-weight: 500; }
.pin:hover .pin__tip { opacity: 1; }

.plz {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-top: var(--bar-brand);
  border-radius: var(--radius-lg); padding: var(--space-5); margin-bottom: var(--space-5); }
.plz__label { font-size: var(--text-sm); font-weight: 600; color: var(--text-strong); margin: 0 0 var(--space-3); display: block; }
.plz__row { display: flex; gap: 6px; align-items: center; background: var(--surface-page); border: 1px solid var(--border-default); border-radius: 999px; padding: 5px 5px 5px 8px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.plz__row:focus-within { border-color: var(--brand); box-shadow: var(--shadow-focus); }
.plz .input { border: 0; background: transparent; border-radius: 999px; padding: 11px 12px; font-size: var(--text-md); box-shadow: none; }
.plz .input:focus { border: 0; box-shadow: none; }
.plz__btn { border-radius: 50% !important; width: 46px; height: 46px; padding: 0 !important; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; }
.input {
  font-family: var(--font-sans); font-size: var(--text-md); color: var(--text-strong);
  background: var(--surface-page); border: 1px solid var(--border-default); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; outline: none; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.input:focus { border-color: var(--brand); box-shadow: var(--shadow-focus); }
.plz__result { margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--border-subtle); }
.plz__result-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 6px; }
.plz__card-logo { height: 40px; margin-bottom: var(--space-4); display: flex; align-items: center; }
.plz__card-logo img { max-height: 40px; max-width: 150px; width: auto; object-fit: contain; display: block; }

.country-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-4); }
.country-tab { font-family: var(--font-mono); font-size: 12px; font-weight: 600; padding: 7px 12px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); background: #fff; color: var(--text-muted); cursor: pointer; transition: all var(--dur-fast); display: inline-flex; gap: 6px; align-items: center; }
.country-tab.is-active { background: var(--gray-900); border-color: var(--gray-900); color: #fff; }

.partner-list { display: flex; flex-direction: column; gap: var(--space-3); max-height: 560px; overflow-y: auto; padding-right: 4px; }
.partner {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: var(--space-4); transition: border-color var(--dur-fast), box-shadow var(--dur-fast); cursor: pointer; }
.partner:hover, .partner.is-active { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.partner.is-active { border-left: var(--bar-brand); }
.partner__top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.partner__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-md); color: var(--text-strong); margin: 0; letter-spacing: -.01em; }
.partner__flag { font-size: 15px; line-height: 1; flex: 0 0 auto; }
.flagchip { display: inline-block; width: 20px; height: 13px; border-radius: 2px; border: 1px solid rgba(0,0,0,.16); flex: 0 0 auto; box-shadow: var(--shadow-xs); background-repeat: no-repeat; }
.partner__addr { font-size: var(--text-sm); color: var(--text-muted); margin: 6px 0 0; line-height: 1.45; }
.partner__contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--space-3); }
.partner__contact a { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--text-brand); }

.company-card {
  background: var(--surface-card); color: var(--text-strong); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: var(--space-6); }
.company-card--btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  width: 100%; text-align: left; cursor: pointer; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.company-card--btn:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); background: var(--surface-card); }
.company-card__main .eyebrow { color: var(--text-brand); }
.company-card__cta {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--text-brand);
}
.company-card__cta svg { transition: transform var(--dur-base) var(--ease-out); }
.company-card--btn:hover .company-card__cta svg { transform: translateX(4px); }
.company-card .display { color: var(--text-strong); }
.company-card .rule { margin: var(--space-3) 0 var(--space-4); }
.company-card p { margin: 0 0 var(--space-2); color: var(--text-muted); }
.company-card .mono { color: var(--text-strong); }
.company-card a { color: var(--text-brand); }
.company-card--compact { padding: var(--space-5); margin-top: var(--space-4); }
.company-card--compact .display { font-size: var(--text-lg); margin-top: 4px !important; }
.company-card--compact .eyebrow { font-size: 11px; }

/* ============================================================
   Interactive geographic maps (Europe + Germany detail)
   ============================================================ */
.geo {
  position: relative; border: 1px solid var(--border-default); border-radius: var(--radius-md);
  overflow: hidden; background: linear-gradient(180deg, var(--steel-50), var(--gray-50));
}
.geo__svg { display: block; width: 100%; height: auto; }
.geo__hint {
  position: absolute; left: 12px; top: 12px; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-body);
  background: rgba(255,255,255,.86); border: 1px solid var(--border-subtle);
  padding: 5px 9px; border-radius: var(--radius-sm); box-shadow: var(--shadow-xs);
  backdrop-filter: blur(2px); pointer-events: none;
}
.geo-country { fill: var(--gray-200); stroke: #fff; stroke-width: .5; transition: fill var(--dur-fast) var(--ease-standard), stroke var(--dur-fast); }
.geo-country--plain { cursor: pointer; }
.geo-country--plain:hover { fill: var(--gray-400); }
.geo-country--partner { fill: var(--red-200); cursor: pointer; }
.geo-country--partner:hover { fill: var(--brand); }
.geo-country--de { fill: var(--red-200); cursor: pointer; }
.geo-country--de:hover { fill: var(--brand); }
.geo-country.is-active { stroke: var(--gray-900); stroke-width: 1; }
.geo-country:focus { outline: none; }
.geo-country:focus-visible { outline: none; stroke: var(--gray-900); stroke-width: 1.2; }
.geo__svg:focus { outline: none; }
.geo-tip {
  position: absolute; transform: translate(-50%, calc(-100% - 12px)); z-index: 2;
  pointer-events: none; background: var(--gray-900); color: #fff;
  padding: 6px 10px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  white-space: nowrap; display: flex; flex-direction: column; gap: 1px;
}
.geo-tip::after { content: ''; position: absolute; left: 50%; bottom: -5px; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--gray-900); border-bottom: 0; }
.geo-tip__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; line-height: 1.15; }
.geo-tip__role { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.62); }

/* Map legend */
.geo-legend { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-4); }
.geo-legend__item { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-xs); color: var(--text-muted); }
.geo-legend__swatch { width: 16px; height: 12px; border-radius: 2px; border: 1px solid rgba(0,0,0,.12); flex: 0 0 auto; }
.geo-legend__swatch--de { background: var(--brand); }
.geo-legend__swatch--partner { background: var(--red-200); }
.geo-legend__swatch--plain { background: var(--gray-200); }

/* Modal popup */
.geo-modal__backdrop {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(16,18,20,.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; padding: var(--space-5);
  animation: geoFade var(--dur-base) var(--ease-out);
}
@keyframes geoFade { from { opacity: 0; } to { opacity: 1; } }
.geo-modal {
  position: relative; width: 100%; max-width: 440px; background: var(--surface-card);
  border-radius: var(--radius-md); border-top: var(--bar-brand); padding: var(--space-6);
  box-shadow: 0 24px 60px -16px rgba(16,18,20,.45);
  animation: geoPop var(--dur-base) var(--ease-out);
}
@keyframes geoPop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.geo-modal__close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: flex;
  align-items: center; justify-content: center; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); background: var(--surface-card); color: var(--text-muted); cursor: pointer;
  transition: all var(--dur-fast);
}
.geo-modal__close:hover { color: var(--text-strong); border-color: var(--border-default); background: var(--surface-subtle); }
.geo-modal__head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-4); padding-right: 36px; }
.geo-modal__logo { display: flex; align-items: center; height: 52px; margin-bottom: var(--space-4); }
.geo-modal__logo img { max-height: 52px; max-width: 200px; width: auto; height: auto; object-fit: contain; }
.geo-modal__country { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-lg); color: var(--text-strong); letter-spacing: -.01em; margin: 0; }
.geo-modal__role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 var(--space-2); }
.geo-modal__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-lg); color: var(--text-strong); margin: 0 0 6px; }
.geo-modal__addr { font-size: var(--text-sm); color: var(--text-muted); margin: 0 0 var(--space-4); line-height: 1.5; }
.geo-modal__links { display: flex; flex-direction: column; gap: 10px; }
.geo-modal__links a { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 13px; color: var(--text-brand); }
.geo-modal__links a:hover { color: var(--brand-hover); }
.geo-modal__msg { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; margin: 0 0 var(--space-5); }
.geo-modal__divider { height: 1px; background: var(--border-subtle); border: 0; margin: var(--space-5) 0; }
.geo-modal__cta { margin-top: var(--space-5); }

/* Germany detail header */
.geo-back {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px;
  font-weight: 600; letter-spacing: .02em; color: var(--text-muted); cursor: pointer;
  background: none; border: 0; padding: 0; margin-bottom: var(--space-4);
}
.geo-back svg { transition: transform var(--dur-base) var(--ease-out); }
.geo-back:hover { color: var(--text-brand); }
.geo-back:hover svg { transform: translateX(-3px); }
.geo-de-cap { display: flex; align-items: center; gap: 10px; margin-top: var(--space-3); min-height: 22px; font-size: var(--text-sm); color: var(--text-muted); }
.geo-de-cap strong { color: var(--text-strong); font-weight: 600; }
.geo-de-neighbours { pointer-events: none; }
.geo-de-neighbour { fill: #e4e2dd; stroke: #cdcac3; stroke-width: .5; stroke-linejoin: round; }
.geo-de-states .geo-de-state { fill: var(--red-50); stroke: var(--red-200); stroke-width: .65; stroke-linejoin: round; transition: fill var(--dur-fast); }
.geo-de-states .geo-de-state:hover { fill: var(--red-100); }
.geo-de-dot { cursor: pointer; }
.geo-de-dot__hit { fill: transparent; }
.geo-de-dot__ring { fill: #fff; stroke: var(--brand); stroke-width: 1.1; transition: r var(--dur-fast); }
.geo-de-dot__core { fill: var(--brand); }
.geo-de-dot.is-active .geo-de-dot__ring { fill: var(--brand); }
.geo-de-dot.is-active .geo-de-dot__core { fill: #fff; }
.geo-de-label { font-family: var(--font-mono); font-size: 4px; fill: var(--text-strong); paint-order: stroke; stroke: #fff; stroke-width: 1.1px; stroke-linejoin: round; pointer-events: none; }

/* Map view switch (Europa / Deutschland / Welt) */
.geo__switch { position: absolute; top: 10px; right: 10px; z-index: 4; display: flex; gap: 2px; padding: 3px; background: rgba(255,255,255,.92); border: 1px solid var(--border-subtle); border-radius: 999px; box-shadow: var(--shadow-sm); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.geo__switch-btn { border: 0; background: transparent; cursor: pointer; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); padding: 5px 11px; border-radius: 999px; transition: background var(--dur-fast), color var(--dur-fast); }
.geo__switch-btn:hover { color: var(--text-strong); }
.geo__switch-btn.is-active { background: var(--brand); color: #fff; }

/* Logo speech-bubbles pinned to map points */
.geo-bubble { position: absolute; transform: translate(-50%, calc(-100% - 7px)); z-index: 2; background: #fff; border: 1px solid var(--border-default); border-radius: 12px; padding: 7px 10px; box-shadow: var(--shadow-md); cursor: pointer; transition: transform var(--dur-fast), box-shadow var(--dur-fast); }
.geo-bubble:hover { box-shadow: var(--shadow-lg); transform: translate(-50%, calc(-100% - 10px)); }
.geo-bubble::after { content: ''; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 7px solid #fff; }
.geo-bubble::before { content: ''; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 8px solid var(--border-default); }
.geo-bubble__img { display: flex; align-items: center; justify-content: center; height: 26px; pointer-events: none; }
.geo-bubble__img img { max-height: 26px; max-width: 104px; width: auto; object-fit: contain; display: block; }
.geo-bubble--world .geo-bubble__img { height: 22px; }
.geo-world-clk { cursor: pointer; }
.geo-world-cap { position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--text-strong); background: rgba(255,255,255,.9); border: 1px solid var(--border-subtle); padding: 4px 9px; border-radius: 6px; }

/* ============================================================
   Moderator / Redaktion
   ============================================================ */
.mod-shell { display: grid; grid-template-columns: 360px 1fr; gap: var(--space-7); align-items: start; }
.mod-panel { background: var(--surface-card); border: 1px solid var(--border-subtle); border-top: var(--bar-brand); border-radius: var(--radius-md); padding: var(--space-6); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-strong); margin-bottom: 6px; }
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.select { appearance: none; background-image: none; }
.dropzone {
  border: 2px dashed var(--border-default); border-radius: var(--radius-md); padding: var(--space-6);
  text-align: center; color: var(--text-muted); cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); }
.dropzone:hover { border-color: var(--brand); background: var(--brand-tint); }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: var(--space-3); }
.thumb { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-subtle); position: relative; background: var(--surface-frame); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border: 0; border-radius: 50%; background: rgba(16,18,20,.7); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.login-card { max-width: 420px; margin: 0 auto; background: var(--surface-card); border: 1px solid var(--border-subtle); border-top: var(--bar-brand); border-radius: var(--radius-md); padding: var(--space-8); text-align: center; }
.login-card__icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.banner { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--green-50); color: var(--green-600); font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-5); border-left: 3px solid var(--green-600); }
.mod-note { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: var(--space-3); line-height: 1.6; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--surface-inverse); color: var(--text-inverse-muted); padding-block: var(--space-10) var(--space-7); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: rgba(255,255,255,.5); }
.footer-tag { margin: var(--space-4) 0 0; max-width: 36ch; color: var(--text-inverse-muted); font-size: var(--text-sm); }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 var(--space-4); font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: var(--text-sm); color: var(--text-inverse-muted); transition: color var(--dur-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); justify-content: space-between; padding-top: var(--space-6); }
.footer-bottom__legal { display: flex; gap: var(--space-5); }
.footer-bottom__legal a:hover { color: #fff; }
.footer-bottom__copy { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.4); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: var(--space-10); }
  .product-grid { grid-template-columns: 1fr; max-width: 460px; }
  .report-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .split { gap: var(--space-7); }
  .hero--split .hero__grid { grid-template-columns: 1fr; }
  .hero--split .hero__media { min-height: 320px; }
  .hero--split .hero__text { padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-top { grid-template-columns: 1fr; }
  .map { max-width: 480px; aspect-ratio: 4/4.4; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mod-shell { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --section-y: var(--space-9); }
  .nav, .lang { display: none; }
  .burger { display: flex; }
  .feature-grid, .feature-grid--3, .cat-grid, .report-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero--photo { min-height: 78vh; }
  .map { display: none; }                  /* mobile → country list only */
  .mobile-only-map-note { display: block; }
  .mobile-nav.is-open { display: block; position: fixed; inset: 88px 0 0; background: #fff; z-index: var(--z-overlay); padding: var(--space-5); }
  .mobile-nav__link { display: block; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--h3); color: var(--text-strong); padding: var(--space-4) 0; border-bottom: 1px solid var(--border-subtle); }
  .mobile-nav__link.is-active { color: var(--text-brand); }
  .mobile-nav__actions { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
}
