/* Movement Security und Eventservice GmbH — mvmt-security.de
   Archivo wird lokal gehostet (SIL Open Font License), kein Google-Fonts-CDN. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */

:root {
  --bg: #F6F4F0;
  --bg-alt: #EFEBE4;
  --ink: #14171A;
  --ink-deep: #0E1013;
  --acc: #E8482B;
  --muted: #6B7178;
  --body-muted: #40464C;
  --card-muted: #5A6169;
  --line: rgba(20, 23, 26, 0.12);
  --line-strong: rgba(20, 23, 26, 0.16);
  --line-dark: rgba(246, 244, 240, 0.2);
  --paper-dark: rgba(246, 244, 240, 0.72);
  --paper-dim: rgba(246, 244, 240, 0.68);
  --paper-faint: rgba(246, 244, 240, 0.55);
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Archivo, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

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

img, video { max-width: 100%; }

h1, h2, h3 { text-wrap: balance; overflow-wrap: break-word; }
.contact-tile__value, .directions__address, .site-footer__links a { overflow-wrap: break-word; }

/* Sehr schmale Screens: lange deutsche Komposita sauber trennen */
@media (max-width: 439.98px) {
  h1, h2 { hyphens: auto; -webkit-hyphens: auto; }
}

::selection { background: var(--ink); color: var(--bg); }

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

[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
}
.skip-link:focus { left: 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* ---------- Bausteine ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.eyebrow--dash {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow--dash::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--acc);
  flex: none;
}
.eyebrow--paper { color: var(--paper-faint); }
.eyebrow--acc { color: var(--acc); }

.h-lg {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.h-md {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.h-xl {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.btn .arrow { font-size: 17px; }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  padding: 17px 26px;
}
.btn--primary:hover { background: var(--acc); color: #FFFFFF; }
.btn--ghost {
  border: 1px solid rgba(20, 23, 26, 0.28);
  padding: 16px 24px;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 23, 26, 0.04);
}
.btn--outline {
  border: 1px solid var(--ink);
  padding: 16px 26px;
}
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--acc {
  background: var(--acc);
  color: #FFFFFF;
  padding: 17px 26px;
}
.btn--acc:hover { transform: translateY(-2px); }

.breadcrumb {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: clamp(28px, 4vw, 52px);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { padding: 0 6px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 244, 240, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 14px clamp(20px, 5vw, 64px);
  min-height: 72px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.site-header__brand img {
  height: 46px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(14px, 1.9vw, 30px);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav__link {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav__link:hover { border-bottom-color: var(--acc); }
.site-nav__link[aria-current="page"] {
  border-bottom-color: var(--acc);
  font-weight: 600;
}
.site-nav__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding-left: clamp(4px, 1vw, 16px);
}
.site-nav__tel::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acc);
  flex: none;
}
.site-nav__cta {
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 2px;
  transition: background 0.18s;
}
.site-nav__cta:hover { background: var(--acc); color: #FFFFFF; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(20, 23, 26, 0.24);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 6px clamp(20px, 5vw, 64px) 18px;
  flex-direction: column;
}
.mobile-menu.is-open { display: flex; animation: menuIn 0.22s ease; }
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.1);
  font-size: 16px;
  font-weight: 600;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a[aria-current="page"] { color: var(--acc); }

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Mobile-Navigation nur mit aktivem JS umschalten (sonst bleiben die Links sichtbar) */
@media (max-width: 899.98px) {
  html.js .site-nav__link { display: none; }
  html.js .nav-toggle { display: flex; }
}
@media (min-width: 900px) {
  .nav-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 479.98px) {
  .site-nav__tel { display: none; }
}
@media (max-width: 419.98px) {
  .site-header__brand img { height: 40px; }
  .site-nav__cta { padding: 10px 14px; }
}

/* ---------- Hero ---------- */

.hero { background: var(--bg); padding: clamp(48px, 6vw, 88px) 0 0; }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: end;
}
.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: 19ch;
}
.hero__copy {
  margin: 26px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--body-muted);
  max-width: 50ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 34px 0 0;
}
.hero__media {
  min-height: clamp(280px, 34vw, 440px);
  background: var(--ink);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  display: block;
}

/* ---------- Leistungsumfang ---------- */

.scope { background: var(--bg); padding: clamp(64px, 8vw, 112px) 0; }
.scope__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.scope__head .h-lg { max-width: 22ch; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 34px 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: background 0.18s;
}
.card:hover { background: #FFFFFF; }
.card__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--acc);
}
.card__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--card-muted);
}

/* ---------- Monitor ---------- */

.monitor {
  background: var(--ink-deep);
  color: var(--bg);
  padding: clamp(56px, 7vw, 96px) 0;
}
.monitor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.monitor__frame {
  border: 1px solid rgba(246, 244, 240, 0.18);
  padding: 12px;
  background: #000000;
}
.monitor__screen {
  position: relative;
  overflow: hidden;
  background: #000000;
}
.monitor__screen video {
  width: 100%;
  height: auto;
  display: block;
  background: #000000;
  filter: contrast(1.08) saturate(0.85);
}
.monitor__scanlines,
.monitor__vignette,
.monitor__sweep,
.monitor__corner { position: absolute; pointer-events: none; }
.monitor__scanlines {
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.34) 0 1px, rgba(0, 0, 0, 0) 1px 3px);
  opacity: 0.75;
}
.monitor__vignette {
  inset: 0;
  background: radial-gradient(120% 90% at 50% 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
}
.monitor__sweep {
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.055) 55%, rgba(255, 255, 255, 0) 100%);
  animation: cctvSweep 7s linear infinite;
}
@keyframes cctvSweep {
  0% { transform: translateY(-30%); }
  100% { transform: translateY(460%); }
}
.monitor__corner { width: 20px; height: 20px; }
.monitor__corner--tl { top: 10px; left: 10px; border-top: 2px solid rgba(246, 244, 240, 0.75); border-left: 2px solid rgba(246, 244, 240, 0.75); }
.monitor__corner--tr { top: 10px; right: 10px; border-top: 2px solid rgba(246, 244, 240, 0.75); border-right: 2px solid rgba(246, 244, 240, 0.75); }
.monitor__corner--bl { bottom: 10px; left: 10px; border-bottom: 2px solid rgba(246, 244, 240, 0.75); border-left: 2px solid rgba(246, 244, 240, 0.75); }
.monitor__corner--br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(246, 244, 240, 0.75); border-right: 2px solid rgba(246, 244, 240, 0.75); }
.monitor__copy .h-md { max-width: 20ch; }
.monitor__copy p {
  margin: 24px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--paper-dark);
  max-width: 46ch;
}

/* ---------- Datenschutz-Versprechen ---------- */

.trust {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.trust__intro .h-lg { max-width: 20ch; }
.trust__intro p {
  margin: 24px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--paper-dark);
  max-width: 46ch;
}
.trust__intro .btn { margin-top: 34px; }
.trust__list { display: flex; flex-direction: column; }
.trust__item {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
}
.trust__item:last-child { border-bottom: 1px solid var(--line-dark); }
.trust__item dt {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.trust__item dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--paper-dim);
}

/* ---------- Einsatzfälle ---------- */

.usecases { background: var(--bg); padding: clamp(64px, 8vw, 112px) 0; }
.usecases .eyebrow { margin-bottom: 20px; }
.usecases .h-md {
  margin-bottom: clamp(32px, 4vw, 48px);
  max-width: 22ch;
}
.usecase-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.usecase {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1fr;
  gap: 16px 36px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}
.usecase dt {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.usecase dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--card-muted);
}
@media (max-width: 559.98px) {
  .usecase { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Ablauf ---------- */

.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 112px) 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.process__intro .h-md { max-width: 18ch; }
.process__intro p {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 44ch;
}
.process__steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}
.step__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--acc);
  padding-top: 3px;
}
.step__title {
  display: block;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 7px;
}
.step__text {
  display: block;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--card-muted);
}

/* ---------- Kontakt-CTA ---------- */

.cta { background: var(--bg); padding: clamp(64px, 8vw, 112px) 0; }
.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.cta .h-xl { max-width: 20ch; }
.cta p {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 44ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper-dark);
}
.site-footer__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 40px;
}
.site-footer__logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.site-footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
}
.site-footer__title {
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
}
.site-footer__links a:hover { color: var(--bg); }
.site-footer__links .tel {
  color: var(--bg);
  font-weight: 600;
}
.site-footer__legal {
  max-width: 1440px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 20px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(246, 244, 240, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}
.site-footer__legal a:hover { color: var(--bg); }
.site-footer__legal-links { display: flex; gap: 24px; }

/* ---------- Unterseiten (Impressum, Datenschutz, 404) ---------- */

.page-hero { background: var(--bg); padding: clamp(48px, 6vw, 88px) 0 clamp(32px, 4vw, 48px); }
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 20ch;
}
.page-hero__lead {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 58ch;
}

.legal { background: var(--bg); padding: 0 0 clamp(64px, 8vw, 112px); }
.legal__inner { max-width: 860px; }

.fact-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
  margin: 0 0 clamp(36px, 4vw, 56px);
}
.fact {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) 1fr;
  gap: 10px 36px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-strong);
}
.fact dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.fact dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
}
.fact dd a { text-decoration: underline; text-underline-offset: 3px; }
.fact dd a:hover { color: var(--acc); }
@media (max-width: 559.98px) {
  .fact { grid-template-columns: 1fr; gap: 4px; }
}

.prose h2 {
  margin: clamp(36px, 5vw, 52px) 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.prose h3 {
  margin: 26px 0 0;
  font-size: 16.5px;
  font-weight: 600;
}
.prose p, .prose ul {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-muted);
}
.prose ul { padding-left: 20px; }
.prose li { margin-top: 6px; }
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--acc); }
.prose strong { color: var(--ink); }

.todo {
  display: inline-block;
  background: rgba(232, 72, 43, 0.08);
  border: 1px dashed var(--acc);
  border-radius: 2px;
  color: var(--ink);
  font-weight: 600;
  padding: 1px 8px;
}

/* 404 */
.error-page { background: var(--bg); padding: clamp(64px, 10vw, 140px) 0; }
.error-page__code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--acc);
  margin-bottom: 18px;
}
.error-page h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.error-page p {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 52ch;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- Kontakt: Direktkontakt-Kacheln ---------- */

.contact-hero { background: var(--bg); padding: clamp(48px, 6vw, 88px) 0 clamp(40px, 5vw, 64px); }
.contact-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.contact-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.contact-hero__copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 46ch;
}
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(36px, 4vw, 56px);
}
.contact-tile {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.18s;
}
a.contact-tile:hover { background: #FFFFFF; }
.contact-tile__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-tile__value {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.contact-tile__value--tel { font-size: clamp(20px, 2vw, 25px); }

/* ---------- Kontakt: Formular ---------- */

.form-section { background: var(--bg); padding: clamp(40px, 5vw, 64px) 0 clamp(64px, 8vw, 112px); }
.form-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.form-intro .h-md { max-width: 16ch; }
.form-intro p {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 42ch;
}
.form-intro__steps {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 23, 26, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-intro__step {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body-muted);
}
.form-intro__step .num { color: var(--acc); font-weight: 700; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #FFFFFF;
  border: 1px solid rgba(20, 23, 26, 0.14);
  padding: clamp(24px, 3vw, 40px);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field > span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field .req { color: var(--acc); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid rgba(20, 23, 26, 0.22);
  background: #FFFFFF;
  padding: 13px 14px;
  border-radius: 2px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form ::placeholder { color: #9AA0A6; opacity: 1; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.contact-form textarea { resize: vertical; }
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--card-muted);
}
.consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--ink);
  flex: none;
}
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--acc); }
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.contact-form button[type="submit"] {
  font-family: inherit;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  padding: 17px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.18s;
}
.contact-form button[type="submit"]:hover { background: var(--acc); color: #FFFFFF; }
.contact-form button[type="submit"]:disabled { background: var(--muted); cursor: wait; }
.form-status {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--acc);
}
.form-status.is-error { color: #B3261E; }

/* Honeypot-Feld: für Menschen unsichtbar */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Kontakt: Anfahrt ---------- */

.directions {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 7vw, 96px) 0;
}
.directions__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.directions__head h2 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.directions__head span { font-size: 15px; color: var(--paper-dim); }
.directions__panel {
  min-height: clamp(240px, 30vw, 400px);
  background: #22262A;
  border: 1px solid rgba(246, 244, 240, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  padding: clamp(28px, 4vw, 48px);
}
.directions__address {
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.directions__note { font-size: 14.5px; color: var(--paper-dim); max-width: 44ch; }

/* ---------- Start: Hinweisleiste ---------- */

.top-notice {
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px 20px;
}
.top-notice a { color: var(--acc); font-weight: 600; }

/* ---------- Start: Hero + Trustbar ---------- */

.home-hero { background: var(--bg); }
.home-hero__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: end;
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 19ch;
}
.home-hero__copy {
  margin: 28px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--body-muted);
  max-width: 52ch;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 36px 0 0;
}
.home-hero__note { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.home-hero__media {
  min-height: clamp(300px, 38vw, 480px);
  background: var(--ink);
  overflow: hidden;
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vw, 480px);
  object-fit: cover;
  display: block;
}
.trustbar-wrap {
  max-width: 1440px;
  margin: clamp(48px, 6vw, 88px) auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
}
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  column-gap: 36px;
}
.trustbar > div { padding: 26px 0; }
.trustbar__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.trustbar__text { font-size: 13.5px; line-height: 1.5; color: var(--muted); }

/* ---------- Große Überschriften-Varianten ---------- */

.h-hg {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.h-ml {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.h-xxl {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--acc);
  padding-bottom: 5px;
  transition: color 0.18s;
}
.link-more:hover { color: var(--acc); }

/* ---------- Start: Leistungs-Karten ---------- */

.services { background: var(--bg); padding: clamp(72px, 9vw, 132px) 0; }
.services__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.card-grid--wide { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.card--service { padding: 34px 30px 30px; min-height: 230px; gap: 14px; }
.card__title--lg { font-size: 23px; line-height: 1.15; }
.card__more { margin-top: auto; font-size: 14.5px; font-weight: 600; }

/* ---------- Start: So arbeiten wir (dunkel) ---------- */

.how {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(72px, 9vw, 132px) 0;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
}
.how__intro .h-hg { max-width: 20ch; }
.how__intro p {
  margin: 24px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(246, 244, 240, 0.7);
  max-width: 44ch;
}
.how__intro .btn { margin-top: 34px; }
.dark-steps { display: flex; flex-direction: column; }
.dark-step {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
}
.dark-step:last-child { border-bottom: 1px solid var(--line-dark); }
.dark-step__num { font-size: 14px; font-weight: 600; color: var(--acc); padding-top: 3px; }
.dark-step__title {
  display: block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 7px;
}
.dark-step__text {
  display: block;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--paper-dim);
}

/* ---------- Start: Haltung + Zahlen ---------- */

.ethos { background: var(--bg); padding: clamp(72px, 9vw, 132px) 0; }
.ethos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.ethos__media {
  min-height: clamp(280px, 34vw, 440px);
  background: var(--ink);
  overflow: hidden;
}
.ethos__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  display: block;
}
.ethos__copy .h-lg { max-width: 22ch; }
.ethos__copy p {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 50ch;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 28px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat__value {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__label { font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 8px; }

/* ---------- Chips / Einsatzbereiche ---------- */

.areas { background: var(--bg); padding: 0 0 clamp(72px, 9vw, 132px); }
.areas .eyebrow { margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(20, 23, 26, 0.2);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 500;
}
.chips--links { gap: 12px; }
.contact-hero .chips { margin-top: clamp(32px, 4vw, 48px); }
.gewerk--alt .gewerk__text { margin-top: 0; margin-bottom: 28px; }
a.chip {
  font-size: 14.5px;
  transition: background 0.18s, color 0.18s;
}
a.chip:hover { background: var(--ink); color: var(--bg); }

/* ---------- Jobs-Banner ---------- */

.hirebar {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 6vw, 88px) 0;
}
.hirebar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hirebar .eyebrow--acc { margin-bottom: 16px; }
.hirebar h2 { margin: 0 0 12px; }
.hirebar p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4E545A;
  max-width: 46ch;
}

/* ---------- Start: Kontakt-Zeilen ---------- */

.reach { background: var(--bg); padding: clamp(72px, 9vw, 120px) 0; }
.reach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.reach p {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 46ch;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 23, 26, 0.14);
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.14);
  transition: color 0.18s;
}
a.contact-row:hover { color: var(--acc); }
.contact-row__label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-row__value {
  display: block;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.contact-row__value--tel { font-size: clamp(21px, 2.2vw, 28px); }
.contact-row__value--plain {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-muted);
  letter-spacing: 0;
}
.contact-row__arrow { font-size: 22px; flex: none; }

/* ---------- Leistungen: Gewerke ---------- */

.gewerk { padding: clamp(56px, 7vw, 104px) 0; }
.gewerk--light { background: var(--bg); }
.gewerk--light + .gewerk--light, .gewerk--border { border-top: 1px solid var(--line); }
.gewerk--dark { background: var(--ink); color: var(--bg); }
.gewerk--alt { background: var(--bg-alt); border-top: 1px solid var(--line); }
.gewerk__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.gewerk__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--acc);
  margin-bottom: 16px;
}
.gewerk .h-ml { max-width: 20ch; }
.gewerk__text {
  margin: 24px 0 32px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 48ch;
}
.gewerk--dark .gewerk__text { color: var(--paper-dark); }
.gewerk .link-more { margin-top: 32px; }
.gewerk__media {
  min-height: clamp(280px, 32vw, 420px);
  background: var(--ink);
  overflow: hidden;
}
.gewerk__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  display: block;
}
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tag-grid > div {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 18px 20px;
  font-size: 14.5px;
  line-height: 1.5;
}
.tag-grid--dark { border-color: rgba(246, 244, 240, 0.18); }
.tag-grid--dark > div {
  background: var(--ink);
  border-color: rgba(246, 244, 240, 0.18);
}
.brand-panel {
  min-height: clamp(280px, 32vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-panel--dark { background: #22262A; }
.brand-panel--light { background: #E8E4DD; }
.brand-panel img {
  width: clamp(120px, 14vw, 190px);
  height: auto;
  opacity: 0.16;
}
.brand-panel--light img { filter: invert(1); opacity: 0.1; }
.topic-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 23, 26, 0.14);
}
.topic {
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.14);
  font-size: 15.5px;
  font-weight: 600;
}
.teaser {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0;
}
.teaser__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.teaser h2 { margin-bottom: 14px; max-width: 20ch; }
.teaser p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 48ch;
}
.needs { background: var(--bg); padding: clamp(64px, 8vw, 112px) 0; }
.needs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.needs__intro .h-ml { max-width: 20ch; }
.needs__intro p {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 44ch;
}
.needs__intro .btn { margin-top: 32px; }
.needs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px 40px;
}
.need__title { font-size: 15.5px; font-weight: 600; margin-bottom: 7px; }
.need__text { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Über uns ---------- */

.about-intro { background: var(--bg); padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 80px); }
.about-intro h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: 22ch;
}
.about-intro__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(32px, 4vw, 48px);
}
.about-intro__cols p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-muted);
}
.about-photo { background: var(--bg); padding: 0 0 clamp(64px, 8vw, 112px); }
.about-photo__frame {
  height: clamp(280px, 40vw, 560px);
  background: var(--ink);
  overflow: hidden;
}
.about-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.principles {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
}
.principles .eyebrow--paper { margin-bottom: 20px; }
.principles .h-lg {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 20ch;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0;
  border-right: 1px solid rgba(246, 244, 240, 0.18);
  border-bottom: 1px solid rgba(246, 244, 240, 0.18);
}
.principle {
  background: var(--ink);
  border-top: 1px solid rgba(246, 244, 240, 0.18);
  border-left: 1px solid rgba(246, 244, 240, 0.18);
  padding: 32px 28px;
  min-height: 190px;
}
.principle__num { font-size: 12px; font-weight: 600; color: var(--acc); margin-bottom: 16px; }
.principle__title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.principle__text { font-size: 14.5px; line-height: 1.6; color: var(--paper-dim); }
.company { background: var(--bg); padding: clamp(64px, 8vw, 112px) 0; }
.company__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.company__intro .h-md { max-width: 18ch; }
.company__intro p {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 44ch;
}
.fact-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 23, 26, 0.14);
}
.fact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.14);
}
.fact-row dt { font-size: 14.5px; color: var(--muted); }
.fact-row dd { margin: 0; font-size: 15.5px; font-weight: 600; text-align: right; }
.jobs {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 112px) 0;
}
.jobs__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.jobs__head .h-lg { max-width: 16ch; }
.jobs__head p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 48ch;
}
.job-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 23, 26, 0.18);
}
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.18);
  transition: color 0.18s;
}
a.job:hover { color: var(--acc); }
.job__title {
  display: block;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.job__meta { display: block; font-size: 14.5px; color: var(--muted); }
.job__arrow { font-size: 20px; }
.jobs__note {
  margin-top: 36px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-muted);
}
.jobs__note a {
  font-weight: 600;
  border-bottom: 2px solid var(--acc);
  padding-bottom: 2px;
}

/* ---------- Scroll-Reveal (Klasse wird nur per JS gesetzt) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.card-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.card-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.card-grid .reveal:nth-child(4) { transition-delay: 0.21s; }

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .monitor__sweep { animation: none; }
  .mobile-menu.is-open { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .site-nav__cta, .card, .nav-toggle .bar { transition: none; }
  .btn--acc:hover { transform: none; }
}
