/* =======================================================================
   OK-Sonnenschutztechnik — Stylesheet
   Handgeschrieben · Kein Framework · Kein Tracking · DSGVO-konform
   Schriften lokal selbst-gehostet (Fraunces + Inter), keine externen Requests
   ======================================================================= */

/* ── SELF-HOSTED FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-var.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-var-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var.woff2") format("woff2");
}

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Flächen — warmes Near-Black bis Anthrazit */
  --bg:        #14110d;
  --bg-1:      #1b1712;
  --bg-2:      #221d17;
  --bg-3:      #2c261e;

  /* Text — warmes Off-White + ruhige Grautöne */
  --ink:       #f1eadd;
  --ink-soft:  #b8a988;
  --ink-muted: #a08f6f;  /* WCAG-AA-konform (>=4.7:1) auf allen Flächen */

  /* Akzent — Terrakotta-Amber (das Licht durch einen Markisenstoff) */
  --accent:      #d1823f;
  --accent-soft: #e0a066;
  --accent-deep: #a75f2a;

  /* Linien & Schatten */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-accent: rgba(209, 130, 63, 0.30);
  --shadow-md:   0 12px 44px rgba(0, 0, 0, 0.45);
  --shadow-lg:   0 30px 90px rgba(0, 0, 0, 0.55);

  /* Typografie */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Maße */
  --container: 1200px;
  --gutter: 44px;
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Native Controls (Select-Dropdown, Scrollbars, Autofill) dunkel rendern */
  color-scheme: dark;
}
@media (max-width: 600px) {
  :root { --gutter: 22px; }
  /* Lange deutsche Wörter (z. B. „Innensonnenschutz") in schmalen Spalten trennen */
  h3, p { -webkit-hyphens: auto; hyphens: auto; }
}

/* ── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-color: var(--bg-3) var(--bg); }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
/* Entfernt die 300ms-Tap-Verzögerung auf Touch-Geräten */
a, button, input, select, textarea, label { touch-action: manipulation; }
/* Kein graues iOS-Tap-Rechteck — wir haben eigenes Press-Feedback */
a, button { -webkit-tap-highlight-color: transparent; }
p { max-width: 62ch; text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

/* Anker landen unterhalb des fixierten Headers */
[id] { scroll-margin-top: 88px; }

/* Markierungsfarbe */
::selection { background: var(--accent); color: #1a130c; }

/* Feines Filmkorn über der ganzen Seite — Textur statt steriler Fläche */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 900; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* Display-Serif erhält optisches Größenverhalten + weichere Formen */
.serif { font-family: var(--serif); font-optical-sizing: auto; font-variation-settings: "SOFT" 4, "WONK" 0; }

/* ── HELPERS ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: ""; display: inline-block; width: 24px; height: 1px;
  background: var(--accent); margin-right: 12px; vertical-align: middle;
}
.rule { width: 46px; height: 2px; background: var(--accent); border: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #1a140d;
  padding: 10px 18px; z-index: 950; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ── SCROLL REVEAL (selektiv) ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Kicker-Strich zeichnet sich beim Erscheinen von links
   (auch wenn der Kicker selbst das .reveal-Element ist, z. B. im Statement) */
.reveal .kicker::before, .kicker.reveal::before { transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease) 0.15s; }
.reveal.is-visible .kicker::before, .kicker.reveal.is-visible::before { transform: scaleX(1); }

/* Bild-Enthüllung: Vorhang öffnet sich nach oben, Bild setzt sich aus leichtem Zoom.
   Gesteuert vom UNGECLIPPTEN .reveal-Elternteil — das geclippte Element selbst
   hat keine sichtbare Fläche und würde den IntersectionObserver nie auslösen. */
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 0.9s var(--ease) 0.1s; }
.reveal.is-visible .reveal-img { clip-path: inset(0 0 0 0); }
.reveal:not(.is-visible) .reveal-img img { transform: scale(1.1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Alle Eintritts-Animationen (inkl. Hero) sofort sichtbar zeigen */
  .hero-kicker, .hero h1 .hl-in, .hero-lead, .hero-actions, .hero-foot,
  [class*="anim-"] { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-bg img { animation: none !important; }
  /* Neue Motion-Bausteine ebenfalls sofort in Endzustand */
  .reveal-img { clip-path: none !important; transition: none; }
  .reveal:not(.is-visible) .reveal-img img { transform: none; }
  .step::before { transform: scaleX(1); transition: none; }
  .reveal .kicker::before, .kicker.reveal::before { transform: scaleX(1); transition: none; }
  #header { transition: none; }
}

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--accent); color: #1a130c; }
.btn-solid:hover { background: var(--accent-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
/* Press-Feedback (Touch hat kein Hover) */
.btn:active { transform: translateY(0) scale(0.985); }
.nav-cta:active { transform: scale(0.97); }

/* ── HEADER / NAV ──────────────────────────────────────────────────────── */
#header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, padding 0.4s, border-color 0.5s, transform 0.45s var(--ease);
}
/* Smart-Header: taucht beim Runterscrollen weg, kommt beim Hochscrollen sofort zurück */
#header.hide { transform: translateY(-102%); }
#header.scrolled {
  background: rgba(20, 17, 13, 0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 13px 0; border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
/* Original-Logo (OK + Sonnenschutztechnik): groß genug, dass die Unterzeile lesbar bleibt */
.nav-mark { height: 52px; width: auto; transition: transform 0.3s var(--ease); }
.nav-logo:hover .nav-mark { transform: scale(1.04); }
.nav-sub {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  line-height: 1.6; border-left: 1px solid var(--line); padding-left: 14px;
}
@media (max-width: 480px) { .nav-sub { display: none; } }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; font-size: 13px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a.active:not(.nav-cta) { color: var(--ink); }
@media (min-width: 901px) {
  .nav-links a.active:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
    height: 1px; background: var(--accent);
  }
}
.nav-cta {
  padding: 9px 18px; background: var(--accent); color: #1a130c !important;
  font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; min-width: 44px; flex-shrink: 0; margin-right: -10px;   /* 44x44 Touch-Ziel (WCAG/HIG) */
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-1); border-top: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 16px; padding: 14px 18px; text-align: center; border-bottom: none !important; }
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  animation: heroZoom 2.6s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,17,13,0.95) 0%, rgba(20,17,13,0.68) 42%, rgba(20,17,13,0.12) 100%),
    linear-gradient(to top, rgba(20,17,13,0.88) 0%, transparent 48%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 170px; padding-bottom: 64px; }
.hero-kicker { margin-bottom: 26px; opacity: 0; animation: up 0.8s var(--ease) 0.25s forwards; }
.hero h1 {
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 370; font-size: clamp(52px, 9vw, 128px);
  line-height: 1.0; letter-spacing: -0.028em; max-width: 15ch; margin-bottom: 30px;
}
/* Unterlängen-Freiraum für kursive Display-Wörter (z. B. das „g" in „schattiges") */
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; padding-bottom: 0.05em; }
/* Masken-Reveal: jede Zeile steigt aus einem unsichtbaren Fenster auf.
   Padding/Margin-Paar schafft Platz für Unterlängen innerhalb der Maske. */
.hero h1 .hl { display: block; overflow: hidden; padding: 0.06em 0 0.14em; margin: -0.06em 0 -0.14em; }
.hero h1 .hl-in { display: block; transform: translateY(118%); animation: riseUp 0.95s var(--ease) forwards; }
.hero h1 .hl:nth-child(1) .hl-in { animation-delay: 0.38s; }
.hero h1 .hl:nth-child(2) .hl-in { animation-delay: 0.50s; }
.hero h1 .hl:nth-child(3) .hl-in { animation-delay: 0.62s; }
@keyframes riseUp { to { transform: none; } }
.hero-lead {
  font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--ink-soft);
  max-width: 46ch; margin-bottom: 40px; opacity: 0; animation: up 0.9s var(--ease) 0.8s forwards;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: up 0.9s var(--ease) 0.94s forwards; }
@keyframes up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Fakten-Fußleiste im Hero — echte Kennzahlen, kein Deko-Streifen */
.hero-foot {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0; animation: up 1s var(--ease) 1.12s forwards;
}
.hero-foot-row {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 14px clamp(28px, 5vw, 64px);
  padding-top: 20px; padding-bottom: 26px;
}
.hf { font-size: 12.5px; letter-spacing: 0.04em; color: rgba(241, 234, 221, 0.68); max-width: none; }
.hf b { color: var(--ink); font-weight: 600; margin-right: 7px; font-variant-numeric: tabular-nums; }
.hf-partner {
  margin-left: auto; color: var(--accent);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 138px; padding-bottom: 52px; }
  .hf-partner { margin-left: 0; }
}

/* Scroll-Parallax — progressiv: nur Browser mit Scroll-Timelines (rein CSS, kein JS) */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-bg { inset: -14% 0 0 0; animation: heroDrift linear both; animation-timeline: scroll(); animation-range: 0 120svh; }
    .footer-word { animation: wordSlide linear both; animation-timeline: view(); animation-range: entry 0% cover 45%; }
  }
}
@keyframes heroDrift { to { transform: translateY(11.5%); } }
@keyframes wordSlide { from { transform: translateX(5%); opacity: 0; } }

/* ── SECTION SHELL ─────────────────────────────────────────────────────── */
.section { padding: clamp(84px, 12vw, 152px) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(48px, 7vw, 76px); }
.section-head .kicker { display: block; margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  font-size: clamp(36px, 4.8vw, 64px); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 22px;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); }

/* ── LEISTUNGEN — editoriale Zeilen statt Karten-Raster ────────────────── */
.services { background: var(--bg); }
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 190px 1.1fr 0.9fr;
  gap: clamp(22px, 4vw, 56px); align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
/* Kaskade, wenn mehrere Zeilen gleichzeitig sichtbar werden */
.svc-row:nth-child(2) { transition-delay: 0.06s; }
.svc-row:nth-child(3) { transition-delay: 0.12s; }
.svc-row:nth-child(4) { transition-delay: 0.18s; }
.svc-row:nth-child(5) { transition-delay: 0.24s; }
.svc-row:nth-child(6) { transition-delay: 0.30s; }
.svc-media {
  width: 100%; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-2);
}
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.96);
  transition: transform 0.6s var(--ease);
}
.svc-row:hover .svc-media img { transform: scale(1.06); }
.svc-body h3 {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 390;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.08; letter-spacing: -0.015em;
  transition: color 0.25s;
}
.svc-row:hover .svc-body h3 { color: var(--accent-soft); }
.svc-body p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin-top: 10px; max-width: 46ch; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}
.svc-cta .arr { transition: transform 0.25s var(--ease); }
.svc-row:hover .svc-cta .arr { transform: translateX(5px); }
.svc-meta { justify-self: end; text-align: right; }
.svc-cat {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 12px; transition: color 0.25s;
}
.svc-row:hover .svc-cat { color: var(--accent); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.tag {
  font-size: 11px; letter-spacing: 0.04em; padding: 4px 11px;
  border: 1px solid var(--line-accent); color: var(--accent); border-radius: var(--radius);
}

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 120px 1fr; }
  .svc-meta { display: none; }
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 96px 1fr; gap: 18px; padding: 22px 0; }
  .svc-body h3 { font-size: 21px; }
  .svc-body p { font-size: 13.5px; }
}

/* ── STATEMENT — das Versprechen als Typografie ────────────────────────── */
.statement { padding: clamp(96px, 14vw, 176px) 0; background: var(--bg-1); }
.statement-kicker { display: block; margin-bottom: clamp(30px, 4vw, 48px); }
.statement-line {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  font-size: clamp(31px, 5.6vw, 76px); line-height: 1.16; letter-spacing: -0.02em;
  max-width: none;
}
.statement-line span { display: block; }
.statement-line span:nth-child(2) { padding-left: clamp(28px, 7vw, 130px); transition-delay: 0.12s; }
.statement-line span:nth-child(3) { padding-left: clamp(56px, 14vw, 260px); transition-delay: 0.24s; }
.statement-line em { font-style: italic; color: var(--accent); }

/* ── ABLAUF — vier Schritte, eine Hand ─────────────────────────────────── */
.process { background: var(--bg); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.step { position: relative; padding-top: 26px; }
/* Die Linie über jedem Schritt zeichnet sich von links */
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.9s var(--ease);
}
.step.is-visible::before { transform: scaleX(1); }
.step:nth-child(2), .step:nth-child(2)::before { transition-delay: 0.08s; }
.step:nth-child(3), .step:nth-child(3)::before { transition-delay: 0.16s; }
.step:nth-child(4), .step:nth-child(4)::before { transition-delay: 0.24s; }
.step-num {
  display: block; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 42px; line-height: 1; color: var(--accent); margin-bottom: 20px;
}
.step h3 {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 420;
  font-size: 21px; line-height: 1.2; letter-spacing: -0.008em; margin-bottom: 10px;
}
.step p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }

@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; gap: 40px 36px; } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; gap: 32px; } }

/* ── ÜBER UNS / VERTRAUEN ──────────────────────────────────────────────── */
.about { background: var(--bg); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-fig { position: relative; }
/* Versetzter Amber-Rahmen — Passepartout-Effekt */
.about-fig::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--line-accent); border-radius: var(--radius);
  pointer-events: none;
}
.about-visual { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-visual:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 1;
  background: rgba(20,17,13,0.88); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-accent); padding: 11px 16px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); border-radius: var(--radius);
}
.about-copy h2 {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  font-size: clamp(30px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.018em; margin-bottom: 24px;
}
.about-copy h2 em { font-style: italic; color: var(--accent); }
.about-copy p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 16px; }
.about-copy .rule { margin: 24px 0; }
/* Offene, editoriale Kennzahl-Zeile statt Kästchen-Raster */
.stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 58px); margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line); }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 4vw, 48px); color: var(--ink); line-height: 1; margin-bottom: 9px; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.stat b em { color: var(--accent); font-style: normal; }
.stat span { font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-fig::before { display: none; }
}

/* ── KONTAKT / ANFRAGE ─────────────────────────────────────────────────── */
.contact { background: var(--bg-1); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-copy h2 {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px;
}
.contact-copy h2 em { font-style: italic; color: var(--accent); }
.contact-copy > p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 34px; }
.contact-tel { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.015em; display: inline-block; margin-bottom: 6px; transition: color 0.2s; font-variant-numeric: tabular-nums; }
.contact-tel:hover { color: var(--accent); }
.contact-hours { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 34px; }
.contact-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-list .item { background: var(--bg); padding: 18px 22px; transition: background 0.3s; }
.contact-list .item:hover { background: var(--bg-2); }
.contact-list .lbl { font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.contact-list .val { font-family: var(--serif); font-size: 17px; transition: color 0.25s; }
.contact-list .item:hover .val { color: var(--accent-soft); }
.contact-list .val a:hover { color: var(--accent); }
.contact-list .note { font-size: 12.5px; color: var(--ink-muted); margin-top: 2px; }

/* Formular */
.form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin-bottom: 8px; letter-spacing: -0.01em; }
.form .form-sub { font-size: 13.5px; color: var(--ink-muted); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--ink);
  padding: 13px 15px; font-size: 15px; font-family: var(--sans); border-radius: var(--radius);
  caret-color: var(--accent);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(209, 130, 63, 0.14);
}
/* Chrome-Autofill nicht hell/gelblich einfärben lassen */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--bg-2) inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--accent);
}
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d1823f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Honeypot: für Menschen unsichtbar (nicht display:none, damit Bots es "sehen") */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Einwilligung */
.field-check { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 20px; }
.field-check input { flex-shrink: 0; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); cursor: pointer; }
.field-check label { font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 400; letter-spacing: 0; text-transform: none; margin: 0; }
.field-check label a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 11.5px; line-height: 1.6; color: var(--ink-muted); margin-top: 16px; }
.form-status { font-size: 13.5px; color: var(--accent-soft); margin-top: 14px; min-height: 1em; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } .form { padding: 26px 22px; } }

/* ── LEGAL ─────────────────────────────────────────────────────────────── */
.legal { padding: 76px 0; border-top: 1px solid var(--line); background: var(--bg); }
.legal-grid { display: grid; grid-template-columns: 210px 1fr; gap: 60px; }
.legal-aside { position: sticky; top: 100px; align-self: start; }
.legal-aside .kicker { display: block; margin-bottom: 10px; }
.legal-aside h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ink-soft); line-height: 1.2; }
.legal-body h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 30px 0 10px; }
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { font-size: 14.5px; line-height: 1.8; color: var(--ink-muted); max-width: 70ch; margin-bottom: 6px; }
.legal-body strong { color: var(--ink-soft); font-weight: 600; }
.legal-body small { display: block; font-size: 12.5px; color: var(--ink-muted); margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 60ch; }
@media (max-width: 720px) { .legal-grid { grid-template-columns: 1fr; gap: 26px; } .legal-aside { position: static; } }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer { background: var(--bg-1); border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 84px) 0 34px; }
/* Geflüsterte Wortmarke — reine Dekoration, für Screenreader ausgeblendet */
.footer-word {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  font-size: clamp(24px, 7vw, 92px); line-height: 1; letter-spacing: -0.02em;
  color: rgba(241, 234, 221, 0.08);
  white-space: nowrap; overflow: hidden;
  padding-bottom: clamp(30px, 5vw, 56px); border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.footer-brand { margin-bottom: 20px; }
.footer-mark { height: 58px; width: auto; }
.footer-sub { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: 10px; }
.footer-col p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.85; max-width: none; }
.footer-col a:hover { color: var(--accent); }
.footer-title { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 15px; }
.footer-nav { list-style: none; }
.footer-nav a { display: block; padding: 4px 0; font-size: 13.5px; color: var(--ink-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: 12.5px; color: var(--ink-muted); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }
