/* ==========================================================================
   Thomas Ebinger Schlosserei + Metallbau — Stylesheet
   Design: Industrial Slate + Safety Orange · Mobile-first · DSGVO-freundlich
   Schriften: lokal selbst-gehostet (kein externes CDN)
   ========================================================================== */

/* ---------- Lokale Schriften (Space Grotesk / Inter) --------------------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/spacegrotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/spacegrotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/spacegrotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-700.woff2') format('woff2');
}

/* ---------- Design-Tokens ------------------------------------------------ */
:root {
  /* Farben */
  --steel-950: #020617;
  --steel-900: #0f172a;
  --steel-800: #1e293b;
  --steel-700: #334155;
  --steel-600: #475569;
  --steel-500: #64748b;
  --steel-400: #94a3b8;
  --steel-300: #cbd5e1;
  --steel-200: #e2e8f0;
  --steel-100: #f1f5f9;
  --steel-50:  #f8fafc;

  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;

  --bg: var(--steel-50);
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --accent: var(--orange-600);
  --accent-strong: var(--orange-700);
  --on-accent: #ffffff;

  /* Typografie */
  --font-head: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius & Schatten */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
  --shadow-orange: 0 12px 28px -8px rgba(234, 88, 12, 0.45);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;

  --z-header: 100;
  --z-menu: 200;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--steel-900);
}

/* ---------- Helfer ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  margin-top: 0.9rem;
}
.section-head p {
  margin-top: 1rem;
  font-size: 1.075rem;
  color: var(--text-muted);
}
.text-accent { color: var(--accent-strong); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn-secondary {
  background: var(--steel-900);
  color: #fff;
}
.btn-secondary:hover { background: var(--steel-800); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--steel-900);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--steel-400); background: var(--surface); transform: translateY(-2px); }
.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / Navigation ------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--steel-900);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--steel-900);
  flex-shrink: 0;
}
.brand__mark span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text b { font-size: 1.02rem; }
.brand__text small {
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--steel-700);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--steel-900); background: var(--steel-100); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--steel-900);
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--accent-strong); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--steel-900);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Menü Panel */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  z-index: var(--z-menu);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 5.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--steel-900);
  border-bottom: 1px solid var(--steel-100);
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--steel-100); }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu__meta {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.mobile-menu__meta a { padding: 0; border: 0; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--accent-strong); }

.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(234, 88, 12, 0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel-700);
}
.hero__badge b { color: var(--steel-900); font-weight: 600; }
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  line-height: 1.04;
}
.hero h1 .hl {
  color: var(--accent-strong);
  position: relative;
  white-space: nowrap;
}
.hero__lead {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--text-muted);
}
.hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__meta {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
}
.hero__meta div { line-height: 1.25; }
.hero__meta b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--steel-900);
}
.hero__meta span { font-size: 0.9rem; color: var(--text-muted); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__float {
  position: absolute;
  left: -0.5rem;
  bottom: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero__float .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--orange-100);
  color: var(--accent-strong);
}
.hero__float .ic svg { width: 22px; height: 22px; }
.hero__float b { font-family: var(--font-head); font-size: 0.98rem; color: var(--steel-900); }
.hero__float span { display: block; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Trust-Leiste ------------------------------------------------- */
.trustbar {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-block: 2rem;
}
.trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.trust .ic {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--steel-100);
  color: var(--accent-strong);
}
.trust .ic svg { width: 24px; height: 24px; }
.trust b { display: block; font-family: var(--font-head); font-size: 0.98rem; color: var(--steel-900); }
.trust span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Leistungen (Cards) ------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--orange-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--steel-300); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--steel-900);
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; }
.card p { margin-top: 0.6rem; color: var(--text-muted); font-size: 0.98rem; }
.card__tags {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-600);
}

/* ---------- Über uns ----------------------------------------------------- */
.about {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 10;
  object-fit: cover;
}
.about__facts {
  position: absolute;
  right: -0.5rem;
  bottom: -1.2rem;
  background: var(--steel-900);
  color: #fff;
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-lg);
  max-width: 15rem;
}
.about__facts b { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent); }
.about__facts span { display: block; font-size: 0.85rem; color: var(--steel-300); margin-top: 0.2rem; }

.about__body h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-top: 0.9rem; }
.about__body p { margin-top: 1.1rem; color: var(--text-muted); }
.about__list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--steel-800);
}
.about__list svg {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent-strong);
  margin-top: 2px;
}

/* ---------- Warum wir (Feature-Split) ------------------------------------ */
.why {
  background: var(--steel-900);
  color: #fff;
}
.why h2 { color: #fff; }
.why .section-head p { color: var(--steel-300); }
.why .eyebrow { color: var(--orange-500); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature {
  padding: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--r-lg);
  background: rgba(148, 163, 184, 0.06);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature:hover { background: rgba(148, 163, 184, 0.12); transform: translateY(-4px); }
.feature .ic {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.16);
  color: var(--orange-500);
  margin-bottom: 1.1rem;
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { color: #fff; font-size: 1.15rem; }
.feature p { margin-top: 0.55rem; color: var(--steel-300); font-size: 0.95rem; }

/* ---------- Ablauf (Steps) ----------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--accent-strong);
  margin-bottom: 1.1rem;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; }
.step p { margin-top: 0.55rem; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Referenzen (Galerie) ----------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.gallery figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
}
.gallery figcaption span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--steel-300); }

/* ---------- Standort ----------------------------------------------------- */
.location {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.location__map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.location__map img { width: 100%; display: block; }
.location__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--steel-100);
}
.info-row:last-of-type { border-bottom: 0; }
.info-row .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--steel-100);
  color: var(--accent-strong);
}
.info-row .ic svg { width: 21px; height: 21px; }
.info-row b { display: block; font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.info-row a, .info-row p { font-size: 1.05rem; color: var(--steel-900); font-weight: 500; margin-top: 0.15rem; }
.info-row a:hover { color: var(--accent-strong); }
.badge-soft {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--steel-500);
  font-weight: 500;
}

/* ---------- Kontakt ------------------------------------------------------ */
.contact {
  background:
    radial-gradient(50% 60% at 90% 0%, rgba(234, 88, 12, 0.07), transparent 60%),
    var(--steel-50);
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact__aside h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-top: 0.9rem; }
.contact__aside p { margin-top: 1rem; color: var(--text-muted); }
.contact__points { margin-top: 1.75rem; display: grid; gap: 1rem; }
.contact__points li { display: flex; gap: 0.85rem; align-items: center; }
.contact__points .ic {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--steel-900);
  color: var(--accent);
}
.contact__points .ic svg { width: 22px; height: 22px; }
.contact__points b { display: block; font-family: var(--font-head); color: var(--steel-900); }
.contact__points span { font-size: 0.9rem; color: var(--text-muted); }
.contact__points a { color: inherit; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--steel-800);
}
.field .req { color: var(--accent-strong); }
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--steel-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  min-height: 48px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.14);
}
.field .hint { font-size: 0.82rem; color: var(--text-muted); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0 1.4rem;
  padding: 1rem;
  background: var(--steel-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px; height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid var(--steel-400);
  border-radius: 6px;
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.consent input[type="checkbox"]::after {
  content: "";
  width: 12px; height: 7px;
  border: solid #fff;
  border-width: 0 0 2.5px 2.5px;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--dur) var(--ease);
  margin-top: -2px;
}
.consent input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.consent input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.consent input[type="checkbox"]:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2); }
.consent label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.consent a { color: var(--accent-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-info { background: var(--orange-100); color: var(--accent-strong); border: 1px solid #fed7aa; }

/* ---------- CTA-Band ----------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--steel-900), var(--steel-800));
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 6vw, 3.5rem);
  display: grid;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.35), transparent 65%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); position: relative; }
.cta-band p { color: var(--steel-300); margin-top: 0.75rem; position: relative; max-width: 34rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; position: relative; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--steel-950);
  color: var(--steel-300);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand__text small { color: var(--steel-400); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.95rem; max-width: 26rem; color: var(--steel-400); }
.footer-social { margin-top: 1.4rem; display: flex; gap: 0.6rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--steel-300);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.95rem; color: var(--steel-400); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.95rem; line-height: 1.7; color: var(--steel-400); }
.footer-col address a:hover { color: var(--orange-500); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.75rem;
  text-align: center;
}
.footer-bottom__legal { font-size: 0.85rem; color: var(--steel-500); }
.footer-bottom__legal a { color: var(--steel-400); }
.footer-bottom__legal a:hover { color: #fff; }
.powered {
  font-size: 0.9rem;
  color: var(--steel-400);
}
.powered a {
  color: #22b8e0;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--dur) var(--ease);
}
.powered a:hover { opacity: 0.8; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Rechtliche Unterseiten --------------------------------------- */
.legal {
  padding-block: clamp(3rem, 7vw, 5rem);
  min-height: 60vh;
}
.legal__inner { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
.legal .lead { margin-top: 1rem; color: var(--text-muted); font-size: 1.1rem; }
.legal h2 { font-size: 1.35rem; margin-top: 2.5rem; }
.legal p, .legal address { margin-top: 0.85rem; color: var(--steel-700); line-height: 1.75; font-style: normal; }
.legal .placeholder {
  margin-top: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px dashed var(--orange-500);
  border-radius: var(--r-md);
  background: var(--orange-100);
  color: var(--accent-strong);
  font-weight: 500;
  font-size: 0.95rem;
}
.legal a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--steel-700);
}
.back-link:hover { color: var(--accent-strong); }
.back-link svg { width: 18px; height: 18px; }

/* ---------- Scroll-Reveal ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ---------- Accordion (mobile Leistungsdetails / FAQ) -------------------- */
.accordion { display: grid; gap: 0.85rem; }
.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--steel-900);
  min-height: 56px;
}
.acc-trigger .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--accent-strong);
  transition: transform var(--dur) var(--ease);
}
.acc-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.acc-panel__inner { padding: 0 1.25rem 1.25rem; color: var(--text-muted); font-size: 0.96rem; }

/* ==========================================================================
   Breakpoints (Mobile-first → up)
   ========================================================================== */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1.5fr auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .trustbar__inner { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 0.9fr 1.1fr; }
  .about.is-reversed .about__media { order: 2; }
  .location { grid-template-columns: 1.4fr 1fr; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
  .cta-band { padding-inline: clamp(3rem, 6vw, 5rem); }
}

@media (max-width: 899px) {
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .burger { display: flex; }
  .nav-cta .btn-primary { display: none; }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 4.2rem; }
}

/* Nur mobile / nur Desktop */
.only-mobile { display: block; }
.only-desktop { display: none; }
@media (min-width: 900px) {
  .only-mobile { display: none; }
  .only-desktop { display: block; }
}

/* Menü offen → Scroll sperren */
body.no-scroll { overflow: hidden; }

/* ---------- Reduced Motion ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
