/* ============================================================
   vendolabs.de — Petrol Sand (v3a)
   Portiert aus dem Claude-Design-Prototyp „VendoLab v3a Petrol Sand"
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../assets/fonts/space-grotesk-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* ---------- Design-Token ---------- */
:root {
  --sand: #F4F0E6;          /* Grundfläche */
  --cream: #FDFBF4;         /* helle Karten/Flächen */
  --sand-deep: #EFEADC;     /* alternierende Sektionen, XL-Deko-Buchstabe */
  --line: #E3DCCB;          /* Trennlinien, Kartenränder */
  --line-2: #D9D1BE;        /* Ghost-Button-Rand */
  --ink: #1E2926;           /* Primärtext */
  --ink-2: #55625D;         /* Sekundärtext */
  --ink-3: #7F8B84;         /* gedämpft */
  --ink-4: #98A29A;         /* sehr gedämpft */
  --petrol: #136A5E;        /* Akzent */
  --petrol-deep: #0C4A41;   /* Hover, Mono-Labels */
  --chip: #E5E9DC;          /* Chip-Hintergrund */
  --amber: #A05E0B;         /* Zone A Akzent */
  --amber-ink: #3B2A17;     /* Zone A Text */
  --amber-2: #7A6244;       /* Zone A Sekundärtext */
  --zone-a-line: #EADDC2;
  --zone-b-line: #DCE1D2;
  --zone-b-ink: #4B584F;
  --contact-bg: #E9EBDD;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --pad-x: clamp(20px, 5vw, 52px);
  --pad-section: clamp(80px, 11vw, 140px);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--sand); }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); }
a { color: var(--petrol-deep); text-decoration: none; }
a:hover { color: var(--petrol); }
::selection { background: var(--petrol); color: var(--cream); }

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

.page {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  overflow-x: hidden;
}

/* ---------- Bausteine ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink);
}
.wordmark:hover { color: var(--ink); }
.wordmark em { font-style: normal; color: var(--petrol); }

.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--petrol-deep);
  background: var(--chip);
  border-radius: 999px;
  padding: 7px 16px;
}
.chip-row { display: flex; }

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 6px;
  padding: 5px 10px;
}
.tag-row {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
}
.tag-row--petrol { color: var(--petrol-deep); }
.tag-row--petrol .tag { border: 1px solid rgba(12, 74, 65, 0.25); }
.tag-row--amber { color: var(--amber); }
.tag-row--amber .tag { border: 1px solid rgba(160, 94, 11, 0.25); }
.tag--solid { background: var(--cream); }
.tag--tint { background: rgba(253, 251, 244, 0.6); }

.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  border-radius: 999px;
  padding: 6px 14px;
  align-self: flex-start;
}
.pill--petrol { color: var(--petrol-deep); border: 1px solid rgba(12, 74, 65, 0.3); }
.pill--amber { color: var(--amber); border: 1px solid rgba(160, 94, 11, 0.3); }

.btn {
  display: inline-flex;
  gap: 0.32em;
  align-items: baseline;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--petrol); color: var(--cream); }
.btn--primary:hover { background: var(--petrol-deep); color: var(--cream); }
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 500;
  background: var(--cream);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--hero { font-size: 16px; padding: 15px 30px; }
.btn--contact { font-size: 17px; padding: 16px 34px; margin-top: 8px; }

/* Wortwechsel „Standort/Idee besprechen!" */
.swap { display: inline-grid; text-align: center; }
.swap span { grid-area: 1 / 1; animation: vlWordSwap 4.4s ease infinite; }
.swap span:last-child { opacity: 0; animation-delay: -2.2s; }

.mono-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

/* ---------- Navigation ---------- */
.nav {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(18px, 3vw, 30px) var(--pad-x);
}
.nav .wordmark { font-size: 19px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
  flex-wrap: wrap;
}
.nav-link { color: var(--ink-2); font-size: 14px; letter-spacing: 0.05em; }
.nav-link:hover { color: var(--ink); }
.nav-cta { font-size: 14px; padding: 10px 20px; letter-spacing: 0.02em; }

/* Sticky-Variante */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.sticky-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px var(--pad-x);
  background: rgba(244, 240, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.sticky-nav .wordmark { font-size: 16px; }
.sticky-nav .nav-links { gap: clamp(14px, 2.2vw, 26px); }
.sticky-nav .nav-link { font-size: 13.5px; }
.sticky-nav .nav-cta { font-size: 13.5px; padding: 8px 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  background: var(--sand);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px circle at 75% 20%, rgba(19, 106, 94, 0.12), transparent 65%),
    radial-gradient(620px circle at 15% 80%, rgba(214, 158, 46, 0.09), transparent 65%);
}

.hero-variant { display: none; }
.hero-variant.active { display: flex; }

/* Variante 1: Split */
.hero-split {
  position: relative;
  z-index: 3;
  flex: 1;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: clamp(16px, 3vw, 32px) var(--pad-x) clamp(28px, 4vw, 48px);
}
.hero-copy {
  flex: 1.15;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.hero-copy .chip-row { animation: vlFadeUp 0.7s var(--ease-out) both; }
.hero-copy h1 { animation: vlFadeUp 0.7s 0.08s var(--ease-out) both; }
.hero-copy .hero-sub { animation: vlFadeUp 0.7s 0.16s var(--ease-out) both; }
.hero-copy .hero-actions { animation: vlFadeUp 0.7s 0.24s var(--ease-out) both; }
.hero-copy .mono-note { animation: vlFadeUp 0.7s 0.3s var(--ease-out) both; }

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--petrol); }
.hero-sub {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-zones {
  flex: 0.85;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: vlFadeIn 1s 0.3s both;
}
.zone-mini {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.zone-mini-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
}
.zone-mini--b {
  border: 1px solid var(--zone-b-line);
  background: linear-gradient(160deg, #EEEFE1, #E5E9DC);
}
.zone-mini--b .zone-mini-title { color: var(--ink); }
.zone-mini--a {
  border: 1px solid var(--zone-a-line);
  background: linear-gradient(160deg, #F5ECD6, #F0E4CA);
}
.zone-mini--a .zone-mini-title { color: var(--amber-ink); }

/* Variante 2: Typografische Bühne */
.hero-typo {
  position: relative;
  z-index: 3;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px) var(--pad-x);
}
.hero-scatter {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-scatter span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}
.hero-typo-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  max-width: 900px;
}
.hero-typo-inner .chip-row { animation: vlFadeUp 0.7s var(--ease-out) both; }
.hero-typo-inner h1 {
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1.02;
  animation: vlFadeUp 0.7s 0.08s var(--ease-out) both;
}
.hero-typo-inner .hero-sub { max-width: 58ch; animation: vlFadeUp 0.7s 0.16s var(--ease-out) both; }
.hero-typo-inner .hero-actions { justify-content: center; animation: vlFadeUp 0.7s 0.24s var(--ease-out) both; }
.hero-typo-inner .mono-note { animation: vlFadeUp 0.7s 0.3s var(--ease-out) both; }

/* Variante 3: Telemetrie */
.hero-data {
  position: relative;
  z-index: 3;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: clamp(16px, 3vw, 32px) var(--pad-x) clamp(28px, 4vw, 48px);
}
.hero-data .hero-copy { flex: 1.2; justify-content: flex-start; }
.hero-stats {
  flex: 0.8;
  min-width: 300px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: vlFadeIn 1s 0.3s both;
}
.hero-stats > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 18px;
  padding: 20px 26px;
  box-shadow: 0 6px 22px rgba(30, 41, 38, 0.06);
}
.stat-card-text { display: flex; flex-direction: column; gap: 5px; }
.stat-card-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
  color: var(--ink);
}
.stat-card-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.stat-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--petrol);
  animation: vlPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.stat-panel {
  border: 1px solid rgba(12, 74, 65, 0.25);
  background: var(--chip);
  border-radius: 18px;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--petrol-deep);
}
.stat-panel div { display: flex; justify-content: space-between; gap: 16px; }

/* Badge + Ticker */
.gen-badge {
  position: relative;
  z-index: 5;
  display: none;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 12px;
}
.gen-badge.visible { display: flex; }
.gen-badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-4);
}

.ticker {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  background: var(--cream);
}
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  animation: vlMarquee 46s linear infinite;
}

/* ---------- Sektionen (gemeinsam) ---------- */
.section {
  padding: var(--pad-section) var(--pad-x);
}
.section--cream { background: var(--cream); }
.section--sand-deep { background: var(--sand-deep); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 760px;
}
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.section h2 em { font-style: normal; color: var(--petrol); }
.section .lead {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

/* ---------- Warum jetzt ---------- */
.why-section { position: relative; overflow: hidden; }
.why-letter {
  position: absolute;
  top: -12%;
  right: 4%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(280px, 38vw, 540px);
  line-height: 1;
  color: var(--sand-deep);
  user-select: none;
  pointer-events: none;
}
.why-section .section-inner { position: relative; }
.why-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}
.why-stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.key-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--petrol);
  padding-left: 22px;
  min-width: 220px;
  flex: 1;
}
.key-stat-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
  color: var(--ink);
}
.key-stat-l { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.key-stat-l small { font-size: inherit; color: var(--ink-4); }

/* ---------- Konzept ---------- */
.concept-head { max-width: 780px; }
.concept-head h2 { font-size: clamp(36px, 4vw, 60px); line-height: 1.05; }
.concept-head .lead { max-width: 62ch; }
.concept-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.zone-card {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.zone-card--a {
  background: linear-gradient(165deg, #F5ECD6, #EEDFC1);
  color: var(--amber-ink);
  border: 1px solid var(--zone-a-line);
}
.zone-card--b {
  background: linear-gradient(165deg, #EAECDD, #DBE0D1);
  color: var(--ink);
  border: 1px solid var(--zone-b-line);
}
.zone-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.zone-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
}
.zone-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 46ch;
}
.zone-card--a p { color: var(--amber-2); }
.zone-card--b p { color: var(--zone-b-ink); }

.digital-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 42px) clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 44px);
  align-items: flex-start;
}
.digital-panel .pill { white-space: nowrap; align-self: auto; }
.digital-grid {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px 32px;
}
.digital-item { display: flex; flex-direction: column; gap: 6px; }
.digital-item dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--petrol-deep);
}
.digital-item dd { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; }

/* ---------- Mehrwert / Weg (Karten-Raster) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: start;
}
.value-grid { margin-top: 44px; }
.info-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(30px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card--sand { background: var(--sand); }
.info-card--cream { background: var(--cream); }
.info-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
}
.info-card p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--petrol);
}
.card-num-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.card-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}

/* ---------- Wer dahintersteht ---------- */
.about-cards {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.about-card {
  min-width: 300px;
  border-radius: 22px;
  padding: clamp(32px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-card--think {
  flex: 1.1;
  position: relative;
  overflow: hidden;
  background: #EAECDD;
  border: 1px solid var(--zone-b-line);
}
.about-card--partner {
  flex: 1;
  background: var(--sand);
  border: 1px solid var(--line);
}
.about-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
}
.about-card--think .about-label { color: var(--petrol-deep); }
.about-card--partner .about-label { color: var(--ink-3); }
.about-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}
.about-role { position: relative; font-size: 14px; color: var(--zone-b-ink); letter-spacing: 0.02em; }
.about-card p {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 52ch;
}
.about-card--think p { color: var(--zone-b-ink); }
.about-card--partner p { color: var(--ink-2); }
.about-mail {
  position: relative;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--petrol-deep);
  margin-top: 6px;
}
.about-mail:hover { color: var(--ink); }
.about-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--petrol-deep);
}
.about-badges span { background: var(--chip); border-radius: 6px; padding: 6px 12px; }

/* ---------- Kontakt ---------- */
.contact-section {
  position: relative;
  background: var(--contact-bg);
  padding: clamp(100px, 13vw, 170px) var(--pad-x);
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px circle at 50% 30%, rgba(19, 106, 94, 0.12), transparent 65%);
}
.contact-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.contact-inner .chip {
  background: var(--cream);
  border: 1px solid rgba(12, 74, 65, 0.25);
}
.contact-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.contact-inner h2 em { font-style: normal; color: var(--petrol); }
.contact-inner .lead {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 54ch;
}
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}
.contact-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.contact-links {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.contact-links a { color: var(--petrol-deep); }
.contact-links a:hover { color: var(--ink); }
.contact-partner-note { font-size: 13px; color: var(--ink-3); font-style: italic; }

/* ---------- Kontaktformular ---------- */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin-top: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-field label .opt { text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(19, 106, 94, 0.14);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #b3261e; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  cursor: pointer;
}
.form-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--petrol);
  flex-shrink: 0;
}
.form-check a { color: var(--petrol-deep); text-decoration: underline; }
.contact-form button.btn--contact {
  align-self: flex-start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
}
.contact-form button.btn--contact[disabled] { opacity: 0.6; cursor: progress; }
.form-status { margin: 0; font-size: 14px; min-height: 1.2em; }
.form-status.is-ok { color: var(--petrol-deep); font-weight: 600; }
.form-status.is-error { color: #b3261e; }
.form-fallback { margin: 0; font-size: 13px; color: var(--ink-3); }
.form-fallback a { color: var(--petrol-deep); }
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  padding: 34px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer .wordmark { font-size: 15px; }
.footer-claim { font-size: 12.5px; color: var(--ink-3); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-2); }
.footer-links a:hover { color: var(--ink); }

/* ---------- Rechtsseiten ---------- */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad-x) clamp(80px, 10vw, 130px);
  min-height: 60vh;
}
.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.legal-main h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 36px 0 8px;
}
.legal-main p { color: var(--ink-2); line-height: 1.7; margin: 0 0 14px; }
.legal-todo {
  background: var(--chip);
  border: 1px solid rgba(12, 74, 65, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--petrol-deep);
  margin: 20px 0;
}
.legal-back {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ---------- Animationen ---------- */
@keyframes vlFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vlFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes vlMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes vlPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
@keyframes vlWordSwap {
  0%, 42% { opacity: 1; transform: translateY(0); }
  48%, 48.09% { opacity: 0; transform: translateY(-0.6em); }
  48.1%, 94% { opacity: 0; transform: translateY(0.6em); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  .swap span:last-child { display: none; }
}
