/* ==========================================================================
   Brückenbogen FfO — brueckenbogen-ffo.de
   Umsetzung der Design-Vorlage Home_brueckenbogen-ffo.de.dc.html
   ========================================================================== */

/* ---- Schrift: Inter (variabel), selbst gehostet ---- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var-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: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var-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 {
  --pearl: #fcfbfa;
  --dark-blue: #153a43;
  --blue: #389bb4;
  --light-blue: #7ed4ea;
  --blue-light: #d9e5ff;
  --purple: #e3d6e5;
  --vermillion: #ff7c4d;
  --text-body: #2a2724;
  --text-2: #5f5a54;
  --text-3: #8a857e;
  --ease: cubic-bezier(.165, .84, .44, 1);
  --wordmark: url("../brand/wortmarke-brueckenbogen-ffo.svg");
  --wordmark-ratio: 1608.67 / 144.8;
}

/* ---- Basis ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--pearl);
  color: var(--text-body);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p { margin: 0; }
img { max-width: 100%; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.page { max-width: 1440px; margin: 0 auto; }

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

/* Wortmarke: SVG als Maske, pro Kontext einfärbbar */
.wordmark {
  aspect-ratio: var(--wordmark-ratio);
  -webkit-mask-image: var(--wordmark);
  mask-image: var(--wordmark);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Korn-Textur (eigene Kachel, Werte wie im Design System) */
.grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
  opacity: .04;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("../img/grain.png");
  overflow: clip;
}

/* Icons (Phosphor, inline als SVG-Sprite) */
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

/* Buttons: volle Pillen */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100vw;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn--outline {
  border: 1px solid var(--vermillion);
  background: transparent;
  color: var(--vermillion);
}
.btn--outline:hover {
  background: var(--vermillion);
  border-color: var(--pearl);
  color: var(--pearl);
}
.btn--fill {
  border: 1px solid var(--dark-blue);
  background: var(--dark-blue);
  color: var(--pearl);
}
.btn--fill:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--pearl);
}
.btn--nav { padding: 10px 20px; font-size: 14px; }
.btn--card { padding: 12px 22px; font-size: 15px; }
.btn--esta { padding: 12px 24px; font-size: 15px; white-space: nowrap; }
.btn--wide { padding: 14px 26px; font-size: 15px; }
.btn .icon { font-size: 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vermillion);
}

.divider { height: 1px; }

/* Sektions-Überlappung: 16 px, oben abgerundet — bewusst so gewollt */
.overlap {
  position: relative;
  margin-top: -16px;
  border-radius: 16px 16px 0 0;
}

/* ---- 01 Navbar ---- */
.navbar {
  background: var(--pearl);
  padding: 0 56px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  width: 217px;
  height: 20px;
  background: var(--vermillion);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .18s var(--ease);
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--vermillion);
  transition: width .22s var(--ease);
}
.nav-link:hover { color: var(--vermillion); }
.nav-link:hover::before { width: 100%; }

/* Burger-Menü (nur mobil sichtbar) */
.nav-burger { display: none; position: relative; }
.nav-burger__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #d8d4cf;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.nav-burger__btn span {
  display: block;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
}
.nav-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: min(50vw, 320px);
  width: max-content;
  background: var(--pearl);
  border: 1px solid #e4e0da;
  border-radius: 12px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 2px 2px 14px 2px rgba(0, 0, 0, .2);
  z-index: 40;
}
.nav-burger.is-open .nav-dropdown { display: flex; }
.nav-dropdown__link {
  font-size: 15px;
  color: var(--dark-blue);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-dropdown__cta {
  font-size: 15px;
  font-weight: 500;
  color: var(--vermillion);
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid var(--vermillion);
  border-radius: 100vw;
  text-align: center;
  margin-top: 4px;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.nav-dropdown__cta:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--pearl);
}

/* ---- 02 Hero ---- */
.hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 720px;
  background: linear-gradient(140deg, #dfc7dd, #8ba7cf);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(#153a4300 22%, #153a434d 52%, #153a43e6 100%);
  pointer-events: none;
  z-index: 1;
}
/* AI-Kennzeichnung des KI-generierten Hero-Fotos — muss sichtbar bleiben */
.ai-label {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: .92;
}
.ai-label--desktop { right: 12px; bottom: 10px; z-index: 1; }
.ai-label--mobile { display: none; right: 12px; top: 12px; z-index: 2; }
.hero__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 56px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  z-index: 2;
  align-items: stretch;
}
.hero__claim-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
}
.hero__claim {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--pearl);
  line-height: 1.15;
  white-space: nowrap;
}
.hero__wordmark {
  width: 100%;
  background: var(--vermillion);
}

/* ---- 02a Mission ---- */
.mission {
  background: var(--pearl);
  /* 184px unten = 160px aus der Vorlage + 24px Flex-Lücke, wie im Entwurf gerendert */
  padding: 155px 56px 184px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--dark-blue);
  max-width: 1264px;
  margin: 0 auto;
}
.mission__statement {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.12;
  text-wrap: pretty;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.mission__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color .18s var(--ease);
}
.link-more:hover { color: var(--vermillion); }
.link-more .icon { font-size: 16px; }

/* ---- 02a2 Drei B ---- */
.three-b {
  background: var(--pearl);
  padding: 0 56px 160px;
  max-width: 1264px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  color: var(--dark-blue);
}
.three-b__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 100vw;
  background: var(--vermillion);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
}
.icon-circle .icon { font-size: 28px; }
.three-b__title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.three-b__text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 34ch;
  text-wrap: pretty;
}
.three-b__closing {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 39px;
}
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  background: var(--dark-blue);
  color: var(--pearl);
}
.three-b__claim {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .15px;
  color: var(--dark-blue);
}

/* ---- 04 Angebote ---- */
.offers {
  z-index: 4;
  padding: 112px 56px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--blue-light);
}
.offers__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 60ch;
}
.offers__title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--dark-blue);
}
.offers__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #4a453f;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  border: 1px solid var(--dark-blue);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #e7e4e0;
  overflow: hidden;
}
.offer-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.offer-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-card__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.offer-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-2);
  margin-top: 10px;
}
.offer-card__meta > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-card__meta .icon {
  font-size: 16px;
  color: var(--text-3);
}
.offer-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  text-wrap: pretty;
  margin-top: 10px;
}
.offers__cta {
  display: flex;
  justify-content: center;
}

/* ---- 05 Über uns ---- */
.about {
  z-index: 5;
  padding: 48px 56px 89px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  color: var(--dark-blue);
  background: #fff;
  width: 100%;
}
.about__intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: end;
}
.about__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about__title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.05;
  text-wrap: balance;
}
.about__lead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 52ch;
  text-wrap: pretty;
}
.about__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 3.35;
  width: 100%;
  justify-self: stretch;
  align-self: end;
}
.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  border: 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 35px;
  width: 100%;
}
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.stat-card--purple { background: var(--purple); }
.stat-card--vermillion { background: var(--vermillion); }
.stat-card--lightblue { background: var(--light-blue); }
.stat-card__num {
  position: relative;
  z-index: 2;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-card__text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.5;
  margin-top: auto;
}
.esta {
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
  color: var(--pearl);
}
.esta__col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.esta__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-wrap: balance;
}
.esta__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.esta__logo {
  width: 110px;
  height: auto;
  display: block;
  background: var(--pearl);
  border-radius: 8px;
  padding: 8px;
}
.esta__link {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--pearl);
  border-bottom: 2px solid var(--vermillion);
  padding-bottom: 4px;
  transition: color .18s var(--ease);
}
.esta__link:hover { color: var(--vermillion); }
.esta__link .icon { font-size: 16px; }
.esta__text {
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
}
.esta .divider { background: #fcfbfa33; }
.esta__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.esta__cta-note {
  font-size: 17px;
  line-height: 1.5;
  max-width: 34ch;
}

/* ---- 08 Kontakt ---- */
.contact {
  z-index: 8;
  padding: 112px 56px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #fff;
}
.contact__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
/* Karten mit 3 px Rahmenverlauf über doppeltes background-image */
.contact-card {
  border: 3px solid transparent;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-image: linear-gradient(#fcfbfa, #fcfbfa), linear-gradient(#8fb0d6, #e3d6e5);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact-card__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.contact-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}
.contact-card__text--pretty { text-wrap: pretty; }
.contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--text-2);
}
.contact-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card__row .icon {
  font-size: 18px;
  color: var(--text-3);
}
.contact-card__row--strong { font-weight: 700; }
a.contact-card__row {
  color: var(--text-2);
  text-decoration: none;
  transition: color .18s var(--ease);
}
a.contact-card__row:hover { color: var(--vermillion); }
.contact-card__cta {
  margin-top: auto;
  display: flex;
}
.donate {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--text-2);
}
.donate__label {
  font-weight: 700;
  color: var(--dark-blue);
}
.donate strong { font-weight: 700; color: var(--dark-blue); }
.contact-card__note {
  font-size: 14px;
  line-height: 1.55;
  color: #6b6660;
}

/* ---- 09 Footer ---- */
.footer {
  position: relative;
  overflow: hidden;
  padding: 56px 56px 32px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  color: var(--dark-blue);
  background: linear-gradient(180deg, #E3D6E5, #8fb0d6);
}
.footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__wordmark-small {
  width: 260px;
  background: var(--dark-blue);
  -webkit-mask-position: left center;
  mask-position: left center;
}
.footer__claim-top {
  font-size: 17px;
  line-height: 1.5;
}
.footer__esta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}
.footer__esta-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.footer__esta-address {
  font-size: 16px;
  line-height: 1.55;
}
.footer__esta-link {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-blue);
  text-decoration: none;
  transition: color .18s var(--ease);
}
.footer__esta-link:hover { color: var(--vermillion); }
.footer__esta-link .icon { font-size: 16px; }
.footer__wordmark-row { position: relative; z-index: 2; }
.footer__wordmark-big {
  width: 100%;
  background: var(--pearl);
}
.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .divider { background: #153a4340; }
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .18s var(--ease);
}
.footer__links a:hover { color: var(--vermillion); }
.footer__claim { font-weight: 600; }

/* ==========================================================================
   Unterseiten: Impressum / Datenschutz
   ========================================================================== */
.navbar__logo-link { display: block; }
.legal-body {
  padding: 96px 56px 128px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--vermillion);
}
.legal-back { align-self: flex-start; }
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 78ch;
  font-size: 16px;
  line-height: 1.7;
  color: #4a453f;
  text-wrap: pretty;
}
.legal-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.legal-strong {
  font-weight: 700;
  color: var(--dark-blue);
}
.legal-h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--dark-blue);
}
.legal-h2--first { margin-top: 8px; }
.legal-h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-blue);
}
.legal-link {
  color: var(--dark-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--vermillion);
  transition: color .18s var(--ease);
}
.legal-link:hover { color: var(--vermillion); }
.legal-caps {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}
.legal-content .divider { background: #e0dcd6; }
.divider--spaced { margin: 12px 0; }
.legal-content ul {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* 4px Zusatzabstand wie base.css des Design Systems (li{margin-bottom:.25rem}) */
.legal-content li { margin: 0 0 4px; }

/* ==========================================================================
   Mobil (bis 767 px) — Desktop bleibt darüber unverändert
   ========================================================================== */
@media (max-width: 767px) {
  body { overflow-x: hidden; }
  .page { padding: 0 20px; }

  /* Navbar */
  .navbar {
    height: auto;
    padding: 14px 20px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .navbar__nav { gap: 14px; }
  .nav-link, .navbar .btn--nav { display: none; }
  .nav-burger { display: block; }

  /* Hero */
  .hero { height: 460px; min-height: 460px; }
  .hero__img { object-position: 78% center; }
  .hero__overlay { padding: 0 10px 35px; gap: 8px; }
  .hero__claim-row { gap: 32px; }
  .hero__claim {
    font-size: 19px;
    line-height: 1.25;
    white-space: normal;
  }
  .hero__wordmark {
    -webkit-mask-position: left center;
    mask-position: left center;
  }
  .ai-label--desktop { display: none; }
  .ai-label--mobile { display: block; width: 20px; height: 20px; }

  /* Sektionen: eine Spalte, 20 px eigener Rand + 20 px über .page */
  .mission { padding: 64px 20px 80px; gap: 24px; }
  .mission__statement { font-size: 27px; }
  .mission__actions { gap: 14px; }

  .three-b {
    padding: 0 20px 160px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .three-b__item { gap: 14px; }
  .three-b__title { font-size: 24px; }

  .offers { padding: 64px 20px 56px; }
  .offers__title { font-size: 27px; }
  .offers__grid { grid-template-columns: 1fr; gap: 14px; }
  .offer-card__title { font-size: 20px; }

  .about { padding: 48px 20px 89px; gap: 32px; }
  .about__intro { grid-template-columns: 1fr; gap: 32px; }
  .about__title { font-size: 29px; }
  .about__lead { font-size: 17px; }
  .stats { grid-template-columns: 1fr; }
  .stat-card { min-height: 0; }
  .stat-card__num { font-size: 52px; }
  .esta { grid-template-columns: 1fr; gap: 32px; }
  .esta__col { gap: 14px; }
  .esta__title { font-size: 25px; }

  .contact { padding: 64px 20px 56px; }
  .contact__title { font-size: 25px; }
  .contact__grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card__title { font-size: 24px; }

  /* Footer (32px Lücke: so rendert der Entwurf mobil) */
  .footer {
    padding: 48px 8% 28px;
    gap: 32px;
    border-radius: 16px 16px 0 0;
  }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__wordmark-small { width: 200px; }
  .footer__esta {
    align-items: flex-start;
    text-align: left;
  }
  .footer__row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 28px;
  }
  .footer__links { gap: 14px; }
  .footer__claim { text-align: right; }

  /* Unterseiten: eigene Mobil-Regeln aus den Vorlagen (8 %-Rand, Nav-Links
     bleiben sichtbar und umbrechen, kein Burger) */
  .page--legal { padding: 0; }
  .navbar--legal { padding: 14px 8%; row-gap: 12px; }
  .navbar--legal .navbar__nav { gap: 28px; }
  .navbar--legal .nav-link { display: inline-block; }
  .navbar--legal .btn--nav { display: inline-flex; }
  .legal-body { padding: 56px 8% 88px; gap: 28px; }
  .legal-title { font-size: 38px; }
  .legal-h2 { font-size: 22px; }
  .legal-h3 { font-size: 17px; }
  .footer--legal { gap: 56px; }
  .footer--legal .footer__top { gap: 36px; }
  .footer--legal .footer__wordmark-small { width: 100%; }
  .footer--legal .footer__links { gap: 28px; }
}
