/* ============================================================
   web-designer.shop — styles.css
   Vollständig neu, getestet, keine z-index-Konflikte
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --cream:       #f7f5f0;
  --cream-deep:  #f0ece3;
  --navy:        #1b2a38;
  --navy-deep:   #111e2a;
  --gold:        #b8862a;
  --gold-light:  #c9a96e;
  --gold-pale:   #f2e8d5;
  --ink:         #1a1814;
  --ink-mid:     #3d3830;
  --ink-muted:   #6b6560;
  --ink-dim:     #9a9590;
  --line:        #ddd8ce;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Grain overlay — pointer-events:none, unter Nav ─────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;                   /* unter allem anderen */
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Scroll-Progress ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  z-index: 600;                 /* über Header */
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(17,30,42,0.0);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.site-header.scrolled {
  background: rgba(17,30,42,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184,134,42,0.2);
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-svg {
  height: 58px; display: block;
  flex-shrink: 0;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .nav-logo-svg { height: 44px; }

/* Desktop-Menü */
.nav-menu {
  display: flex; align-items: center; gap: 36px;
}
.nav-menu a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,230,200,0.7);
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: #f0e6c8; }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* CTA-Button im Nav */
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 9px 20px;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  white-space: nowrap;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-deep) !important;
  box-shadow: 0 4px 16px rgba(184,134,42,0.3);
}

/* Hamburger-Button */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: var(--navy);
  border: 1px solid var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

/* Mobile-Menü (offen) */
.nav-menu.is-open {
  display: flex; flex-direction: column; align-items: stretch;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(17,30,42,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0 24px;
  border-top: 1px solid rgba(184,134,42,0.15);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  z-index: 499;               /* unter Header, über Inhalt */
  gap: 0;
}
.nav-menu.is-open a {
  display: block;
  padding: 14px 28px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(240,230,200,0.75);
}
.nav-menu.is-open a:hover,
.nav-menu.is-open a.active { color: #f0e6c8; background: rgba(184,134,42,0.06); }
.nav-menu.is-open a::after { display: none; }
.nav-menu.is-open .nav-cta {
  margin: 16px 28px 0;
  text-align: center;
  padding: 13px 20px !important;
}

/* ── Page-Hero (Unterseiten) ──────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, rgba(17,30,42,0.92) 0%, rgba(27,42,56,0.85) 100%),
    url('../img/hero-texture.jpg') center / cover no-repeat;
  padding: 148px 0 80px;
}
.page-hero .eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.05;
  color: #f0e6c8; letter-spacing: -1px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .lead {
  font-size: 17px; line-height: 1.75;
  color: rgba(240,230,200,0.55);
  max-width: 580px;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  font-size: 12px; color: rgba(240,230,200,0.4);
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.breadcrumb a { color: rgba(240,230,200,0.4); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; }

/* ── Layout ──────────────────────────────────────────────────── */
.container       { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-narrow{ max-width:  960px; margin: 0 auto; padding: 0 48px; }
.container-tight { max-width:  720px; margin: 0 auto; padding: 0 48px; }
section { padding: 112px 0; }
section.bg-deep { background: var(--cream-deep); }

/* ── Typography ──────────────────────────────────────────────── */
h2.display {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -1px; color: var(--ink);
}
h2.display em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: block;
}

.section-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  opacity: 0; transform: scaleX(0.6);
  transform-origin: left center;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.section-label.visible { opacity: 1; transform: scaleX(1); }
.section-label-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-label-text {
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

/* ── Reveal-Animationen ──────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer; border: 0; text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(184,134,42,0.35);
  color: var(--navy-deep);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(240,230,200,0.25);
  color: rgba(240,230,200,0.7);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-muted);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ── CTA-Section ─────────────────────────────────────────────── */
.cta-section {
  background: var(--navy-deep);
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  color: rgba(184,134,42,0.04);
  white-space: nowrap; pointer-events: none;
  user-select: none; letter-spacing: -4px;
  z-index: 0;
}
.cta-inner {
  position: relative; z-index: 2;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; color: #f0e6c8;
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -1px;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  font-size: 16px; color: rgba(240,230,200,0.5);
  margin-bottom: 40px; line-height: 1.7;
}
.cta-promise {
  margin-top: 24px;
  font-size: 11px; letter-spacing: 2px;
  color: rgba(240,230,200,0.3); text-transform: uppercase;
}
.cta-promise span { color: var(--gold-light); }

/* ── Leistungen ──────────────────────────────────────────────── */
.leistung-block {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 48px; padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.leistung-block:first-child { border-top: 1px solid var(--line); }
.leistung-num {
  font-family: var(--serif);
  font-size: 72px; font-weight: 300;
  color: var(--line); line-height: 1;
  padding-top: 4px;
}
.leistung-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.leistung-block h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 20px; color: var(--ink);
}
.leistung-block h2 em { font-style: italic; color: var(--gold); }
.leistung-block p {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-muted); margin-bottom: 16px;
}
.leistung-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.pill {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

/* ── Preise ──────────────────────────────────────────────────── */
.preise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.preis-card {
  padding: 48px 36px;
  border: 1px solid var(--line);
  border-top-width: 4px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background 0.25s ease;
  position: relative;
}
/* Tier-Farben — Silber / Creme-Gold / Dunkelgold */
.preis-card.tier-silver {
  border-top-color: #b0b6be;
  background: #f4f5f7;
}
.preis-card.tier-silver:hover {
  background: #eaecf0;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,24,20,0.1);
}
.preis-card.tier-gold {
  border-top-color: var(--gold);
  background: #fdf6e3;
}
.preis-card.tier-gold:hover {
  background: #f5e8c4;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(184,134,42,0.18);
}
.preis-card.tier-bronze {
  border-top-color: #8a6020;
  background: #f5eddc;
}
.preis-card.tier-bronze:hover {
  background: #ead9b8;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(138,96,32,0.15);
}

.preis-name {
  font-family: var(--serif);
  font-size: 34px; font-weight: 300;
  margin-bottom: 6px;
}
.tier-silver .preis-name { color: #4a5260; }
.tier-gold   .preis-name { color: #6a4a10; }
.tier-bronze .preis-name { color: #5a3a08; }

.preis-sub {
  font-size: 12px; color: var(--ink-dim);
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.tier-gold .preis-sub { color: #9a7830; border-bottom-color: #e0c878; }

.preis-num {
  font-family: var(--serif);
  font-size: 52px; font-weight: 300;
  line-height: 1; margin-bottom: 6px;
}
.tier-silver .preis-num { color: #2a3040; }
.tier-gold   .preis-num { color: #4a3008; }
.tier-bronze .preis-num { color: #3a2008; }

.preis-num .eur { font-size: 26px; vertical-align: super; }
.tier-silver .eur { color: #8a9099; }
.tier-gold   .eur { color: var(--gold); }
.tier-bronze .eur { color: #8a6020; }

.preis-note {
  font-size: 12px; margin-bottom: 32px;
}
.tier-silver .preis-note { color: #9aa0a8; }
.tier-gold   .preis-note { color: #9a7830; }
.tier-bronze .preis-note { color: #8a6830; }

.preis-features { margin-bottom: 36px; }
.preis-features li {
  font-size: 14px; padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.preis-features li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--gold);
}
.tier-silver .preis-features li { color: var(--ink-muted); border-bottom-color: #d0d5dc; }
.tier-gold   .preis-features li { color: #5a4020; border-bottom-color: #e0c878; }
.tier-bronze .preis-features li { color: #4a3010; border-bottom-color: #d4b870; }
.tier-silver .preis-features li::before { color: #9aa0a8; }
.tier-gold   .preis-features li::before { color: var(--gold); }
.tier-bronze .preis-features li::before { color: #8a6020; }

.preis-btn {
  display: block; text-align: center;
  padding: 13px 20px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.25s ease;
}
.preis-btn-outline { border: 1px solid currentColor; }
.tier-silver .preis-btn-outline { color: #5a6270; }
.tier-silver .preis-btn-outline:hover { color: #2a3040; background: rgba(0,0,0,0.05); }
.tier-gold   .preis-btn-outline { color: #7a5810; }
.tier-gold   .preis-btn-outline:hover { color: #4a3008; background: rgba(0,0,0,0.05); }
.tier-bronze .preis-btn-outline { color: #6a4a10; }
.tier-bronze .preis-btn-outline:hover { color: #3a2808; background: rgba(0,0,0,0.05); }
.preis-btn-gold {
  background: var(--gold); color: var(--navy-deep);
  border: 1px solid var(--gold);
}
.preis-btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(184,134,42,0.3);
}

/* Wartungs-Grid */
.wartung-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.wartung-card {
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--cream);
}
.wartung-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.wartung-price {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300;
  color: var(--ink); line-height: 1;
}
.wartung-period {
  font-size: 13px; color: var(--ink-dim);
  margin-bottom: 20px;
}
.wartung-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 500; color: var(--ink);
  user-select: none;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px; font-weight: 300; color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: 15px; color: var(--ink-muted); line-height: 1.8; }

/* ── Timeline (Prozess) ──────────────────────────────────────── */
.timeline {
  position: relative; padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.timeline-fill {
  position: absolute; left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 1.4s var(--ease);
}
.timeline.visible .timeline-fill { height: 100%; }
.timeline-step {
  padding: 0 0 56px 36px; position: relative;
}
.timeline-step::before {
  content: ''; position: absolute; left: -5px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream);
}
.step-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.timeline-step h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
}
.timeline-step p {
  font-size: 15px; color: var(--ink-muted);
  line-height: 1.8;
}
.step-meta {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}

/* ── Referenzen ──────────────────────────────────────────────── */
.proj-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--line);
}
.proj-card:first-child { border-top: 1px solid var(--line); }
.proj-card.reverse { direction: rtl; }
.proj-card.reverse > * { direction: ltr; }
.proj-img {
  aspect-ratio: 4/3; background: var(--cream-deep);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; }
.proj-placeholder {
  font-family: var(--serif); font-size: 48px;
  font-weight: 300; color: var(--line);
}
.proj-num {
  font-family: var(--serif); font-size: 13px;
  color: var(--gold); letter-spacing: 2px;
  margin-bottom: 16px;
}
.proj-card h3 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: var(--ink); margin-bottom: 16px; line-height: 1.15;
}
.proj-card p {
  font-size: 15px; color: var(--ink-muted);
  line-height: 1.8; margin-bottom: 24px;
}
.proj-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.proj-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--line);
  color: var(--ink-dim);
}

/* ── Branchen ────────────────────────────────────────────────── */
.branchen-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 64px;
}
.branche-card {
  padding: 40px 36px;
  background: var(--cream);
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.branche-card:hover { border-top-color: var(--gold); background: var(--cream-deep); }
.branche-number {
  font-family: var(--serif); font-size: 42px;
  font-weight: 300; color: var(--line);
  margin-bottom: 12px; line-height: 1;
}
.branche-card h3 {
  font-size: 18px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
}
.branche-card p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.7; margin-bottom: 16px;
}
.branche-card ul { list-style: none; }
.branche-card ul li {
  font-size: 13px; color: var(--ink-dim);
  padding: 4px 0 4px 14px; position: relative;
}
.branche-card ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--gold);
}

/* ── Kontakt ─────────────────────────────────────────────────── */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.kontakt-info h3 {
  font-family: var(--serif); font-size: 28px;
  font-weight: 300; color: var(--ink); margin-bottom: 16px;
}
.kontakt-info > p {
  font-size: 15px; color: var(--ink-muted);
  line-height: 1.8; margin-bottom: 36px;
}
.kontakt-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.kontakt-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
}
.kontakt-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.kontakt-value {
  font-size: 15px; color: var(--ink); line-height: 1.6;
}
.kontakt-value a { color: var(--ink); }
.kontakt-value a:hover { color: var(--gold); }

/* Formular */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--cream); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: 0; appearance: none; -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,42,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: auto; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0;
}
.form-consent label {
  font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0; text-transform: none; line-height: 1.6;
  font-weight: 400;
}
.form-consent a { color: var(--gold); }

/* Status-Meldungen Kontakt */
.status-box {
  padding: 20px 24px; margin-bottom: 24px;
  display: none;
}
.status-box.ok    { border-left: 3px solid #2d6a4f; background: #f0f7f4; }
.status-box.error { border-left: 3px solid #c0392b; background: #fdf3f2; }
.status-box h4 {
  font-family: var(--serif); font-size: 20px;
  margin-bottom: 6px;
}
.status-box.ok    h4 { color: #2d6a4f; }
.status-box.error h4 { color: #c0392b; }
.status-box p { font-size: 14px; }
.status-box.ok    p { color: #4a7060; }
.status-box.error p { color: #9a3020; }

/* ── Legal ───────────────────────────────────────────────────── */
.legal-wrap { max-width: 720px; }
.legal-wrap h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--ink); margin: 40px 0 12px; border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 {
  font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 28px 0 8px;
}
.legal-wrap p { font-size: 15px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { margin: 8px 0 12px 20px; list-style: disc; }
.legal-wrap ul li { font-size: 15px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 4px; }
.legal-wrap a { color: var(--gold); }
.legal-box {
  background: var(--cream-deep); border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 12px 0 20px;
}
.legal-box p { margin-bottom: 4px; }
.legal-toc { margin-bottom: 40px; }
.legal-toc ol { margin-left: 20px; }
.legal-toc li { font-size: 14px; color: var(--ink-muted); margin-bottom: 4px; }
.legal-toc a { color: var(--gold); }
.legal-stamp {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-dim);
}

/* ── Stats ───────────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.counter {
  font-family: var(--serif);
  font-size: 64px; font-weight: 300;
  color: var(--ink); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ── Process steps (Index-Sektion) ───────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  border: 1px solid var(--line);
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--serif); font-size: 48px;
  font-weight: 300; color: var(--line);
  margin-bottom: 16px; line-height: 1;
}
.process-step h4 {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
}
.process-step p {
  font-size: 13px; color: var(--ink-muted); line-height: 1.75;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 14px; color: rgba(240,230,200,0.35);
  line-height: 1.8; margin-top: 20px; max-width: 280px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(240,230,200,0.4);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 12px; color: rgba(240,230,200,0.2);
}
.footer-claim { letter-spacing: 1px; }

/* ── 404 ─────────────────────────────────────────────────────── */
.fourohfour {
  min-height: 100vh; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.fourohfour::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.fourohfour-num {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(140px, 25vw, 260px);
  font-weight: 300; color: rgba(184,134,42,0.07);
  line-height: 1; letter-spacing: -8px;
  pointer-events: none; user-select: none;
}
.fourohfour-inner { position: relative; z-index: 2; max-width: 520px; }
.fourohfour-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.fourohfour-inner h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300; color: #f0e6c8;
  line-height: 1.05; margin-bottom: 20px;
}
.fourohfour-inner h1 em { font-style: italic; color: var(--gold-light); }
.fourohfour-inner p {
  font-size: 16px; color: rgba(240,230,200,0.4);
  line-height: 1.7; margin-bottom: 40px;
}
.fourohfour-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .preise-grid  { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .wartung-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .proj-card    { grid-template-columns: 1fr; gap: 40px; }
  .proj-card.reverse { direction: ltr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 56px; }
  .branchen-grid { grid-template-columns: 1fr; }
  .leistung-block { grid-template-columns: 1fr; gap: 16px; }
  .leistung-num { font-size: 56px; }
}
@media (max-width: 768px) {
  .container, .container-narrow, .container-tight { padding: 0 24px; }
  section { padding: 72px 0; }
  .nav-wrap { padding: 0 20px; }
  .page-hero { padding: 120px 0 60px; }

  /* Mobile-Menü */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .timeline { padding-left: 24px; }
  .timeline-step { padding-left: 28px; }
}
