/* ============================================================
   Schreinerei Storz GmbH — Erstauftritt-Konzept (Projekt Phönix)
   Design-DNA: maßgenau · bodenständig · Eiche
   Palette: Räuchereiche / Roheiche / Leinen / Graphit
   Leitmotiv: der Rahmen — Eckwinkel, Zargenlinien, harte Kanten
   Fonts: Instrument Serif (Display) + Karla (Text), strikt lokal
   Alle Hex-Werte: outputs/schreinerei-storz/styleguide.md, Abschnitt 2
   Mobile-first — Breakpoints 700 / 1000 / 1200 px
   ============================================================ */

:root {
  /* --- die elf Farben aus dem Styleguide, unverändert --- */
  --eiche: #3D2717;          /* Primär (Räuchereiche) */
  --eiche-tief: #231708;     /* Primär tief */
  --roheiche: #B07F56;       /* Akzent — nie Text auf hell */
  --roheiche-hell: #D3A97E;  /* Akzent hell — auf dunklem Grund */
  --roheiche-tief: #82552D;  /* Akzent tief — Text auf Leinen */
  --leinen: #F5EEE3;         /* Fläche/Papier */
  --leinen-warm: #EAE0D0;    /* Fläche warm */
  --weiss: #FCFAF5;          /* Weiß warm */
  --kohle: #221A11;          /* Text */
  --kohle-soft: #4C4034;     /* Text soft */
  --graphit: #3A3730;        /* Beschlag-Graphit */

  /* abgeleitete Transparenzen (dieselben Töne, nur mit Alpha) */
  --linie: rgba(61, 39, 23, .16);
  --linie-stark: rgba(61, 39, 23, .32);
  --linie-hell: rgba(245, 238, 227, .20);
  --auf-dunkel: rgba(245, 238, 227, .86);
  --auf-dunkel-soft: rgba(245, 238, 227, .64);

  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-text: 'Karla', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Schreinerei = harte Kante. Kein Pillen-Radius. */
  --radius: 2px;
  --nav-h: 62px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --pad: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--kohle);
  background: var(--leinen);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--roheiche-hell); color: var(--kohle); }

:focus-visible { outline: 2px solid var(--roheiche-tief); outline-offset: 3px; }

.wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skipLink {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--eiche-tief); color: var(--leinen);
  padding: 12px 20px;
  font-size: 14px; font-weight: 700; text-decoration: none;
}
.skipLink:focus { left: 0; }

/* Zahlen überall in Tabellenziffern — Telefon, Jahre, Öffnungszeiten */
.navPhone, .factNum, .stepNum, .hoursList, .cValue, .areaMeta, .badgeNum {
  font-variant-numeric: tabular-nums;
}

/* ---------- Studien-Banner ---------- */

.studyBar {
  position: relative;
  z-index: 60;
  padding: 9px 16px;
  background: var(--kohle);
  color: var(--auf-dunkel);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: .01em;
  text-align: center;
}
.studyBar strong { color: var(--roheiche-hell); font-weight: 700; }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 245, .93);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.isScrolled {
  box-shadow: 0 10px 30px rgba(34, 26, 17, .10);
  background: rgba(252, 250, 245, .98);
}

.navInner {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height .3s var(--ease);
}

.navBrand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}
.navMark {
  width: 34px; height: 34px;
  flex: none;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.navBrand:hover .navMark { transform: rotate(-4deg); }

.navWord { display: flex; flex-direction: column; min-width: 0; }
.navName {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--eiche-tief);
}
.navSub {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--roheiche-tief);
  line-height: 1.4;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Auf dem Handy nur der Ort — der ganze Zusatz passt bei 14 px nicht mehr
   neben das Signet, und Abschneiden mit Auslassungspunkten sähe kaputt aus. */
.navSubWide { display: none; }

.navLinks { display: none; }

.navPhone {
  display: none;
  color: var(--eiche);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}
.navPhone:hover { color: var(--roheiche-tief); border-color: var(--roheiche); }

.navBurger {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  flex: none;
  padding: 0;
  border: 1px solid var(--linie-stark);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}
.navBurger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--eiche-tief);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.navBurger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navBurger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navBurger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Menü */
.navLinks.isOpen {
  display: flex;
  position: absolute;
  left: 0; right: 0; top: 100%;
  flex-direction: column;
  align-items: stretch;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  box-shadow: 0 24px 44px rgba(34, 26, 17, .14);
  padding: 6px var(--pad) 20px;
}
.navLinks.isOpen a {
  padding: 15px 2px;
  font-size: 16px;
  font-weight: 500;
  color: var(--kohle);
  text-decoration: none;
  border-bottom: 1px solid var(--linie);
}
.navLinks.isOpen .navCta {
  margin-top: 16px;
  border-bottom: none;
  text-align: center;
  background: var(--eiche);
  color: var(--leinen);
  padding: 15px 20px;
  font-weight: 700;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease);
}
/* Kohle auf Roheiche = 4.92:1 (AA) — siehe Styleguide */
.btnPrimary {
  background: var(--roheiche);
  color: var(--kohle);
  box-shadow: 0 10px 26px rgba(35, 23, 8, .28);
}
.btnPrimary:hover {
  background: var(--roheiche-hell);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(35, 23, 8, .34);
}
.btnGhost {
  color: var(--leinen);
  border: 1px solid var(--linie-hell);
  background: rgba(245, 238, 227, .07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btnGhost:hover {
  border-color: var(--roheiche-hell);
  background: rgba(245, 238, 227, .15);
  transform: translateY(-2px);
}
/* Umriss-Button auf hellem Grund — Roheiche-tief hält 5.54:1 */
.btnLine {
  color: var(--roheiche-tief);
  border: 1px solid var(--roheiche);
  background: transparent;
}
.btnLine:hover {
  background: var(--eiche);
  border-color: var(--eiche);
  color: var(--leinen);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  overflow: hidden;
  background: var(--eiche-tief);
  isolation: isolate;
}

.heroMedia { position: absolute; inset: 0; z-index: 0; }
.heroMedia img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.07);
  animation: heroZoom 11s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.heroOverlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,
      rgba(35, 23, 8, .94) 0%,
      rgba(35, 23, 8, .82) 30%,
      rgba(35, 23, 8, .48) 62%,
      rgba(35, 23, 8, .30) 100%),
    linear-gradient(100deg, rgba(35, 23, 8, .62) 0%, rgba(35, 23, 8, .06) 65%);
}

/* Leitmotiv Rahmen: eingesetzte Zarge mit vier Eckwinkeln */
.heroFrame {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(211, 169, 126, .26);
  pointer-events: none;
}
.heroFrame::before,
.heroFrame::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--roheiche-hell);
}
.heroFrame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.heroFrame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.heroContent {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 96px var(--pad) 104px;
}

.heroLabel {
  display: flex;
  /* Der Strich gehört auf die ERSTE Zeile. Bei 14 px bricht das Label auf dem
     Handy dreizeilig um — mittig ausgerichtet hinge er dann in der Mitte. */
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  line-height: 1.5;
  color: var(--roheiche-hell);
  margin-bottom: 22px;
}
.heroLabel::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--roheiche);
  flex: none;
  /* halbe Zeilenhöhe (14 px × 1.5) — sitzt damit auch einzeilig mittig */
  margin-top: 10px;
}

.heroTitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 10.5vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--weiss);
  margin-bottom: 24px;
  text-wrap: balance;
}
.heroTitle em {
  font-style: italic;
  color: var(--roheiche-hell);
}

.heroSub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--auf-dunkel);
  max-width: 48ch;
  margin-bottom: 34px;
}

.heroActions { display: flex; gap: 14px; flex-wrap: wrap; }
.heroActions .btn { flex: 1 1 240px; }

.heroBadge {
  display: none;
  position: absolute;
  z-index: 3;
  right: clamp(30px, 5vw, 74px);
  bottom: clamp(80px, 12vh, 130px);
  width: 128px; height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border: 1px solid rgba(211, 169, 126, .55);
  background: rgba(35, 23, 8, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
/* zweiter, versetzter Rahmen — wieder das Leitmotiv */
.heroBadge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(211, 169, 126, .24);
}
.badgeNum {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--weiss);
}
.badgeText {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--roheiche-hell);
}

.heroCredit {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: 26px;
  padding: 0 calc(var(--pad) + 12px);
  max-width: 1220px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 238, 227, .55);
}

.heroScroll {
  display: none;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px; height: 58px;
  background: rgba(245, 238, 227, .2);
  overflow: hidden;
}
.heroScroll span {
  position: absolute;
  top: -45%; left: 0;
  width: 100%; height: 45%;
  background: var(--roheiche-hell);
  animation: scrollHint 2.4s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { top: -45%; }
  72%  { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Einstiegs-Animation ---------- */

.heroIn {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .75s var(--ease) forwards;
}
.heroLabel.heroIn   { animation-delay: .12s; }
.heroTitle.heroIn   { animation-delay: .26s; }
.heroSub.heroIn     { animation-delay: .40s; }
.heroActions.heroIn { animation-delay: .54s; }
.heroBadge.heroIn   { animation-delay: .80s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- Scroll-Reveal (nur scharf, wenn JS läuft) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.isIn { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .heroIn { animation: none; opacity: 1; transform: none; }
  .heroMedia img { animation: none; transform: none; }
  .heroScroll { display: none !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Sektions-Grundgerüst ---------- */

.section { padding: clamp(64px, 9vw, 118px) 0; }

.secHead { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }

.secLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  line-height: 1.5;
  color: var(--roheiche-tief);
  margin-bottom: 16px;
}
.secLabel::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--roheiche);
  flex: none;
}
.secLabel.onDark { color: var(--roheiche-hell); }

.secTitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--eiche);
  margin-bottom: 20px;
  text-wrap: balance;
}
.secTitle em { font-style: italic; color: var(--roheiche-tief); }
.secTitle.onDark { color: var(--weiss); }
.secTitle.onDark em { color: var(--roheiche-hell); }

.secLead {
  font-size: 1.01rem;
  line-height: 1.72;
  color: var(--kohle-soft);
  max-width: 58ch;
}

/* ---------- Fakten-Band ---------- */

.facts {
  position: relative;
  background: var(--leinen-warm);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
  padding: clamp(40px, 5vw, 62px) 0 clamp(28px, 3.5vw, 38px);
}
/* Leitmotiv: stehende Zargenlinien, sehr dezent */
.facts::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent 0 63px, rgba(61, 39, 23, .05) 63px 64px, transparent 64px 128px);
  pointer-events: none;
}

.factsGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid var(--roheiche);
}
.factNum {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--eiche);
}
.factPlus { color: var(--roheiche-tief); }
.factLabel { font-size: 14.5px; line-height: 1.55; color: var(--kohle-soft); }
.factSub {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--roheiche-tief);
}
.factsNote {
  position: relative;
  margin-top: clamp(24px, 3vw, 34px);
  font-size: 14px;
  line-height: 1.6;
  color: var(--kohle-soft);
  opacity: .82;
}

/* ---------- Leistungen ---------- */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
/* Zargenkante, die beim Hover einfährt */
.card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--roheiche);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--linie-stark);
  box-shadow: 0 20px 44px rgba(34, 26, 17, .12);
}
.card:hover::before { transform: scaleX(1); }

.cardIcon {
  width: 72px; height: 72px;
  flex: none;
  display: grid;
  place-items: center;
  padding: 9px;
  margin-bottom: 4px;
  background: var(--leinen);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
}
.cardIcon img { width: 100%; height: 100%; object-fit: contain; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--eiche);
}
.card p { font-size: 15px; line-height: 1.65; color: var(--kohle-soft); }
.cardMeta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--linie);
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--roheiche-tief) !important;
}

/* ---------- Ablauf ---------- */

.stepsSec {
  background: var(--weiss);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  position: relative;
  padding: 26px 0 26px 0;
  border-top: 1px solid var(--linie);
}
.step:last-child { border-bottom: 1px solid var(--linie); }
.step::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 44px; height: 3px;
  background: var(--roheiche);
}
.stepNum {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--roheiche-tief);
  margin-bottom: 10px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--eiche);
  margin-bottom: 8px;
}
.step p { font-size: 15px; line-height: 1.68; color: var(--kohle-soft); max-width: 46ch; }

/* ---------- Werkstatt (dunkel) ---------- */

.workshop {
  position: relative;
  overflow: hidden;
  background: var(--eiche-tief);
  color: var(--auf-dunkel);
  padding: clamp(64px, 9vw, 118px) 0;
}
.workshop::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent 0 118px, rgba(245, 238, 227, .028) 118px 119px, transparent 119px 250px);
  pointer-events: none;
}

.workGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.workText p { font-size: 15.5px; line-height: 1.78; margin-bottom: 16px; }
.workList {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
}
.workList li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--auf-dunkel);
}
.workList li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 13px; height: 1px;
  background: var(--roheiche-hell);
}

.workFigure { margin: 0; position: relative; }
.workFigure img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 26px 58px rgba(0, 0, 0, .42);
}
/* Eckwinkel als Rahmen-Zitat. Oben angesetzt, weil die Bildunterschrift
   unten mitzählt und ein unterer Winkel sonst neben dem Text schweben würde. */
.workFigure::after {
  content: "";
  position: absolute;
  right: -8px; top: -8px;
  width: 62px; height: 62px;
  border-right: 2px solid var(--roheiche);
  border-top: 2px solid var(--roheiche);
  pointer-events: none;
}
.workFigure figcaption,
.showFigure figcaption {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.6;
}
.workFigure figcaption { color: var(--auf-dunkel-soft); }
.showFigure figcaption { color: var(--kohle-soft); }

.tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 9px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: 1px;
}
.workFigure .tag { background: rgba(211, 169, 126, .18); color: var(--roheiche-hell); }
.showFigure .tag { background: var(--leinen-warm); color: var(--roheiche-tief); }

/* ---------- Möbel-Schaustück ---------- */

.showcase { background: var(--leinen); }
.showGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.showFigure { margin: 0; position: relative; }
.showFigure img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(34, 26, 17, .16);
}
.showFigure::after {
  content: "";
  position: absolute;
  left: -8px; top: -8px;
  width: 62px; height: 62px;
  border-left: 2px solid var(--roheiche);
  border-top: 2px solid var(--roheiche);
  pointer-events: none;
}
.showText p {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--kohle-soft);
  margin-bottom: 16px;
  max-width: 52ch;
}
.showText .btn { margin-top: 10px; }

/* ---------- Einzugsgebiet ---------- */

.areaSec {
  background: var(--leinen-warm);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.areaGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.areaText p {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--kohle-soft);
  margin-bottom: 18px;
}
.areaMeta {
  border-left: 2px solid var(--roheiche);
  padding-left: 18px;
  font-size: 15px !important;
  line-height: 1.72 !important;
  color: var(--kohle) !important;
  margin-bottom: 0 !important;
}
.areaMeta strong { color: var(--eiche); }

.areaListH {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--eiche);
  margin-bottom: 16px;
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.chips li {
  padding: 7px 14px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--eiche);
  transition: border-color .25s var(--ease), background .25s var(--ease),
              transform .25s var(--ease);
}
.chips li:hover {
  border-color: var(--roheiche);
  background: #fff;
  transform: translateY(-1px);
}
.areaHint { font-size: 14px; line-height: 1.6; color: var(--kohle-soft); opacity: .88; }

/* ---------- Kontakt (dunkel) ---------- */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--eiche);
  color: var(--auf-dunkel);
  padding: clamp(64px, 9vw, 112px) 0;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent 0 118px, rgba(245, 238, 227, .032) 118px 119px, transparent 119px 250px);
  pointer-events: none;
}
.contactInner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.contactText p { font-size: 15.5px; line-height: 1.78; max-width: 48ch; }

.hours {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--linie-hell);
  border-radius: var(--radius);
  background: rgba(35, 23, 8, .35);
  max-width: 460px;
}
.hoursH {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--roheiche-hell);
  margin-bottom: 12px;
}
.hoursList { display: grid; gap: 9px; }
.hoursList > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(245, 238, 227, .12);
  font-size: 14.5px;
}
.hoursList > div:last-child { border-bottom: none; padding-bottom: 0; }
.hoursList dt { color: var(--auf-dunkel-soft); }
.hoursList dd { color: var(--weiss); font-weight: 700; }

.contactCards { display: grid; gap: 12px; }
.cCard {
  display: grid;
  gap: 3px;
  padding: 19px 22px;
  background: rgba(245, 238, 227, .07);
  border: 1px solid var(--linie-hell);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease);
}
a.cCard:hover {
  background: rgba(245, 238, 227, .14);
  border-color: var(--roheiche-hell);
  transform: translateX(4px);
}
.cLabel {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--roheiche-hell);
}
.cValue {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.6vw, 1.5rem);
  line-height: 1.28;
  color: var(--weiss);
  overflow-wrap: anywhere;
}
.cHint { font-size: 14px; line-height: 1.55; color: var(--auf-dunkel-soft); }
.cCardStatic { cursor: default; }

/* ---------- Footer ---------- */

.foot {
  background: var(--kohle);
  color: rgba(245, 238, 227, .72);
  padding: clamp(46px, 6vw, 70px) 0 24px;
}
.footInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
/* Das Signet ist dunkelbraun gezeichnet — im dunklen Footer bekommt es
   eine helle Trägerfläche statt eines Farbfilters. */
.footMark {
  width: 46px; height: 46px;
  object-fit: contain;
  padding: 5px;
  background: var(--leinen);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.footName {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--weiss);
  margin-bottom: 8px;
}
.footBrand p { font-size: 14px; line-height: 1.68; max-width: 38ch; }
.footCol h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--roheiche-hell);
  margin-bottom: 14px;
}
.footCol ul { list-style: none; display: grid; gap: 4px; }
.footCol li { font-size: 14px; line-height: 1.55; }
/* Reine Textzeilen (Fax, Anschrift) haben kein 44-px-Ziel und brauchen ihre
   eigene Luft, seit die Links den Zeilenabstand der Liste tragen. */
.footPlain { padding: 7px 0; }
.footCol a {
  /* Fingerkuppe braucht 44 px — als Zeile, nicht als Textknoten (QA-Gate 19.08.). */
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: rgba(245, 238, 227, .72);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.footCol a:hover { color: var(--roheiche-hell); }

.footNote {
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 20px;
  border-top: 1px solid rgba(245, 238, 227, .13);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 238, 227, .5);
}

/* ---------- Powered-by (Schwarzwald Agent) — Original-Baustein ---------- */

.pbStrip {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 26px 16px 22px; text-align: center;
  background: #FEFDF9; border-top: 1px solid #E8E0D5;
}
.pbStrip .pbLink {
  display: inline-flex; align-items: center; gap: 11px;
  opacity: .75; transition: opacity .18s ease; text-decoration: none;
}
.pbStrip .pbLink:hover { opacity: 1; text-decoration: none; }
.pbStrip .pbLabel {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .28em; color: #8B7355;
}
.pbStrip .pbIcon { height: 32px; width: 32px; object-fit: contain; display: block; }
.pbStrip .pbName {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: -.02em; color: #0D4A3C;
}

/* Barrierefreiheit über dem Original-Baustein (QA-Gate 19.08.2026).
   Der Baustein oben bleibt absichtlich Zeichen für Zeichen wie in CLAUDE.md,
   damit er prüfbar bleibt; hier stehen nur die beiden Mindestwerte:
   "Powered by" war 10 px (Gate meldet alles unter 13 px) und der Link war
   32 px hoch (Tippziel-Mindestmaß 44 px). Farben, Schriftart und der Abstand
   zwischen den Teilen sind unverändert — die Streifen-Polsterung ist um
   genau die 12 px gekürzt, die der Link jetzt mehr braucht. */
.pbStrip { padding: 20px 16px 16px; }
.pbStrip .pbLink { min-height: 44px; }
.pbStrip .pbLabel { font-size: 14px; letter-spacing: .16em; }

/* ============================================================
   ab 700 px — zwei Spalten, Hero wird großzügiger
   ============================================================ */

@media (min-width: 700px) {
  :root { --pad: 28px; }

  /* Ab hier ist im Kopf wieder Platz für den ganzen Zusatz. */
  .navSubWide { display: inline; }

  .hero { min-height: 660px; }
  .heroContent { padding: 120px var(--pad) 120px; }
  .heroFrame { inset: 20px; }
  .heroFrame::before, .heroFrame::after { width: 36px; height: 36px; }
  .heroActions .btn { flex: 0 0 auto; }
  .heroSub { font-size: 1.09rem; margin-bottom: 40px; }
  .heroScroll { display: block; }

  .factsGrid { grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .steps { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
  .step { padding: 28px 0 30px; }

  .areaGrid { grid-template-columns: 1fr .9fr; gap: 48px; }
  .contactInner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footInner { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
}

/* ============================================================
   ab 1000 px — Desktop-Navigation, Bild-Text-Züge, 4er-Raster
   ============================================================ */

@media (min-width: 1000px) {
  :root { --nav-h: 84px; }

  .nav.isScrolled .navInner { height: 66px; }
  .navMark { width: 40px; height: 40px; transition: width .3s var(--ease), height .3s var(--ease), transform .35s var(--ease); }
  .nav.isScrolled .navMark { width: 34px; height: 34px; }
  .navName { font-size: 27px; }

  .navBurger { display: none; }
  .navPhone { display: inline-block; }

  .navLinks {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 28px;
  }
  .navLinks a {
    position: relative;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--kohle);
    text-decoration: none;
  }
  .navLinks a:not(.navCta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: var(--roheiche);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease);
  }
  .navLinks a:not(.navCta):hover::after { transform: scaleX(1); }
  /* Falls das Menü auf Mobil offen war und dann aufgezogen wird:
     die mobilen Overlay-Regeln hier hart zurücknehmen. */
  .navLinks.isOpen {
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
  }
  .navLinks.isOpen a { padding: 0; border-bottom: none; font-size: 14.5px; }
  .navLinks.isOpen .navCta {
    margin-top: 0;
    padding: 11px 20px;
    background: var(--eiche);
    color: var(--leinen);
  }
  /* Selektor mit .navLinks davor, sonst gewinnt `.navLinks a { color: kohle }`
     und die Schrift steht dunkel auf dunklem Grund. */
  .navLinks .navCta {
    background: var(--eiche);
    color: var(--leinen);
    padding: 11px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .navLinks .navCta::after { display: none; }
  .navLinks .navCta:hover { background: var(--eiche-tief); transform: translateY(-1px); }

  .hero { min-height: min(86svh, 820px); }
  .heroTitle { max-width: 15ch; }
  .heroBadge { display: flex; }
  .heroCredit { max-width: 62ch; }

  .factsGrid { grid-template-columns: repeat(4, 1fr); gap: 34px; }
  .cards { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .card { padding: 30px 26px 26px; }
  .card h3 { font-size: 1.7rem; }

  .steps { grid-template-columns: repeat(4, 1fr); column-gap: 28px; }
  .step { padding: 30px 0 0; }
  .step:last-child { border-bottom: none; }

  .workGrid { grid-template-columns: 1fr .95fr; gap: 64px; }
  .showGrid { grid-template-columns: .95fr 1fr; gap: 64px; }
}

/* ============================================================
   ab 1200 px — letzte Stufe
   ============================================================ */

@media (min-width: 1200px) {
  .heroContent { padding: 150px var(--pad) 140px; }
  .heroSub { font-size: 1.13rem; }
  .workGrid, .showGrid { gap: 78px; }
}

/* ---------- sehr schmale Geräte ---------- */

@media (max-width: 360px) {
  :root { --pad: 16px; }
  .heroTitle { font-size: 2.35rem; }
  .navSub { letter-spacing: .04em; }
  .navName { font-size: 21px; }
  .chips li { padding: 6px 11px; }
  .cCard { padding: 16px 18px; }
}
