/* ============================================================
   Renko Steinkunst — Layout Skeleton & Cinematic Components
   (Pflicht-Datei: von JEDER *.html verlinkt — Deploy-Gate)
   ============================================================ */

/* ------------------------------------------------------------
   1. CINEMATIC HERO (v2 — Crossfade + Ken Burns + Dust + Haze)
   ------------------------------------------------------------ */
.hero-cinematic {
  position: relative; min-height: 100vh;
  overflow: hidden; display: grid; place-items: center;
  background: var(--c-charcoal-deep); isolation: isolate;
}
.hero-cinematic.compact { min-height: 64vh; }
.hero-cinematic > .bg {
  position: absolute; inset: -5%; z-index: 0;
  background-size: cover; background-position: center center;
  filter: saturate(0.94) brightness(0.82) contrast(1.06);
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform; opacity: 0; transition: opacity 2s ease;
}
.hero-cinematic > .bg.bg-1 { animation: kenburns 30s ease-in-out infinite alternate, fade-cycle-1 24s ease-in-out infinite; }
.hero-cinematic > .bg.bg-2 { animation: kenburns 30s ease-in-out infinite alternate -10s, fade-cycle-2 24s ease-in-out infinite; }
.hero-cinematic > .bg.bg-3 { animation: kenburns 30s ease-in-out infinite alternate -20s, fade-cycle-3 24s ease-in-out infinite; }
.hero-cinematic.single > .bg { opacity: 1; animation: kenburns 30s ease-in-out infinite alternate; }

@keyframes kenburns { 0% { transform: scale(1.06) translate(0,0); } 100% { transform: scale(1.2) translate(-2.5%, -3%); } }
@keyframes fade-cycle-1 { 0%, 25% { opacity: 1; } 33%, 92% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fade-cycle-2 { 0%, 25% { opacity: 0; } 33%, 58% { opacity: 1; } 66%, 100% { opacity: 0; } }
@keyframes fade-cycle-3 { 0%, 58% { opacity: 0; } 66%, 91% { opacity: 1; } 100% { opacity: 0; } }

.hero-cinematic > .vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(85% 55% at 50% 32%, transparent 0%, rgba(0,0,0,0.06) 68%, rgba(0,0,0,0.3) 100%),
    linear-gradient(180deg, rgba(35,33,30,0.18) 0%, transparent 28%, rgba(22,20,15,0.55) 74%, rgba(0,0,0,0.85) 100%);
}
.hero-cinematic > .dust {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(circle 1.5px at 20% 30%, rgba(255,240,205,0.55), transparent),
    radial-gradient(circle 1px at 80% 20%, rgba(255,240,205,0.45), transparent),
    radial-gradient(circle 2px at 50% 70%, rgba(255,240,205,0.5), transparent),
    radial-gradient(circle 1.5px at 70% 80%, rgba(255,240,205,0.4), transparent),
    radial-gradient(circle 1px at 10% 60%, rgba(255,240,205,0.45), transparent),
    radial-gradient(circle 1.5px at 90% 50%, rgba(255,240,205,0.45), transparent),
    radial-gradient(circle 1px at 30% 85%, rgba(255,240,205,0.5), transparent),
    radial-gradient(circle 1.5px at 60% 15%, rgba(255,240,205,0.45), transparent),
    radial-gradient(circle 1px at 40% 45%, rgba(255,240,205,0.5), transparent);
  animation: dust-drift 26s linear infinite; opacity: 0.8;
}
@keyframes dust-drift {
  0% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-16px) translateX(8px); opacity: 0.85; }
  100% { transform: translateY(-32px) translateX(-4px); opacity: 0.2; }
}
.hero-cinematic > .haze {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(42% 32% at 28% 18%, rgba(255,235,195,0.16), transparent 70%);
  mix-blend-mode: screen;
}
.hero-cinematic > .letterbox { position: absolute; left: 0; right: 0; z-index: 6; pointer-events: none; background: #000; transition: height 0.9s cubic-bezier(.4,.7,.2,1); }
.hero-cinematic > .letterbox.top { top: 0; height: 0; }
.hero-cinematic > .letterbox.bottom { bottom: 0; height: 0; }
.hero-cinematic.in-view > .letterbox.top { height: 52px; }
.hero-cinematic.in-view > .letterbox.bottom { height: 52px; }

.hero-cinematic .hero-inner { position: relative; z-index: 3; color: var(--c-cream); text-align: center; padding: 0 var(--gap-md); }
.hero-cinematic .hero-eyebrow {
  font-family: var(--f-ui); font-size: 0.76rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--c-sand-light); margin-bottom: var(--gap-md);
  opacity: 0; transform: translateY(-12px); transition: opacity 1.4s 0.4s, transform 1.4s 0.4s;
}
.hero-cinematic.in-view .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: var(--size-hero); letter-spacing: -0.02em; line-height: 0.94;
  color: var(--c-cream); text-shadow: 0 2px 30px rgba(0,0,0,0.4); margin: 0 0 var(--gap-md);
}
.hero-cinematic .hero-title em { color: var(--c-sand-light); font-style: italic; }
.hero-cinematic .hero-title .word { display: inline-block; white-space: nowrap; }
.hero-cinematic .hero-title .char {
  display: inline-block; opacity: 0; transform: translateY(42px) rotateX(-30deg); filter: blur(8px);
  transition: opacity 1.4s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1), filter 1.4s;
}
.hero-cinematic.in-view .hero-title .char { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
.hero-cinematic .hero-sub {
  font-family: var(--f-display); font-style: italic; font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  color: var(--c-cream-mute); max-width: 54ch; margin: 0 auto var(--gap-lg); line-height: 1.55;
  opacity: 0; transform: translateY(16px); transition: opacity 1.4s 0.8s, transform 1.4s 0.8s;
}
.hero-cinematic.in-view .hero-sub { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-actions {
  display: inline-flex; gap: var(--gap-sm); flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(14px); transition: opacity 1.4s 1.1s, transform 1.4s 1.1s;
}
.hero-cinematic.in-view .hero-actions { opacity: 1; transform: translateY(0); }
.hero-cinematic .scroll-cue {
  position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--c-cream-faint); font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.38em;
  text-transform: uppercase; display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  animation: cue-pulse 2.6s ease-in-out infinite;
}
.hero-cinematic .scroll-cue::after { content: "↓"; font-size: 1rem; }
@keyframes cue-pulse { 0%,100% { transform: translate(-50%,0); opacity: 0.55; } 50% { transform: translate(-50%,8px); opacity: 1; } }

/* Trust bar inside hero */
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; justify-content: center; gap: clamp(1rem,4vw,3.5rem); flex-wrap: wrap;
  padding: var(--gap-md) var(--gap-md) calc(var(--gap-md) + 12px);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-cream-mute);
  opacity: 0; transition: opacity 1.4s 1.4s;
}
.hero-cinematic.in-view .hero-trust { opacity: 1; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .item strong { color: var(--c-sand-light); font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; letter-spacing: 0; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-sand); }

/* Sub-page mini hero */
.sub-hero { min-height: 56vh; }
.sub-hero .hero-title { font-size: clamp(2.6rem, 7vw, 5.5rem); }

/* ------------------------------------------------------------
   2. INTRO / WELCOME split
   ------------------------------------------------------------ */
.intro-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--gap-2xl); align-items: center; }
.intro-split .intro-text p { font-size: 1.08rem; line-height: 1.75; color: var(--c-ink); }
.intro-split .intro-text .signoff { font-family: var(--f-display); font-style: italic; font-size: 1.5rem; color: var(--c-sand-dark); margin-top: var(--gap-md); }
.intro-media { position: relative; }
.intro-media .frame { position: relative; overflow: hidden; border-radius: 3px; box-shadow: 0 30px 70px -34px rgba(33,31,28,0.5); }
.intro-media .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1); transform: scale(1.06); }
.intro-media.in-view .frame img, .intro-media.reveal.in-view .frame img { transform: scale(1); }
.intro-media .frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,0.3); pointer-events: none; opacity: 0; transition: opacity .8s .4s; }
.intro-media.in-view .frame::after { opacity: 1; }
.intro-media .badge {
  position: absolute; bottom: -26px; right: -10px; z-index: 2;
  background: var(--c-charcoal); color: var(--c-cream); padding: var(--gap-md) var(--gap-lg);
  font-family: var(--f-display); border-radius: 3px; box-shadow: 0 20px 44px -20px rgba(0,0,0,0.5); text-align: center;
}
.intro-media .badge .big { font-size: 2.6rem; line-height: 1; color: var(--c-sand-light); display: block; }
.intro-media .badge .small { font-family: var(--f-ui); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-cream-mute); }
@media (max-width: 880px) {
  .intro-split { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .intro-media .badge { right: 12px; }
}

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); margin-top: var(--gap-xl); }
.stats-strip .stat { text-align: center; padding: var(--gap-md) 0; border-top: 2px solid var(--c-sand); }
.stats-strip .stat .num { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--c-brand); line-height: 1; font-variant-numeric: tabular-nums; }
.stats-strip .stat .lbl { font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink-mute); margin-top: var(--gap-xs); }
@media (max-width: 620px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------
   3. LEISTUNGEN — alternating magazine splits + grid cards
   ------------------------------------------------------------ */
.leistung-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl);
  align-items: center; margin-bottom: var(--gap-2xl);
}
.leistung-row:last-child { margin-bottom: 0; }
.leistung-row.reverse .l-text { order: 2; }
.leistung-row .l-image { position: relative; overflow: hidden; border-radius: 3px; box-shadow: 0 26px 60px -34px rgba(33,31,28,0.5); }
.leistung-row .l-image img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .6s; transform: scale(1.08); filter: saturate(0.96); }
.leistung-row.in-view .l-image img { transform: scale(1); }
.leistung-row .l-image:hover img { transform: scale(1.04); filter: saturate(1.08); }
.leistung-row .l-num { font-family: var(--f-display); font-size: 4.5rem; line-height: 0.8; color: var(--c-sand); opacity: 0.5; font-weight: 600; }
.leistung-row .l-kicker { font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-sand-dark); font-weight: 600; margin: var(--gap-sm) 0; display: block; }
.leistung-row .l-title { font-size: var(--size-h2); margin-bottom: var(--gap-sm); }
.leistung-row .l-desc { color: var(--c-ink-mute); line-height: 1.7; font-size: 1.04rem; }
.leistung-bullets { list-style: none; margin: var(--gap-md) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem var(--gap-md); }
.leistung-bullets li { font-family: var(--f-ui); font-size: 0.88rem; color: var(--c-ink); padding-left: 1.3rem; position: relative; }
.leistung-bullets li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--c-sand); transform: rotate(45deg); }
@media (max-width: 820px) {
  .leistung-row { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .leistung-row.reverse .l-text { order: 0; }
  .leistung-bullets { grid-template-columns: 1fr; }
}

/* Teaser cards (index) */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.service-card {
  position: relative; overflow: hidden; border-radius: 3px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gap-lg); color: var(--c-cream); isolation: isolate;
  box-shadow: 0 20px 50px -28px rgba(33,31,28,0.45);
}
.service-card .sc-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,20,15,0.1) 0%, rgba(22,20,15,0.4) 50%, rgba(22,20,15,0.88) 100%); }
.service-card:hover .sc-bg { transform: scale(1.07); }
.service-card .sc-num { font-family: var(--f-display); font-size: 0.9rem; color: var(--c-sand-light); letter-spacing: 0.1em; }
.service-card .sc-title { font-family: var(--f-display); font-size: 1.65rem; font-weight: 500; margin: var(--gap-xs) 0; line-height: 1.1; }
.service-card .sc-short { font-size: 0.92rem; color: var(--c-cream-mute); line-height: 1.5; }
.service-card .sc-link { font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-sand-light); margin-top: var(--gap-sm); display: inline-flex; gap: 6px; }
.service-card .sc-link .arrow { transition: transform .3s; }
.service-card:hover .sc-link .arrow { transform: translateX(5px); }
@media (max-width: 900px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-cards { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   4. BEFORE / AFTER SLIDER
   ------------------------------------------------------------ */
.ba-section { background: var(--c-paper-warm); }
.ba-wrap { max-width: 1040px; margin: 0 auto; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: 4px; box-shadow: 0 30px 70px -34px rgba(33,31,28,0.55);
  cursor: ew-resize; user-select: none; touch-action: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; top: 16px; z-index: 4; font-family: var(--f-ui); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-cream);
  background: rgba(22,20,15,0.7); padding: 0.35rem 0.7rem; border-radius: 999px;
}
.ba-label.before { left: 16px; } .ba-label.after { right: 16px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3; width: 3px;
  background: var(--c-cream); transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}
.ba-handle::after {
  content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-cream); color: var(--c-charcoal);
  display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.ba-caption { text-align: center; font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: var(--c-ink-mute); margin-top: var(--gap-lg); max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   5. GALLERY — masonry/bento + filter + lightbox
   ------------------------------------------------------------ */
.gallery-filter { display: flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: center; margin-bottom: var(--gap-xl); }
.gallery-filter button {
  font-family: var(--f-ui); font-size: 0.78rem; letter-spacing: 0.06em; font-weight: 500;
  padding: 0.5rem 1.05rem; border: 1px solid var(--c-rule); background: transparent; color: var(--c-ink);
  border-radius: 999px; cursor: pointer; transition: all .25s;
}
.gallery-filter button:hover { border-color: var(--c-sand-dark); color: var(--c-sand-dark); }
.gallery-filter button.active { background: var(--c-brand); color: var(--c-paper); border-color: var(--c-brand); }

.gallery-bento { columns: 3; column-gap: var(--gap-sm); }
.gallery-bento .g-item {
  break-inside: avoid; margin-bottom: var(--gap-sm); position: relative; overflow: hidden;
  border-radius: 3px; cursor: pointer; background: var(--c-paper-deep);
  box-shadow: 0 14px 34px -22px rgba(33,31,28,0.45); transition: transform .4s, opacity .4s;
}
.gallery-bento .g-item img { width: 100%; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s; filter: grayscale(0.15) saturate(0.96); }
.gallery-bento .g-item:hover img { transform: scale(1.06); filter: grayscale(0) saturate(1.1); }
.gallery-bento .g-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--gap-md) var(--gap-sm) var(--gap-sm);
  background: linear-gradient(0deg, rgba(22,20,15,0.85), transparent);
  color: var(--c-cream); font-family: var(--f-display); font-style: italic; font-size: 1rem;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.gallery-bento .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.gallery-bento .g-item.is-hidden { display: none; }
@media (max-width: 900px) { .gallery-bento { columns: 2; } }
@media (max-width: 560px) { .gallery-bento { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(16,14,11,0.94);
  display: none; place-items: center; padding: var(--gap-lg);
  opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: grid; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox .lb-cap { color: var(--c-cream); font-family: var(--f-display); font-style: italic; font-size: 1.2rem; margin-top: var(--gap-md); text-align: center; }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(216,203,172,0.12); border: 1px solid rgba(216,203,172,0.3); color: var(--c-cream); width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(216,203,172,0.28); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--c-cream-faint); font-family: var(--f-ui); font-size: 0.8rem; letter-spacing: 0.1em; }
@media (max-width: 600px) { .lightbox .lb-nav { width: 44px; height: 44px; } }

/* ------------------------------------------------------------
   6. BLEED STRIP — full-bleed atmospheric break
   ------------------------------------------------------------ */
.bleed-strip {
  position: relative; min-height: 78vh; overflow: hidden; display: grid; place-items: center; isolation: isolate;
}
.bleed-strip > img { position: absolute; inset: 0; width: 100%; height: 132%; object-fit: cover; z-index: -2; will-change: transform; filter: saturate(0.8) brightness(0.5) contrast(1.08); }
.bleed-strip::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(74,69,64,0.5), rgba(22,20,15,0.78)); }
.bleed-strip .bleed-inner { text-align: center; color: var(--c-cream); padding: 0 var(--gap-lg); max-width: 820px; }
.bleed-strip .bleed-inner .eyebrow { color: var(--c-sand-light); }
.bleed-strip .bleed-inner h2 { color: var(--c-cream); font-size: clamp(2.4rem, 5.5vw, 5rem); font-style: italic; font-weight: 400; text-shadow: 0 2px 30px rgba(0,0,0,0.4); margin: 0 auto var(--gap-md); }
.bleed-strip .bleed-inner p { color: var(--c-cream-mute); font-family: var(--f-display); font-style: italic; font-size: 1.2rem; max-width: 52ch; margin: 0 auto var(--gap-lg); }
.bleed-strip::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 44px; background: #000; z-index: 1; opacity: 0; transition: opacity .8s; pointer-events: none; }
.bleed-strip .lb-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 44px; background: #000; z-index: 1; opacity: 0; transition: opacity .8s; pointer-events: none; }
.bleed-strip.in-view::before, .bleed-strip.in-view .lb-bottom { opacity: 1; }

/* ------------------------------------------------------------
   7. TIMELINE (Über-uns history)
   ------------------------------------------------------------ */
.timeline { position: relative; padding: var(--gap-xl) 0; }
.timeline-axis { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--c-rule); transform: translateX(-1px); }
.timeline-entry { display: grid; grid-template-columns: 1fr 96px 1fr; gap: var(--gap-md); align-items: start; margin-bottom: var(--gap-2xl); position: relative; }
.timeline-year { font-family: var(--f-display); font-size: 2.1rem; font-weight: 600; text-align: center; color: var(--c-sand-dark); background: var(--c-paper); padding: 0.4rem 0; position: relative; z-index: 1; }
.timeline-year::after { content: ""; position: absolute; left: 50%; bottom: -10px; width: 10px; height: 10px; border-radius: 50%; background: var(--c-sand); transform: translateX(-50%); border: 2px solid var(--c-paper); }
.timeline-entry:nth-child(even) .timeline-text { grid-column: 3; text-align: left; }
.timeline-entry:nth-child(odd) .timeline-text { grid-column: 1; text-align: right; }
.timeline-text h3 { font-family: var(--f-display); font-size: 1.4rem; margin: 0 0 var(--gap-xs); color: var(--c-ink); }
.timeline-text p { font-size: 0.96rem; color: var(--c-ink-mute); line-height: 1.6; margin: 0; }
@media (max-width: 760px) {
  .timeline-axis { left: 26px; }
  .timeline-entry { grid-template-columns: 64px 1fr; gap: var(--gap-md); }
  .timeline-year { grid-column: 1; font-size: 1.3rem; text-align: left; }
  .timeline-year::after { left: 14px; }
  .timeline-entry .timeline-text,
  .timeline-entry:nth-child(even) .timeline-text,
  .timeline-entry:nth-child(odd) .timeline-text { grid-column: 2; text-align: left; }
}

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.value-card { background: var(--c-paper-warm); border-radius: 3px; padding: var(--gap-lg); border-top: 3px solid var(--c-sand); }
.value-card h3 { font-size: 1.3rem; margin-bottom: var(--gap-xs); }
.value-card p { font-size: 0.94rem; color: var(--c-ink-mute); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   8. CONTACT
   ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-2xl); align-items: start; }
.contact-info .field { margin-bottom: var(--gap-lg); }
.contact-info .field .lbl { font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ink-mute); margin-bottom: 4px; display: block; }
.contact-info .field .val { font-family: var(--f-display); font-size: 1.5rem; color: var(--c-ink); }
.contact-info .field .val a { border-bottom: 1px solid var(--c-rule); transition: border-color .25s; }
.contact-info .field .val a:hover { border-color: var(--c-sand-dark); color: var(--c-sand-dark); }
.contact-form { background: var(--c-charcoal); border-radius: 4px; padding: var(--gap-xl); color: var(--c-cream); }
.contact-form h3 { color: var(--c-cream); font-size: 1.8rem; }
.contact-form label { display: block; font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-cream-mute); margin: var(--gap-md) 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(216,203,172,0.06); border: 1px solid rgba(216,203,172,0.22);
  border-radius: 3px; padding: 0.75rem 0.9rem; color: var(--c-cream); font-family: var(--f-body); font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--c-sand); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { margin-top: var(--gap-lg); width: 100%; justify-content: center; }
.contact-form .note { font-size: 0.74rem; color: var(--c-cream-faint); margin-top: var(--gap-md); text-align: center; }
.region-list { display: flex; flex-wrap: wrap; gap: var(--gap-sm); margin-top: var(--gap-md); }
.region-list span { font-family: var(--f-ui); font-size: 0.8rem; padding: 0.35rem 0.8rem; background: var(--c-paper-deep); border-radius: 999px; color: var(--c-ink); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: var(--gap-xl); } }

/* Final CTA band */
.cta-band { background: var(--c-brand); color: var(--c-cream); text-align: center; }
.cta-band h2 { color: var(--c-cream); font-size: clamp(2.2rem, 5vw, 4rem); font-style: italic; max-width: 22ch; margin: 0 auto var(--gap-md); }
.cta-band p { color: var(--c-cream-mute); max-width: 56ch; margin: 0 auto var(--gap-lg); font-size: 1.05rem; }
.cta-band .actions { display: inline-flex; gap: var(--gap-sm); flex-wrap: wrap; justify-content: center; }

/* ------------------------------------------------------------
   9. Legal pages
   ------------------------------------------------------------ */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 1.6rem; margin-top: var(--gap-xl); }
.legal-body h3 { font-size: 1.15rem; font-family: var(--f-ui); font-weight: 600; letter-spacing: 0.04em; margin-top: var(--gap-lg); color: var(--c-brand); }
.legal-body p, .legal-body address { font-size: 0.96rem; color: var(--c-ink-mute); line-height: 1.7; font-style: normal; }
.legal-note { background: var(--c-paper-warm); border-left: 3px solid var(--c-sand); padding: var(--gap-md) var(--gap-lg); margin-bottom: var(--gap-xl); border-radius: 0 3px 3px 0; }
.legal-note strong { color: var(--c-ink); }

/* ------------------------------------------------------------
   10. Cinematic-layer reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic > .bg, .hero-cinematic > .dust, .bleed-strip > img,
  .hero-cinematic .hero-title .char, .leistung-row .l-image img, .intro-media .frame img {
    animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; filter: none !important;
  }
  .hero-cinematic > .bg.bg-2, .hero-cinematic > .bg.bg-3 { opacity: 0 !important; }
  .hero-cinematic .hero-eyebrow, .hero-cinematic .hero-sub, .hero-cinematic .hero-actions, .hero-trust { opacity: 1 !important; transform: none !important; }
}
