:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #151515;
  --muted: #5b5b5b;
  --border: #e8e8e6;
  --hero: #191918;
  --gold: #d3ae43;
  --gold-hover: #c49c35;
  --gold-pressed: #b38d2c;
  --gold-text: #8f6b12;
  --on-gold: #151515;
  --header-h: 78px;
  --container: 1280px;
  --shell: 1320px;
  --shell-pad: 24px;
  --pad: 16px;
  --radius: 5px;
  --focus: #8f6b12;
}

@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo img {
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.btn-lg {
  min-height: 54px;
  padding: 0 24px;
}

.btn-gold {
  background: var(--gold);
  color: var(--on-gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-gold:active {
  background: var(--gold-pressed);
  border-color: var(--gold-pressed);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
}

.btn-nav {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 45;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  background: var(--hero);
  padding: calc(var(--header-h) + 24px) var(--shell-pad) calc(28px + env(safe-area-inset-bottom));
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  overflow: auto;
  z-index: 40;
  overscroll-behavior: none;
}

.site-nav.is-open {
  display: flex;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  text-align: center;
}

.nav-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 14px 8px;
  font-weight: 700;
  font-size: clamp(1.85rem, 8vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  border-bottom: 0;
}

.nav-list a:hover {
  color: var(--gold);
}

.nav-cta {
  display: grid;
  gap: 14px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.nav-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nav-cta-actions .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 0;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overscroll-behavior: none;
}

body.nav-open .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--hero);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.nav-open .logo img {
  filter: brightness(0) invert(1);
}

body.nav-open .nav-toggle-bar {
  background: #fff;
}

body.nav-open .mobile-cta {
  display: none !important;
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--hero);
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  height: clamp(720px, calc(100svh - var(--header-h)), 850px);
  min-height: 720px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 50%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 19, 0.62) 0%,
    rgba(20, 20, 19, 0.9) 18%,
    rgba(20, 20, 19, 0.78) 34%,
    rgba(20, 20, 19, 0.22) 48%,
    rgba(20, 20, 19, 0.12) 58%,
    rgba(20, 20, 19, 0.4) 78%,
    rgba(20, 20, 19, 0.82) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 108px var(--shell-pad) 32px;
  display: flex;
  flex: 1;
  min-height: 0;
}

.hero-content {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 1;
  min-height: 0;
}

.hero-copy {
  max-width: 22rem;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.eyebrow-gold {
  color: var(--gold);
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.65rem, 10.5vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin-top: 12px;
  max-width: 20.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  grid-row: 3;
}

.hero-actions .btn {
  width: 100%;
  min-height: 54px;
  border-radius: 0;
}

.hero-sub {
  height: clamp(620px, calc(88svh - var(--header-h)), 740px);
  min-height: 620px;
}

.hero-sub .hero-media img {
  object-position: 42% 58%;
}

.hero-sub .page-crumb {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.hero-sub .page-crumb a {
  color: rgba(255, 255, 255, 0.7);
}

.hero-sub .page-crumb a:hover {
  color: #fff;
}

.hero-sub .hero-copy {
  max-width: 34rem;
}

.hero-sub .hero-lead {
  max-width: 32rem;
}

.hero-sub h1 {
  max-width: none;
  font-size: clamp(2.15rem, 7vw, 3.1rem);
  line-height: 1.05;
}

.nd-trust {
  --nd-gold: #d4af37;
  background-color: #f8f9fa;
  padding: 5rem 2rem;
}

.nd-trust .container {
  padding-left: 0;
  padding-right: 0;
}

.nd-trust-head {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.nd-trust-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: center;
}

.nd-trust-head p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: #5b5b5b;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.nd-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.nd-trust-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.nd-trust-card:hover {
  transform: translateY(-5px);
}

.nd-trust-icon {
  display: flex;
  justify-content: center;
  color: #d4af37;
  margin-bottom: 1rem;
}

.nd-trust-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #1a1a1a;
}

.nd-trust-card p {
  margin: 0;
  color: #5b5b5b;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

.nd-trust-cta {
  text-align: center;
  margin-top: 3rem;
}

.nd-cta-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #1a1a1a;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.nd-cta-btn:hover {
  background-color: #c49c35;
  color: #1a1a1a;
}

.nd-kicker {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.nd-dial .nd-kicker {
  color: var(--gold);
}

.nd-dial {
  background: var(--hero);
  color: #fff;
  padding: 56px 0 64px;
  text-align: center;
}

.nd-number {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.nd-number:hover {
  color: var(--gold);
}

.nd-dial-meta {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nd-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nd-story,
.nd-steps,
.nd-where,
.nd-symptoms,
.nd-clarify {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0;
  background: transparent;
}

.nd-steps,
.nd-symptoms {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.nd-story h2,
.nd-steps h2,
.nd-where h2,
.nd-symptoms h2,
.nd-clarify h2 {
  max-width: none;
  margin: 0 0 1.5rem;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1a1a1a;
}

.nd-lead {
  margin: 0 0 2rem;
  color: #5b5b5b;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.nd-symptom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.nd-symptom-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e8e6;
}

.nd-symptom-list li:first-child {
  padding-top: 0;
}

.nd-symptom-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nd-symptom-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nd-symptom-list p {
  margin: 0;
  color: #5b5b5b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.nd-mid-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.nd-nap a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nd-nap a:hover {
  color: var(--gold);
}

.nd-cols {
  display: grid;
  gap: 2.5rem;
  max-width: none;
}

.nd-cols article {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e6;
}

.nd-cols article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nd-cols h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nd-cols p {
  margin: 0;
  color: #5b5b5b;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.nd-aside {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e6;
  max-width: none;
  color: #5b5b5b;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.nd-aside a {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nd-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  max-width: none;
}

.nd-steps-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.nd-steps-list li:last-child {
  margin-bottom: 0;
}

.nd-steps-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--gold-text);
}

.nd-steps-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nd-steps-list p {
  margin: 0;
  max-width: none;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  color: #5b5b5b;
  letter-spacing: 0;
}

.nd-where-lead {
  margin: 0;
  max-width: none;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  color: #5b5b5b;
}

.nd-where-lead a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nd-nap {
  margin: 0;
  padding: 20px var(--shell-pad) 28px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .nd-dial {
    padding: 72px 0 80px;
  }

  .hero-sub h1 {
    font-size: clamp(2.5rem, 3.2vw, 3.15rem);
    max-width: none;
    line-height: 1.06;
  }
}

.split-copy {
  display: grid;
  gap: 32px;
}

.split-copy h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
}

.split-copy p + p {
  margin-top: 12px;
}

.section-soft {
  background: var(--bg-soft);
}

.service-card p + p {
  margin-top: 10px;
}

.area-list-page {
  max-width: 640px;
}

.page-note {
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: none;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.page-note a {
  color: var(--text);
  font-weight: 700;
}

.process-list-3 {
  max-width: 960px;
}

@media (max-width: 767px) {
  .hero {
    display: block;
    height: auto;
    min-height: 780px;
    max-height: none;
    overflow: hidden;
    border-radius: 0;
  }

  .hero::before {
    content: none;
  }

  .hero-media {
    z-index: 0;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.72);
    background-image: none;
    z-index: 1;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 780px;
    padding: 140px 24px 32px;
    flex: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
  }

  .hero-copy {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    max-width: 22rem;
    margin-top: 55px; /* ~7% der Hero-Höhe */
  }

  .hero-copy::before {
    content: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 10vw, 50px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-shadow: none;
  }

  .hero-h1-area {
    display: none;
  }

  .hero-lead {
    margin-top: 26px;
    max-width: 20rem;
    font-size: 17px;
    line-height: 1.45;
    text-shadow: none;
  }

  .hero-note {
    margin-top: 14px;
    font-size: 14px;
    text-shadow: none;
  }

  .hero-actions {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    margin-top: clamp(35px, calc(15vh - 55px), 85px);
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    height: 56px;
    min-height: 56px;
    border-radius: 0;
  }

  .hero-media img {
    object-fit: cover;
    object-position: 40% 52%;
    transform: scale(1.28);
    transform-origin: 40% 70%;
  }

  .hero-sub {
    min-height: 640px;
  }

  .hero-sub .hero-inner {
    min-height: 640px;
    padding-top: 108px;
  }

  .hero-sub .hero-copy {
    margin-top: 20px;
  }

  .hero-sub .hero-lead {
    max-width: 22rem;
  }

  .hero-sub .hero-actions {
    margin-top: 28px;
  }

  .hero-sub .hero-media img {
    object-position: 48% 52%;
    transform: none;
  }
}

/* Sections */

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.section-intro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

#leistungen,
#notdienst,
#einsatzgebiet,
#kontakt,
#arbeitsweise,
#ablauf,
#arbeiten,
#faq {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Leistungen */

.section-leistungen {
  background: var(--bg-soft);
  padding: 80px 0 88px;
}

.section-leistungen .section-head {
  margin-bottom: 36px;
}

.section-leistungen h2 {
  max-width: 22ch;
}

.section-leistungen .section-intro {
  margin-top: 16px;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 0;
  padding: 26px 22px 24px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(21, 21, 21, 0.04),
    0 14px 32px rgba(21, 21, 21, 0.06);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

/* Notdienst */

.section-notdienst {
  background: var(--hero);
  color: #fff;
  padding: 80px 0;
}

.section-notdienst h2 {
  color: #fff;
  max-width: 18ch;
}

.section-notdienst p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 34rem;
}

.notdienst-contact {
  margin-top: 36px;
}

.notdienst-phone {
  display: inline-block;
  color: #fff;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.notdienst-phone:hover {
  color: var(--gold);
}

.notdienst-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notdienst-actions .btn {
  width: 100%;
  border-radius: 0;
}

/* Warum MAK */

.section-way .section-head {
  margin-bottom: 36px;
}

.section-way h2 {
  max-width: 18ch;
}

.way-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.way-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.way-icon {
  color: var(--gold);
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.way-list strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.way-list span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.5;
}

/* Arbeitsablauf */

.section-process {
  background: var(--bg-soft);
  padding-bottom: 56px;
}

.section-process .section-head {
  margin-bottom: 36px;
}

.section-process h2 {
  max-width: 20ch;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  box-shadow: none;
}

.process-list li:not(:last-child) .process-num::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: -20px;
  width: 1px;
  background: rgba(211, 174, 67, 0.35);
}

.process-num {
  position: relative;
  grid-row: 1 / span 2;
  align-self: start;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-text);
  line-height: 1.2;
  padding-top: 2px;
}

.process-list strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-list span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.5;
}

/* Einsatzgebiet */

.section-area {
  background: var(--bg);
  padding-top: 56px;
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.section-area .section-head {
  margin-bottom: 28px;
}

.section-area h2 {
  max-width: 18ch;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.area-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--muted);
}

.area-list li:nth-child(odd) {
  padding-right: 12px;
}

.area-list li:nth-child(even) {
  padding-left: 12px;
}

.area-list .is-primary {
  color: var(--text);
  font-weight: 700;
}

.area-list a {
  color: inherit;
}

.area-list a:hover {
  color: var(--gold-hover);
}

.area-local-note {
  margin: 28px 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
}

.area-local-note a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-local-note a:hover {
  color: var(--gold-hover);
}

.area-map-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.area-map {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-soft);
  border: 1px solid rgba(21, 21, 21, 0.08);
  overflow: hidden;
}

.area-map-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #1a1a18;
  border-bottom: 1px solid rgba(21, 21, 21, 0.06);
}

.area-map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  display: block;
}

.area-map-pin {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 6px 16px rgba(21, 21, 21, 0.35);
  z-index: 2;
}

.area-map-ring {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(211, 174, 67, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(211, 174, 67, 0.12);
}

.area-map-copy {
  padding: 24px 22px 26px;
}

.area-map-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.area-map-place {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.area-map-address {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.area-map-btn {
  margin-top: 20px;
  width: 100%;
  border-radius: 0;
}

/* Galerie */

.section-gallery {
  background: var(--bg-soft);
}

.section-gallery .section-head {
  margin-bottom: 32px;
}

.section-gallery h2 {
  max-width: 18ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1a1a18;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 16px;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0.78) 55%,
    rgba(10, 10, 10, 0.9) 100%
  );
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.gallery-caption-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.gallery-caption-text {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.gallery-item:hover img,
.gallery-item.is-active img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.gallery-item:hover figcaption,
.gallery-item.is-active figcaption,
.gallery-item:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item {
    cursor: default;
  }
}

/* FAQ */

.section-faq {
  background: var(--bg);
  padding-top: 72px;
  padding-bottom: 80px;
}

.section-faq .section-head {
  margin-bottom: 32px;
}

.section-faq h2 {
  max-width: 22ch;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid var(--border);
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 40px 20px 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-answer {
  padding: 0 40px 20px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 58ch;
}

.faq-answer a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--gold-hover);
}

/* Kontakt */

.section-contact {
  background: var(--bg-soft);
  padding-top: 72px;
  padding-bottom: 80px;
}

.section-contact .section-head {
  margin-bottom: 32px;
}

.section-contact h2 {
  max-width: 18ch;
}

.contact-panel {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-primary {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.contact-tile {
  display: block;
  padding: 22px 20px;
  background: transparent;
  border: 0;
  transition: background-color 0.15s ease;
}

.contact-tile--email {
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.contact-tile--email .contact-tile-value {
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-tile:hover {
  background: rgba(211, 174, 67, 0.06);
}

.contact-tile-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.contact-tile-value {
  display: block;
  font-size: clamp(1.35rem, 5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.contact-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: #fff;
  color: var(--text);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.contact-social-btn--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.contact-social-btn--instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
  color: #fff;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.contact-block {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.contact-block:last-child {
  border-bottom: 0;
}

.contact-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.contact-block a,
.contact-block p {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.contact-block a:hover {
  color: var(--gold-hover);
}

/* Footer */

.site-footer {
  background: var(--hero);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 48px 0 calc(40px + env(safe-area-inset-bottom));
  border-top: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.logo-footer {
  width: fit-content;
  margin: 0 auto;
}

.logo-footer img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-area {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.footer-nap {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.48);
}

.footer-nap a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
}

.footer-nap a:hover {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-nav-legal,
.footer-nav-local {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: min(280px, 85%);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gold);
}

.footer-sep {
  margin: 0 0.35em;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-phone:hover {
  color: var(--gold);
}

/* Unterseiten */

.page-hero {
  padding: calc(var(--header-h) + 48px) 0 40px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  max-width: 22rem;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero-lead {
  margin-top: 14px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
}

.page-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-actions .btn {
  width: 100%;
  border-radius: 0;
}

.page-content {
  padding: 48px 0 72px;
}

.page-block + .page-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.page-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.page-block p,
.page-block li {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 42rem;
}

.page-block p + p {
  margin-top: 12px;
}

.page-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.page-list li {
  position: relative;
  padding-left: 18px;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.page-crumb {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.page-crumb a:hover {
  color: var(--gold-hover);
}

.page-block h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-note {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: none;
  max-width: 42rem;
}

.page-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.page-faq .faq-item {
  max-width: 42rem;
}

/* Mobile CTA bar */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border);
}

.mobile-cta:not([hidden]) {
  display: grid;
}

.mobile-cta .btn {
  min-height: 52px;
  border-radius: 0;
  gap: 8px;
  font-size: 0.9rem;
  padding: 0 12px;
}

body.cta-bar-visible {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

/* Tablet */

@media (min-width: 768px) {
  :root {
    --pad: 24px;
    --shell-pad: 24px;
    --header-h: 80px;
  }

  .logo img {
    height: 46px;
  }

  .section {
    padding: 88px 0;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 30px 26px 28px;
  }

  .service-card h3 {
    font-size: 1.16rem;
  }

  .section-leistungen {
    padding: 96px 0;
  }

  .notdienst-actions {
    flex-direction: row;
  }

  .notdienst-actions .btn {
    width: auto;
    min-width: 180px;
  }

  .contact-panel {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-areas:
      "primary social"
      "meta meta";
    gap: 16px 20px;
    align-items: stretch;
  }

  .contact-primary {
    grid-area: primary;
    min-height: 168px;
    display: flex;
    flex-direction: column;
  }

  .contact-tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 28px;
    flex: 1;
  }

  .contact-tile-value {
    font-size: clamp(1.55rem, 2.3vw, 1.95rem);
  }

  .contact-tile--email .contact-tile-value {
    font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  }

  .contact-social {
    grid-area: social;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
  }

  .contact-social-btn {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 68px;
  }

  .contact-meta {
    grid-area: meta;
    margin-top: 4px;
    grid-template-columns: 1fr 1fr;
  }

  .contact-block {
    padding: 24px 28px;
    border-bottom: 0;
    border-right: 1px solid rgba(21, 21, 21, 0.08);
  }

  .contact-block:last-child {
    border-right: 0;
  }

  .area-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .section-process {
    padding-bottom: 64px;
  }

  .section-area {
    padding-top: 64px;
  }

  .area-list li,
  .area-list li:nth-child(odd),
  .area-list li:nth-child(even) {
    padding: 18px 16px 18px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 3;
  }

  .gallery-item:last-child {
    aspect-ratio: 16 / 10;
  }

  .way-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }

  .footer-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0;
  }

  .footer-brand {
    align-items: flex-start;
    flex: 0 0 auto;
    margin-right: 64px;
    gap: 12px;
    min-width: 0;
  }

  .logo-footer {
    margin: 0;
  }

  .logo-footer img {
    height: 48px;
  }

  .footer-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-nav-main {
    flex: 0 0 auto;
    margin-right: 56px;
  }

  .footer-nav-legal,
  .footer-nav-local {
    padding-top: 0;
    border-top: 0;
    width: auto;
    flex: 0 0 auto;
  }

  .footer-nav-local {
    gap: 12px;
    margin-right: auto;
  }

  .footer-nav-local a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
  }

  .footer-nav-local a:hover {
    color: var(--gold);
  }

  .footer-nav-legal {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0 26px;
    margin-left: 48px;
  }

  .page-actions {
    flex-direction: row;
  }

  .page-actions .btn {
    width: auto;
    min-width: 180px;
  }

  .page-hero {
    padding: calc(var(--header-h) + 64px) 0 56px;
  }

  .page-hero h1 {
    max-width: 20ch;
  }

  .page-content {
    padding: 64px 0 96px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
    padding-top: 20px;
    text-align: center;
  }
}

/* Desktop navigation + split hero */

@media (min-width: 1024px) {
  :root {
    --pad: 40px;
    --shell-pad: 40px;
    --header-h: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    padding: 0;
    overflow: visible;
    background: transparent;
    flex: 1;
    z-index: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 4px;
    margin-left: auto;
    text-align: left;
  }

  .nav-list a {
    min-height: auto;
    padding: 8px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    color: var(--text);
    border: 0;
    justify-content: flex-start;
  }

  .nav-list a:hover {
    color: var(--gold-hover);
  }

  .nav-cta {
    display: none;
  }

  .site-nav .btn-nav {
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
  }

  .nav-toggle {
    margin-left: 0;
  }

  .logo img {
    height: 52px;
  }

  .hero {
    height: 700px;
    min-height: 680px;
    max-height: 720px;
  }

  .hero-sub {
    height: 620px;
    min-height: 580px;
    max-height: 640px;
  }

  .hero-sub .hero-content {
    width: 58%;
    max-width: 640px;
  }

  .split-copy {
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: start;
  }

  .hero-media {
    left: auto;
    width: 50%;
  }

  .hero-media img {
    object-position: 58% 44%;
    transform: none;
  }

  .hero-media::after {
    background: linear-gradient(
      90deg,
      #191918 0%,
      rgba(25, 25, 24, 0.82) 8%,
      rgba(25, 25, 24, 0.42) 22%,
      rgba(25, 25, 24, 0.12) 32%,
      rgba(25, 25, 24, 0) 42%
    );
  }

  .hero-inner {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 56%;
    max-width: 620px;
    padding: 0;
    margin-top: -8px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(4rem, 4.4vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.032em;
  }

  .hero-sub h1 {
    font-size: clamp(2.5rem, 3.2vw, 3.15rem);
    line-height: 1.06;
    max-width: none;
  }

  .hero-sub .hero-lead {
    font-size: 1.125rem;
    max-width: 34rem;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1.25rem;
    max-width: 580px;
    line-height: 1.45;
  }

  .hero-note {
    margin-top: 10px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    grid-row: auto;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 0;
  }

  .section {
    padding: 104px 0;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .service-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .process-list-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 32px 28px 30px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .section-leistungen {
    padding: 112px 0;
  }

  .section-leistungen .section-head {
    margin-bottom: 48px;
  }

  .notdienst-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
  }

  .notdienst-contact {
    margin-top: 0;
  }

  .notdienst-phone {
    font-size: 2.75rem;
  }

  .way-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 28px;
    border-top: 0;
  }

  .way-list li {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 0;
    border-top: 1px solid var(--border);
    padding-top: 22px;
  }

  .way-icon {
    margin: 0 0 16px;
  }

  .process-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 0 24px;
    border-top: 0;
  }

  .process-list-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding: 22px 0 0;
    border-bottom: 0;
    border-top: 1px solid rgba(21, 21, 21, 0.12);
  }

  .process-list li:not(:last-child) .process-num::after {
    content: none;
  }

  .process-num {
    grid-row: auto;
    margin-bottom: 14px;
    padding-top: 0;
  }

  .area-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .area-layout .area-list {
    grid-template-columns: 1fr 1fr;
  }

  .area-layout .area-list li {
    padding: 20px 20px 20px 0;
  }

  .area-map {
    display: flex;
    flex-direction: column;
  }

  .area-map-visual {
    min-height: 240px;
    height: 240px;
    border-bottom: 0;
  }

  .area-map-copy {
    padding: 28px 28px 30px;
  }

  .section-process {
    padding-bottom: 72px;
  }

  .section-area {
    padding-top: 72px;
  }

  .section-faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-faq .section-head {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-faq h2 {
    max-width: none;
  }

  .section-faq .section-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-list {
    width: 100%;
    max-width: 720px;
  }

  .faq-item summary {
    padding: 24px 48px 24px 0;
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 48px 24px 0;
  }

  .faq-answer p {
    font-size: 1.02rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  :root {
    --pad: 48px;
    --shell-pad: 48px;
  }

  .service-grid {
    gap: 20px;
  }
}

@media (min-width: 1440px) {
  .hero {
    height: 720px;
  }
}

/* Hero load-in — same timing mobile + desktop */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  --hero-in-duration: 1.2s;
  --hero-in-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-in-1: 0.2s;
  --hero-in-2: 0.45s;
  --hero-in-3: 0.7s;
  --hero-in-4: 0.9s;
  --hero-in-actions: 1.1s;
}

.hero .hero-copy > *,
.hero .hero-actions {
  animation-name: hero-fade-up;
  animation-duration: var(--hero-in-duration);
  animation-timing-function: var(--hero-in-ease);
  animation-fill-mode: both;
}

.hero .hero-copy > *:nth-child(1) {
  animation-delay: var(--hero-in-1);
}

.hero .hero-copy > *:nth-child(2) {
  animation-delay: var(--hero-in-2);
}

.hero .hero-copy > *:nth-child(3) {
  animation-delay: var(--hero-in-3);
}

.hero .hero-copy > *:nth-child(4) {
  animation-delay: var(--hero-in-4);
}

.hero .hero-actions {
  animation-delay: var(--hero-in-actions);
}

/* Scroll reveal — mobile + desktop */
.has-reveal .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
