/* Rheinpfalz Schlüsseldienst Frankenthal – sachliche Service-Seite */

:root {
  --bg: #f6f1e8;
  --surface: #ffffff;
  --surface-muted: #efe7da;
  --text: #242424;
  --text-muted: #5f5a52;
  --border: #d8cdbe;
  --green: #2f5d3a;
  --green-dark: #244a2e;
  --accent: #a9742a;
  --accent-hover: #8f6124;
  --dark: #252a2a;
  --radius: 6px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --max-width: 1280px;
  --max-width-wide: 1320px;
  --header-height: 64px;
  --sticky-bar-height: 72px;
  --section-pad: 3.5rem;
  --section-pad-lg: 5rem;
  --prose-max: 40rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

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

body.menu-open { overflow: hidden; }

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

a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover { color: var(--accent-hover); }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.container--hero,
.container--wide { max-width: var(--max-width-wide); }

.container--faq { max-width: 52rem; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.375rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 46px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:active { opacity: 0.9; }

.btn--phone {
  background: var(--green);
  color: var(--surface);
  border-color: var(--green);
}

.btn--phone:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--surface);
}

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

.btn--outline:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.btn--ghost {
  background: transparent;
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

.btn--block { width: 100%; }

.btn--lg { padding: 0.875rem 1.5rem; min-height: 50px; }

.btn--xl { padding: 1rem 1.75rem; font-size: 1.0625rem; min-height: 52px; }

.btn--hero { font-size: 1.0625rem; min-height: 52px; }

.btn--header { font-size: 0.9375rem; padding: 0.5rem 1rem; min-height: 42px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-decoration: none;
  color: var(--text);
  line-height: 1.2;
}

.logo:hover { color: var(--text); }

.logo__name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo__tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-desktop { display: none; align-items: center; gap: 1.25rem; }

.site-nav.nav-desktop a,
.site-nav.nav-desktop .nav-dropdown__toggle {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.site-nav.nav-desktop a:hover,
.site-nav.nav-desktop .nav-dropdown__toggle:hover {
  color: var(--text);
}

.site-nav.nav-desktop a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.125rem;
}

.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown__toggle[aria-expanded="true"] {
  color: var(--text);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 200;
  min-width: 13.5rem;
  padding: 0.375rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(36, 36, 36, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-dropdown__menu a:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
  background: var(--surface-muted);
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (hover: hover) and (min-width: 768px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.nav-mobile__group {
  border-bottom: 1px solid var(--border);
}

.nav-mobile__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nav-mobile__toggle::after {
  content: "+";
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nav-mobile__group.is-open .nav-mobile__toggle::after {
  content: "−";
}

.nav-mobile__sub {
  display: none;
  flex-direction: column;
  padding: 0 0 0.5rem 0.75rem;
}

.nav-mobile__group.is-open .nav-mobile__sub {
  display: flex;
}

.nav-mobile__sub a {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  border-bottom: none;
}

.nav-desktop a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-desktop a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.menu-toggle {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}

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

.nav-mobile a {
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-of-type { border-bottom: none; margin-top: 0.75rem; }

/* Hero */
.hero {
  padding: 1.5rem 0 1.75rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 0;
  align-items: start;
}

.hero-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 7.5vw, 2.125rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.015em;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 34rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0;
}

.hero-ctas__secondary {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.hero-ctas__secondary:hover {
  color: var(--green);
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  width: fit-content;
  max-width: 100%;
  margin: 0.625rem 0 0;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: none;
}

.google-review-badge:hover {
  border-color: #c9bfb0;
  color: var(--text);
}

.google-review-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.google-review-badge__logo {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.google-review-badge__score {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}

.google-review-badge__stars {
  color: #b9862e;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.google-review-badge__source {
  color: var(--green);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card--hero-aside {
  display: none;
}

.contact-card {
  background: var(--dark);
  color: var(--surface);
  padding: 1.25rem 1.375rem;
  border: 1px solid #1e2323;
  border-radius: var(--radius);
}

.contact-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
}

.contact-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-card__phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--surface);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.contact-card__phone:hover { color: var(--surface); opacity: 0.9; }

.contact-card__price {
  margin: 0 0 0.25rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--surface);
}

.contact-card__price-note {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.contact-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.contact-card__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-card__list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1rem;
  line-height: 1.5;
}

.contact-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* Lockpreis-Hinweis direkt unter Hero */
.lockprice-warning {
  padding: 0.75rem 0 1.25rem;
  background: var(--bg);
}

.lockprice-warning__inner {
  padding: 0.875rem 1rem;
  background: #fffdf9;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.lockprice-warning__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lockprice-warning__inner h2 {
  margin: 0;
  font-size: clamp(1.2rem, 4.8vw, 1.4375rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.lockprice-warning__lock {
  color: var(--accent);
  white-space: nowrap;
}

.lockprice-warning__lead {
  margin: 0.375rem 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.lockprice-rules {
  margin: 0 0 0.5rem;
}

.lockprice-rules p {
  margin: 0;
  padding: 0.4375rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.lockprice-rules p:first-child {
  padding-top: 0;
  border-top: none;
}

.lockprice-rules strong {
  color: var(--text);
  font-weight: 600;
}

.lockprice-warning__note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.section--muted {
  background: var(--surface-muted);
}

.section--surface {
  background: var(--surface);
}

.section--warm {
  background: #f9f5ef;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-intro {
  margin: 0 0 1.5rem;
  max-width: var(--prose-max);
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title--center {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-cta-text {
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
}

.lokal-eta { color: var(--text-muted); }

.lokal-cta { margin: 1.25rem 0 0; }

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.map-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}

.map-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.map-card__header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.map-card__header a {
  color: var(--green);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.map-card__header a:hover {
  color: var(--green-dark);
}

.map-embed {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--surface-muted);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 860px) {
  .local-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .map-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.375rem;
  }

  .map-embed {
    aspect-ratio: 1 / 1;
    min-height: 260px;
  }
}

/* Split blocks */
.split-block {
  display: grid;
  gap: 2rem;
}

.split-block__main p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: var(--prose-max);
}

.split-block__main p:last-child {
  margin-bottom: 0;
}

.split-block__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-block--expertise,
.split-block--lokal {
  align-items: start;
}

.split-block--expertise {
  gap: 2rem;
}

/* Photo placeholders */
.photo-slot {
  margin: 0;
}

.photo-slot__box {
  aspect-ratio: 16 / 9;
  max-height: 360px;
  border: 1px solid var(--border);
  background: #efe7da;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
  color: var(--text);
  border-radius: var(--radius);
}

.photo-slot--standard .photo-slot__box,
.photo-slot--work .photo-slot__box {
  aspect-ratio: 4 / 3;
  max-height: 380px;
}

.split-block--expertise .photo-slot--work {
  width: 100%;
}

.photo-slot__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.photo-slot strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.photo-slot small,
.photo-slot__hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.photo-slot__hint + .photo-slot__hint {
  margin-top: 0.35rem;
}

.photo-slot figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Expertise / Arbeitsweise */
.expertise-content .section-intro {
  margin-bottom: 0.5rem;
}

.expertise-points h3 {
  margin: 1.25rem 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.expertise-points h3:first-child {
  margin-top: 1rem;
}

.expertise-points p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: var(--prose-max);
}

.expertise-note {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: var(--prose-max);
}

.lokal-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: var(--prose-max);
}

.lokal-text .section-intro {
  margin-bottom: 1rem;
}

.lokal-text .lokal-eta {
  margin-bottom: 0;
}

/* Numbered list */
.numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: item;
}

.numbered-list--spaced li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  counter-increment: item;
}

.numbered-list--spaced li:last-child { border-bottom: none; }

.numbered-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.numbered-list li strong::before {
  content: counter(item) ". ";
  color: var(--text-muted);
}

.numbered-list li span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Notice */
.notice-box {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  max-width: 52rem;
}

.notice-box strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.notice-box p { margin: 0; color: var(--text-muted); font-size: 0.9375rem; }

.notice-box--subtle {
  background: var(--surface);
  margin-bottom: 0;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 560px;
}

.price-table th,
.price-table td {
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.price-table th {
  background: var(--dark);
  color: var(--surface);
  font-weight: 600;
  font-size: 0.875rem;
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table td:first-child { font-weight: 600; }

.price-table .price-cell {
  font-weight: 600;
  color: var(--text);
}

.festpreis-block,
.zuschlag-block {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.375rem;
  max-width: 52rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.festpreis-block h3,
.zuschlag-block h3 {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.festpreis-block > p,
.zuschlag-block > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: var(--prose-max);
}

.festpreis-cols {
  display: grid;
  gap: 1.25rem;
}

.festpreis-cols h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.festpreis-cols ul {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.festpreis-cols li + li {
  margin-top: 0.25rem;
}

.payment-hint {
  margin: 1rem 0 0;
  max-width: 52rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.payment-hint strong {
  color: var(--text);
  font-weight: 600;
}

.price-footer-note {
  margin: 0 0 1rem;
  max-width: 52rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.note {
  margin: 0 0 1rem;
  padding: 1rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 52rem;
}

.ab-preis-hinweis {
  margin: 0 0 1.5rem;
  padding: 1rem 1.125rem;
  max-width: 52rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
}

.ab-preis-hinweis h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

.ab-preis-hinweis p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.expertise-caution {
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: var(--surface);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  max-width: var(--prose-max);
}

/* Definition list under prices */
.def-list {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.def-list--3 {
  display: grid;
  gap: 1rem;
}

.def-list div { margin: 0; }

.def-list dt {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.125rem;
}

.def-list dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Process list */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.process-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.process-list li:last-child { border-bottom: none; }

.process-list__num {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding-top: 0.125rem;
}

.process-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Feature list */
.feature-list {
  display: grid;
  gap: 0;
}

.feature-list__item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list__item:last-child { border-bottom: none; }

.feature-list__item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-list__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Service list */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-list__item {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.service-list__item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.service-list__item h3 a {
  color: var(--text);
  text-decoration: none;
}

.service-list__item h3 a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-list__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Compare */
.compare-block {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-block__col {
  padding: 1.25rem 1.375rem;
  border-bottom: 1px solid var(--border);
}

.compare-block__col:last-child { border-bottom: none; }

.compare-block__col h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.compare-block__col p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Side panel */
.side-panel {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.side-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dash-list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.dash-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* FAQ */
.faq-plain {
  border-top: 1px solid var(--border);
}

.faq-plain__item {
  border-bottom: 1px solid var(--border);
}

.faq-plain__item summary {
  padding: 1rem 2rem 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq-plain__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
}

.faq-plain__item[open] summary::after { content: "−"; }

.faq-plain__answer {
  padding: 0 0 1rem;
}

.faq-plain__answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* CTA banner */
.cta-banner {
  padding: var(--section-pad-lg) 0;
  background: var(--dark);
  color: var(--surface);
  text-align: center;
  border-bottom: none;
}

.cta-banner h2 {
  margin: 0 auto 0.75rem;
  max-width: 28rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--surface);
}

.cta-banner > .container > p {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trust-line {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover { color: var(--surface); text-decoration: underline; }

.footer-brand {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--surface);
}

.footer-col p { margin: 0; line-height: 1.7; font-size: 0.9375rem; }

.footer-col__title {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-address-whisper {
  display: block;
  margin-top: 8px;
  font-size: 8px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.028);
}

.legal-contact-image {
  margin: 18px 0 30px;
}

.legal-contact-image--compact {
  max-width: 460px;
}

.legal-contact-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfaf7;
}

.legal-nap-whisper {
  margin: 18px 0;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(22, 22, 22, 0.055);
}

.legal-contact-whisper {
  margin: 10px 0 16px;
  font-size: 8px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--surface);
}

.legal-contact-whisper a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 640px) {
  .legal-contact-image--compact {
    max-width: 100%;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-links a { font-size: 0.9375rem; }

.footer-bottom {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.region-overview-box {
  margin-top: 1.5rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.region-overview-box__title {
  margin: 0 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.region-overview-box__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
}

.inspection-list--compact {
  max-width: 28rem;
}

/* Sticky call */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.5rem 1rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-call__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  width: 100%;
  min-height: 52px;
  padding: 0.625rem 1rem;
  background: var(--green);
  color: var(--surface);
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--green-dark);
}

.sticky-call__link:hover {
  background: var(--green-dark);
  color: var(--surface);
}

.sticky-call__main { font-weight: 600; font-size: 1rem; }

.sticky-call__sub { font-size: 0.8125rem; opacity: 0.9; }

/* Mobile table */
@media (max-width: 639px) {
  .price-table thead { display: none; }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td { display: block; width: 100%; }

  .price-table tr {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .price-table td {
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border);
  }

  .price-table td:last-child { border-bottom: none; }

  .price-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
  }

  .table-wrap { border: none; background: transparent; }

  body.has-sticky-call {
    padding-bottom: var(--sticky-bar-height);
  }

  .hero-ctas .btn { width: 100%; }

  .google-review-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .logo__tag { display: none; }

  .split-block--benefits .split-block__main { margin-bottom: 0.5rem; }

  .photo-slot__box {
    max-height: none;
    min-height: 220px;
    padding: 1.25rem;
  }

  .photo-slot strong {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  body { padding-bottom: 0; }

  .hero-ctas { flex-direction: row; flex-wrap: wrap; }

  .lockprice-warning__inner {
    padding: 1rem 1.25rem;
  }

  .festpreis-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .def-list--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .compare-block {
    grid-template-columns: 1fr 1fr;
  }

  .compare-block__col {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .compare-block__col:last-child { border-right: none; }

  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
  }

  .sticky-call { display: none; }
}

@media (min-width: 768px) {
  :root {
    --header-height: 72px;
    --section-pad: 4.5rem;
    --section-pad-lg: 5.5rem;
  }

  .nav-desktop { display: flex; }

  .menu-toggle { display: none; }

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

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .hero-lead {
    font-size: 1.0625rem;
    margin-bottom: 1.125rem;
  }

  .google-review-badge {
    margin-top: 0.875rem;
  }

  .hero-ctas {
    gap: 0.75rem;
  }

  .hero-ctas__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .hero-ctas__secondary:hover {
    background: var(--surface-muted);
    color: var(--text);
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .contact-card--hero-aside {
    display: block;
  }

  .split-block {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .split-block--benefits {
    grid-template-columns: minmax(0, 22rem) 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .feature-list__item:nth-last-child(-n+2) { border-bottom: none; }

  .service-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .service-list__item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 2.5rem; }
}

/* Service subpages */
.page-breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.page-breadcrumb__sep {
  margin: 0 0.25rem;
  opacity: 0.6;
}

.page-breadcrumb [aria-current="page"] {
  color: var(--text);
}

.local-focus-heading {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.service-hero {
  padding: 1.25rem 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.service-hero h1 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.015em;
}

.service-hero__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.55;
}

.service-hero .hero-ctas {
  margin-bottom: 0;
}

.service-hero .google-review-badge {
  margin-top: 0.75rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding-top: 0.25rem;
}

.related-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--green-dark);
}

.related-links a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.related-links__current {
  font-weight: 600;
  color: var(--text-muted);
}

/* Service page layouts */
.service-types {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .service-types {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service-types__item {
  padding: 1.125rem 1.25rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.service-types__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.service-types__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.dash-list li + li {
  margin-top: 0.375rem;
}

.dash-list--spaced li + li {
  margin-top: 0.75rem;
}

.dash-list--spaced li {
  line-height: 1.55;
}

.service-hint--compact {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem 0.875rem;
}

/* Technical / guide page layouts */
.comparison-table,
.service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 520px;
}

.comparison-table th,
.comparison-table td,
.service-table th,
.service-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table thead th,
.service-table thead th {
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border-bottom-width: 2px;
}

.comparison-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td,
.comparison-table tbody tr:last-child th,
.service-table tbody tr:last-child td {
  border-bottom: none;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.case-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
  border-top: none;
}

.case-list--grid .case-list__item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

@media (max-width: 760px) {
  .case-list--grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.case-list__item {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.case-list__item h3 {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.case-list--grid .case-list__item h3 {
  margin-bottom: 6px;
}

.case-list__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: var(--prose-max);
}

.case-list--compact .case-list__item {
  padding: 1rem 0;
}

.method-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .method-block--wide {
    grid-column: 1 / -1;
  }
}

.method-block {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.method-block h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.method-block p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.method-grid--compact .method-block {
  padding: 1rem 0;
}

.technical-note {
  margin: 1.25rem 0 0;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section--warm .technical-note {
  background: var(--surface);
}

.inspection-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: var(--prose-max);
}

.inspection-list li {
  position: relative;
  padding: 0.375rem 0 0.375rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.inspection-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--green-dark);
}

.definition-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .definition-grid {
    grid-template-columns: 1fr min(18rem, 35%);
    gap: 2rem;
    align-items: start;
  }
}

.definition-list {
  margin: 1rem 0 0;
}

.definition-list__item {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.definition-list__item:first-child {
  border-top: 1px solid var(--border);
}

.definition-list dt {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.definition-list dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.door-diagram-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.door-diagram-placeholder__title {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}

.door-diagram-placeholder__parts {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.door-diagram-placeholder__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Content images */
.content-image {
  margin: 0;
}

.content-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.content-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.content-image--diagram img {
  object-fit: contain;
  max-height: 20rem;
}

.content-image--work img,
.content-image--detail img {
  object-fit: cover;
  max-height: 18rem;
}

.definition-grid .content-image--diagram {
  align-self: start;
}

@media (min-width: 768px) {
  .definition-grid .content-image--diagram {
    max-width: 22rem;
  }

  .definition-grid .content-image--diagram img {
    max-height: 22rem;
  }
}

.section-with-image {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-with-image {
    grid-template-columns: 1fr min(20rem, 42%);
    gap: 2rem;
    align-items: start;
  }
}

.section-with-image__content h2 {
  margin-top: 0;
}

.section-with-image__content .section-intro {
  margin-bottom: 0;
}

.section-with-image .content-image--detail img {
  max-height: 16rem;
}

@media (min-width: 768px) {
  .section-with-image .content-image--detail img {
    max-height: 14rem;
  }
}

/* Diagram & photo slots (legacy placeholders) */
.diagram-slot,
.photo-slot {
  margin: 0;
}

.diagram-slot__box,
.photo-slot__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  max-height: 22.5rem;
}

.photo-slot__box {
  aspect-ratio: 16 / 10;
  max-height: 20rem;
}

.diagram-slot__label,
.photo-slot__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.diagram-slot__box strong,
.photo-slot__box strong {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.diagram-slot__box small,
.photo-slot__box small {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 16rem;
}

.diagram-slot figcaption,
.photo-slot figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.method-with-photo {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .method-with-photo {
    grid-template-columns: 1fr min(22rem, 38%);
    gap: 2rem;
    align-items: start;
  }

  .method-with-photo .content-image--work {
    position: sticky;
    top: 5rem;
    max-width: 20rem;
    justify-self: end;
  }

  .method-with-photo .content-image--work img {
    max-height: 16rem;
  }
}

.standard-special-compare {
  display: grid;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

@media (min-width: 640px) {
  .standard-special-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.standard-special-compare__col {
  padding: 1.125rem 1.25rem;
}

.standard-special-compare__col + .standard-special-compare__col {
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .standard-special-compare__col + .standard-special-compare__col {
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.standard-special-compare__col h3 {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.standard-special-compare .inspection-list {
  margin: 0;
}

.avoidance-note {
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: #faf7f2;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.avoidance-note h2 {
  margin-top: 0;
}

.avoidance-note .section-intro {
  margin-bottom: 1rem;
}

.avoidance-note__footer {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-hint {
  margin-top: 1.25rem;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  background: var(--surface-muted);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-hint--compact {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem 0.875rem;
}

.related-services {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .related-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 960px) {
  .related-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-services__item {
  padding: 1rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.related-services__item h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
}

.related-services__item h3 a {
  color: var(--green-dark);
  text-decoration: none;
}

.related-services__item h3 a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.related-services__item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .service-hero {
    padding: 1.75rem 0 2rem;
  }

  .service-hero h1 {
    font-size: clamp(1.625rem, 2.5vw, 2rem);
  }

  .service-hero__lead {
    font-size: 1.0625rem;
  }

  .nav-desktop {
    display: flex;
  }
}

/* Service page: Türöffnung layout */
.service-page .service-hero {
  background: #f9f5ef;
}

.service-page .container:not(.container--faq) {
  max-width: 1080px;
}

.service-page .text-narrow {
  max-width: 47.5rem;
}

.service-page .section-intro.text-narrow {
  max-width: 47.5rem;
}

.subsection-title {
  margin: 1.25rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.orient-grid {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .orient-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.orient-grid__item {
  padding: 1rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.orient-grid__item h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.orient-grid__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.media-split__content > h2:first-child {
  margin-top: 0;
}

.media-split__content .section-intro {
  margin-bottom: 1.25rem;
}

@media (max-width: 860px) {
  .media-split {
    grid-template-columns: 1fr;
  }
}

.definition-list--compact {
  margin-bottom: 1.75rem;
}

.service-page .content-image--wide {
  max-width: 100%;
  margin-top: 0.25rem;
}

.service-page .content-image--diagram img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  max-height: none;
  min-height: 280px;
  background: var(--surface);
}

.service-page .content-image--work img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: none;
  min-height: 340px;
}

.service-page .content-image--work.content-image--ratio-16-9 img {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

@media (min-width: 861px) {
  .service-page .content-image--work img {
    max-height: 420px;
  }

  .service-page .content-image--work.content-image--ratio-16-9 img {
    max-height: 480px;
  }
}

.service-page .content-image--detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: none;
  min-height: 280px;
}

@media (min-width: 861px) {
  .service-page .content-image--detail img {
    min-height: 300px;
    max-height: 380px;
  }
}

.media-split--detail {
  margin-bottom: 1.5rem;
}

.service-page .media-split .photo-slot--work .photo-slot__box {
  aspect-ratio: 4 / 3;
  max-height: none;
  min-height: 280px;
  width: 100%;
}

@media (min-width: 861px) {
  .service-page .media-split .photo-slot--work .photo-slot__box {
    min-height: 340px;
    max-height: 420px;
  }
}

.price-section-block {
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-section-block__title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.price-section-block .table-wrap {
  margin: 0;
}

.price-section-block--special {
  background: var(--surface);
}

.price-section-block--special .inspection-list {
  margin: 0;
}

.material-price-box {
  margin-top: 1.5rem;
  padding: 1.125rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.material-price-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.material-price-box .inspection-list {
  margin-bottom: 0.75rem;
}

.material-price-box__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.price-cta {
  margin-top: 1.5rem;
  padding: 1.125rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-cta p {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 42rem;
}

.price-cta .btn {
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
}
