:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5b6773;
  --line: rgba(16, 24, 32, 0.14);
  --paper: #f6f7f5;
  --white: #ffffff;
  --red: #c92f2f;
  --red-dark: #9f2024;
  --blue: #153047;
  --blue-soft: #dce8f1;
  --green: #6e8b62;
  --text-body: #41505c;
  --shadow: 0 24px 80px rgba(10, 18, 28, 0.26);
  --shadow-card: 0 18px 44px rgba(16, 24, 32, 0.1);
  --section-pad: clamp(64px, 8vw, 104px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* keep anchored sections clear of the fixed header */
[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

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

/* Scroll-reveal: applied only when JS runs, so no-JS users see everything */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 10px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 14px rgba(10, 18, 28, 0.07);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #26323f;
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}

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

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  border: none;
  background: none;
  color: #26323f;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.nav-dropdown-toggle:hover {
  color: var(--red);
}

.nav-dropdown-toggle svg {
  width: 10px;
  height: 6px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(10, 18, 28, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--paper);
  color: var(--red);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  gap: clamp(28px, 5vw, 78px);
  padding: 72px max(28px, calc((100vw - 1160px) / 2)) 72px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./hero-background.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 16, 25, 0) 0%, rgba(7, 16, 25, 0.12) 54%, rgba(7, 16, 25, 0.5) 100%),
    radial-gradient(circle at 82% 30%, rgba(201, 47, 47, 0.14), transparent 34%);
}

/* page-specific hero background (Rohrreinigung service page) */
.hero-media.is-rohr {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./rohrreinigung.webp");
}

/* page-specific hero background (Abflussreinigung service page) */
.hero-media.is-abfluss {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./rohrreinigung.webp");
}

/* page-specific hero background (Kanalreinigung service page) */
.hero-media.is-kanal {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./kanalbau-1x1.webp");
}

/* page-specific hero background (Notdienst service page) */
.hero-media.is-notdienst {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./rohrreinigung.webp");
}

/* page-specific hero background (Kanalbau service page) */
.hero-media.is-kanalbau {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./kanalbau-hero.webp");
}

/* page-specific hero background (Instandsetzung service page) */
.hero-media.is-instandsetzung {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./kanalbau-1x1.webp");
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: clamp(150px, 25vh, 245px);
  right: max(160px, calc((100vw - 1160px) / 2 + 90px));
  width: clamp(104px, 8.4vw, 146px);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(10, 18, 28, 0.35));
  transform: rotate(-7deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, 78vw);
  margin-left: 0;
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3f8fb;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  width: 100%;
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.85vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: wrap;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.page-kanalreinigung .hero h1 {
  max-width: 900px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 570px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 850;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* CTA buttons: text only, no icons */
.button .button-icon,
.button > span[aria-hidden="true"] {
  display: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.header-call:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Secondary action on light backgrounds (blue outline → fill) */
.button-ghost {
  border-color: rgba(21, 48, 71, 0.28);
  background: var(--white);
  color: var(--blue);
}

.button-ghost:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 800px;
}

.hero-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 24, 34, 0.5);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-panel {
  position: relative;
  z-index: 2;
  right: auto;
  bottom: auto;
  align-self: center;
  width: 480px;
  max-width: 90vw;
  margin-left: auto;
  margin-top: 280px;
  margin-bottom: 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.hero-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(44px, 5vw, 80px);
  align-items: center;
  padding: var(--section-pad) max(28px, calc((100vw - 1160px) / 2)) var(--section-pad) 0;
  background: var(--paper);
}



.intro-image {
  width: 100%;
  min-height: 780px;
  margin-top: 0;
  border-radius: 0;
  background:
    url("./flooded-room.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
}

.intro-image.is-rohrreinigung-photo {
  background-image: url("./about-us-photo.webp");
}

.intro-image.is-abfluss-photo {
  background-image: url("./abfluss-spirale.webp");
}

.intro-image.is-kanal-photo {
  background-image: url("./Kanalreinigung_about_us.webp");
}

.intro-image.is-kavanoz-photo {
  background-image: url("./kavanoz.webp");
}

.intro-image.is-notdienst-photo {
  background-image: url("./rohrreinigung%20image.webp");
}

.intro-image.is-kanalbau-photo {
  background-image: url("./kanalbau-first-image.webp");
}

.intro-image.is-instandsetzung-photo {
  background-image: url("./kanalbau-about-us.webp");
}



.intro-content {
  max-width: none;
  padding-top: 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 2px;
  background: var(--red);
  content: "";
}

.intro-content h2 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.25vw, 3.28rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-content p {
  max-width: 820px;
  margin-bottom: 16px;
  color: #3e4a55;
  font-size: 1rem;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding-left: 24px;
  color: var(--blue);
  font-weight: 850;
}

.service-list li::before {
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.intro-button {
  width: fit-content;
  background: var(--red);
  color: var(--white);
}

.services-section {
  padding: calc(var(--section-pad) * 1.4) max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 46px;
  align-items: end;
  max-width: none;
  margin-bottom: 52px;
}

.services-header h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.services-header p {
  max-width: 470px;
  margin-bottom: 8px;
  color: #43505c;
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-heading-main {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 32px 28px 72px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: #fbfcfb;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.service-animation {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 28px;
  overflow: hidden;
}

.service-animation svg {
  width: 100% !important;
  height: 100% !important;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card p {
  margin-bottom: 24px;
  color: #4b5965;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card a {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--red);
  font-size: 0.97rem;
  font-weight: 900;
}

.service-card a::after {
  display: inline-block;
  margin-left: 4px;
  content: "->";
  transition: transform 0.2s var(--ease);
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 47, 47, 0.32);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  overflow: hidden;
  padding: var(--section-pad) max(28px, calc((100vw - 1160px) / 2));
  color: var(--white);
}

.cta-media,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-media {
  background: url("./plumbing-mna.webp");
  background-position: center;
  background-size: cover;
}

.cta-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.82) 0%, rgba(7, 16, 25, 0.6) 42%, rgba(7, 16, 25, 0.12) 78%),
    linear-gradient(180deg, rgba(7, 16, 25, 0.35), rgba(7, 16, 25, 0.55));
}

.cta-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3f8fb;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.cta-eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 47, 47, 0.28);
  content: "";
}

.cta-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.cta-lede {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-trust {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.why-section {
  position: relative;
  padding: var(--section-pad) max(28px, calc((100vw - 1160px) / 2));
  background: var(--paper);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

.why-header-text {
  max-width: 760px;
}

.why-header h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.08;
}

.why-lede {
  max-width: 640px;
  margin: 0;
  color: #3e4a55;
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-mascot {
  flex-shrink: 0;
  align-self: end;
}

.why-mascot img {
  display: block;
  width: 260px;
  height: auto;
  object-fit: contain;
}

/* Open grid: no boxes — only thin hairline dividers between items */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.why-card {
  --why-px: clamp(24px, 2.6vw, 38px);
  padding: clamp(28px, 3vw, 40px) var(--why-px);
  background: var(--paper);
  transition: background 0.25s var(--ease);
}

/* flush the outer columns to the section edges (3-up) */
.why-card:nth-child(3n + 1) {
  padding-left: 0;
}

.why-card:nth-child(3n) {
  padding-right: 0;
}

.why-card:hover {
  background: var(--white);
}

.why-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.why-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.why-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  color: #4b5965;
  font-size: 0.97rem;
  line-height: 1.6;
}

.why-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 36px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.why-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Unified section heading scale (H1 stays the dominant size) */
.intro-content h2,
.services-header h2,
.cta-panel h2,
.why-header h2 {
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Unified section body copy */
.intro-content p,
.services-header p,
.why-lede {
  color: var(--text-body);
}

.process-section {
  padding: clamp(48px, 5vw, 72px) max(28px, calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.process-header {
  max-width: 720px;
  margin-bottom: 36px;
}

.process-header h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

.process-lede {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: clamp(24px, 2.8vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.process-marker {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
}

.process-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.process-num {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.process-text {
  padding-top: 0;
}

.process-text h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.process-text p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.6;
}

.process-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.process-cta p {
  max-width: 560px;
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-media.is-weitere-leistungen-cta {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./image-weitere-leistungen.webp");
}

.cta-media.is-instandsetzung-cta {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./Kanalreinigung_about_us.webp");
}

.area-section {
  padding: var(--section-pad) max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(246, 247, 245, 0.82), rgba(246, 247, 245, 0.82)),
    url("./mannheim-background.webp");
  background-position: center;
  background-size: cover;
}

.area-inner {
  margin: 0 auto;
  text-align: center;
}

.area-inner .section-kicker {
  justify-content: center;
}

.area-inner h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.area-lede {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.area-chips li {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
  transition: color 0.2s var(--ease);
}

.area-chips li:hover {
  color: var(--red);
}

/* small red divider between locations */
.area-chips li:not(:last-child)::after {
  width: 2px;
  height: 18px;
  margin: 0 18px;
  border-radius: 2px;
  background: var(--red);
  content: "";
}

.area-button {
  width: fit-content;
  margin: 0 auto 30px;
}

.area-seo {
  max-width: 660px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* let the heading wrap again once one line no longer fits */
@media (max-width: 1240px) {
  .area-inner h2 {
    white-space: normal;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding: clamp(44px, 4.5vw, 68px) max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.faq-intro h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.faq-lede {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

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

.faq-item summary:hover {
  color: var(--red);
}

.faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.faq-mark::before,
.faq-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--red);
  content: "";
}

.faq-mark::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-mark::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-mark::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  padding: 0 4px 18px;
}

.faq-answer p {
  max-width: 660px;
  margin: 0;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: clamp(90px, 11vw, 168px) max(28px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(133, 24, 28, 0.95) 0%, rgba(159, 32, 36, 0.86) 44%, rgba(159, 32, 36, 0.55) 100%),
    url("./plumbing.webp");
  background-position: center right;
  background-size: cover;
  color: var(--white);
}

.final-eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-content h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.final-lede {
  max-width: 640px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.6;
}

.final-trust {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-bottom: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 25, 0.28);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.final-badge::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  content: "";
}

.final-actions .button {
  width: 100%;
}

.button-light {
  background: var(--white);
  color: var(--red);
}

.button-light:hover {
  background: #f1efe9;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--red);
}


/* ── Cookie consent banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.94rem;
}

.cookie-text p {
  margin: 0;
}

.cookie-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-decline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-accept {
  border: none;
  background: var(--red);
  color: var(--white);
}

@media (max-width: 680px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    min-height: 48px;
  }
}

/* ── Sticky bottom CTA (mobile only) ── */
.sticky-cta {
  display: none;
}

@media (max-width: 680px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--ink);
    box-shadow: 0 -2px 16px rgba(7, 16, 25, 0.28);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-cta-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 10px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }

  .sticky-cta-call {
    background: var(--red);
    color: var(--white);
  }

  .sticky-cta-whatsapp {
    background: #25d366;
    color: var(--white);
  }

  .sticky-cta-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
  }
}

.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(56px, 6vw, 80px) max(28px, calc((100vw - 1160px) / 2)) 48px;
}

.brand-footer {
  margin-bottom: 18px;
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 24px;
  line-height: 1.65;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-note {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-badge-img {
  width: 96px;
  height: auto;
  margin-top: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ===== Legal pages (Impressum / Datenschutz) ===== */
.legal-section {
  padding: calc(72px + var(--section-pad)) max(28px, calc((100vw - 800px) / 2)) var(--section-pad);
}

.legal-inner h1 {
  margin: 0 0 48px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.legal-inner h2 {
  margin: 40px 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.legal-inner p,
.legal-inner ul {
  margin: 0 0 16px;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal-inner ul {
  padding-left: 20px;
}

.legal-inner li {
  margin-bottom: 6px;
}

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

.legal-updated {
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.87rem;
}

.mobile-contact {
  display: none;
}

/* Hamburger toggle + slide-down mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 84px 18px calc(22px + env(safe-area-inset-bottom));
  background: var(--white);
  box-shadow: 0 22px 44px rgba(10, 18, 28, 0.16);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  visibility: hidden;
  transition:
    transform 0.3s var(--ease),
    visibility 0.3s var(--ease);
}

body.nav-open .mobile-menu {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.mobile-menu-divider {
  display: block;
  padding: 10px 6px 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border: none !important;
  border-radius: 8px;
  background: var(--red);
  color: var(--white) !important;
  min-height: 52px;
}

/* ===== Service landing page (prose / checklist / detail sections) ===== */
.content-section {
  padding: var(--section-pad) max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.content-section.is-paper {
  background: var(--paper);
}

.content-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.content-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.content-prose {
  max-width: 840px;
}

.content-prose p {
  margin: 0 0 16px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-prose p:last-child {
  margin-bottom: 0;
}

.content-head .content-prose {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* centered variant of a content section */
.content-section.is-centered .content-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-section.is-centered .content-head .section-kicker {
  justify-content: center;
}

.content-section.is-centered .content-prose {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-section.is-centered .service-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cause-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.cause-split.is-reversed {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.cause-media img {
  width: 100%;
  height: auto;
  max-width: 440px;
  display: block;
  margin: 0 auto;
}

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

@media (max-width: 680px) {
  .cause-split {
    position: relative;
    display: block;
  }

  .cause-media {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 52%;
    pointer-events: none;
    opacity: 0.18;
  }

  .cause-media img {
    width: 100%;
    max-width: none;
  }

  .cause-text {
    position: relative;
    z-index: 1;
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 44px;
  margin-top: 8px;
}

.detail-item {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  text-align: center;
}

.detail-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto 16px;
  overflow: hidden;
}

.detail-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.detail-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.detail-item p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* center a lone last card across the 2-column grid */
.detail-grid > .detail-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc((100% - 44px) / 2);
}

.process-timeline.is-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: clamp(30px, 4vw, 48px);
}

/* split section: text left, full-bleed image right (mirror of intro) */
.signs-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: var(--section-pad) 0 var(--section-pad) max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.signs-body {
  max-width: 660px;
}

.signs-body h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.signs-body > p:not(.section-kicker) {
  margin: 0 0 16px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.signs-body > p:last-child {
  margin-bottom: 0;
}

.signs-image {
  width: 100%;
  min-height: 540px;
  background: url("./hero-background.webp") center / cover no-repeat;
}

.signs-image.is-weitere-leistungen {
  background-image: url("./alet.webp");
}

.signs-image.is-kanal-signs {
  background-image: url("./kanalreinigung-second-image.webp");
}

.signs-image.is-weitere-kanal {
  background-image: url("./weitere-leistungen-kanalreinigung.webp");
}

.signs-image.is-notdienst-signs {
  background-image: url('./rohrreinigung-anzeichen-erkennen.webp');
}

.signs-image.is-kanalbau-signs {
  background-image: url("./kanalbau.webp");
}

.signs-image.is-instandsetzung-signs {
  background-image: url("./kanalreinigung_second_image.webp");
}

.signs-image.is-weitere-instandsetzung {
  background-image: url("./weitere-leistungen-kanalreinigung.webp");
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    display: grid;
    min-height: 86vh;
    align-items: end;
    padding-top: 124px;
  }

  .hero-content {
    display: block;
    width: min(680px, 100%);
  }

  .hero-lede {
    max-width: 570px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 34px;
  }

  .hero-stamp {
    top: 160px;
    right: 34px;
    width: 84px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 0;
  }

  .intro-image {
    aspect-ratio: 9 / 16;
    min-height: 0;
    background-position: center;
  }

  .intro-content {
    max-width: none;
    padding: 0 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .why-header {
    grid-template-columns: 1fr;
  }

  .why-mascot {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* re-flush edges for a 2-up grid */
  .why-card:nth-child(3n + 1) {
    padding-left: var(--why-px);
  }

  .why-card:nth-child(3n) {
    padding-right: var(--why-px);
  }

  .why-card:nth-child(odd) {
    padding-left: 0;
  }

  .why-card:nth-child(even) {
    padding-right: 0;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(32px, 5vw, 64px);
    row-gap: 44px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }


  /* unwind the staircase offset on tablet */
  .process-step:nth-child(even) {
    margin-top: 0;
  }

  .services-header p {
    max-width: 680px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    min-height: 62px;
    margin-top: 0;
    padding: 8px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
  }

  .header-call {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 100dvh;
    min-height: 100svh;
    width: 100%;
    max-width: 100vw;
    padding: 118px 16px 44px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-panel {
    display: none;
  }

  .hero-media {
    background-position: 63% center;
    transform: none;
  }

  .hero-stamp {
    display: block;
    top: 82px;
    right: 16px;
    width: clamp(62px, 18vw, 78px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, 0.18) 0%, rgba(7, 16, 25, 0.32) 45%, rgba(7, 16, 25, 0.72) 100%);
  }

  h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2.05rem, 10.2vw, 3.05rem);
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 10px;
    font-size: clamp(0.64rem, 2.8vw, 0.74rem);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(0.95rem, 4.2vw, 1.04rem);
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding: 0 14px;
    font-size: clamp(0.94rem, 4.2vw, 1rem);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }


  .hero-trust {
    display: none;
  }

  .intro-section {
    padding: 46px 0 92px;
  }

  .intro-image {
    aspect-ratio: 9 / 16;
    min-height: 0;
    background-position: center;
  }

  .intro-content {
    padding: 0 18px;
    text-align: left;
  }

  .intro-content h2,
  .signs-body h2,
  .content-section h2,
  .content-head h2,
  .why-header h2,
  .process-header h2,
  .area-inner h2,
  .faq-intro h2,
  .final-content h2,
  .cause-text h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.3rem);
    line-height: 1.15;
    text-wrap: balance;
  }

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

  .services-section {
    padding: 54px 18px 92px;
  }

  .why-section {
    padding: 54px 18px 80px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    --why-px: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .why-card h3 {
    font-size: 1.02rem;
  }

  .why-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .why-footer {
    padding: 24px 20px;
  }

  .why-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-actions {
    display: none;
  }

  .process-section {
    padding: 54px 18px 80px;
  }

  .area-section {
    padding: 54px 18px 72px;
  }

  .area-button {
    width: 100%;
  }

  .faq-section {
    padding: 54px 18px 72px;
  }

  .final-cta {
    min-height: 0;
    padding: 56px 18px;
    text-align: left;
  }

  .area-chips li {
    font-size: 1.02rem;
  }

  .area-chips li:not(:last-child)::after {
    height: 13px;
    margin: 0 12px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 28px;
  }

  .process-text h3 {
    font-size: 1.02rem;
  }

  .process-text p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .process-actions .button {
    width: 100%;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    /* leave room for the fixed mobile contact bar */
    padding-bottom: 92px;
  }

  .cta-band {
    min-height: 0;
    padding: 54px 18px;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-card {
    min-height: 0;
    padding: 16px 16px 18px;
  }

  .service-animation {
    margin-bottom: 14px;
  }

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

  .service-card p {
    margin-bottom: 12px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .service-card a {
    position: static;
    inset: auto;
    font-size: 0.86rem;
  }

  .mobile-contact {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(10, 18, 28, 0.24);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    background: var(--red);
    color: var(--white);
    font-weight: 850;
  }

  .mobile-contact a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--blue);
  }
}

/* ===== Service landing page responsive ===== */
@media (max-width: 980px) {
  .detail-grid {
    gap: 22px 32px;
  }

  .process-timeline.is-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signs-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 70px 0;
  }

  .signs-body {
    max-width: none;
    padding: 0 28px;
  }

  .signs-image {
    aspect-ratio: 9 / 16;
    min-height: 0;
    background-position: center;
  }
}

@media (max-width: 680px) {
  .content-section {
    padding: 54px 18px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-grid > .detail-item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }

  .process-timeline.is-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 28px;
  }

  .signs-section {
    padding: 46px 0 54px;
  }

  .signs-body {
    padding: 0 18px;
  }

  /* signs-body h2 covered by the block above */
}

/* Kanalreinigung mobile tuning */
@media (max-width: 680px) {
  .page-kanalreinigung .hero {
    align-items: end;
    min-height: 88svh;
    padding: 104px 18px 42px;
    text-align: left;
  }

  .page-kanalreinigung .hero-content {
    text-align: left;
  }

  .page-kanalreinigung .hero-media {
    background-position: 58% center;
  }

  .page-kanalreinigung .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, 0.08) 0%, rgba(7, 16, 25, 0.42) 38%, rgba(7, 16, 25, 0.82) 100%);
  }

  .page-kanalreinigung .hero-stamp {
    top: 78px;
    right: 16px;
    width: 68px;
  }

  .page-kanalreinigung .eyebrow {
    margin-bottom: 14px;
    padding: 8px 10px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .page-kanalreinigung h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
    line-height: 1.04;
  }

  .page-kanalreinigung .hero-lede {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .page-kanalreinigung .hero-actions {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 0;
  }

  .page-kanalreinigung .intro-section {
    padding-bottom: 56px;
  }

  .page-kanalreinigung .intro-image,
  .page-kanalreinigung .signs-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .page-kanalreinigung .intro-content h2,
  .page-kanalreinigung .signs-body h2,
  .page-kanalreinigung .content-section h2,
  .page-kanalreinigung .why-header h2,
  .page-kanalreinigung .process-header h2,
  .page-kanalreinigung .area-inner h2,
  .page-kanalreinigung .faq-intro h2,
  .page-kanalreinigung .final-content h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.14;
    text-wrap: balance;
  }

  .page-kanalreinigung .intro-content p,
  .page-kanalreinigung .signs-body > p:not(.section-kicker),
  .page-kanalreinigung .content-prose p,
  .page-kanalreinigung .why-lede,
  .page-kanalreinigung .process-lede,
  .page-kanalreinigung .area-lede,
  .page-kanalreinigung .faq-lede,
  .page-kanalreinigung .final-lede {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .page-kanalreinigung .service-list {
    gap: 8px;
    margin: 20px 0 24px;
  }

  .page-kanalreinigung .service-list li {
    min-height: 0;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .page-kanalreinigung .detail-item,
  .page-kanalreinigung .why-card {
    padding-block: 18px;
  }

  .page-kanalreinigung .process-timeline {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .page-kanalreinigung .process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .page-kanalreinigung .process-text h3 {
    margin-bottom: 6px;
  }

  .page-kanalreinigung .area-chips {
    justify-content: flex-start;
    gap: 8px;
  }

  .page-kanalreinigung .area-chips li {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
  }

  .page-kanalreinigung .area-chips li:not(:last-child)::after {
    display: none;
  }

  .page-kanalreinigung .final-cta {
    padding-bottom: 96px;
  }
}

/* Gebäudereinigung service page backgrounds */
.hero-media.is-gebaeudereinigung {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./gebaeudereinigung-hygienereinigung.webp");
}

.intro-image.is-gebaeudereinigung-photo {
  background-image: url("./Verwaltungs-Jobs.jpg.webp");
}

.signs-image.is-gebaeudereinigung-signs {
  background-image: url("./gebaeudereinigung-c2.webp");
}

.cta-media.is-gebaeudereinigung-cta {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./gebaeudereinigung-bochum.webp");
}

.signs-image.is-weitere-gebaeudereinigung {
  background-image: url("./buero-reinigung.webp");
}

/* Fliesenleger service page backgrounds */
.hero-media.is-fliesenleger {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./shutterstock-624787547.webp");
}

.intro-image.is-fliesenleger-photo {
  background-image: url("./A29FCC97-C6EC-4F8E-B46F-08DD109FE146_800x.jpg.webp");
}

.signs-image.is-fliesenleger-signs {
  background-image: url("./image-weitere-leistungen.webp");
}

.cta-media.is-fliesenleger-cta {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./Velinda-Hellen-Design-Two-Tone-Craftsman-Spa-Bathroom-Before-and-After.png.webp");
}

.signs-image.is-weitere-fliesenleger {
  background-image: url("./12._Quintessential_Porcelain_Salisbury_in_dog_shower_room_2048x2048.png.webp");
}

/* Before / After Section */
.signs-before-after {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.ba-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ba-image.ba-before {
  background-image: url("../before.webp");
}

.ba-image.ba-after {
  background-image: url("../after.webp");
}

.ba-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .signs-before-after {
    min-height: 350px;
    padding: 0 28px;
  }
}

@media (max-width: 680px) {
  .hero-media.is-instandsetzung {
    background-position: 56% center;
  }

  .hero-media.is-gebaeudereinigung {
    background-position: 53% center;
  }

  .signs-before-after {
    flex-direction: column;
    min-height: 600px;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-inline: 14px;
  }

  .hero-stamp {
    top: 78px;
    right: 12px;
    width: 62px;
  }

  h1 {
    font-size: clamp(1.78rem, 7.8vw, 2.15rem);
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 0.94rem;
  }

  .page-instandsetzung .hero h1,
  .page-gebaeudereinigung .hero h1 {
    font-size: clamp(1.7rem, 7.45vw, 2rem);
  }
}

.signs-section.has-before-after {
  grid-template-columns: 1fr 1fr;
  padding-right: max(28px, calc((100vw - 1160px) / 2));
}

@media (max-width: 900px) {
  .signs-section.has-before-after {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }
}

/* Hebeanlagen service page backgrounds */
.hero-media.is-hebeanlagen {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 25, 0.62) 0%, rgba(7, 16, 25, 0.4) 40%, rgba(7, 16, 25, 0.04) 80%),
    url("./GMaier_Image_Freibad_0220210860-2048x1536-1.jpg.webp");
}

.intro-image.is-hebeanlagen-photo {
  background-image: url("./rohrreinigung-anzeichen-erkennen.webp");
}

.signs-image.is-hebeanlagen-signs {
  background-image: url("./image-weitere-leistungen.webp"); /* Placeholder */
}

.cta-media.is-hebeanlagen-cta {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./kanalreinigung_second_image.webp"); /* Placeholder */
}

.signs-image.is-weitere-hebeanlagen {
  background-image: url("./weitere-leistungen-kanalreinigung.webp"); /* Placeholder */
}

/* ── Homepage mobile: show "SO EINFACH GEHT'S" before "WARUM ONKEL" ── */
@media (max-width: 680px) {
  .home-main {
    display: flex;
    flex-direction: column;
  }
  .home-main .hero          { order: 1; }
  .home-main .intro-section { order: 2; }
  .home-main .services-section { order: 3; }
  .home-main .cta-band      { order: 4; }
  .home-main .process-section { order: 5; }
  .home-main .why-section   { order: 6; }
  .home-main .area-section  { order: 7; }
  .home-main .faq-section   { order: 8; }
  .home-main .final-cta     { order: 9; }
}
