/* ==========================================================================
   FEST & FERTIG — Design System
   Palette: Waldgrün + Messing-Gold auf warmem Stein-Weiß
   Display: Fraunces · Text: Inter · Utility/Labels: IBM Plex Mono
   Signatur: feine "Montageplan"-Liniengrafik (Passmarken/Fluchtlinien),
   die an technische Montage- und Aufbaupläne erinnert.
   ========================================================================== */

/* Self-hosted: keine externe Verbindung zu fonts.googleapis.com /
   fonts.gstatic.com mehr. Dateien liegen lokal unter /fonts/.
   Benötigte Dateien (siehe /fonts/README.txt für Bezugsquelle):
   fraunces-400.woff2, fraunces-500.woff2, fraunces-600.woff2,
   fraunces-500-italic.woff2, inter-400.woff2, inter-500.woff2,
   inter-600.woff2, plexmono-400.woff2, plexmono-500.woff2 */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/fraunces-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/plexmono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/plexmono-500.woff2') format('woff2');
}

:root {
  --forest-deep: #0E1F17;
  --forest: #1E3A2C;
  --forest-mid: #2C4A3A;
  --paper: #F2F1E9;
  --paper-dim: #E9E7DB;
  --ink: #141C17;
  --muted: #5C6A61;
  --gold: #B99456;
  --gold-light: #E3D3AE;
  --card: #FFFFFF;
  --line: rgba(20, 28, 23, 0.12);
  --line-dark: rgba(227, 211, 174, 0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px -20px rgba(14, 31, 23, 0.35);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

img {
  max-width: 100%; display: block;
  -webkit-user-drag: none; user-drag: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 500; margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--forest-deep); color: var(--paper); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--paper-dim { background: var(--paper-dim); }
h2.h-section {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
  max-width: 720px;
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-top: 18px;
}
.section--dark .lede, .section--forest .lede { color: rgba(242, 241, 233, 0.72); }

/* Buttons */
.btn, .file-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
@media (max-width: 640px) {
  .btn, .file-upload-btn { white-space: normal; max-width: 100%; text-align: center; }
  .btn-row { width: 100%; }
  .btn-row .btn { width: 100%; }
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: var(--forest-deep); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline.on-light { border-color: var(--ink); }
.btn-outline.on-light:hover { background: rgba(20,28,23,0.06); }
.btn-whatsapp { background: #1E3A2C; color: var(--paper); border-color: var(--line-dark); }
.btn-whatsapp:hover { background: #274d3a; }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 31, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  max-width: 1800px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--paper); flex: none; }
.brand img { height: 30px; width: auto; display: block; }
.brand-word { font-family: 'Fraunces', serif; font-size: 17px; letter-spacing: 0.01em; white-space: nowrap; line-height: 1.15; display: block; }
.brand-word b { color: var(--gold-light); }
.brand-sub { display: none; }

.nav-desktop { display: none; flex: 1 1 auto; min-width: 0; margin-left: 36px; }
.nav-desktop ul { display: flex; gap: 22px; justify-content: flex-start; white-space: nowrap; }
.nav-desktop a {
  color: rgba(242,241,233,0.82);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--paper); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.header-icons { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--paper);
  flex: none;
}
.icon-btn svg { width: 18px; height: 18px; flex: none; }
.hamburger {
  display: flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
}
.hamburger svg { width: 18px; height: 18px; }

@media (min-width: 1180px) {
  .nav-desktop { display: block; }
  .icon-btn { display: inline-flex; }
  .hamburger { display: none; }
  .header-actions .btn-primary { display: inline-flex; }
}
.header-actions .btn-primary { display: none; padding: 11px 18px; font-size: 13.5px; }
@media (min-width: 1180px) { .header-actions .btn-primary { display: inline-flex; } }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--forest-deep);
  display: none;
  flex-direction: column;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mobile-nav a {
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.mobile-nav-contact { margin-top: 20px; font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: rgba(242,241,233,0.7); display: flex; flex-direction: column; gap: 6px; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex;
  background: var(--forest-deep);
  border-top: 1px solid var(--line-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13.5px;
}
.mobile-cta-bar .call { border: 1px solid var(--line-dark); color: var(--paper); }
.mobile-cta-bar .wa { background: var(--gold); color: var(--forest-deep); }
.mobile-cta-bar svg { width: 16px; height: 16px; }
@media (min-width: 1180px) { .mobile-cta-bar { display: none; } }
body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
@media (min-width: 1180px) { body { padding-bottom: 0; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--paper);
  overflow: hidden;
}
.hero-marks span {
  position: absolute;
  width: 22px; height: 22px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  opacity: 0.55;
}
.hero-inner {
  position: relative;
  padding: 32px 0 40px;
  display: grid;
  gap: 28px;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(30px, 5.6vw, 60px);
  margin-top: 12px;
  max-width: 15ch;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  margin-top: 14px;
  font-size: 17px;
  max-width: 46ch;
  color: rgba(242,241,233,0.82);
}
.hero-tag {
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 10px 0;
  max-width: 46ch;
}
.hero-ctas { margin-top: 18px; }
.hero-checks {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  font-size: 13.5px;
  color: rgba(242,241,233,0.85);
}
@media (min-width: 640px) { .hero-checks { grid-template-columns: max-content max-content; justify-content: start; } }
.hero-checks li { display: flex; align-items: center; gap: 10px; }
.hero-checks svg { flex: none; width: 16px; height: 16px; color: var(--gold); }
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5;
  filter: brightness(0.7) contrast(1.08) saturate(0.85) sepia(0.08) hue-rotate(-8deg);
}
.hero-photo--brand img { filter: brightness(0.92) contrast(1.04) saturate(1.02); }
.hero-photo--brand::after { background: linear-gradient(165deg, rgba(14,31,23,0.42) 0%, rgba(14,31,23,0.06) 40%, rgba(14,31,23,0.02) 60%, rgba(14,31,23,0.3) 100%); }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(14,31,23,0.62) 0%, rgba(14,31,23,0.18) 45%, rgba(14,31,23,0.05) 65%, rgba(14,31,23,0.4) 100%);
  pointer-events: none;
}
.photo-logo-mark {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
}
.photo-logo-mark img { height: 34px; width: auto; }
.photo-logo-mark b {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 15.5px; letter-spacing: 0.02em;
  color: var(--paper); text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.photo-logo-mark small {
  font-family: 'Inter', sans-serif; font-size: 10.5px; letter-spacing: 0.03em;
  color: rgba(242,241,233,0.8);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(14,31,23,0.85);
  border: 1px solid var(--line-dark);
  padding: 10px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; padding: 48px 0 56px; }
}

/* ---------- Für-wen cards ---------- */
.audience-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.audience-card .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.audience-card h3 { font-size: 20px; margin-top: 14px; }
.audience-card p { margin-top: 10px; color: var(--muted); font-size: 14.5px; }
.corner-mark { position: absolute; width: 14px; height: 14px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); top: 10px; left: 10px; opacity: 0.7; }

/* ---------- Leistungen ---------- */
.services-grid { margin-top: 48px; display: grid; gap: 20px; }
@media (min-width: 800px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; background: var(--card); padding: 36px 30px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.service-card .num { font-family: 'IBM Plex Mono', monospace; color: var(--gold); font-size: 13px; }
.service-card h3 { font-size: 24px; margin-top: 12px; }
.service-card ul { margin-top: 18px; margin-bottom: 22px; display: grid; gap: 9px; flex: 1; }
.service-card li { font-size: 14.5px; color: var(--muted); padding-left: 18px; position: relative; }
.service-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.service-card .btn { margin-top: 0; }
.services-note {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: var(--paper-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 720px;
}

/* ---------- B2B block ---------- */
.b2b-block {
  position: relative;
  background: var(--forest);
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 48px 28px;
  overflow: hidden;
}
@media (min-width: 900px) { .b2b-block { padding: 64px 64px; } }
.b2b-block .eyebrow { color: var(--gold-light); }
.b2b-block h2 { font-size: clamp(26px, 4vw, 38px); margin-top: 16px; max-width: 18ch; }
.b2b-block-list { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 560px; }
@media (min-width: 640px) { .b2b-block-list { grid-template-columns: 1fr 1fr; } }
.b2b-block-list li { font-size: 14.5px; padding-left: 18px; position: relative; color: rgba(242,241,233,0.85); }
.b2b-block-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-light); }
.b2b-claim {
  margin-top: 34px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--gold-light);
  max-width: 22ch;
}
.b2b-block .btn-row { margin-top: 30px; }

/* ---------- Warum ---------- */
.warum-grid { margin-top: 48px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .warum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .warum-grid { grid-template-columns: repeat(3, 1fr); } }
.warum-item { padding-top: 20px; border-top: 1px solid var(--line); }
.section--dark .warum-item, .section--forest .warum-item { border-top-color: var(--line-dark); }
.warum-item h3 { font-size: 18px; }
.warum-item p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.section--dark .warum-item p, .section--forest .warum-item p { color: rgba(242,241,233,0.72); }

/* ---------- Ablauf ---------- */
.ablauf { margin-top: 40px; }
.ablauf-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .ablauf-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ablauf-list { grid-template-columns: repeat(6, 1fr); } }
.ablauf-row {
  position: relative;
  padding: 34px 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.section--dark .ablauf-row, .section--forest .ablauf-row { background: transparent; border-color: var(--line-dark); }
.ablauf-arrow {
  position: absolute; top: 14px; right: 16px;
  font-family: 'IBM Plex Mono', monospace; color: var(--gold); font-size: 18px; font-weight: 600;
}
.ablauf-row h3 { font-size: 15px; margin-top: 0; }
.ablauf-row p { margin-top: 6px; color: var(--muted); font-size: 13px; max-width: none; line-height: 1.5; }
.section--dark .ablauf-row p, .section--forest .ablauf-row p { color: rgba(242,241,233,0.68); }

/* ---------- Auftrag CTA card ---------- */
.auftrag-card {
  margin-top: 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .auftrag-card { grid-template-columns: 1fr 1fr; } }
.auftrag-card .col { position: relative; padding: 40px 32px; display: flex; flex-direction: column; }
@media (min-width: 860px) { .auftrag-card .col { justify-content: space-between; } }
@media (max-width: 480px) { .auftrag-card .col { padding: 28px 20px; } }
.auftrag-items { margin-top: 22px; display: grid; gap: 14px; }
.auftrag-items li { display: flex; gap: 14px; align-items: baseline; font-size: 15px; }
.section--dark .auftrag-items li, .section--forest .auftrag-items li { color: rgba(242,241,233,0.9); }
.auftrag-items span.ico {
  font-family: 'IBM Plex Mono', monospace; color: var(--muted); font-weight: 600;
  font-size: 12px; letter-spacing: 0.04em;
  flex: none; width: 44px;
}
.section--dark .auftrag-items span.ico, .section--forest .auftrag-items span.ico { color: var(--gold-light); }

/* ---------- Referenzen ---------- */
.ref-grid { margin-top: 48px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .ref-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
.ref-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.ref-card .img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ref-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ref-card:hover img { transform: scale(1.04); }
.ref-card .body { padding: 20px; }
.ref-card .tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.ref-card h3 { font-size: 19px; margin-top: 8px; }
.ref-card .meta { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ref-card .meta span {
  font-size: 12px; color: var(--muted); background: transparent; padding: 0;
}
.ref-card .meta span:not(:last-child)::after { content: "·"; margin-left: 8px; color: var(--gold); }

/* ---------- Bewertungen ---------- */
.reviews-grid { margin-top: 48px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 24px; display: flex; flex-direction: column; }
.review-card--sm { padding: 20px 20px; }
.review-card--sm .review-quote { font-size: 14px; color: var(--muted); }
.review-card--sm .review-name { margin-top: 14px; }
.review-source {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); padding: 4px 9px; align-self: flex-start;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-quote { margin-top: 14px; font-size: 15px; color: var(--ink); flex: 1; }
.review-name { margin-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--muted); }

/* ---------- Einsatzgebiet ---------- */
.gebiet-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; max-width: 560px; }
@media (min-width: 640px) { .gebiet-grid { grid-template-columns: repeat(5, 1fr); } }
.gebiet-grid li { font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 9px 15px;
  border-radius: 999px;
  font-size: 13.5px; color: var(--muted);
}
.trust-pill svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: left; position: relative; overflow: hidden;
  background-image: linear-gradient(100deg, rgba(14,31,23,0.97) 0%, rgba(14,31,23,0.88) 38%, rgba(14,31,23,0.55) 68%, rgba(14,31,23,0.82) 100%), url('images/brand-kitchen-moody.jpg');
  background-size: cover;
  background-position: center;
}
.final-cta h2 { font-size: clamp(28px, 4.6vw, 46px); max-width: 18ch; }
.final-cta-contacts {
  margin-top: 36px;
  display: grid; gap: 18px; grid-template-columns: 1fr;
  font-family: 'IBM Plex Mono', monospace; font-size: 15px;
}
@media (min-width: 640px) { .final-cta-contacts { grid-template-columns: repeat(2, auto); } }
@media (max-width: 640px) {
  /* Dasselbe Stimmungsfoto wirkt auf einem schmalen, hohen Mobile-Viewport
     optisch unruhiger/"gerasterter" als auf breitem Desktop — deshalb hier
     stärker abgedunkelt statt komplett entfernt (Atmosphäre bleibt erhalten). */
  .final-cta {
    background-image: linear-gradient(180deg, rgba(14,31,23,0.93) 0%, rgba(14,31,23,0.9) 100%), url('images/brand-kitchen-moody.jpg');
  }
  .page-hero {
    background-image: linear-gradient(180deg, rgba(14,31,23,0.93) 0%, rgba(14,31,23,0.88) 100%), url('images/brand-kitchen-dark.jpg');
  }
}

/* Kreis-Badge-Motiv — Signatur-Element aus dem Logobuch (Logo im Kreis auf Foto) */
.cta-orb {
  display: none;
  border-radius: 50%;
  position: absolute;
  top: 50%; right: -140px;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 38% 32%, rgba(185,148,86,0.16), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(30,58,44,0.9), rgba(14,31,23,0.98) 72%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.cta-orb img { width: 46px; height: auto; opacity: 0.95; }
.cta-orb b {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; letter-spacing: 0.02em;
  color: var(--paper); text-transform: uppercase;
}
.cta-orb small {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.03em;
  color: rgba(242,241,233,0.72);
}
@media (min-width: 1100px) { .cta-orb { display: flex; } }

/* ---------- Form ---------- */
.form-wrap { margin-top: 32px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; }
@media (min-width: 720px) { .form-wrap { padding: 32px 36px; } }
.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 16px 20px; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.form-field .file-upload-btn { font-size: 15px; font-weight: 600; color: var(--forest-deep); }
.form-field .hint { font-size: 11.5px; color: var(--muted); font-weight: 400; }
.form-field input, .form-field textarea, .form-field select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14.5px;
  border-radius: var(--radius);
  color: var(--ink);
}
@media (max-width: 767px) {
  /* Verhindert automatisches Hinein-Zoomen von iOS Safari beim Fokussieren
     von Formularfeldern (passiert bei jeder Schriftgröße unter 16px). */
  .form-field input, .form-field textarea, .form-field select { font-size: 16px; }
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 2px; }
@media (min-width: 640px) { .checkbox-grid { grid-template-columns: 1fr 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--forest); }
.file-drop {
  border: 1px dashed var(--line);
  padding: 14px 16px;
  text-align: left;
  font-size: 12.5px;
  color: var(--muted);
  background: var(--paper);
  border-radius: var(--radius-sm);
}
/* Eigene Datei-Upload-UI: die native Browser-Beschriftung ("Choose File")
   richtet sich nach der Spracheinstellung des Browsers, nicht nach der
   Seitensprache — deshalb bauen wir Button und Status-Text selbst auf. */
.file-input-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.file-upload { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.file-upload-btn {
  background: var(--gold);
  color: var(--forest-deep);
  font-family: inherit;
  cursor: pointer;
}
.file-upload-btn:hover { background: var(--gold-light); }
.file-input-hidden:focus-visible + .form-field .file-upload-btn,
.file-upload-btn:has(+ input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
.file-upload-name { font-size: 13px; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-submit { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(242,241,233,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 36px; }
.footer-brand-mark { display: flex; flex-direction: column; align-items: center; width: fit-content; }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 30ch; color: rgba(242,241,233,0.6); }
.footer-col h4 { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.footer-col ul { margin-top: 16px; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(242,241,233,0.75); }
.footer-col a:hover { color: var(--paper); }
.footer-static { font-size: 14.5px; color: rgba(242,241,233,0.55); cursor: default; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: rgba(242,241,233,0.5);
}

/* ---------- Page header (Unterseiten) ---------- */
.page-hero {
  background: var(--forest-deep); color: var(--paper);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
  background-image: linear-gradient(100deg, rgba(14,31,23,0.95) 0%, rgba(14,31,23,0.85) 45%, rgba(14,31,23,0.55) 100%), url('images/brand-kitchen-dark.jpg');
  background-size: cover;
  background-position: center 30%;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 48px); margin-top: 16px; max-width: 18ch; }
.page-hero--compact { padding: 34px 0 28px; }
.page-hero--plain { background-image: none; background: var(--forest-deep); }
.page-hero .lede { color: rgba(242,241,233,0.78); }
.breadcrumb { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(242,241,233,0.55); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.38s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.44s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Lightbox (Referenzen: Foto vergrößert ansehen) ---------- */
.ref-card .img-wrap { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(14, 31, 23, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  width: auto; height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.two-col { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }
.badge-list { display: grid; gap: 12px; margin-top: 24px; }
.badge-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.badge-list svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.legal-note {
  margin-top: 20px; padding: 16px 20px; background: var(--paper-dim);
  border-left: 2px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 13.5px; color: var(--muted); max-width: 640px;
}
.file-notice {
  margin-top: 24px; padding: 16px 20px;
  background: #FBF3DA; border: 1px solid #E3C878; color: #6B4E12;
  border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.6;
}
.file-notice strong { display: block; margin-bottom: 4px; font-size: 14px; }
