/* =========================================================
   Bochtler Bedachungen GmbH (Demo) — Dachdecker-Meisterbetrieb, Markdorf
   Schwerpunkt Flachdach & Abdichtung
   Markenwelt: Markenrot (aus Logo) als scharfer Akzent, Anthrazit,
   Weiss/helles Grau. Dachsilhouette als eigenes Emblem (SVG).
   Fonts lokal (DSGVO): Oswald (Display, condensed), Spline Sans (Body)
   ========================================================= */

/* ---------- Fonts (lokal gehostet, kein Google-Hotlinking) ---------- */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Spline Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/splinesans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Markenrot (aus Logo, leicht modernisiert/abgedunkelt fuer Kontrast) */
  --red:        #D11A1A;   /* Leit-/Akzentfarbe */
  --red-700:    #B11414;   /* Hover, Links auf Hell */
  --red-300:    #f6c9c9;   /* helle Rotlinie */
  --red-tint:   #fbeded;   /* sehr blasse Rotflaeche */

  /* Anthrazit / Schwarz (Logo-Schrift) */
  --ink:        #141414;   /* nahezu Reinschwarz, Headlines */
  --ink-800:    #1c1f22;
  --ink-700:    #2a2f33;   /* dunkle Flaechen */
  --slate:      #5b6266;   /* Zink/Schiefer-Grau, Sekundaer */

  /* Grund / Flaechen */
  --bg:         #ffffff;
  --bg-2:       #f2f3f4;   /* helles Grau, Sektionswechsel */
  --bg-3:       #eceef0;
  --surface:    #ffffff;
  --text:       #232629;   /* Fliesstext */
  --muted:      #5f676c;
  --hairline:   rgba(20, 20, 20, 0.12);
  --hairline-2: rgba(20, 20, 20, 0.06);
  --line-dark:  rgba(255, 255, 255, 0.12);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3.25rem);
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(20,20,20,0.05), 0 4px 14px rgba(20,20,20,0.05);
  --shadow-md: 0 8px 28px rgba(20,20,20,0.10), 0 2px 6px rgba(20,20,20,0.05);
  --shadow-lg: 0 24px 60px rgba(20,20,20,0.16);

  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Spline Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0;
  hyphens: manual;
  text-transform: uppercase;
}
h1 { letter-spacing: 0.004em; }
p { margin: 0; }
::selection { background: var(--red); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Dach-Emblem / Akzent-Hilfen ---------- */
.roof { color: var(--red); flex: none; }

/* duenne rote Dachlinie als Sektions-Trenner */
.roofline {
  width: 100%;
  height: 14px;
  color: var(--red);
  opacity: 0.9;
}
.roofline svg { width: 100%; height: 100%; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--ink);
  color: #d7dadd;
  font-size: 0.74rem;
  letter-spacing: 0.012em;
  text-align: center;
  padding: 0.55rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: #ff8d8d; font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 38px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.28rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-800);
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red);
  color: #fff;
  margin-left: 0.4rem;
  box-shadow: var(--shadow-sm);
}
.nav-links .nav-cta:hover { background: var(--red-700); color: #fff; }

.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid var(--hairline);
  background: #fff;
  border-radius: 9px;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 20, 20, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease);
  z-index: 45;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(209,26,26,0.28); }
.btn-primary:hover { background: var(--red-700); box-shadow: 0 12px 28px rgba(209,26,26,0.34); }
.btn-ghost { background: var(--ink); color: #fff; }
.btn-ghost:hover { background: var(--ink-700); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn .pin {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform 0.2s var(--ease);
}
.btn:hover .pin { transform: translateX(3px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--red);
}
.eyebrow .roof { width: 1.15em; height: auto; }
.eyebrow.on-dark { color: #ff9a9a; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.tint { background: var(--bg-2); }
.section.dark { background: var(--ink); color: #d8dbdd; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }

.section-head { max-width: 680px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.95rem);
  margin-top: 0.85rem;
}
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.07rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #d8dbdd;
  overflow: hidden;
}
.hero::before {
  /* dezente diagonale Dachlinien-Textur */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -34deg,
    rgba(255,255,255,0.035) 0 1px,
    transparent 1px 26px
  );
  pointer-events: none;
}
.hero::after {
  /* roter Lichtschein oben rechts */
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(closest-side, rgba(209,26,26,0.28), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  line-height: 0.98;
  margin-top: 1.1rem;
}
.hero h1 .accent { color: var(--red); display: block; }
.hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: #c2c6c9;
  max-width: 33ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 2.7rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
}
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .k {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.12rem;
  color: #fff;
}
.hero-trust .l { font-size: 0.82rem; color: #9aa0a4; margin-top: 0.15rem; }

/* Hero-Emblem-Karte (Dachsilhouette) */
.hero-emblem {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.hero-emblem .crest { width: 100%; height: auto; }
.hero-emblem .cap {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: #b9bec1;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.1rem;
}
.hero-emblem .cap .roof { width: 1.2rem; margin-top: 0.15rem; }
.hero-emblem .cap b { color: #fff; font-weight: 600; }

/* ---------- Schwerpunkt-Band (Flachdach) ---------- */
.focus-band { background: var(--bg-2); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.focus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.focus:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.focus .ic {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--red-tint);
  color: var(--red);
}
.focus h3 { font-size: 1.32rem; }
.focus p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Leistungs-Grid (Karten) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleX(1); }
.svc.is-lead { background: var(--ink); border-color: var(--ink); color: #cfd2d4; }
.svc.is-lead h3 { color: #fff; }
.svc.is-lead::before { transform: scaleX(1); }
.svc.is-lead .ic { background: rgba(255,255,255,0.08); color: var(--red); }
.svc.is-lead .svc-tag { color: #ff9a9a; }
.svc .ic {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--red-tint);
  color: var(--red);
  margin-bottom: 1.1rem;
}
.svc-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 500;
}
.svc h3 { font-size: 1.34rem; margin: 0.5rem 0 0.6rem; }
.svc p { color: var(--muted); font-size: 0.97rem; }
.svc.is-lead p { color: #aeb3b6; }

/* ---------- Split / Ueber-Vorschau ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-800); font-size: 1.02rem; }
.feature-list .chk {
  flex: none;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  margin-top: 0.15rem;
}

/* Emblem-Panel (dunkel) */
.panel {
  position: relative;
  background: var(--ink);
  color: #c8cccd;
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-34deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.panel > * { position: relative; }
.panel .mark-lg { width: 64px; height: auto; margin-bottom: 1.3rem; }
.panel h3 { color: #fff; font-size: 1.6rem; }
.panel p { margin-top: 0.9rem; color: #aeb3b6; }
.panel .quote {
  margin-top: 1.6rem;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,0.04);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #d8dbdd;
}

/* ---------- Kennzahlen / Fakten-Band ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.fact {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.fact .n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.fact .t { font-size: 0.9rem; color: var(--muted); margin-top: 0.3rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 4.5vw, 3.2rem);
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -40%; right: -6%;
  width: 50%; height: 160%;
  background: radial-gradient(closest-side, rgba(209,26,26,0.32), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: #b9bec1; margin-top: 0.7rem; max-width: 46ch; }

/* ---------- Karriere-Sektion ---------- */
.career {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.jobs { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.jobs li {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.jobs li .roof { width: 1.05rem; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background: var(--ink);
  color: #d8dbdd;
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(2.4rem, 5vw, 3.4rem);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-34deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 26px);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; top: -50%; right: -8%;
  width: 45%; height: 200%;
  background: radial-gradient(closest-side, rgba(209,26,26,0.24), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-top: 0.8rem;
}
.page-hero .lead { margin-top: 1rem; color: #b9bec1; max-width: 56ch; font-size: 1.08rem; }
.breadcrumb {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: #9aa0a4;
}
.breadcrumb a { color: #ff9a9a; }

/* ---------- Detail-Leistungen (Unterseite) ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline-2);
  scroll-margin-top: 100px;
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail .ic {
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: var(--red-tint);
  color: var(--red);
  flex: none;
}
.svc-detail h3 { font-size: 1.5rem; }
.svc-detail .svc-tag { margin-bottom: 0.3rem; display: inline-block; }
.svc-detail p { color: var(--muted); margin-top: 0.5rem; }
.svc-detail ul { margin: 0.9rem 0 0; padding-left: 0; list-style: none; display: grid; gap: 0.45rem; }
.svc-detail ul li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.98rem; color: var(--ink-800); }
.svc-detail ul li .roof { width: 0.95rem; margin-top: 0.32rem; flex: none; }

/* ---------- Kontaktbereich + Formular ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.info-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.info-list .ic {
  flex: none;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--red-tint);
  color: var(--red);
}
.info-list .lbl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--slate);
}
.info-list a, .info-list .val { color: var(--ink); font-size: 1.05rem; }
.info-list a:hover { color: var(--red); }
.hours { margin-top: 0.2rem; }
.hours .row { display: flex; justify-content: space-between; gap: 1rem; max-width: 320px; padding: 0.3rem 0; border-bottom: 1px dashed var(--hairline-2); }
.hours .row span:last-child { color: var(--ink); font-weight: 500; }
.hours .note { font-size: 0.86rem; color: var(--muted); margin-top: 0.7rem; }
.map-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  color: var(--red);
}
.map-link:hover { color: var(--red-700); }

/* Formular: gestaltet, dunkler Karton mit roter Kante (kein weisser Standardkasten) */
.form-card {
  position: relative;
  background: var(--ink);
  color: #d8dbdd;
  border-radius: 18px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-34deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 26px);
  pointer-events: none;
}
.form-card > * { position: relative; }
.form-card h3 { color: #fff; font-size: 1.5rem; }
.form-card .hint { font-size: 0.88rem; color: #9aa0a4; margin-top: 0.5rem; }
.field { margin-top: 1.05rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  color: #b9bec1;
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #7d8388; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-card .btn-primary { margin-top: 1.3rem; width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: #8b9095; margin-top: 0.9rem; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aeb3b6; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer-brand .mark { width: 40px; height: 32px; }
.footer-about { margin-top: 1.1rem; max-width: 38ch; font-size: 0.96rem; color: #9aa0a4; }
.footer-col h4 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: #80868a;
}
.footer-bottom .legal-links { display: flex; gap: 1.3rem; }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 820px; }
.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.legal h3 { font-size: 1.15rem; margin-top: 1.5rem; text-transform: none; letter-spacing: 0; }
.legal p, .legal ul { color: var(--text); margin-top: 0.7rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--red); }
.legal a:hover { text-decoration: underline; }
.datenschutz-title { overflow-wrap: anywhere; }
.callout {
  background: var(--red-tint);
  border: 1px solid var(--red-300);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-top: 1.2rem;
}
.callout .tag {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--red-700);
  margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: var(--bg-2);
  border: 1px dashed var(--hairline);
  border-radius: 8px;
  padding: 0.25rem 0.7rem;
  font-size: 0.94rem;
}

/* ---------- Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
/* JS-Enhancement: wenn JS laeuft, blenden wir erst beim Sichtbarwerden ein */
.js .reveal { opacity: 0; transform: translateY(22px); animation: none; }
.js .reveal.is-in { animation: reveal 0.7s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  .btn:hover, .svc:hover, .focus:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-emblem { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .career { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .focus-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    background: #fff;
    padding: 5.5rem 1.4rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 55;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 0.85rem 0.9rem; font-size: 1.05rem; border-radius: 9px; }
  .nav-links a:hover { background: var(--bg-2); }
  .nav-links .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .nav-links .nav-cta:hover { background: var(--red-700); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 0.9rem; }
  .hero-trust { gap: 1.2rem 1.8rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
