/* ============================================================
   ATA Bedachungen GmbH – Onepager
   Corporate Design gemäss ATA_Styleguide.pdf (Version 1.0)
   Farben: ATA Rot #C9302B · Anthrazit #2B2E33 · Hellgrau #EDEEF0 · Weiss #FFFFFF
   Typografie: Montserrat (lokal eingebunden, SIL OFL)
   Stil: modern, minimalistisch, kantig (keine Rundungen)
   ============================================================ */

/* ---------- Schriften (lokal, keine externen Abhängigkeiten) ---------- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --c-rot: #C9302B;
  --c-rot-dunkel: #A82420;
  --c-anthrazit: #2B2E33;
  --c-anthrazit-tief: #22252A;
  --c-hellgrau: #EDEEF0;
  --c-weiss: #FFFFFF;
  --c-text: #2B2E33;
  --c-text-2: rgba(43, 46, 51, 0.72);
  --c-line: rgba(43, 46, 51, 0.14);
  --c-line-hell: rgba(255, 255, 255, 0.22);

  --font: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --sect-y: clamp(4rem, 9vw, 7rem);

  --header-h: 76px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--c-rot); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--c-anthrazit);
  color: var(--c-weiss);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.75em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  color: var(--c-text-2);
  max-width: 46em;
}

/* Kicker mit Dachkanten-Signet (rote Linie mit Knick wie eine Dachkante) */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rot);
  margin: 0 0 1.1rem;
}
.kicker::before {
  content: '';
  flex: 0 0 auto;
  width: 34px;
  height: 12px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 12'%3E%3Cpath d='M0 10h16L26 2h8' fill='none' stroke='%23C9302B' stroke-width='3'/%3E%3C/svg%3E");
}
.on-dark .kicker { color: #E88A86; }

/* ---------- Buttons (kantig) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { flex: 0 0 auto; }

.btn--primary {
  background: var(--c-rot);
  color: var(--c-weiss);
  border-color: var(--c-rot);
}
.btn--primary:hover { background: var(--c-rot-dunkel); border-color: var(--c-rot-dunkel); }

.btn--outline {
  background: transparent;
  color: var(--c-anthrazit);
  border-color: var(--c-anthrazit);
}
.btn--outline:hover { background: var(--c-anthrazit); color: var(--c-weiss); }

.on-dark .btn--outline {
  color: var(--c-weiss);
  border-color: var(--c-weiss);
}
.on-dark .btn--outline:hover { background: var(--c-weiss); color: var(--c-anthrazit); }

.btn--whatsapp {
  background: var(--c-anthrazit);
  color: var(--c-weiss);
  border-color: var(--c-anthrazit);
}
.btn--whatsapp:hover { background: var(--c-anthrazit-tief); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-weiss);
  border-top: 3px solid var(--c-rot);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { height: 46px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav__list {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  color: var(--c-anthrazit);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="true"] {
  text-decoration: none;
  border-bottom-color: var(--c-rot);
}

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-anthrazit);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.site-header__phone:hover { text-decoration: none; color: var(--c-rot); }
.site-header__cta { padding: 0.7rem 1.2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--c-anthrazit);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle__bars {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-anthrazit);
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--c-anthrazit);
  transition: transform 0.2s ease;
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--c-weiss);
    border-bottom: 1px solid var(--c-line);
    padding: 1rem var(--gutter) 1.5rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--c-line);
    font-size: 1rem;
  }
  .nav-toggle { display: inline-flex; }
  .site-header__phone span { display: none; }
  .site-header__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--c-anthrazit);
  color: var(--c-weiss);
  overflow: hidden;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media img { object-fit: cover; object-position: center 40%; }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 37, 42, 0.92) 0%, rgba(34, 37, 42, 0.78) 45%, rgba(34, 37, 42, 0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 12vw, 9.5rem);
  max-width: 700px;
}
.hero__kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-weiss);
  margin: 0 0 1rem;
}
.hero__kicker strong { color: #E88A86; font-weight: 600; }
.hero h1 { color: var(--c-weiss); margin-bottom: 0.5em; }
.hero h1 .claim-akzent {
  display: inline-block;
  border-bottom: 6px solid var(--c-rot);
  padding-bottom: 0.08em;
}
.hero__text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 34em;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero__merkmale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 0;
  padding: 1.1rem 0 0;
  list-style: none;
  border-top: 1px solid var(--c-line-hell);
}
.hero__merkmale li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.hero__merkmale li::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--c-rot);
  flex: 0 0 auto;
}

/* ---------- Sektionen ---------- */
.section { padding-block: var(--sect-y); }
.section--grau { background: var(--c-hellgrau); }
.section--dunkel { background: var(--c-anthrazit); color: var(--c-weiss); }
.section--dunkel h2, .section--dunkel h3 { color: var(--c-weiss); }
.section__kopf { max-width: 46em; margin-bottom: clamp(2rem, 5vw, 3.25rem); }

/* ---------- Über uns / Adem ---------- */
.ueber {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.ueber__portrait { position: relative; }
.ueber__portrait img {
  width: 100%;
  border: 1px solid var(--c-line);
}
.ueber__portrait figcaption {
  margin-top: 0.9rem;
  border-left: 4px solid var(--c-rot);
  padding-left: 0.9rem;
}
.ueber__portrait figcaption strong { display: block; font-weight: 800; }
.ueber__portrait figcaption span { color: var(--c-text-2); font-size: 0.95rem; }

.ueber__stationen {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.ueber__stationen li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.98rem;
}
.ueber__stationen .rolle { font-weight: 600; }
.ueber__stationen .ort { color: var(--c-text-2); }

.ueber__zitat {
  margin: 1.9rem 0 0;
  padding: 1.2rem 1.4rem;
  background: var(--c-hellgrau);
  border-left: 4px solid var(--c-rot);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
}
.ueber__zitat p { margin: 0; }
.ueber__zitat-quelle {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-rot);
}

@media (max-width: 820px) {
  .ueber { grid-template-columns: 1fr; }
  .ueber__portrait { max-width: 380px; }
}

/* ---------- Leistungen ---------- */
.leistungen-haupt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.leistung-card {
  background: var(--c-weiss);
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-rot);
  display: flex;
  flex-direction: column;
}
.leistung-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.leistung-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.leistung-card:hover .leistung-card__media img { transform: scale(1.04); }
.leistung-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.leistung-card__body h3 { margin: 0; }
.leistung-card__body p { color: var(--c-text-2); font-size: 0.98rem; }
.leistung-card__nutzen {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.93rem;
}
.leistung-card__nutzen li {
  display: flex;
  gap: 0.5rem;
  padding: 0.2rem 0;
}
.leistung-card__nutzen li::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  background: var(--c-rot);
}
.leistung-card__link {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-anthrazit);
}
.leistung-card__link:hover { color: var(--c-rot); text-decoration: none; }

@media (max-width: 940px) {
  .leistungen-haupt { grid-template-columns: 1fr; }
  .leistung-card__media { aspect-ratio: 16 / 9; }
}

.leistungen-weitere { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.leistungen-weitere h3 { margin-bottom: 1.25rem; }
.leistungen-weitere__liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.leistungen-weitere__liste li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.8rem 1rem 0.8rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.98rem;
  font-weight: 600;
}
.leistungen-weitere__liste li::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--c-rot);
  transform: translateY(-1px);
}
.leistungen-weitere__liste .zusatz {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--c-text-2);
}

/* ---------- Vorteile ---------- */
.vorteile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.vorteil {
  border: 1px solid var(--c-line);
  background: var(--c-weiss);
  padding: 1.6rem 1.5rem;
}
.vorteil h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.vorteil h3::before {
  content: '';
  flex: 0 0 auto;
  width: 26px;
  height: 10px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 12'%3E%3Cpath d='M0 10h16L26 2h8' fill='none' stroke='%23C9302B' stroke-width='3'/%3E%3C/svg%3E");
}
.vorteil p { color: var(--c-text-2); font-size: 0.97rem; }

.versprechen {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--c-anthrazit);
  color: var(--c-weiss);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.versprechen h3 { color: var(--c-weiss); }
.versprechen ul {
  columns: 2;
  column-gap: 3rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.versprechen li {
  break-inside: avoid;
  display: flex;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
}
.versprechen li::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  background: var(--c-rot);
}
@media (max-width: 720px) {
  .vorteile { grid-template-columns: 1fr; }
  .versprechen ul { columns: 1; }
}

/* ---------- Arbeitsweise ---------- */
.prozess {
  counter-reset: schritt;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  list-style: none;
  margin: 0;
  padding: 0;
}
.prozess li {
  counter-increment: schritt;
  background: var(--c-weiss);
  padding: 1.5rem 1.35rem 1.6rem;
}
.prozess li::before {
  content: counter(schritt, decimal-leading-zero);
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-rot);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.prozess h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.prozess p { font-size: 0.9rem; color: var(--c-text-2); margin: 0; }
@media (max-width: 940px) { .prozess { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prozess { grid-template-columns: 1fr; } }

/* ---------- Referenzen / Galerie ---------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.galerie li { margin: 0; }
.galerie a, .galerie figure {
  display: block;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.galerie a:hover img { transform: scale(1.05); }
.galerie__hinweis {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--c-text-2);
  max-width: 46em;
}
@media (max-width: 940px) { .galerie { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: rgba(34, 37, 42, 0.94);
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
}
.lightbox::backdrop { background: rgba(34, 37, 42, 0.94); }
.lightbox__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border: 1px solid var(--c-line-hell);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--c-rot);
  color: var(--c-weiss);
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
}

/* ---------- Einsatzgebiet ---------- */
.gebiet { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 4.5rem); }
.gebiet__liste {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line-hell);
}
.gebiet__liste li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-line-hell);
  font-weight: 600;
  font-size: 0.98rem;
}
.gebiet__liste li::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--c-rot);
}
.gebiet__hinweis { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; }
@media (max-width: 820px) {
  .gebiet { grid-template-columns: 1fr; }
}

/* ---------- Kontakt ---------- */
.kontakt { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 4rem); align-items: start; }
@media (max-width: 940px) { .kontakt { grid-template-columns: 1fr; } }

.kontakt-info__block { border-top: 1px solid var(--c-line); padding: 1.1rem 0; }
.kontakt-info__block:first-of-type { border-top: none; padding-top: 0; }
.kontakt-info__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rot);
  margin-bottom: 0.3rem;
}
.kontakt-info__block a { color: var(--c-anthrazit); font-weight: 600; }
.kontakt-info__block a:hover { color: var(--c-rot); text-decoration: none; }
.kontakt-info__block .gross { font-size: 1.3rem; font-weight: 800; }
.kontakt-info__aktionen { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Formular */
.formular {
  background: var(--c-weiss);
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-rot);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.formular__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.25rem;
}
.feld { display: flex; flex-direction: column; gap: 0.35rem; }
.feld--voll { grid-column: 1 / -1; }
.feld label { font-size: 0.86rem; font-weight: 600; }
.feld .optional { font-weight: 400; color: var(--c-text-2); }
.feld input,
.feld select,
.feld textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-weiss);
  border: 1px solid rgba(43, 46, 51, 0.35);
  border-radius: 0;
  padding: 0.75rem 0.85rem;
  width: 100%;
}
.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  outline: 3px solid var(--c-rot);
  outline-offset: 0;
  border-color: var(--c-rot);
}
.feld textarea { min-height: 130px; resize: vertical; }
.feld input[type="file"] { padding: 0.6rem 0.85rem; background: var(--c-hellgrau); }
.feld__hinweis { font-size: 0.82rem; color: var(--c-text-2); }
.feld--fehler input,
.feld--fehler select,
.feld--fehler textarea { border-color: var(--c-rot); }
.feld__fehler {
  display: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--c-rot);
}
.feld--fehler .feld__fehler { display: block; }

.feld--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.feld--checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--c-rot);
  flex: 0 0 auto;
}
.feld--checkbox label { font-weight: 400; font-size: 0.93rem; }

.honigtopf {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.formular__status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.97rem;
}
.formular__status.is-visible { display: block; }
.formular__status--ok { background: var(--c-hellgrau); border-left: 4px solid var(--c-anthrazit); }
.formular__status--fehler { background: #FBEBEA; border-left: 4px solid var(--c-rot); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-anthrazit-tief);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  font-size: 0.95rem;
}
.site-footer a { color: var(--c-weiss); }
.site-footer a:hover { color: #E88A86; text-decoration: none; }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer__logo img { height: 60px; width: auto; margin-bottom: 1rem; }
.site-footer h3 {
  color: var(--c-weiss);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.25rem 0; }
.site-footer address { font-style: normal; }
.site-footer__unten {
  border-top: 1px solid var(--c-line-hell);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- Mobile Kontaktleiste ---------- */
.mobilbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--c-weiss);
  border-top: 1px solid var(--c-line);
}
.mobilbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0.25rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-anthrazit);
}
.mobilbar a:hover { text-decoration: none; }
.mobilbar a + a { border-left: 1px solid var(--c-line); }
.mobilbar .mobilbar__offerte { background: var(--c-rot); color: var(--c-weiss); }
@media (max-width: 720px) {
  .mobilbar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------- Cookie-/Consent-Banner ---------- */
.consent {
  display: none;
  position: fixed;
  z-index: 150;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-anthrazit);
  color: var(--c-weiss);
  padding: 1.4rem var(--gutter) calc(1.4rem + env(safe-area-inset-bottom, 0px));
  border-top: 3px solid var(--c-rot);
}
.consent.is-visible { display: block; }
.consent__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.consent p { margin: 0; font-size: 0.93rem; max-width: 52em; color: rgba(255, 255, 255, 0.9); }
.consent__aktionen { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.consent .btn { padding: 0.7rem 1.2rem; font-size: 0.82rem; }

/* ---------- Scroll-Reveal (dezent, mit reduced-motion-Fallback) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Rechtsseiten ---------- */
.rechtsseite { padding-block: clamp(3rem, 7vw, 5rem); max-width: 800px; }
.rechtsseite h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.rechtsseite h2 { font-size: 1.25rem; margin-top: 2.2em; }
.rechtsseite .platzhalter {
  background: #FDF3D7;
  border-left: 4px solid #C9A227;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  margin: 1.25rem 0;
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .mobilbar, .consent, .hero__ctas, .formular, .nav-toggle { display: none !important; }
  body { padding-bottom: 0; }
}
