/* ==========================================================================
   ÖCHER KFZ-GUTACHTER — Design System
   Farben aus dem Logo abgeleitet: Gold/Bronze, Schwarz, warmes Off-White.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  /* ---- Farben (aus dem Logo) ---- */
  --bg: #0a0a0b;
  --bg-elevated: #151416;
  --bg-elevated-2: #1e1c1e;
  --ink: #f3f1ea;
  --ink-muted: #b9b5aa;
  --ink-faint: #7c7a74;
  --steel: #9a9a9a;
  --gold: #c9962c;
  --gold-light: #e8c873;
  --gold-deep: #8a6015;
  --gold-glow: rgba(201, 150, 44, 0.32);
  --border: rgba(243, 241, 234, 0.1);
  --border-strong: rgba(243, 241, 234, 0.2);
  --success: #6fa87f;
  --error: #d97757;

  /* ---- Typografie ---- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', Arial, sans-serif;

  /* ---- Abstand ---- */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5rem;
  --space-7: 7rem;

  /* ---- Radius / Schatten ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 50px -25px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 12px 32px -8px var(--gold-glow);

  --container: 1180px;
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain texture over the black canvas so it doesn't feel flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
svg { stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; }

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

/* ---------------------------------------------------------------------- */
/* Typografie                                                              */
/* ---------------------------------------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .98;
  font-size: clamp(2.6rem, 4.6vw + 1rem, 4.6rem);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
}
h3, .h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.15;
  font-size: clamp(1.3rem, 1vw + 1rem, 1.6rem);
}
h4, .h4 {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.05rem;
}
.gold { color: var(--gold); }
.lede {
  font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem);
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 54ch;
}
.eyebrow {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: .9rem;
}
/* Centered section heads: drop the leading dash so the text itself sits
   on the true center line instead of the whole dash+text unit. */
.section-head.center .eyebrow::before { display: none; }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
p + p { margin-top: 1em; }
.muted { color: var(--ink-muted); }
.small { font-size: .88rem; }

/* ---------------------------------------------------------------------- */
/* Layout                                                                  */
/* ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
  position: relative;
  z-index: 1;
}
section { padding-block: var(--space-6); position: relative; }
.section-tight { padding-block: var(--space-5); }
.section-head { max-width: 640px; margin-bottom: var(--space-4); }
.section-head.center { margin-inline: auto; text-align: center; }
.stack { display: flex; flex-direction: column; gap: var(--space-2); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  border: 0;
}

/* skyline motif divider — signature brand element, traced directly from the
   logo artwork (Aachen skyline + gold arc), flanked by thin fading lines.
   Kept small/subtle on purpose so it doesn't dominate while scrolling. */
.skyline-band {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
  padding-block: 1.4rem;
}
.skyline-band-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.skyline-band img {
  max-width: 220px;
  width: 22%;
  height: auto;
  opacity: .8;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95em 1.7em;
  border-radius: 999px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .92rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(155deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #171106;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px var(--gold-glow); }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-whatsapp {
  background: #1e2b23;
  color: #d9f2df;
  border-color: rgba(111, 168, 127, .35);
}
.btn-whatsapp:hover { background: #24352a; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.15em 2.1em; font-size: 1rem; }

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                    */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: var(--space-3);
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; }
.brand-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1rem;
  line-height: 1.15;
}
.brand-name span { display: block; color: var(--gold); font-size: .7rem; letter-spacing: .18em; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: var(--space-4); }
.nav-links { display: flex; align-items: center; gap: var(--space-3); }
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .92rem;
  color: var(--ink-muted);
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-active .icon-menu { display: none; }
.nav-toggle.is-active .icon-close { display: block; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    height: 100vh;
    background: #0d0d0e;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5.5rem var(--space-3) var(--space-3);
    gap: var(--space-4);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: flex; flex-direction: column; gap: .7rem; margin-top: auto; padding-top: var(--space-3); border-top: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .header-actions .btn { padding: .75em; border-radius: 50%; }
  .header-actions .btn-label { display: none; }
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 98;
}
.nav-scrim.is-visible { display: block; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  padding-block: var(--space-7) var(--space-6);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 780px;
  max-height: 780px;
  background: radial-gradient(circle, var(--gold-glow), transparent 68%);
  opacity: .55;
  pointer-events: none;
}
.hero-emblem {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(560px, 52vw);
  opacity: .16;
  pointer-events: none;
  filter: saturate(0);
}
.hero-copy { position: relative; z-index: 1; max-width: 900px; }
.hero-kicker {
  font-family: var(--font-condensed);
  line-height: 1.35;
  margin-bottom: var(--space-3);
}
.hero-kicker .line1 {
  display: block;
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 1.05rem;
  color: var(--ink);
}
.hero-kicker .line2 {
  display: block;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .02em;
  font-size: .92rem;
  color: var(--gold-light);
  margin-top: .15rem;
}
.hero h1 { margin-block: var(--space-2) var(--space-3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-4); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-muted);
  font-size: .92rem;
}
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* USP strip                                                               */
/* ---------------------------------------------------------------------- */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding-block: var(--space-5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-item { display: flex; gap: 1rem; align-items: flex-start; }
.usp-item .icon-badge { flex-shrink: 0; }
.usp-item h3 { margin-bottom: .35rem; }
.usp-item p { color: var(--ink-muted); font-size: .95rem; }
@media (max-width: 800px) {
  .usp-strip { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---------------------------------------------------------------------- */
/* Icon badge (used across service cards, USP, timeline)                   */
/* ---------------------------------------------------------------------- */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(201,150,44,.16), rgba(201,150,44,.04));
  border: 1px solid rgba(201,150,44,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.icon-badge svg { width: 28px; height: 28px; stroke-width: 1.6; }

/* ---------------------------------------------------------------------- */
/* Route / Timeline ("Unfall gehabt?")                                     */
/* ---------------------------------------------------------------------- */
.route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--steps, 5), 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.route::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 24px);
  opacity: .7;
}
.route-step { position: relative; padding-top: 4px; }
.route-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.route-step h3 { margin-top: var(--space-2); }
.route-step p { color: var(--ink-muted); font-size: .92rem; margin-top: .4rem; }

@media (max-width: 900px) {
  .route { grid-template-columns: 1fr; gap: var(--space-4); }
  .route::before { top: 4%; bottom: 4%; left: 27px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--gold) 0 14px, transparent 14px 24px); }
  .route-step { display: grid; grid-template-columns: 56px 1fr; gap: var(--space-3); align-items: flex-start; }
  .route-step h3, .route-step p { grid-column: 2; margin-top: 0; }
  .route-step h3 { margin-top: .4rem; }
}

/* ---------------------------------------------------------------------- */
/* Cards / Grids                                                           */
/* ---------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-3);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}
.card:hover { border-color: rgba(201,150,44,.4); transform: translateY(-3px); background: var(--bg-elevated-2); }
.service-card h3 { margin-block: var(--space-2) .5rem; }
.service-card p { color: var(--ink-muted); font-size: .95rem; }
.service-card--full { grid-column: 1 / -1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: var(--space-2);
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  color: var(--gold);
}
.card-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------------------------------------------------------------------- */
/* Coverage / radius map                                                   */
/* ---------------------------------------------------------------------- */
.coverage-wrap {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 900px) { .coverage-wrap { grid-template-columns: 1fr; } }
.radar { width: 100%; height: auto; }
.radar .ring { fill: none; stroke: var(--border-strong); }
.radar .ring--dash { stroke-dasharray: 3 6; }
.radar .center-dot { fill: var(--gold); }
.radar text { font-family: var(--font-condensed); fill: var(--ink-muted); font-size: 11px; letter-spacing: .03em; }
.radar .center-label { fill: var(--ink); font-weight: 700; font-size: 13px; }
.radar .spoke { stroke: var(--border); stroke-width: 1; }

.chip-cloud { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-3); }
.chip {
  padding: .5em 1em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: .03em;
  font-size: .88rem;
  color: var(--ink-muted);
}
.chip--main { border-color: var(--gold); color: var(--gold-light); background: rgba(201,150,44,.08); }

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.testimonial {
  position: relative;
  padding-top: var(--space-3);
}
.testimonial .stars { color: var(--gold); display: flex; gap: .2rem; margin-bottom: var(--space-2); }
.testimonial .stars svg { width: 16px; height: 16px; }
.testimonial blockquote { font-size: 1.02rem; color: var(--ink); }
.testimonial cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--ink-muted);
  font-size: .88rem;
  letter-spacing: .03em;
}
.testimonial-note {
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-3);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------------- */
/* About / bio                                                             */
/* ---------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-photo img { aspect-ratio: 3/4; object-fit: cover; }
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1c1a16, #0a0a0b 75%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-emblem { width: 75%; opacity: .85; }
.qual-list { margin-top: var(--space-3); display: flex; flex-direction: column; gap: .75rem; }
.qual-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--ink-muted); }
.qual-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------------------------------------------------------------------- */
/* CTA band                                                                */
/* ---------------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--bg-elevated), #100d08 120%);
  border: 1px solid rgba(201,150,44,.35);
  padding: var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; text-align: center; }
.cta-band .hero-actions { justify-content: center; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3);
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; color: var(--gold); }
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 var(--space-3) var(--space-3); color: var(--ink-muted); }
.faq-item > summary { list-style: none; cursor: pointer; }
.faq-item > summary::-webkit-details-marker { display: none; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--ink-muted);
}
.field input, .field textarea, .field select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: .85em 1em;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color .15s ease, background-color .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: var(--bg-elevated-2); outline: none; }
.field textarea { resize: vertical; min-height: 140px; }
.field-hint { font-size: .8rem; color: var(--ink-faint); }
.field-error { font-size: .82rem; color: var(--error); display: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field.has-error .field-error { display: block; }

/* honeypot — hidden from real visitors, catches simple bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.consent-row { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--ink-muted); }
.consent-row input { margin-top: .3rem; accent-color: var(--gold); }
.consent-row a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.form-status {
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: .92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(111,168,127,.12); border: 1px solid rgba(111,168,127,.4); color: #b6ddc0; }
.form-status.error { background: rgba(217,119,87,.12); border: 1px solid rgba(217,119,87,.4); color: #f3bda8; }

/* ---------------------------------------------------------------------- */
/* Contact detail cards (Kontakt page)                                     */
/* ---------------------------------------------------------------------- */
.contact-methods { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
}
.contact-method .icon-badge { width: 46px; height: 46px; }
.contact-method .icon-badge svg { width: 22px; height: 22px; }
.contact-method h4 { font-size: .78rem; color: var(--ink-faint); margin-bottom: .2rem; letter-spacing: .08em; }
.contact-method a, .contact-method span.value { font-family: var(--font-condensed); font-weight: 600; font-size: 1.05rem; }

/* ---------------------------------------------------------------------- */
/* Page header (sub-pages)                                                 */
/* ---------------------------------------------------------------------- */
.page-hero {
  padding-block: var(--space-6) var(--space-5);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -6%;
  width: 46vw;
  max-width: 560px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: .4;
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------------------------------------------------------------------- */
/* Legal pages (Impressum / Datenschutz)                                   */
/* ---------------------------------------------------------------------- */
.legal {
  max-width: 780px;
}
.legal h2 { font-size: 1.4rem; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: var(--space-3); margin-bottom: .5rem; color: var(--gold-light); }
.legal p, .legal li { color: var(--ink-muted); font-size: .97rem; }
.legal ul { list-style: disc; padding-left: 1.3em; display: flex; flex-direction: column; gap: .4rem; }
.legal a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-toc { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: var(--space-3); }
.legal-toc a { font-family: var(--font-condensed); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-muted); }
.legal-toc a:hover { color: var(--gold-light); }
.placeholder-flag {
  display: inline-block;
  background: rgba(217,119,87,.15);
  border: 1px solid rgba(217,119,87,.5);
  color: #f3bda8;
  padding: .1em .5em;
  border-radius: 4px;
  font-size: .78rem;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); padding-top: var(--space-2); }
.footer-inner {
  padding-block: var(--space-5);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: var(--space-2); }
.footer-brand p { color: var(--ink-faint); font-size: .9rem; max-width: 30ch; }
.footer-col h4 { color: var(--ink); margin-bottom: var(--space-2); }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--ink-muted); font-size: .93rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .6rem; margin-top: var(--space-2); }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
}
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-size: .85rem;
  color: var(--ink-faint);
}
.footer-bottom nav { display: flex; gap: var(--space-3); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp button (mobile-friendly persistent CTA)               */
/* ---------------------------------------------------------------------- */
.float-whatsapp {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2fae5a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -6px rgba(47,174,90,.55);
  transition: transform .2s ease;
}
.float-whatsapp:hover { transform: scale(1.07); }
.float-whatsapp svg { width: 28px; height: 28px; }

/* ---------------------------------------------------------------------- */
/* Utility                                                                 */
/* ---------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-2); top: -60px;
  background: var(--gold); color: #171106; padding: .7em 1.2em;
  border-radius: var(--radius-sm); z-index: 200; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: var(--space-2); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
