/* LANGE Versicherungen — modern */
:root {
  --brand: #007a66;
  --brand-deep: #006555;
  --brand-ink: #003d36;
  --brand-soft: #dff3ed;
  --fog: #f4f7f6;
  --ink: #0b1f1c;
  --muted: #5a6f6a;
  --line: rgba(11, 31, 28, 0.1);
  --white: #fff;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --header-h: 4.25rem;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.47;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--fog);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  color: #fff;
}

.site-header.is-solid {
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}

.site-header.is-solid .brand-mark {
  color: var(--brand);
}

.site-header.is-solid .btn-nav,
.site-header.is-scrolled .btn-nav {
  background: var(--brand);
  color: #fff;
}

.site-header.is-solid .btn-nav:hover,
.site-header.is-scrolled .btn-nav:hover {
  background: var(--brand-deep);
}

.nav-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.brand-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0.65;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.33337;
  opacity: 0.88;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0.35rem 0;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.2s ease;
}

.nav-item__trigger:hover,
.nav-item.is-open .nav-item__trigger,
.nav-item:hover .nav-item__trigger,
.nav-item__trigger[aria-current="true"] {
  opacity: 1;
}

.nav-item__chevron {
  width: 0.55rem;
  height: 0.55rem;
  opacity: 0.55;
  transition: transform 0.28s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s ease;
}

.nav-item__trigger:hover .nav-item__chevron,
.nav-item.is-open .nav-item__chevron,
.nav-item:hover .nav-item__chevron {
  opacity: 0.85;
}

.nav-item.is-open .nav-item__chevron,
.nav-item:hover .nav-item__chevron,
.nav-item:focus-within .nav-item__chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  /* Direkt unter dem Button — Abstand nur als transparentes padding (Hover bleibt) */
  top: 100%;
  left: 50%;
  z-index: 120;
  min-width: 17.5rem;
  max-height: min(70vh, 28rem);
  padding: 0.75rem 0.4rem 0.4rem;
  margin: 0;
  list-style: none;
  border: 0;
  border-radius: 0 0 1.125rem 1.125rem;
  background: transparent;
  box-shadow: none;
  color: #1d1d1f;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transform-origin: top center;
  transition:
    opacity 0.22s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.22s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0.22s;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.nav-dropdown > li {
  position: relative;
  z-index: 1;
}

.nav-item.is-open .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #1d1d1f;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
}

.nav-dropdown a:active {
  background: rgba(0, 0, 0, 0.06);
}

.nav-dropdown a em {
  display: block;
  margin-top: 0.12rem;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: #6e6e73;
}

.nav-dropdown__featured {
  display: flex !important;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.85rem !important;
}

.nav-dropdown__featured em {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-link[aria-current="page"],
.site-header.is-solid .nav-item__trigger:hover,
.site-header.is-solid .nav-item.is-open .nav-item__trigger,
.site-header.is-solid .nav-item__trigger[aria-current="true"] {
  color: inherit;
  opacity: 1;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.05rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  border-radius: 980px;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.btn-nav:hover {
  background: var(--brand-deep);
  transform: none;
}

.menu-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.5rem;
  background: var(--fog);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

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

.mobile-nav a {
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__group {
  padding: 0.85rem 0 0.35rem;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-nav__group a {
  display: block;
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-bottom: 0;
}

.mobile-nav a:last-child {
  margin-top: 0.75rem;
  border: 0;
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: translateZ(0) scale(1.04);
  animation: hero-in 1.8s var(--ease-soft) forwards;
  backface-visibility: hidden;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 61, 54, 0.78) 0%, rgba(0, 61, 54, 0.25) 48%, rgba(0, 122, 102, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 61, 54, 0.25) 0%, transparent 35%, rgba(0, 61, 54, 0.82) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: calc(var(--header-h) + 2rem) 0 3.5rem;
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: rise 0.75s var(--ease-soft) 0.08s forwards;
}

.hero__title {
  margin: 1.25rem 0 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.6vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: rise 0.75s var(--ease-soft) 0.18s forwards;
}

.hero__lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: rise 0.7s var(--ease-soft) 0.28s forwards;
}

.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: rise 0.7s var(--ease-soft) 0.36s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-in {
  to {
    transform: translateZ(0) scale(1);
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.25s var(--ease-soft), color 0.2s, border-color 0.2s;
}

.btn:hover {
  filter: brightness(1.04);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-deep);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost-dark:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--light {
  background: #fff;
  color: var(--brand-ink);
}

.btn--light:hover {
  background: var(--brand-soft);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #20bd5a;
}

.btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.wa-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: rise 0.65s var(--ease-soft) 0.05s forwards;
  transition: background 0.2s, border-color 0.2s;
}

.wa-pulse:hover {
  background: rgba(37, 211, 102, 0.26);
  border-color: rgba(37, 211, 102, 0.65);
}

.wa-pulse__logo {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: wa-dot 1.6s ease-out infinite;
}

.wa-pulse__logo svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

@keyframes wa-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.page-hero .wa-pulse {
  background: rgba(31, 175, 91, 0.22);
  animation: none;
  opacity: 1;
  transform: none;
}

.wa-banner {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #128c45 0%, #1faf5b 55%, #007a66 100%);
  color: #fff;
}

@media (min-width: 700px) {
  .wa-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.25rem;
  }
}

.wa-banner__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.wa-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.wa-banner p {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.wa-banner .btn {
  background: #fff;
  color: #0b5c32;
  white-space: nowrap;
}

.wa-banner .btn:hover {
  background: #f0fff6;
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  overflow: visible;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-soft), background 0.2s, box-shadow 0.2s;
  transform: translateZ(0);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  animation: wa-dot 2.4s ease-out infinite;
  pointer-events: none;
}

.wa-float:hover {
  transform: translate3d(0, -2px, 0) scale(1.03);
  background: #20bd5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.wa-float:hover::before {
  animation: none;
}

.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

.site-header.is-solid .btn-nav--wa {
  background: #1faf5b;
  color: #fff;
}

.btn-nav--wa {
  background: #1faf5b;
  color: #fff;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section--flush {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}

.section-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.47;
  letter-spacing: -0.015em;
}

.section--dark {
  --dark-cut: clamp(4.25rem, 11vw, 7.5rem);
  position: relative;
  overflow: hidden;
  background: var(--brand-ink);
  color: #fff;
  padding-top: calc(clamp(4rem, 10vw, 7rem) + var(--dark-cut) * 0.35);
}

/* Weißes Dreieck: Diagonal von Grün nach Weiß am oberen Rand */
.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--dark-cut);
  background: var(--fog);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.section--dark > * {
  position: relative;
  z-index: 1;
}

.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section--mesh {
  /* Gleiche Startfarbe wie Statement-Ende — kein sichtbarer Schnitt */
  background:
    radial-gradient(ellipse 85% 70% at -5% -25%, rgba(0, 122, 102, 0.12), transparent 58%),
    radial-gradient(ellipse 55% 50% at 105% 95%, rgba(0, 61, 54, 0.07), transparent 55%),
    linear-gradient(180deg, #eaf4f1 0%, #eaf4f1 35%, #eef5f3 100%);
}

/* ——— Statement ——— */
.statement {
  padding: clamp(4.5rem, 12vw, 8rem) 0;
  background: linear-gradient(180deg, var(--fog) 0%, var(--fog) 65%, #eaf4f1 100%);
}

.statement p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
}

.statement span {
  color: var(--brand);
}

/* ——— Steps ——— */
.steps {
  margin: 3rem 0 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step {
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--brand);
}

.step__num {
  display: block;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--brand);
  opacity: 0.35;
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.step p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Full bleed band ——— */
.bleed {
  position: relative;
  min-height: min(70svh, 36rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.bleed__media {
  position: absolute;
  inset: 0;
}

.bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 61, 54, 0.15) 0%,
    rgba(0, 61, 54, 0.82) 100%
  );
}

.bleed__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 3.5rem 0;
}

.bleed__content h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.bleed__content p {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.8);
}

.bleed__content .btn {
  margin-top: 1.5rem;
}

/* ——— Service rows ——— */
.service-rows {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.service-rows a {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), color 0.2s;
}

@media (min-width: 700px) {
  .service-rows a {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
  }
}

.service-rows a:hover {
  color: var(--brand);
  padding-left: 0.75rem;
}

.service-rows h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-rows p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 38rem;
}

.service-rows .go {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}

/* ——— Service tiles (image grid) ——— */
.service-tiles {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .service-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.service-tile {
  position: relative;
  display: block;
  min-height: 14rem;
  overflow: hidden;
  border-radius: 1.35rem;
  isolation: isolate;
  color: #fff;
}

@media (min-width: 700px) {
  .service-tile {
    min-height: 16.5rem;
  }

  .service-tile--wide {
    grid-column: 1 / -1;
    min-height: 18rem;
  }
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transform: translateZ(0) scale(1);
  transition: transform 0.7s var(--ease-soft);
  backface-visibility: hidden;
}

.service-tile:hover img {
  transform: translateZ(0) scale(1.03);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}

.service-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 1.2rem 1.3rem;
}

.service-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-tile__text {
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .service-tile img,
  .service-tile:hover img {
    transform: none;
    transition: none;
  }
}

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 1.15rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 42s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--brand-ink);
}

.marquee__track span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--brand);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--header-h) + 4rem) 0 3.25rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 61, 54, 0.88) 0%,
    rgba(0, 122, 102, 0.45) 100%
  );
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.page-hero p {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ——— Coverage groups + popup sheets ——— */
.coverage-group {
  margin-top: 3.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  contain: layout paint;
}

.coverage-group:first-child {
  margin-top: 2rem;
}

.coverage-group__stage {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f5f5f7;
}

@media (min-width: 900px) {
  .coverage-group__stage {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 28rem;
  }

  .coverage-group--flip .coverage-group__stage {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .coverage-group--flip .coverage-group__visual {
    order: 2;
  }
}

.coverage-group__visual {
  position: relative;
  margin: 0;
  min-height: 16rem;
  overflow: hidden;
  isolation: isolate;
}

.coverage-group__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0) scale(1);
  transition: transform 0.8s var(--ease-soft);
  backface-visibility: hidden;
}

.coverage-group:hover .coverage-group__visual img,
.coverage-group:focus-within .coverage-group__visual img {
  transform: translateZ(0) scale(1.025);
}

.coverage-group__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.coverage-group__header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  max-width: none;
}

.coverage-group__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.coverage-group__header p {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28ch;
}

.coverage-grid {
  margin: 0;
  display: grid;
  gap: 0.15rem;
  grid-template-columns: 1fr;
  align-content: start;
  padding: 0.65rem 0.75rem;
  border: 0;
  background: #f5f5f7;
}

@media (min-width: 900px) {
  .coverage-grid {
    padding: 1.1rem 1rem;
    align-self: stretch;
    overflow-y: auto;
  }
}

.coverage-item {
  padding: 0;
  border: 0;
  border-radius: 0.85rem;
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
  transition: background 0.2s ease;
}

.coverage-item.is-open,
.coverage-item:hover,
.coverage-item:focus-within {
  background: rgba(255, 255, 255, 0.72);
}

.coverage-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem 0.85rem;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.coverage-item__head:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 0.75rem;
}

.coverage-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #1d1d1f;
}

.coverage-item__chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  opacity: 0.35;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease-soft), opacity 0.25s ease;
}

.coverage-item.is-open .coverage-item__chevron {
  opacity: 0.7;
  transform: translateY(1px) rotate(-135deg);
}

.coverage-item__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.45s var(--ease-soft),
    opacity 0.35s var(--ease-soft);
}

.coverage-item.is-open .coverage-item__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.coverage-item__body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0.85rem;
  transition: padding 0.45s var(--ease-soft);
}

.coverage-item.is-open .coverage-item__body-inner {
  padding-bottom: 1rem;
}

.coverage-item__lead {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--brand-ink);
}

.coverage-item__body p {
  margin: 0.65rem 0 0;
  color: #6e6e73;
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.coverage-item__body .coverage-item__lead + p {
  margin-top: 0;
}

.coverage-item__local {
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(11, 31, 28, 0.1);
}

.coverage-item__local p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #1d1d1f;
}

.coverage-item__local p + p {
  margin-top: 0.45rem;
}

.coverage-item__wa {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.coverage-item__wa:hover {
  color: var(--brand-deep);
}

/* ——— SEO article page ——— */
.seo-article {
  display: grid;
  gap: 2.75rem;
  max-width: 42rem;
}

.seo-article h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1d1d1f;
}

.seo-article p {
  margin: 0.75rem 0 0;
  color: #6e6e73;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.seo-article ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: #6e6e73;
  font-size: 1.02rem;
  line-height: 1.55;
}

.seo-article li + li {
  margin-top: 0.55rem;
}

.seo-article strong {
  color: #1d1d1f;
  font-weight: 600;
}

.coverage-item--featured h3::after {
  content: "Spezialgebiet";
  display: inline-block;
  margin-left: 0.55rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .coverage-group__visual img,
  .coverage-group:hover .coverage-group__visual img,
  .coverage-group:focus-within .coverage-group__visual img {
    transform: none;
    transition: none;
  }
}


/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.contact-meta {
  display: grid;
  gap: 2rem;
}

.contact-meta h2 {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-meta p,
.contact-meta a {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-meta a:hover {
  color: var(--brand);
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--fog);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 122, 102, 0.15);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-status {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.form-status--ok {
  color: #0f6b4c;
}

.form-status--err {
  color: #b42318;
}

.form-status[hidden] {
  display: none !important;
}

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

.contact-panels {
  min-width: 0;
}

.anfrage-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border-radius: 9999px;
  background: #eceff0;
  border: 1px solid var(--line);
}

.anfrage-tabs__btn {
  border: 0;
  border-radius: 9999px;
  background: transparent;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.anfrage-tabs__btn.is-active {
  background: #1d1d1f;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.anfrage-panel[hidden] {
  display: none !important;
}

#call-book {
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
}

.call-book__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.call-book__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

.call-book__text {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.call-book__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 980px;
  background: var(--brand);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.call-book__primary:hover:not(:disabled) {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.call-book__primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.call-book__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.call-book__status {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.call-book__status--ok {
  color: var(--brand-deep);
}

.call-book__status--err {
  color: #b42318;
}

.call-book__status[hidden] {
  display: none !important;
}

.call-form-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.call-cal {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .call-cal {
    grid-template-columns: minmax(0, 1.35fr) minmax(11rem, 0.75fr);
    align-items: stretch;
  }

  .call-cal__summary {
    grid-column: 1 / -1;
  }
}

.call-cal__month {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--fog);
  padding: 0.9rem 0.95rem 1rem;
  min-width: 0;
}

.call-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.call-cal__nav-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

.call-cal__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #1d1d1f;
  cursor: pointer;
}

.call-cal__nav-btn:hover:not(:disabled) {
  border-color: var(--brand);
  color: var(--brand);
}

.call-cal__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.call-cal__weekdays,
.call-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.call-cal__weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
}

.call-cal__day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: #1d1d1f;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
}

.call-cal__day:hover:not(:disabled):not(.is-selected) {
  background: rgba(0, 122, 102, 0.1);
}

.call-cal__day.is-outside,
.call-cal__day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.call-cal__day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1.5px var(--brand);
}

.call-cal__day.is-selected {
  background: #1d1d1f;
  color: #fff;
}

.call-cal__times {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--fog);
  padding: 0.9rem;
  min-width: 0;
}

.call-cal__times-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.call-cal__times-hint {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.call-cal__slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.call-cal__slots[hidden] {
  display: none !important;
}

.call-cal__slot {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.55rem 0.35rem;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
}

.call-cal__slot:hover:not(.is-selected) {
  border-color: var(--brand);
  color: var(--brand);
}

.call-cal__slot.is-selected {
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #fff;
}

.call-cal__summary {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: var(--brand-soft);
  border: 1px solid rgba(0, 122, 102, 0.18);
  font-size: 0.875rem;
  color: var(--brand-ink);
}

.call-cal__summary strong {
  font-weight: 700;
}

.call-cal__summary[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .contact-panels.is-call-mode {
    grid-column: 1 / -1;
  }

  .contact-grid:has(.contact-panels.is-call-mode) {
    grid-template-columns: 1fr;
  }

  .contact-grid:has(.contact-panels.is-call-mode) .contact-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.25rem;
  }

  #call-form {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.9fr);
    gap: 1rem;
    align-items: start;
  }

  #call-form .call-cal {
    margin-top: 0;
  }

  #call-form .call-form-fields {
    margin-top: 0;
  }

  #call-form .call-form-fields .form-row {
    grid-template-columns: 1fr;
  }
}

/* ——— Footer ——— */
.site-footer {
  padding: 3.5rem 0 0;
  overflow: hidden;
  background: var(--brand-ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

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

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.55fr 1fr 1fr 1.1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
}

.footer-brand span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-watermark {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  line-height: 0;
  margin-top: 1.75rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
}

.footer-watermark__text {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 22vw, 18rem);
  line-height: 0.75;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  opacity: 0.1;
  transform: translateY(20%);
}

/* ——— Legal pages (Impressum / Datenschutz) ——— */
.legal-hero {
  padding: calc(var(--header-h) + 3.25rem) 0 2.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 122, 102, 0.14), transparent 55%),
    linear-gradient(180deg, #eaf4f1 0%, var(--fog) 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 18ch;
}

.legal-hero p {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal {
  padding: 2.75rem 0 4.5rem;
}

.legal__inner {
  width: min(44rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.legal h2 {
  margin: 2.75rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 1.75rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--brand-ink);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal p {
  margin: 0 0 1rem;
}

.legal ul,
.legal ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.legal a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal a:hover {
  color: var(--brand-ink);
}

.legal address {
  font-style: normal;
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal__note {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  border: 1px solid rgba(0, 122, 102, 0.18);
  color: var(--brand-ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.fill-in {
  display: inline;
  padding: 0.08em 0.28em;
  border-radius: 4px;
  background: #fff3bf;
  color: #6b4e00;
  font-weight: 650;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ——— Motion ——— */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.55s var(--ease-soft),
    transform 0.55s var(--ease-soft);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

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

  .hero__media img,
  .hero__brand,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .marquee__track,
  .reveal,
  .wa-float,
  .wa-pulse__logo,
  .coverage-group__visual img,
  .service-tile img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}
