/* =============================================================================
   Tischler-Template 2 „AUFRISS" — PLATZHALTER-/TEMPLATE-VARIANTE
   Branche: Bautischlerei — Fenster, Türen & Bauelemente (Holzfenster · Haus- &
   Innentüren · Bauelemente · Treppen). Identisches Layout wie die Demo, aber
   neutrale SLATE-Palette (Marken-/Akzentfarbe wird pro Kunde gesetzt), Inhalte als
   {{platzhalter}}, Fotos als Gradient-/Textur-Platzhalter (.ph). Kühl-architekto-
   nische Werkriss-/Aufriss-Anmutung: Schiefer/Anthrazit als Zwei-Pol-Bühne
   (hell ↔ dunkel im Wechsel). Space Grotesk (Display) + Space Mono (Maße/Labels) +
   Inter (Fließtext), Bemaßungs-Linien, Profil-Querschnitte, Eck-Registriermarken,
   Material-Swatches, Blueprint-Raster.
   Vanilla CSS · BEM-ish · Custom Properties · GSAP optional (JS-Fallback) ·
   reduced-motion- & touch-aware · kein horizontaler Overflow @375/1440.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   0. Design-Tokens
   --------------------------------------------------------------------------- */
:root {
  /* Zwei-Pol-Bühne: heller Schiefer ↔ dunkles Anthrazit */
  --c-bg:      #e9edf2;   /* heller Kühl-Schiefer — dominante Bühne */
  --c-surface: #f2f5f8;   /* helles Off-White (die meisten hellen Sektionen) */
  --c-tint:    #d8e0e8;   /* tieferer Schiefer-Blau-Ton (Wechsel hell) */
  --c-tint-2:  #c3cfda;
  --c-paper:   #ffffff;   /* reines Weiß — Karten · Felder */

  /* Anthrazit-Pol (dunkle Bänder · Footer) */
  --c-ink:     #1b2430;
  --c-ink-2:   #141b25;   /* tiefstes Anthrazit */
  --c-slate:   #36485c;   /* mittleres Schiefer (Headings hell) */
  --c-slate-dk:#243140;   /* dunkles Schiefer (Headings/Hover) */

  /* Akzent — neutrales Slate (Platzhalter für Kunden-Holzakzent) */
  --c-wood:    #64748b;
  --c-wood-br: #94a3b8;
  --c-wood-dk: #475569;
  --c-wood-soft: rgba(100,116,139,.14);

  /* Signal — neutrales Slate (Platzhalter für Kunden-Signalfarbe) */
  --c-red:     #475569;
  --c-red-dk:  #334155;
  --c-red-br:  #64748b;
  --c-red-soft: rgba(71,85,105,.12);

  /* „Riss"-Sweep (Scanlinie) — neutral */
  --sweep: linear-gradient(100deg, rgba(148,163,184,0) 30%, rgba(148,163,184,.5) 48%, rgba(148,163,184,0) 64%);

  /* Text */
  --t-ink:   #18222d;
  --t-dim:   #4f5d6b;
  --t-faint: #8492a0;
  --t-on-dark:     #e6ecf2;
  --t-on-dark-dim: #9aabbb;

  /* Linien */
  --c-line:   rgba(24,34,45,.14);
  --c-line-2: rgba(24,34,45,.26);
  --c-line-dk:rgba(230,236,242,.15);

  /* Typo */
  --f-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "Space Mono", "SFMono-Regular", "Roboto Mono", ui-monospace, monospace;

  /* Maße */
  --maxw: 1280px;
  --gut:  clamp(1.15rem, 4.4vw, 3.4rem);
  --r:    3px;
  --r-lg: 6px;

  /* Schatten */
  --sh-1: 0 2px 10px rgba(24,34,45,.06), 0 20px 46px -30px rgba(24,34,45,.32);
  --sh-2: 0 8px 22px rgba(24,34,45,.10), 0 50px 90px -40px rgba(20,27,37,.5);
  --sh-frame: 0 1px 0 rgba(255,255,255,.6) inset, 0 26px 60px -34px rgba(20,27,37,.5);

  /* Blueprint-Raster (technische Zeichnungsfläche) */
  --grid-light: repeating-linear-gradient(0deg, transparent 0 39px, rgba(24,34,45,.045) 39px 40px),
                repeating-linear-gradient(90deg, transparent 0 39px, rgba(24,34,45,.045) 39px 40px);
  --grid-dark:  repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.035) 39px 40px),
                repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.035) 39px 40px);

  /* Motion */
  --ease:     cubic-bezier(.18,.82,.28,1);
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

/* ----------------------------------------------------------------------------
   1. Reset / Basis
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--t-ink);
  line-height: 1.68;
  font-size: clamp(1rem, .96rem + .25vw, 1.11rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, p, li, a, span, figcaption, address {
  overflow-wrap: anywhere; word-break: normal; hyphens: auto; -webkit-hyphens: auto;
}
.display, .display span, h1, h2, h3, .mono { hyphens: none; -webkit-hyphens: none; }

::selection { background: var(--c-slate-dk); color: #fff; }
:focus-visible { outline: 2.5px solid var(--c-wood); outline-offset: 3px; border-radius: 2px; }

/* ----------------------------------------------------------------------------
   2. Layout / Utilities
   --------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 940px; }
.section { padding-block: clamp(3.4rem, 8vw, 7.5rem); position: relative; }
/* Dezent aufgewertete Bühnen: weiche Verläufe statt flacher Flächen → mehr Tiefe */
.section--surface { background: linear-gradient(180deg, #fff 0%, var(--c-surface) 30%); }
.section--tint    { background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-tint) 72%, var(--c-tint-2) 100%); }
.section--paper   { background: var(--c-paper); }
.section--ink     { background: linear-gradient(180deg, var(--c-ink) 0%, var(--c-ink-2) 100%); color: var(--t-on-dark); }
.section--grid::before { content: ""; position: absolute; inset: 0; background: var(--grid-light); pointer-events: none; z-index: 0; }
.section--ink.section--grid::before { background: var(--grid-dark); }
.section--ink .display, .section--ink h2, .section--ink h3 { color: #fff; }
.section > .wrap { position: relative; z-index: 1; }

.display { font-family: var(--f-display); font-weight: 600; line-height: 1.04;
  letter-spacing: -.018em; }
.h-xxl { font-size: clamp(2.55rem, 1.2rem + 6vw, 5.6rem); }
.h-xl  { font-size: clamp(1.95rem, 1.2rem + 3.2vw, 3.4rem); }
.h-l   { font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.3rem); }
.lead  { font-size: clamp(1.06rem, 1rem + .5vw, 1.28rem); color: var(--t-dim); line-height: 1.62; }

/* Mono-Label / Eyebrow — technische Beschriftung */
.mono { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; }
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--f-mono);
  font-size: .74rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-slate-dk); }
.eyebrow .idx { color: var(--c-red); font-weight: 700; }
.eyebrow .rule { display: none; }
.section--ink .eyebrow { color: var(--c-wood-br); }
.section--ink .eyebrow .idx { color: var(--c-red-br); }

.section-head { max-width: 62ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.1rem; }
.section-head .display { margin-top: .9rem; }

/* Bemaßungs-Linie (Maßlinie mit Endpfeilen + Wert) */
.dim { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-mono);
  font-size: .72rem; letter-spacing: .08em; color: var(--t-faint); text-transform: uppercase; }
.dim__line { position: relative; height: 0; flex: 1; min-width: 38px; max-width: 120px; border-top: 1px solid var(--c-line-2); }
.dim__line::before, .dim__line::after { content: ""; position: absolute; top: 50%; width: 1px; height: 7px; background: var(--c-line-2); transform: translateY(-50%); }
.dim__line::before { left: 0; }
.dim__line::after  { right: 0; }
.dim__val { color: var(--c-wood-dk); white-space: nowrap; }
.section--ink .dim { color: var(--t-on-dark-dim); }
.section--ink .dim__line, .section--ink .dim__line::before, .section--ink .dim__line::after { border-color: var(--c-line-dk); background: var(--c-line-dk); }
.section--ink .dim__val { color: var(--c-wood-br); }

/* Buttons */
.btn { --b: var(--c-slate-dk); display: inline-flex; align-items: center; gap: .6rem;
  padding: .82em 1.5em; border-radius: var(--r); background: var(--b); color: #fff;
  font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 12px 26px -16px rgba(24,34,45,.85); }
.btn svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(24,34,45,.9); }
.btn:hover svg { transform: translateX(4px); }
.btn--wood { --b: var(--c-wood); box-shadow: 0 12px 26px -16px rgba(171,115,56,.9); }
.btn--wood:hover { box-shadow: 0 18px 34px -16px rgba(171,115,56,.95); }
.btn--red { --b: var(--c-red); box-shadow: 0 12px 26px -16px rgba(193,47,51,.9); }
.btn--red:hover { box-shadow: 0 18px 34px -16px rgba(193,47,51,.95); }
.btn--ghost { background: transparent; color: var(--c-slate-dk);
  box-shadow: inset 0 0 0 1.5px var(--c-line-2); }
.btn--ghost:hover { background: rgba(24,34,45,.05); box-shadow: inset 0 0 0 1.5px var(--c-slate); }
.btn--big { padding: 1em 1.9em; font-size: 1.02rem; }
.btn--on-dark.btn--ghost { color: var(--t-on-dark); box-shadow: inset 0 0 0 1.5px var(--c-line-dk); }
.btn--on-dark.btn--ghost:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }

.txt-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600;
  color: var(--c-slate-dk); border-bottom: 1.5px solid var(--c-wood);
  padding-bottom: 2px; transition: color .25s, gap .25s; }
.txt-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.txt-link:hover { color: var(--c-wood-dk); }
.txt-link:hover svg { transform: translateX(4px); }
.section--ink .txt-link { color: #fff; border-color: var(--c-wood-br); }

.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 200; background: var(--c-slate-dk);
  color: #fff; padding: .7rem 1.1rem; border-radius: var(--r); transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ----------------------------------------------------------------------------
   3. Foto-Rahmen (.frame) — Registriermarken + „Riss"-Sweep + Vorhang
   --------------------------------------------------------------------------- */
.frame { position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--c-tint-2); box-shadow: var(--sh-frame); }
.frame::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--c-line); border-radius: inherit; }
.frame img, .frame .ph { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease); }
.frame[data-ratio="4-5"] { aspect-ratio: 4/5; }
.frame[data-ratio="3-4"] { aspect-ratio: 3/4; }
.frame[data-ratio="1-1"] { aspect-ratio: 1/1; }
.frame[data-ratio="3-2"] { aspect-ratio: 3/2; }
.frame[data-ratio="16-10"]{ aspect-ratio: 16/10; }
.frame[data-ratio="16-9"] { aspect-ratio: 16/9; }
a.frame:hover img, .hoved:hover .frame img { transform: scale(1.045); }

/* Eck-Registriermarken (technische Crop-Marken an den 4 Ecken) */
.frame--mark { box-shadow: var(--sh-frame); }
.frame--mark .tick { position: absolute; z-index: 5; width: 16px; height: 16px; pointer-events: none; }
.frame--mark .tick::before, .frame--mark .tick::after { content: ""; position: absolute; background: var(--c-wood-br); }
.frame--mark .tick::before { width: 100%; height: 2px; }
.frame--mark .tick::after  { width: 2px; height: 100%; }
.frame--mark .tick--tl { top: 9px; left: 9px; }
.frame--mark .tick--tr { top: 9px; right: 9px; }
.frame--mark .tick--tr::before { right: 0; } .frame--mark .tick--tr::after { right: 0; }
.frame--mark .tick--bl { bottom: 9px; left: 9px; }
.frame--mark .tick--bl::before { bottom: 0; } .frame--mark .tick--bl::after { bottom: 0; }
.frame--mark .tick--br { bottom: 9px; right: 9px; }
.frame--mark .tick--br::before { bottom: 0; right: 0; } .frame--mark .tick--br::after { bottom: 0; right: 0; }

/* „Riss"-Sweep beim Reveal (Holz-Scanlinie) */
.frame .sweep { position: absolute; inset: 0; background: var(--sweep);
  background-size: 240% 100%; background-position: 140% 0; pointer-events: none;
  opacity: 0; mix-blend-mode: screen; z-index: 4; }

/* Vorhang: Anthrazit-Panel wischt das Bild frei */
.curtain .frame::before { content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(120deg, var(--c-slate-dk), var(--c-ink-2));
  transform: scaleX(1); transform-origin: right; transition: transform .9s var(--ease); }
.curtain .frame img, .curtain .frame .ph { transform: scale(1.12); }
.curtain.is-shown .frame::before { transform: scaleX(0); }
.curtain.is-shown .frame img, .curtain.is-shown .frame .ph { transform: scale(1); transition: transform 1.3s var(--ease); }
.curtain.is-shown .frame .sweep { animation: sweepRun 1.1s .35s var(--ease) forwards; }
@keyframes sweepRun { 0% { opacity: .9; background-position: 140% 0; } 100% { opacity: 0; background-position: -60% 0; } }

.frame__tag { position: absolute; left: 0; bottom: 0; z-index: 4; margin: .8rem;
  background: rgba(27,36,48,.86); color: #fff; backdrop-filter: blur(6px);
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .03em; padding: .42rem .8rem;
  border-radius: var(--r); box-shadow: var(--sh-1); }

/* Gradient-/Textur-Platzhalter (template/-Variante & Fallback) */
.ph { display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,.9); font-family: var(--f-mono); font-size: clamp(.78rem,1.8vw,.95rem);
  padding: 1.2rem; line-height: 1.45; letter-spacing: .02em;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 14px, rgba(255,255,255,0) 14px 28px),
    linear-gradient(150deg, var(--c-slate) 0%, var(--c-slate-dk) 55%, var(--c-ink) 100%); }
.ph--wood { color: #fff;
  background:
    repeating-linear-gradient(92deg, rgba(0,0,0,.05) 0 2px, rgba(255,255,255,.04) 2px 6px, rgba(0,0,0,.03) 6px 11px),
    linear-gradient(120deg, var(--c-wood-br) 0%, var(--c-wood) 52%, var(--c-wood-dk) 100%); }
.ph--blue { background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 19px, transparent 19px 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 19px, transparent 19px 20px),
    linear-gradient(150deg, var(--c-slate) 0%, var(--c-ink) 100%); }

/* ----------------------------------------------------------------------------
   4. Reveal-System
   --------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity .85s var(--ease) var(--d,0s), transform .85s var(--ease) var(--d,0s); }
.reveal-l.is-in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(30px); transition: opacity .85s var(--ease) var(--d,0s), transform .85s var(--ease) var(--d,0s); }
.reveal-r.is-in { opacity: 1; transform: none; }
.no-js .reveal, .no-js .reveal-l, .no-js .reveal-r { opacity: 1; transform: none; }

/* ----------------------------------------------------------------------------
   5. Header / Navigation
   --------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100;
  background: rgba(233,237,242,0); transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent; }
.site-header.is-scrolled, .site-header--solid { background: rgba(242,245,248,.92); backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 10px 30px -24px rgba(20,27,37,.6); border-bottom-color: var(--c-line); }
.nav { display: flex; align-items: center; gap: 1.2rem; padding-block: .8rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__logo { height: clamp(34px, 5vw, 46px); width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); margin-left: auto; }
.nav-links > a { font-weight: 500; font-size: .96rem; color: var(--t-ink); position: relative; padding-block: .3rem; }
.nav-links > a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--c-red); transition: width .3s var(--ease); }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: .4rem; }
.mobile-cta { display: none; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r); position: relative;
  margin-left: auto; box-shadow: inset 0 0 0 1.5px var(--c-line-2); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; background: var(--t-ink); transform: translate(-50%,-50%); transition: .3s var(--ease); }
.nav-toggle::before { transform: translate(-50%,-7px); }
.nav-toggle::after  { transform: translate(-50%,5px); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,27,37,.5); opacity: 0; visibility: hidden;
  transition: .3s; z-index: 90; }

@media (max-width: 920px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--c-surface); padding: 5.5rem 2rem 2rem;
    transform: translateX(102%); transition: transform .4s var(--ease); z-index: 95; margin: 0;
    box-shadow: -30px 0 80px -40px rgba(20,27,37,.6); overflow-y: auto; }
  .nav-links.is-open { transform: none; }
  .nav-links > a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--c-line); font-size: 1.12rem; }
  .mobile-cta { display: inline-flex; margin-top: 1.4rem; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-open .nav-toggle span { opacity: 0; }
  .nav-open .nav-toggle::before { transform: translate(-50%,-50%) rotate(45deg); }
  .nav-open .nav-toggle::after  { transform: translate(-50%,-50%) rotate(-45deg); }
}

/* ----------------------------------------------------------------------------
   6. HERO — architektonischer Aufriss-Split
   --------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.2rem, 5vw, 4.6rem) clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grid-light); pointer-events: none; z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%); mask-image: linear-gradient(180deg, #000, transparent 78%); }
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr); align-items: center; }
.hero__rail { margin-bottom: 1.5rem; display: flex; }
.hero__rail .dim { width: min(100%, 340px); }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--c-wood-dk); }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .1em; background: var(--c-red); border-radius: 2px; }
.hero__sub { max-width: 47ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--c-line); }
.hero__meta .m { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--f-display); font-size: 1.75rem; font-weight: 600; line-height: 1; color: var(--c-slate-dk); }
.hero__meta span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .02em; color: var(--t-dim); margin-top: .45rem; text-transform: uppercase; }

/* überlappende Foto-Komposition mit Maß-Annotation */
.hero__stack { position: relative; }
.hero__stack .frame--lg { aspect-ratio: 4/5; }
.hero__stack .frame--sm { position: absolute; left: -7%; bottom: -9%; width: 44%; aspect-ratio: 1/1;
  z-index: 5; box-shadow: var(--sh-2); }
.hero__stack .stamp { position: absolute; right: -3%; top: 6%; z-index: 6;
  background: var(--c-red); color: #fff; font-family: var(--f-display); font-weight: 600;
  width: clamp(76px, 13vw, 104px); height: clamp(76px, 13vw, 104px); border-radius: 50%;
  display: grid; place-content: center; text-align: center; line-height: 1.05; font-size: clamp(.66rem,1.5vw,.8rem);
  box-shadow: var(--sh-2); transform: rotate(-6deg); }
.hero__stack .stamp b { display: block; font-size: 1.7em; }
/* vertikale Maßlinie rechts an der Foto-Komposition */
.hero__gauge { position: absolute; right: -1.4rem; top: 8%; bottom: 8%; width: 0; border-left: 1px solid var(--c-line-2);
  display: none; }
.hero__gauge::before, .hero__gauge::after { content: ""; position: absolute; left: 50%; width: 9px; height: 1px; background: var(--c-line-2); transform: translateX(-50%); }
.hero__gauge::before { top: 0; } .hero__gauge::after { bottom: 0; }
@media (min-width: 1120px) { .hero__gauge { display: block; } }

/* ----------------------------------------------------------------------------
   7. SPEC-STRIP — Titelblock-Band (dunkel, Maße/Fakten als Zeichnungskopf)
   --------------------------------------------------------------------------- */
.spec { background: var(--c-ink); color: var(--t-on-dark); position: relative; overflow: hidden; }
.spec::before { content: ""; position: absolute; inset: 0; background: var(--grid-dark); pointer-events: none; }
.spec .wrap { position: relative; z-index: 1; padding-block: clamp(1.4rem, 3vw, 2.1rem); }
.spec__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--c-line-dk);
  border: 1px solid var(--c-line-dk); }
.spec__cell { background: var(--c-ink); padding: 1rem clamp(1rem,2vw,1.5rem); display: flex; flex-direction: column; gap: .25rem; }
.spec__k { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-wood-br); }
.spec__v { font-family: var(--f-display); font-weight: 500; font-size: clamp(1rem,2vw,1.3rem); color: #fff; line-height: 1.15; }
.spec__v small { display: block; font-family: var(--f-body); font-weight: 400; font-size: .8rem; color: var(--t-on-dark-dim); margin-top: .15rem; letter-spacing: 0; }
/* Schmaler reiner Trenn-Balken (textlos) — ersetzt den Spec-Strip unter dem Header */
.spec--band { height: clamp(14px, 2.6vw, 22px); }

/* ----------------------------------------------------------------------------
   8. LEISTUNGS-REGISTER — Featured-Foto + Profil-Zeilen (index.html)
   --------------------------------------------------------------------------- */
.register { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(1.8rem,4vw,3.4rem); align-items: stretch; margin-top: clamp(2rem,4vw,3rem); }
.register__feature { position: relative; }
.register__feature .frame { height: 100%; min-height: 360px; }
.register__feature .cap { position: absolute; left: 1.1rem; bottom: 1.1rem; right: 1.1rem; z-index: 4; color: #fff; }
.register__feature .cap h3 { font-family: var(--f-display); font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 600; }
.register__feature .cap p { color: rgba(255,255,255,.85); font-size: .94rem; margin-top: .3rem; max-width: 38ch; }
.register__feature .frame::after { box-shadow: none; background: linear-gradient(to top, rgba(20,27,37,.82), rgba(20,27,37,0) 56%); }

.reg-list { display: flex; flex-direction: column; }
.reg-row { display: grid; grid-template-columns: auto auto 1fr auto; gap: 1rem 1.2rem; align-items: center;
  padding: clamp(1rem,2.2vw,1.45rem) 0; border-top: 1px solid var(--c-line); transition: padding-left .35s var(--ease); }
.reg-row:last-child { border-bottom: 1px solid var(--c-line); }
.reg-row__n { font-family: var(--f-mono); font-size: .82rem; color: var(--c-red); width: 2.6ch; }
.reg-row__ic { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-content: center; color: var(--c-slate-dk);
  border: 1px solid var(--c-line); border-radius: var(--r); background: var(--c-paper); }
.reg-row__ic svg { width: 26px; height: 26px; }
.reg-row__main h3 { font-family: var(--f-display); font-size: clamp(1.15rem,2.3vw,1.5rem); font-weight: 600; }
.reg-row__main p { font-size: .9rem; color: var(--t-dim); margin-top: .1rem; }
.reg-row__arr { width: 38px; height: 38px; border-radius: 50%; display: grid; place-content: center;
  box-shadow: inset 0 0 0 1.5px var(--c-line-2); color: var(--c-slate-dk); transition: .3s var(--ease); }
.reg-row__arr svg { width: 1.05rem; height: 1.05rem; }
.reg-row:hover { padding-left: .6rem; }
.reg-row:hover .reg-row__arr { background: var(--c-slate-dk); color: #fff; transform: translateX(3px); box-shadow: none; }
.reg-row:hover .reg-row__ic { border-color: var(--c-wood); color: var(--c-wood-dk); }

/* ----------------------------------------------------------------------------
   9. MATERIAL — Holzarten als Werkstoff-Tafel (premium) · Beschlag-Strip
   --------------------------------------------------------------------------- */
.material__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.4rem clamp(1.6rem,4vw,3rem); margin-bottom: clamp(1.8rem,4vw,2.6rem); }
.material__head .lead { max-width: 44ch; }

/* Asymmetrische Zwei-Spalten-Bühne: Intro (sticky) ↔ Material-Tafel */
.material { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(2rem,5vw,4.4rem); align-items: start; }
.material__intro .lead { margin-top: 1.1rem; }
@media (min-width: 981px) { .material__intro { position: sticky; top: 96px; } }

/* Material-Tafel: kuratierte Liste mit Furnier-Streifen statt Chip-Kacheln */
.matboard { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); box-shadow: var(--sh-2); overflow: hidden; }
.matrow { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: clamp(1rem,2.6vw,1.7rem); align-items: center;
  padding: clamp(1rem,2.4vw,1.45rem) clamp(1.1rem,2.8vw,1.7rem); border-top: 1px solid var(--c-line); transition: background .3s var(--ease); }
.matrow:first-child { border-top: 0; }
.matrow:hover { background: var(--c-wood-soft); }
.matrow__main { display: flex; flex-direction: column; min-width: 0; }
.matrow__chip { width: clamp(30px,5vw,40px); height: clamp(54px,9vw,72px); border-radius: 4px; position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.14), 0 5px 12px -7px rgba(20,27,37,.55); }
.matrow__chip::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 16px rgba(20,27,37,.16); }
.matrow__name { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.06rem,2.2vw,1.28rem); line-height: 1.14; color: var(--c-slate-dk); }
.matrow__desc { font-size: .92rem; color: var(--t-dim); margin-top: .15rem; }
.matrow__idx { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em; color: var(--c-wood-dk); }
@media (max-width: 980px) { .material { grid-template-columns: minmax(0,1fr); } }
/* Material-Maserung (CSS-Streifen, kein Bild) — neutralisiert auf Slate-Stufen.
   Generator setzt pro Lead echte Holzton-Werte (vgl. Demo-Variante). */
.grain-eiche  { background: repeating-linear-gradient(91deg, #9aa6b4 0 3px, #b3bdc8 3px 7px, #8e9bab 7px 12px, #a7b2bf 12px 17px); }
.grain-kiefer { background: repeating-linear-gradient(91deg, #c2ccd6 0 3px, #d6dee6 3px 8px, #b6c1cd 8px 13px, #cbd4dd 13px 18px); }
.grain-laerche{ background: repeating-linear-gradient(91deg, #aab4c1 0 2px, #c0c9d4 2px 6px, #9eaab8 6px 11px, #b6bfca 11px 16px); }
.grain-eiche-dk{ background: repeating-linear-gradient(91deg, #566575 0 3px, #6a7888 3px 8px, #4c5a69 8px 13px, #62707f 13px 18px); }
.grain-mahagoni{ background: repeating-linear-gradient(91deg, #46566a 0 3px, #586879 3px 8px, #3d4d61 8px 13px, #506072 13px 18px); }
/* Beschlag-/Technik-Strip — premium, geteilt (hell auf Start, dunkel auf Leistungen) */
.fittings { margin-top: clamp(1.6rem,3.4vw,2.6rem); display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); box-shadow: var(--sh-1); overflow: hidden; }
.fittings > li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem;
  padding: clamp(1.1rem,2.6vw,1.7rem) clamp(.55rem,1.4vw,1rem); border-left: 1px solid var(--c-line);
  font-family: var(--f-mono); font-size: .75rem; letter-spacing: .02em; line-height: 1.4; color: var(--c-slate-dk); }
.fittings > li:first-child { border-left: 0; }
.fittings > li svg { width: 1.6rem; height: 1.6rem; color: var(--c-wood-dk); }
.section--ink .fittings { background: rgba(255,255,255,.035); border-color: var(--c-line-dk); box-shadow: none; }
.section--ink .fittings > li { border-left-color: var(--c-line-dk); color: var(--t-on-dark); }
.section--ink .fittings > li svg { color: var(--c-wood-br); }

/* Spec-Cards — Technik & Beschlag (Leistungen, dunkel) */
.specs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(.8rem,1.8vw,1.2rem); }
.speccard { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: .5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--c-line-dk); border-radius: var(--r-lg); padding: clamp(1.25rem,2.6vw,1.7rem); }
.speccard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--c-wood); opacity: .85; }
.speccard__ic { width: 42px; height: 42px; border-radius: var(--r); display: grid; place-content: center;
  background: var(--c-wood-soft); color: var(--c-wood-br); margin-bottom: .35rem; }
.speccard__ic svg { width: 1.35rem; height: 1.35rem; }
.speccard__k { font-family: var(--f-mono); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-wood-br); }
.speccard__v { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.2rem,2.4vw,1.55rem); line-height: 1.1; color: #fff; }
.speccard__s { font-size: .86rem; color: var(--t-on-dark-dim); line-height: 1.45; }

@media (max-width: 860px) { .specs { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) {
  .fittings { grid-template-columns: minmax(0,1fr); }
  .fittings > li { flex-direction: row; align-items: center; justify-content: flex-start; gap: .9rem; text-align: left;
    border-left: 0; border-top: 1px solid var(--c-line); padding: .95rem 1.2rem; }
  .fittings > li:first-child { border-top: 0; }
  .section--ink .fittings > li { border-top-color: var(--c-line-dk); }
}
@media (max-width: 480px) { .specs { grid-template-columns: minmax(0,1fr); } }

/* ----------------------------------------------------------------------------
   10. REFERENZEN-MOSAIK — Full-Bleed Anthrazit
   --------------------------------------------------------------------------- */
.mosaic { position: relative; overflow: hidden; }
.mosaic__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.4rem; margin-bottom: clamp(1.8rem,4vw,2.8rem); }
.mosaic__head .lead { color: var(--t-on-dark-dim); }
.mosaic-grid { display: grid; gap: clamp(.7rem, 1.4vw, 1.1rem);
  grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
.mosaic-grid .frame { box-shadow: 0 30px 60px -40px rgba(0,0,0,.8); }
.mosaic-grid .frame::after { box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.m-a { grid-column: span 2; grid-row: span 2; }
.m-b { grid-column: span 2; }
.m-tall { grid-row: span 2; }
.mosaic__foot { margin-top: clamp(1.6rem,3vw,2.4rem); display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }
.mosaic__foot .note { font-family: var(--f-mono); color: var(--t-on-dark-dim); font-size: .78rem; letter-spacing: .03em; }

/* ----------------------------------------------------------------------------
   11. VERFAHREN — Eckverbindung (Foto + technisches Joint-Motiv)
   --------------------------------------------------------------------------- */
.method { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(2rem,5vw,4rem); align-items: center; }
.method__media { position: relative; }
.method__media .frame { aspect-ratio: 4/3; }
.method__joint { position: absolute; right: -4%; bottom: -8%; z-index: 6; width: clamp(120px,20vw,180px);
  background: var(--c-paper); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: .85rem; border: 1px solid var(--c-line); }
.method__joint svg { width: 100%; height: auto; color: var(--c-slate-dk); }
.method__joint .cap { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-wood-dk); margin-top: .45rem; text-align: center; }
.method__body .eyebrow { margin-bottom: 1rem; }
.steps { display: grid; gap: 0; margin-top: 1.6rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.1rem 0; border-top: 1px solid var(--c-line); align-items: baseline; }
.step:first-child { border-top: 0; }
.step__n { font-family: var(--f-mono); font-size: .8rem; color: var(--c-red); padding-top: .2rem; }
.step h3 { font-family: var(--f-display); font-size: 1.18rem; font-weight: 600; margin-bottom: .25rem; }
.step p { color: var(--t-dim); font-size: .96rem; }

/* ----------------------------------------------------------------------------
   12. SPLIT (Über-Teaser) mit überlappendem Marker
   --------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame { aspect-ratio: 4/3; }
.split__marker { position: absolute; z-index: 6; right: -3%; bottom: -8%;
  background: var(--c-paper); border-radius: var(--r-lg); padding: 1.1rem 1.3rem;
  box-shadow: var(--sh-2); display: flex; align-items: center; gap: .9rem; border: 1px solid var(--c-line); }
.split__marker b { font-family: var(--f-display); font-size: 2.1rem; font-weight: 600; line-height: 1; color: var(--c-wood-dk); }
.split__marker span { font-family: var(--f-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--t-dim); max-width: 15ch; }
.split__body .eyebrow { margin-bottom: 1rem; }
.split__list { display: grid; gap: .8rem; margin: 1.6rem 0; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; }
.split__list svg { width: 1.2rem; height: 1.2rem; color: var(--c-wood); flex: 0 0 auto; margin-top: .2rem; }
.section--ink .split__list svg { color: var(--c-wood-br); }
.section--ink .split__marker { background: var(--c-ink-2); border-color: var(--c-line-dk); }
.section--ink .split__marker span { color: var(--t-on-dark-dim); }
.section--ink .split__list span { color: var(--t-on-dark); }
.section--ink .lead { color: var(--t-on-dark-dim); }

/* ----------------------------------------------------------------------------
   13. CTA-Band — Full-Bleed Anthrazit + Signal-Rot
   --------------------------------------------------------------------------- */
.cta { background: var(--c-ink); color: var(--t-on-dark); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: var(--grid-dark); pointer-events: none; }
.cta::after { content: ""; position: absolute; left: -6%; bottom: -45%; width: 48vw; height: 48vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(193,47,51,.2), rgba(193,47,51,0) 62%); pointer-events: none; }
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr); gap: clamp(1.6rem,4vw,3rem); align-items: center; }
.cta h2 { color: #fff; }
.cta__text { color: var(--t-on-dark-dim); margin-top: 1rem; }
.cta__actions { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.cta__phone { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.cta__phone svg { width: 1.3rem; height: 1.3rem; color: var(--c-wood-br); }
.cta__hours { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .03em; color: var(--t-on-dark-dim); }

/* ----------------------------------------------------------------------------
   14. FOTO-BANNER (Seitenkopf mit echtem Hintergrundfoto)
   --------------------------------------------------------------------------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; display: flex;
  min-height: clamp(340px, 46vw, 500px); color: var(--t-on-dark); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img, .page-hero__media .ph { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(20,27,37,.62) 0%, rgba(20,27,37,.32) 36%, rgba(20,27,37,.62) 72%, rgba(20,27,37,.92) 100%); }
.page-hero__grid { position: absolute; inset: 0; z-index: -1; background: var(--grid-dark); opacity: .6; pointer-events: none; }
.page-hero .wrap { display: flex; align-items: flex-end; width: 100%; }
.page-hero__inner { position: relative; padding-block: clamp(2.2rem, 5vw, 3.6rem); max-width: 64ch; }
.page-hero .crumbs { color: rgba(230,236,242,.78); margin-bottom: 1.1rem; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { color: var(--c-wood-br); }
.page-hero .eyebrow { color: var(--c-wood-br); }
.page-hero h1 { color: #fff; margin: .9rem 0; text-shadow: 0 2px 34px rgba(20,27,37,.55); }
.page-hero .lead { color: rgba(230,236,242,.92); }
.crumbs { display: flex; gap: .5rem; align-items: center; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .03em; color: var(--t-dim); }
.crumbs a:hover { color: var(--c-slate-dk); }
.crumbs span { color: var(--c-wood-dk); }

/* ----------------------------------------------------------------------------
   15. LEISTUNGEN — alternierende Service-Spreads (.svc) mit Profil-Index
   --------------------------------------------------------------------------- */
.svc { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(1.8rem,5vw,4rem); align-items: center;
  padding-block: clamp(2.4rem,5vw,4rem); border-top: 1px solid var(--c-line); scroll-margin-top: 90px; }
.svc:first-of-type { border-top: 0; }
.svc:nth-child(even) .svc__media { order: 2; }
.svc__media { position: relative; }
.svc__media .frame { aspect-ratio: 3/2; }
.svc__profile { position: absolute; z-index: 6; top: -1.2rem; left: -.6rem;
  width: clamp(58px,9vw,84px); height: clamp(58px,9vw,84px); background: var(--c-paper);
  border: 1px solid var(--c-line); border-radius: var(--r); display: grid; place-content: center; box-shadow: var(--sh-1); }
.svc:nth-child(even) .svc__profile { left: auto; right: -.6rem; }
.svc__profile svg { width: 60%; height: 60%; color: var(--c-slate-dk); }
.svc__index { font-family: var(--f-mono); font-size: .76rem; color: var(--c-red); letter-spacing: .08em; }
.svc__body h2 { font-family: var(--f-display); font-weight: 600; margin-top: .5rem; }
.svc__body .lead { margin: 1rem 0; }
.svc__body ul { display: grid; gap: .65rem; margin-top: 1rem; }
.svc__body ul li { display: flex; gap: .6rem; align-items: flex-start; color: var(--t-dim); }
.svc__body ul svg { width: 1.1rem; height: 1.1rem; color: var(--c-wood); flex: 0 0 auto; margin-top: .28rem; }
.svc__specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.svc__specs li { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--c-slate-dk); background: var(--c-wood-soft); padding: .4rem .8rem; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--c-line); }

/* Ablauf als Marginalien-Timeline */
.flow { display: grid; gap: 0; }
.flow__item { display: grid; grid-template-columns: clamp(70px,12vw,150px) 1fr; gap: clamp(1rem,3vw,2.4rem);
  padding-block: clamp(1.4rem,3vw,2.2rem); border-top: 1px solid var(--c-line); align-items: baseline; }
.flow__n { font-family: var(--f-mono); font-size: clamp(1.1rem,2.4vw,1.5rem); color: var(--c-wood-dk); }
.flow__item h3 { font-family: var(--f-display); font-size: clamp(1.2rem,2.4vw,1.5rem); font-weight: 600; margin-bottom: .4rem; }
.flow__item p { color: var(--t-dim); max-width: 56ch; }

/* ----------------------------------------------------------------------------
   16. ÜBER UNS — Chronik-Timeline · Prinzipien
   --------------------------------------------------------------------------- */
.timeline { position: relative; max-width: 920px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: clamp(58px,12vw,118px); top: .6rem; bottom: .6rem; width: 1px; background: var(--c-line-2); }
.tl { display: grid; grid-template-columns: clamp(58px,12vw,118px) 1fr; gap: clamp(1.4rem,3vw,2.8rem); padding-block: clamp(1.2rem,3vw,2rem); position: relative; }
/* Jahr links der Linie halten: padding-right schafft Abstand zum Punkt (kein Überlappen) */
.tl__year { font-family: var(--f-mono); font-weight: 700; font-size: clamp(1.02rem,2.2vw,1.35rem); color: var(--c-red); text-align: right;
  padding-right: clamp(1rem,2.4vw,1.5rem); align-self: start; }
.tl__dot { position: absolute; left: clamp(58px,12vw,118px); top: clamp(1.55rem,3.4vw,2.1rem); width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-wood); transform: translateX(-50%); box-shadow: 0 0 0 5px var(--c-tint), 0 0 0 6px var(--c-line-2); z-index: 1; }
.tl__body { padding-left: clamp(1.2rem,3vw,2rem); }
/* Mobil: Punkt-Rail nach links, Jahr als Kicker über den Text (volle Lesbarkeit) */
@media (max-width: 560px) {
  .timeline::before { left: 7px; }
  .tl { grid-template-columns: minmax(0,1fr); gap: .25rem; padding-left: 1.9rem; }
  .tl__year { text-align: left; padding-right: 0; }
  .tl__dot { left: 7px; top: 1.7rem; }
  .tl__body { padding-left: 0; }
}
.tl__body h3 { font-family: var(--f-display); font-size: clamp(1.15rem,2.3vw,1.42rem); font-weight: 600; margin-bottom: .35rem; }
.tl__body p { color: var(--t-dim); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,3vw,2rem); }
.principle { position: relative; padding-top: 2.6rem; }
.principle__n { position: absolute; top: 0; left: 0; font-family: var(--f-mono); font-size: 1.5rem; color: var(--c-wood); }
.principle h3 { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; margin-bottom: .5rem; color: var(--c-slate-dk); }
.principle p { color: var(--t-dim); }
.section--ink .principle h3 { color: #fff; }
.section--ink .principle p { color: var(--t-on-dark-dim); }
.section--ink .principle__n { color: var(--c-wood-br); }

/* Werkstatt in Zahlen */
.figs { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,3vw,2rem); }
.fig { text-align: left; }
.fig b { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.2rem,5vw,3.4rem); line-height: 1; color: #fff; display: block; }
.fig span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; color: var(--t-on-dark-dim); margin-top: .55rem; display: block; }

/* Inhaber-Feature */
.owner { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2rem,5vw,4rem); align-items: center; }
.owner__media .frame { aspect-ratio: 3/2; }
.owner blockquote { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.3rem,1rem+1.4vw,1.95rem); line-height: 1.35; color: var(--c-slate-dk); }
.owner cite { display: block; margin-top: 1.3rem; font-style: normal; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .03em; text-transform: uppercase; color: var(--t-dim); }
.owner cite b { color: var(--c-ink); }

/* ----------------------------------------------------------------------------
   17. KONTAKT
   --------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2rem,5vw,4rem); align-items: start; }
.info-card { background: var(--c-paper); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--sh-1); border: 1px solid var(--c-line); }
.info-row { display: flex; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--c-line); align-items: flex-start; }
.info-row:first-child { border-top: 0; padding-top: 0; }
.info-row__ic { width: 42px; height: 42px; border-radius: var(--r); flex: 0 0 auto; display: grid; place-content: center;
  background: var(--c-wood-soft); color: var(--c-wood-dk); }
.info-row__ic svg { width: 1.25rem; height: 1.25rem; }
.info-row h3 { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t-faint); margin-bottom: .25rem; }
.info-row a, .info-row address, .info-row p { font-style: normal; font-size: 1.05rem; color: var(--t-ink); font-weight: 500; }
.info-row a:hover { color: var(--c-red); }
.hours-line { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; padding: .25rem 0; }
.hours-line span:first-child { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .02em; color: var(--c-slate-dk); }
.hours-line span:last-child { color: var(--t-dim); }

.form { background: var(--c-paper); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--sh-1); border: 1px solid var(--c-line); position: relative; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 400; margin-bottom: .4rem; color: var(--c-slate-dk); }
.field input, .field select, .field textarea { width: 100%; font: inherit; padding: .8rem .95rem; border-radius: var(--r);
  background: var(--c-surface); border: 1.5px solid var(--c-line-2); color: var(--t-ink); transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-slate); box-shadow: 0 0 0 3px rgba(54,72,92,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--t-dim); margin-bottom: 1.2rem; }
.check input { margin-top: .25rem; width: 1.05rem; height: 1.05rem; flex: 0 0 auto; accent-color: var(--c-red); }
.check a { color: var(--c-slate-dk); text-decoration: underline; }
.form__success { position: absolute; inset: 0; background: var(--c-paper); border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: .8rem; padding: 2rem; opacity: 0; visibility: hidden; transition: .35s var(--ease); }
.form__success.is-visible { opacity: 1; visibility: visible; }
.form__success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--c-wood); color: #fff; display: grid; place-content: center; }
.form__success .ic svg { width: 2rem; height: 2rem; }
.form__success h3 { font-family: var(--f-display); font-size: 1.5rem; }

/* Karte (selbsttragend, kein externer Embed/Tracker) */
.map { margin-top: clamp(2rem,4vw,3rem); position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
  border: 1px solid var(--c-line); aspect-ratio: 21/8; min-height: 220px; width: 100%; max-width: 100%;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(24,34,45,.05) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(24,34,45,.05) 38px 39px),
    linear-gradient(135deg, var(--c-tint), var(--c-tint-2)); }
.map__road { position: absolute; inset: 0; }
.map__road::before, .map__road::after { content: ""; position: absolute; background: rgba(242,245,248,.95); box-shadow: 0 0 0 1px var(--c-line); }
.map__road::before { left: 0; right: 0; top: 54%; height: 16px; transform: rotate(-3deg); }
.map__road::after { top: 0; bottom: 0; left: 38%; width: 14px; transform: rotate(4deg); }
.map__pin { position: absolute; left: 42%; top: 46%; z-index: 2; transform: translate(-50%,-100%); color: var(--c-red); }
.map__pin svg { width: 44px; height: 44px; filter: drop-shadow(0 6px 8px rgba(20,27,37,.35)); }
.map__label { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 3;
  background: var(--c-paper); padding: .6rem 1rem; border-radius: 999px; box-shadow: var(--sh-1);
  font-family: var(--f-mono); font-size: .78rem; color: var(--c-slate-dk); display: inline-flex; gap: .6rem; align-items: center; white-space: nowrap; max-width: calc(100% - 2rem); }

/* KARRIERE */
.jobs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1.1rem,2.6vw,1.8rem);
  margin-top: clamp(1.8rem,4vw,2.6rem); }
.job { display: flex; flex-direction: column; background: var(--c-paper); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,2rem); box-shadow: var(--sh-1); }
.job__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.job__tag { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .03em; color: var(--c-slate-dk);
  padding: .38rem .8rem; border-radius: 999px; background: var(--c-tint); box-shadow: inset 0 0 0 1px var(--c-line); }
.job h3 { font-family: var(--f-display); font-size: clamp(1.25rem,2.4vw,1.55rem); font-weight: 600; color: var(--c-slate-dk); }
.job__role { color: var(--t-dim); margin: .55rem 0 1.1rem; font-size: .98rem; }
.job__req { display: grid; gap: .6rem; margin-bottom: 1.5rem; }
.job__req li { display: flex; gap: .6rem; align-items: flex-start; color: var(--t-dim); font-size: .96rem; }
.job__req svg { width: 1.1rem; height: 1.1rem; color: var(--c-wood); flex: 0 0 auto; margin-top: .28rem; }
.job .btn { margin-top: auto; align-self: flex-start; }
.job--open { margin-top: clamp(1.1rem,2.6vw,1.8rem); display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  align-items: center; justify-content: space-between; background: var(--c-tint); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,1.9rem) clamp(1.4rem,3vw,2.1rem); }
.job--open__body { flex: 1 1 320px; }
.job--open h3 { font-family: var(--f-display); font-size: clamp(1.2rem,2.2vw,1.5rem); font-weight: 600; color: var(--c-slate-dk); margin-bottom: .35rem; }
.job--open p { color: var(--t-dim); max-width: 56ch; }
.job--open .btn { flex: 0 0 auto; }

/* ----------------------------------------------------------------------------
   18. Footer
   --------------------------------------------------------------------------- */
.site-footer { background: var(--c-ink-2); color: var(--t-on-dark); padding-block: clamp(2.8rem,5vw,4.2rem) 1.6rem; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: var(--grid-dark); pointer-events: none; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem,3vw,2.6rem); }
.footer-brand .brand__logo { height: 42px; }
.footer-brand p { color: var(--t-on-dark-dim); margin-top: 1rem; font-size: .94rem; max-width: 40ch; }
.site-footer h4 { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; color: var(--c-wood-br); }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { color: var(--t-on-dark-dim); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer address { color: var(--t-on-dark-dim); font-style: normal; line-height: 1.9; font-size: .94rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  margin-top: clamp(2rem,4vw,3rem); padding-top: 1.4rem; border-top: 1px solid var(--c-line-dk);
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .02em; color: var(--t-on-dark-dim); }

/* ----------------------------------------------------------------------------
   19. Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0,1fr); }
  .hero__stack { max-width: 440px; margin-inline: auto; margin-top: 1rem; }
  .register, .method, .split, .svc, .contact-grid, .cta__inner, .owner { grid-template-columns: minmax(0,1fr); }
  .split--rev .split__media, .svc:nth-child(even) .svc__media { order: 0; }
  .principles { grid-template-columns: minmax(0,1fr); gap: 1.6rem; }
  .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .cta__actions { align-items: stretch; }
  .mosaic-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .m-a { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
  .m-a .frame { aspect-ratio: 16/10; }
  .spec__row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .swatches { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .figs { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: minmax(0,1fr); }
  .footer-grid { grid-template-columns: minmax(0,1fr); }
  .jobs { grid-template-columns: minmax(0,1fr); }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .mosaic-grid { grid-template-columns: minmax(0,1fr); }
  .m-a, .m-b, .m-tall { grid-column: auto; grid-row: auto; }
  .mosaic-grid .frame { aspect-ratio: 16/10; }
  .swatches { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .spec__row { grid-template-columns: minmax(0,1fr); }
  .split__marker { position: static; margin-top: 1rem; right: auto; bottom: auto; }
  .method__joint { position: static; width: 100%; margin-top: 1rem; }
  .reg-row { grid-template-columns: auto minmax(0,1fr) auto; }
  .reg-row__ic { display: none; }
  .map__label { white-space: normal; text-align: center; line-height: 1.35; max-width: calc(100% - 1.4rem); font-size: .72rem; }
}

/* ----------------------------------------------------------------------------
   20. Reduced Motion
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; }
  .curtain .frame::before { display: none; }
  .curtain .frame img, .curtain .frame .ph { transform: none !important; }
  .frame .sweep { display: none; }
}
