:root {
  --yellow: #ffca05;
  --yellow-soft: #fff6cf;
  --red: #cf2028;
  --red-dark: #a9151c;
  --ink: #101010;
  --cream: #fffdf6;
  --muted: #6c675d;
  --line: #ded8ca;
  --shadow: 0 18px 48px rgba(20, 18, 12, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

a.topbar-item:hover {
  color: var(--yellow);
}

.topbar svg,
.button svg,
.mobile-call svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: currentColor;
}

.main-nav-wrap {
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.main-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 178px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 3px;
  background: var(--red);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(207, 32, 40, 0.23);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(255, 202, 5, 0.2);
}

.button-yellow:hover {
  background: #ffe070;
}

.hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #f6efe2 url("./hero-kanalhelden.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 244, 232, 0.98) 0%, rgba(250, 244, 232, 0.9) 37%, rgba(250, 244, 232, 0.08) 66%, rgba(250, 244, 232, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 570px;
}

.hero-copy {
  width: min(570px, 50%);
  padding: 78px 0 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(20px, 2.15vw, 33px);
  letter-spacing: -0.025em;
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero h1 {
  margin: 5px 0 6px;
  max-width: 600px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 85px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-tagline {
  margin: 20px 0 19px;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
}

.hero-points {
  display: grid;
  gap: 7px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 23px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 3px #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  font-weight: 800;
}

.text-link span {
  color: var(--red);
}

.hero-mobile-art {
  display: none;
}

.emergency-strip {
  position: relative;
  z-index: 2;
  padding: 19px 0;
  background: var(--red);
  color: #fff;
}

.emergency-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.emergency-message {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}

.emergency-message span:not(.siren) {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.emergency-message strong {
  display: block;
  color: var(--yellow);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1;
}

.siren {
  font-size: 44px;
  line-height: 1;
}

.emergency-phones {
  display: flex;
  gap: 10px;
}

.emergency-phones a {
  min-width: 205px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease;
}

.emergency-phones a:hover {
  transform: translateY(-2px);
  background: #ffe274;
}

.emergency-phones small,
.emergency-phones strong {
  display: block;
}

.emergency-phones small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emergency-phones strong {
  margin-top: 1px;
  font-size: 19px;
  line-height: 1.15;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.image-frame {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -24px;
  bottom: -24px;
  width: 78%;
  height: 70%;
  border-radius: 26px;
  background: var(--yellow);
}

.about-image img {
  width: 100%;
  height: 570px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 54%;
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--red);
}

.section-copy h2,
.section-heading h2,
.territory-copy h2,
.contact-copy h2 {
  margin: 0 0 22px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.048em;
}

.section-copy .lead,
.territory-copy .lead {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.section-copy p:not(.section-kicker),
.territory-copy p:not(.section-kicker) {
  color: #48443d;
}

.location-row,
.territory-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.location-row span,
.territory-facts span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.trust-row {
  padding: 20px 0 90px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.trust-item {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 50%;
  background: #fff;
  text-align: center;
  box-shadow: 0 15px 42px rgba(20, 18, 12, 0.1);
}

.trust-item-highlight {
  margin-top: 34px;
  border: 3px solid var(--ink);
  background: var(--yellow);
}

.trust-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 15px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.trust-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.trust-item p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--yellow-soft);
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 202, 5, 0.35);
  filter: blur(1px);
}

.services::before {
  width: 620px;
  height: 390px;
  left: -210px;
  top: 160px;
}

.services::after {
  width: 700px;
  height: 430px;
  right: -260px;
  bottom: 70px;
}

.services .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}

.section-heading.narrow {
  max-width: 820px;
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.45);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 0 rgba(16, 16, 16, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 0 rgba(207, 32, 40, 0.11);
}

.service-card > img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.service-card:nth-child(2) > img {
  object-position: center 58%;
}

.service-card:nth-child(3) > img {
  object-position: center 38%;
}

.service-card-body {
  position: relative;
  min-height: 176px;
  padding: 24px 25px 26px;
}

.service-number {
  position: absolute;
  top: -24px;
  right: 19px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.prevention {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.prevention::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-50%);
}

.prevention-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.section-kicker.yellow {
  color: var(--yellow);
}

.prevention h2 {
  margin: 0 0 22px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.prevention h2 span {
  color: var(--yellow);
}

.prevention-copy p:not(.section-kicker) {
  max-width: 530px;
  margin: 0 0 30px;
  color: #cbc8bf;
}

.prevention-orbit {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin: 22px auto;
  border: 2px dashed rgba(255, 202, 5, 0.58);
  border-radius: 50%;
}

.prevention-orbit::before,
.prevention-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.prevention-orbit::after {
  inset: 29%;
  border-color: rgba(255, 202, 5, 0.3);
}

.orbit-core {
  position: absolute;
  z-index: 2;
  inset: 36%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0 0 13px rgba(255, 202, 5, 0.09);
}

.orbit-core span {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(14px, 1.6vw, 21px);
  text-transform: uppercase;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: #242424;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.orbit-one { left: 50%; top: -17px; transform: translateX(-50%); }
.orbit-two { right: -30px; top: 27%; }
.orbit-three { right: -18px; bottom: 18%; }
.orbit-four { left: 8%; bottom: 1%; }
.orbit-five { left: -42px; top: 30%; }

.territory {
  background: #fff;
}

.territory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.territory-copy .button {
  margin-top: 28px;
}

.territory-map {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: var(--yellow-soft);
}

.territory-map::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 65%;
  height: 56%;
  z-index: -1;
  border-radius: 28px;
  background: var(--yellow);
}

.territory-map img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
}

.team {
  background: var(--cream);
}

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

.team-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.team-photo {
  min-height: 565px;
  background: var(--yellow-soft);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.team-photo-theresa img {
  object-position: 48% center;
}

.team-content {
  padding: 34px 30px 30px;
}

.team-role {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-content h3 {
  margin: 0 0 5px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.team-tagline {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.team-content > p:not(.team-role):not(.team-tagline) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.team-skills {
  display: grid;
  gap: 7px;
  margin: 21px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.team-skills li {
  position: relative;
  padding-left: 17px;
}

.team-skills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--ink);
}

.phone-link {
  display: block;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.phone-link span,
.phone-link strong {
  display: block;
}

.phone-link span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-link strong {
  color: var(--red);
  font-size: 18px;
}

.charity {
  padding: 34px 0;
  background: var(--yellow);
}

.charity-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(310px, 1.15fr);
  align-items: center;
  gap: 42px;
}

.charity img {
  width: min(340px, 100%);
  height: auto;
}

.donation-badge {
  width: 105px;
  height: 105px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.35);
}

.donation-badge strong,
.donation-badge span {
  display: block;
}

.donation-badge strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.donation-badge span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.charity-copy h2 {
  margin: 0 0 3px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.15;
  text-transform: uppercase;
}

.charity-copy p {
  margin: 0;
  font-weight: 700;
}

.contact {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  min-height: 640px;
}

.contact-copy {
  padding: 95px 75px 95px 0;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 610px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 31px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.contact-visual {
  min-height: 640px;
  background: #f6efe2 url("./hero-kanalhelden.webp") 61% center / cover no-repeat;
}

.site-footer {
  background: var(--yellow);
}

.footer-main {
  padding: 64px 0 55px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(170px, 0.7fr) minmax(250px, 0.9fr);
  gap: 75px;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.footer-column h2 {
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--red);
}

.footer-bottom {
  padding: 15px 0;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.legal-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: var(--yellow);
}

.legal-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(86vh, 820px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.legal-dialog-wide {
  width: min(860px, calc(100% - 32px));
}

.legal-dialog[open] {
  display: flex;
  flex-direction: column;
}

.legal-dialog::backdrop {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(4px);
}

.legal-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 30px 24px;
  border-bottom: 1px solid #e7e2d9;
  background: var(--yellow);
}

.legal-dialog-kicker {
  display: block;
  margin-bottom: 5px;
  color: #594c13;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-dialog h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.legal-dialog-close {
  width: 42px;
  height: 42px;
  display: grid;
  flex: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.legal-dialog-close span {
  display: block;
  margin-top: -3px;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.legal-dialog-close:hover,
.legal-dialog-close:focus-visible {
  background: var(--red);
}

.legal-dialog-content {
  padding: 29px 30px 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 14px;
  line-height: 1.72;
}

.legal-dialog-content section + section {
  margin-top: 29px;
  padding-top: 25px;
  border-top: 1px solid #e7e2d9;
}

.legal-dialog-content h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.35;
}

.legal-dialog-content p {
  margin: 0;
}

.legal-dialog-content p + p {
  margin-top: 12px;
}

.legal-dialog-content ul {
  margin: 12px 0 14px;
  padding-left: 21px;
}

.legal-dialog-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .nav-call { padding-inline: 15px; }
  .emergency-inner { grid-template-columns: 1fr; }
  .emergency-phones { width: 100%; }
  .emergency-phones a { flex: 1; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { min-height: 380px; }
  .team-photo img { object-position: center 35%; }
  .team-photo-theresa img { object-position: center 40%; }
  .contact-layout { grid-template-columns: 1.12fr 0.88fr; }
  .contact-copy { padding-right: 40px; }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 75px; }
  .container { width: min(100% - 30px, 720px); }
  .section { padding: 78px 0; }
  .topbar-inner { justify-content: center; padding: 8px 0; }
  .topbar-item:first-child,
  .topbar-item:last-child { display: none; }
  .main-nav { min-height: 72px; }
  .brand { width: 155px; }
  .desktop-nav { display: none; }
  .hero { min-height: auto; display: block; background: #f6efe2; }
  .hero::before { display: none; }
  .hero-inner { min-height: 0; }
  .hero-copy { width: 100%; padding: 64px 0 50px; }
  .hero-mobile-art {
    display: block;
    height: min(55vw, 390px);
    min-height: 285px;
    background: url("./hero-kanalhelden.webp") 57% center / cover no-repeat;
  }
  .split-layout,
  .territory-layout,
  .prevention-inner,
  .contact-layout { grid-template-columns: 1fr; }
  .split-layout { gap: 70px; }
  .about-image { max-width: 520px; margin-inline: auto; }
  .trust-row { padding-bottom: 72px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 13px; }
  .trust-item { min-height: 205px; padding: 20px 12px; }
  .trust-item-highlight { margin-top: 20px; }
  .trust-icon { width: 48px; height: 48px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prevention { padding: 78px 0 100px; }
  .prevention-inner { gap: 65px; }
  .prevention-orbit { width: min(390px, calc(100% - 40px)); }
  .territory-copy { order: 1; }
  .territory-map { order: 2; }
  .charity-inner { grid-template-columns: 1fr auto; gap: 25px; }
  .charity-copy { grid-column: 1 / -1; }
  .contact-copy { padding: 78px 0 55px; }
  .contact-visual { min-height: 450px; margin-inline: calc(50% - 50vw); }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; gap: 45px; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 24px, 520px); }
  .section { padding: 65px 0; }
  .topbar { font-size: 10px; }
  .topbar-inner { gap: 13px; }
  .topbar-item:nth-child(3) { display: none; }
  .main-nav { gap: 12px; }
  .brand { width: 138px; }
  .nav-call { min-height: 42px; padding: 9px 12px; font-size: 12px; }
  .nav-call svg { display: none; }
  .hero-copy { padding: 52px 0 42px; }
  .hero .eyebrow { font-size: 22px; }
  .hero h1 { font-size: clamp(48px, 16vw, 70px); }
  .hero-tagline { margin-top: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .text-link { text-align: center; }
  .hero-mobile-art { min-height: 235px; background-position: 60% center; }
  .emergency-strip { padding: 24px 0; }
  .emergency-inner { gap: 22px; }
  .emergency-message { align-items: flex-start; }
  .siren { font-size: 35px; }
  .emergency-message span:not(.siren) { font-size: 12px; }
  .emergency-message strong { font-size: 27px; }
  .emergency-phones { display: grid; grid-template-columns: 1fr; }
  .emergency-phones a { min-width: 0; }
  .about-image img { height: 430px; }
  .image-badge { right: 10px; bottom: 20px; font-size: 10px; }
  .section-copy h2,
  .section-heading h2,
  .territory-copy h2,
  .contact-copy h2 { font-size: 38px; }
  .section-copy .lead,
  .territory-copy .lead { font-size: 17px; }
  .trust-grid { grid-template-columns: 1fr; gap: 15px; }
  .trust-item,
  .trust-item-highlight {
    min-height: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 52px 1fr;
    justify-items: start;
    column-gap: 14px;
    margin: 0;
    padding: 20px;
    border-radius: 16px;
    text-align: left;
  }
  .trust-icon { grid-row: 1 / 3; margin: 0; }
  .trust-item h3,
  .trust-item p { max-width: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card > img { height: 205px; }
  .service-card-body { min-height: 0; }
  .prevention h2 { font-size: 44px; }
  .prevention-orbit { width: min(310px, calc(100% - 32px)); }
  .orbit-label { padding: 5px 8px; font-size: 9px; }
  .orbit-two { right: -18px; }
  .orbit-three { right: -15px; }
  .orbit-five { left: -24px; }
  .territory-map { padding: 10px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { min-height: 360px; }
  .team-content { padding: 28px 22px 24px; }
  .charity-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .charity img { width: 285px; }
  .charity-copy { grid-column: auto; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-card-wide { grid-column: auto; }
  .contact-visual { min-height: 330px; background-position: 62% center; }
  .footer-main { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom .container { align-items: center; flex-direction: column; gap: 3px; text-align: center; }
  .footer-legal { margin: 4px 0; }
  .legal-dialog,
  .legal-dialog-wide { width: calc(100% - 20px); max-height: 90svh; border-radius: 16px; }
  .legal-dialog-header { padding: 22px 20px 19px; }
  .legal-dialog-content { padding: 23px 20px 29px; }
  .legal-dialog-close { width: 39px; height: 39px; }
  .mobile-call {
    position: fixed;
    z-index: 100;
    left: 10px;
    right: 10px;
    bottom: 9px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid #fff;
    border-radius: 9px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
  }
  .mobile-call svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition-duration: 0.01ms !important; }
}
