/* =========================================================
   BADEN KAMMERJÄGER — Editorial Field Manual Design System
   ========================================================= */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* ----- Variables ----- */
:root {
  /* Palette */
  --paper:        #F1EADA;
  --paper-2:      #E7DEC8;
  --paper-3:      #D9CDB1;
  --ink:          #14160E;
  --ink-2:        #2A2C20;
  --ink-soft:     #4A4C3F;
  --moss:         #485440;
  --moss-deep:    #2F382A;
  --rust:         #B8492C;
  --rust-deep:    #8B341F;
  --gold:         #B6904A;
  --hairline:     rgba(20, 22, 14, 0.18);
  --hairline-2:   rgba(20, 22, 14, 0.32);
  --hairline-3:   rgba(20, 22, 14, 0.55);

  /* Typography */
  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1280px;
  --gutter:    clamp(20px, 4vw, 56px);
  --section:   clamp(72px, 10vw, 140px);

  /* Effects */
  --shadow-deep: 0 30px 60px -20px rgba(20,22,14,0.35), 0 12px 24px -12px rgba(20,22,14,0.18);
  --shadow-card: 0 1px 0 rgba(20,22,14,0.08), 0 10px 24px -16px rgba(20,22,14,0.18);
}

/* ----- Base ----- */
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16.5px;
  position: relative;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.09 0 0 0 0 0.05 0 0 0 0.22 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
body > * { position: relative; z-index: 2; }

/* Selection */
::selection { background: var(--rust); color: var(--paper); }

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(48px, 8vw, 116px); font-variation-settings: 'opsz' 144, 'SOFT' 30; }
h2 { font-size: clamp(34px, 5vw, 66px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.25; }

p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 500; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--hairline-3);
}
.eyebrow.no-bar::before { display: none; }

.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
}

.kicker-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-bottom: 36px;
}

/* ----- Container ----- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Registration marks (decorative) */
.regmark {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--hairline-2);
}
.regmark::before, .regmark::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.regmark::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.regmark::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand .mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-3);
  position: relative;
  flex: 0 0 auto;
}
.brand .mark::before, .brand .mark::after {
  content: '';
  position: absolute;
  background: var(--hairline-3);
}
.brand .mark::before { left: -4px; right: -4px; top: 50%; height: 1px; }
.brand .mark::after { top: -4px; bottom: -4px; left: 50%; width: 1px; }
.brand .mark span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  font-style: italic;
  background: var(--paper);
  padding: 0 2px;
  position: relative;
  z-index: 1;
}
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words em { font-style: normal; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.nav a:hover { color: var(--rust); }
.nav a.cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav a.cta:hover { background: var(--rust); color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline-2);
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ----- Hero ----- */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline-3);
  padding-top: 16px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.hero-top .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-top .meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-top .meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust); position: relative;
}
.hero-top .meta .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--rust);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

.hero h1 {
  font-style: italic;
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 350;
}
.hero h1 .display-2 {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'wght' 500;
}
.hero h1 .punct {
  color: var(--rust);
  font-style: normal;
}

.hero-lede { margin-top: 32px; max-width: 48ch; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid transparent;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-primary { background: var(--rust); color: var(--paper); }
.btn-primary:hover { background: var(--rust-deep); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(184,73,44,0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero-stats div { min-width: 0; }
.hero-stats .num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 350;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.hero-stats .num em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 16px;
  color: var(--rust);
  margin-left: 2px;
  vertical-align: top;
}
.hero-stats .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Hero specimen panel */
.specimen {
  position: relative;
  padding: 14px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}
.specimen::before, .specimen::after,
.specimen .corner-tr, .specimen .corner-br {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--ink);
}
.specimen::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.specimen::after { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.specimen .corner-tr { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.specimen .corner-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.specimen .frame {
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  background-image: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
  position: relative;
}
.specimen .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.specimen .caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.specimen .caption strong { color: var(--ink); font-weight: 500; }
.specimen-tag {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}

/* ----- Trust strip ----- */
.trust {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
  padding: 28px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
  border-right: 1px solid var(--hairline);
}
.trust-item:last-child { border-right: 0; }
.trust-item .glyph {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  color: var(--rust);
}
.trust-item h4 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.trust-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* ----- Section base ----- */
.section { padding: var(--section) 0; position: relative; }
.section + .section { border-top: 1px solid var(--hairline); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--hairline-3);
  padding-top: 22px;
}
.section-head h2 { max-width: 18ch; }
.section-head h2 em { color: var(--rust); font-style: italic; font-variation-settings: 'opsz' 144, 'wght' 400; }
.section-head .intro p { max-width: 52ch; }

/* ----- Schädlinge ----- */
.species-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.species {
  background: var(--paper);
  padding: 28px 22px 24px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.22s ease;
}
.species:hover { background: var(--paper-2); }
.species .id {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.species .id .danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rust);
}
.species .id .danger::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
}
.species h3 {
  font-size: clamp(24px, 2vw, 30px);
  margin-top: 18px;
  font-variation-settings: 'opsz' 144, 'wght' 400;
}
.species .latin {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.species .note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.45;
}

/* ----- Leistungen ----- */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
}
.service-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card .tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--paper);
  padding: 0 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}
.service-card h3 { margin-bottom: 16px; }
.service-card ul { list-style: none; margin-top: 16px; padding-left: 0; }
.service-card li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 9px 0 9px 24px;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.service-card li:first-child { border-top: 0; }
.service-card li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 9px;
  font-family: var(--f-mono);
  color: var(--rust);
  font-weight: 500;
}

/* ----- Ablauf (4 Schritte) ----- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  position: relative;
  counter-reset: step;
}
.step {
  padding: 32px 28px 28px;
  position: relative;
  border-right: 1px solid var(--hairline);
}
.step:last-child { border-right: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 350;
  line-height: 1;
  font-style: italic;
  color: var(--rust);
  margin-bottom: 24px;
  font-variation-settings: 'opsz' 144;
}
.step h3 { font-size: 22px; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.step .tick {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

/* ----- Lokal / Einsatzgebiete ----- */
.regions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.regions .panel {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 32px 32px 28px;
}
.regions .panel h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.regions .panel .coords {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: block;
}
.regions .panel .frame {
  aspect-ratio: 5 / 4;
  background: var(--paper-3);
  background-image: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  margin-top: 18px;
  overflow: hidden;
}
.regions .panel .frame img { width: 100%; height: 100%; object-fit: cover; }
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline-3);
}
.area-list li {
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 15.5px;
}
.area-list li:nth-child(odd) { border-right: 1px solid var(--hairline); padding-right: 18px; }
.area-list li:nth-child(even) { padding-left: 18px; }
.area-list li .ref {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ----- FAQ ----- */
.faq-list {
  border-top: 1px solid var(--hairline-3);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 60px 26px 60px;
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  display: flex;
  align-items: baseline;
  gap: 24px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q ' counter(faq, decimal-leading-zero);
  counter-increment: faq;
  position: absolute;
  left: 0;
  top: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 22px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 30px;
  color: var(--ink-soft);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--rust); }
.faq-item summary:hover { color: var(--rust); }
.faq-item .answer {
  padding: 0 60px 30px 60px;
  max-width: 70ch;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-list { counter-reset: faq; }

/* ----- CTA banner / Kontakt ----- */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.contact .grain { position: absolute; inset: 0; opacity: 0.15; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
.contact .wrap { position: relative; z-index: 1; }
.contact h2 { color: var(--paper); max-width: 22ch; }
.contact h2 em { color: var(--rust); font-style: italic; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(48px, 6vw, 72px);
  align-items: start;
}
.contact-info p { color: rgba(241,234,218,0.78); margin-bottom: 28px; max-width: 44ch; font-size: 17px; }
.contact-grid .channels {
  display: grid;
  gap: 4px;
}
.channel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(241,234,218,0.18);
  text-decoration: none;
  color: var(--paper);
  transition: padding 0.22s ease, color 0.22s ease;
}
.channel:first-child { border-top: 1px solid rgba(241,234,218,0.5); }
.channel:hover { padding-left: 12px; color: var(--rust); }
.channel .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,234,218,0.55);
  display: block;
  margin-bottom: 8px;
}
.channel .value {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
}
.channel .arrow {
  font-family: var(--f-mono);
  font-size: 16px;
  color: rgba(241,234,218,0.55);
  transition: color 0.22s ease, transform 0.22s ease;
}
.channel:hover .arrow { color: var(--rust); transform: translate(4px, -2px); }

.contact-meta {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(241,234,218,0.55);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ----- Editorial: full-bleed atmospheric image ----- */
.bleed {
  margin: var(--section) 0;
  position: relative;
}
.bleed .frame {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--paper-3);
  background-image: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
}
.bleed .frame img { width: 100%; height: 100%; object-fit: cover; }
.bleed .legend {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline-2);
  padding: clamp(56px, 7vw, 88px) 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--rust); }
.footer-col .brand-block { margin-bottom: 18px; }
.footer-col .brand-block p { color: var(--ink-soft); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--rust); }

/* ----- Legal pages (Impressum, Datenschutz) ----- */
.legal {
  padding: clamp(56px, 8vw, 96px) 0 var(--section);
}
.legal-head {
  border-top: 1px solid var(--hairline-3);
  padding-top: 22px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.legal-head .section-num { display: block; margin-bottom: 18px; }
.legal-head h1 {
  font-size: clamp(44px, 6vw, 84px);
  font-style: italic;
  font-weight: 350;
  margin-bottom: 18px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 350;
}
.legal-head .lede { margin-top: 12px; font-size: clamp(17px, 1.6vw, 20px); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content section + section { margin-top: clamp(40px, 5vw, 56px); }
.legal-content h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.legal-content h2 .num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-right: 14px;
  vertical-align: middle;
}
.legal-content h3 {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-content p + p { margin-top: 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 12px 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--rust-deep); }
.legal-content strong { color: var(--ink); }
.legal-content .placeholder {
  background: rgba(184,73,44,0.10);
  color: var(--rust-deep);
  padding: 2px 8px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-block;
  border-radius: 2px;
}
.legal-content .meta-block {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 22px 26px;
  margin: 18px 0;
}
.legal-content .meta-block p { margin: 0; }
.legal-content .meta-block p + p { margin-top: 6px; }
.legal-content .updated {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .specimen { max-width: 480px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item { border-bottom: 1px solid var(--hairline); padding-bottom: 16px; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 8px; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid var(--hairline); }
  .step:nth-child(2n) { border-right: 0; }
  .regions { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--hairline-2); padding: 12px var(--gutter); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .species-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; }
  .area-list { grid-template-columns: 1fr; }
  .area-list li:nth-child(odd) { border-right: 0; padding-right: 4px; }
  .area-list li:nth-child(even) { padding-left: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 22px 44px 22px 44px; }
  .faq-item summary::before { top: 26px; font-size: 10px; }
  .faq-item .answer { padding: 0 44px 24px 44px; }
  .hero-top .meta { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
