/* CDU Landtag — Schwarz-Weiß-Version (monochrom)
   Erbt das komplette Layout aus styles.css und überschreibt nur die Farben.
   So bleiben Layout-Änderungen einquellig in styles.css.
   --------------------------------------------------------------- */

/* 1) Markenfarben -> Graustufen-Palette (Grautöne erlaubt) */
:root {
  --deep-teal: #1a1a1a;   /* dunkle Flächen / Überschriften */
  --teal:      #6f6f6f;   /* sekundäre Akzente, Rahmen */
  --light-blue:#f1f1f1;   /* Seitenhintergrund */
  --burgundy:  #2b2b2b;   /* Akzent / Buttons / Rahmen */
  --red:       #4d4d4d;   /* Mini-Logo-Akzent */
  --cream:     #ffffff;   /* Text auf dunklen Flächen */
  --white:     #ffffff;
  --text:      #161616;
  --muted:     #5f5f5f;
  --cdu-orange:#4d4d4d;
  --paper:     #ffffff;
  --soft-paper:#f7f7f7;
  --border:    rgba(0, 0, 0, 0.16);
  --tile-radius: 8px;
}

/* 2) Fotos & Grafiken in Graustufen */
img {
  filter: grayscale(100%);
}

/* Hintergrundbilder (Hero, Unterseiten-Hero) inkl. Farb-Overlays entsättigen */
.hero,
.subpage-hero,
.bottom-skyline {
  filter: grayscale(100%);
}

/* 3) Fest codierte Farben aus styles.css neutralisieren */

/* Call-to-Action-Buttons (waren Gold/Schwarz) */
.cta-assist {
  background: linear-gradient(135deg, #3a3a3a, #161616);
  color: #ffffff;
}
.cta-write {
  background: linear-gradient(135deg, #e6e6e6, #d2d2d2 62%, #bfbfbf);
  color: #161616;
}
.cta-assist .arrow-circle {
  background: #555555;
  color: #ffffff;
}
.cta-write .arrow-circle {
  background: #f0f0f0;
  color: #161616;
}

/* Zitat-Wasserzeichen im "Über mich"-Panel */
.about-text-panel::before {
  color: rgba(0, 0, 0, 0.07);
}

/* Karten-Platzhalter (Kontaktseite) */
.map {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    repeating-linear-gradient(45deg, #e6e6e6 0 14px, #f5f5f5 14px 28px);
  color: #1a1a1a;
}

/* Formular-Fokuszustände (waren Teal) */
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}

/* 4) Optional: Reduzierte Bewegung respektieren (falls in styles.css nicht aktiv) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* 5) Banner-Foto nur in der Schwarz-Weiß-Version
   Die Datei liegt unter assets/hero-sw.jpg. Die Graustufen-Darstellung
   erfolgt automatisch über die filter-Regel in Abschnitt 2. */
.hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0)),
    url("../assets/hero-sw.jpg");
  background-position: center 22%;
}

/* Hero-Motiv auf allen Bildschirmgrößen etwas höher und präsenter ausrichten,
   ohne die Bilddatei selbst zu verändern. */
.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0)),
    url("../assets/hero-sw.jpg");
  background-position: center 22%;
  background-size: cover;
  transform: translateY(-2%);
  pointer-events: none;
}

.hero::after {
  z-index: 1;
}

/* Unterseiten-Hero: Motivfokus auf dem Gesicht halten */
.subpage-hero {
  background-image:
    linear-gradient(90deg, rgba(0,52,71,0.94), rgba(0,52,71,0.68), rgba(0,52,71,0.25)),
    url("../assets/web/subpage-hero-sw-web.jpg");
  background-position: center 20%;
}

@media (max-width: 640px) {
  .subpage-hero {
    background-position: 64% center;
  }

  .card {
    width: 100%;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .card-content h3 {
    font-size: 20px;
  }
}

/* Homepage: Abstand zwischen CTA-Banner und "Bleiben Sie verbunden" reduzieren */
#news {
  padding-top: 40px;
}

@media (min-width: 981px) {
  .hero-bottom {
    height: 90px;
    background: linear-gradient(to bottom, rgba(241, 241, 241, 0) 0 70px, var(--light-blue) 70px);
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .hero-bottom {
    height: 110px;
  }

  /* Das feste Mindestmaß aus dem Basis-Layout darf die zweispaltigen
     Bildkarten auf Tablets nicht über ihre Rasterspalten hinausdrücken. */
  .card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-bottom {
    height: 170px;
  }
}

/* 6) Wahlkreis-Karte (Click-to-load, DSGVO-konform) */
.map-embed {
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.11);
}

.map-canvas {
  width: 100%;
  height: 440px;
}

.map-canvas .leaflet-tile,
.map-canvas img.leaflet-tile {
  filter: grayscale(100%);
}

.map-consent {
  min-height: 440px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    repeating-linear-gradient(45deg, #e6e6e6 0 14px, #f5f5f5 14px 28px);
}

.map-consent-title {
  color: var(--deep-teal);
  font-size: 22px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map-consent-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* 7) Karten-Bilder formatfüllend skalieren (wie Kachel 2) */
.card-image img {
  object-fit: cover;
  object-position: center;
}

.card-image-contain img {
  object-fit: contain;
}

/* Motivbezogene Bildfokuspunkte: Hochformatige Fotos bleiben formatfüllend,
   ohne Gesichter oder andere zentrale Motive am oberen Rand abzuschneiden. */
.card-image img[src$="/ueber-gesundheit.jpg"],
.card-image img[src*="/web/ueber-gesundheit-"],
.card-image img[src$="/presse-1.png"],
.card-image img[src$="/presse-2.png"],
.card-image img[src$="/presse-3.jpg"] {
  object-position: center top;
}

.card-image img[src$="/hero.jpg"] {
  object-position: 62% center;
}

.card-image img[src*="/web/start-wahlkreis-"] {
  object-position: 62% center;
}

.card-image img[src$="/sitzung.jpg"] {
  object-position: 42% center;
}

.card-image img[src$="/ueber-klare-kante.jpg"] {
  object-position: 52% center;
}

.card-image img[src*="/web/ueber-klare-kante-"] {
  object-position: 52% center;
}

/* Dezente Rundung für Karten und Bildkacheln. Große Flächen, Banner und
   Formulare bleiben bewusst kantig, damit der sachliche Charakter erhalten bleibt. */
.card,
.service-card,
.news-item,
.video-card,
.map-embed,
.merch-main-image-wrap,
.merch-thumbnail,
.merch-product-info,
.merch-order-summary,
.ziele-media {
  border-radius: var(--tile-radius);
  overflow: hidden;
}

/* 9) Video-Sektion (News) — selbst gehostet, Hochformat 9:16, monochrom */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.video-card {
  margin: 0;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.11);
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #161616;
  /* Videos bewusst in Originalfarbe zeigen; nur die statischen Bilder bleiben monochrom. */
  filter: none;
}

.video-caption {
  padding: 14px 16px 16px;
}

.video-title {
  display: block;
  color: var(--deep-teal);
  font-weight: 1000;
  line-height: 1.2;
}

.video-date {
  display: block;
  margin-top: 4px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-instagram-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--deep-teal);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-instagram-link:hover,
.video-instagram-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.video-empty {
  color: var(--muted);
  font-size: 17px;
}

.video-cta {
  margin-top: clamp(24px, 3vw, 36px);
}

/* Instagram-Highlights: sämtliche Medien werden lokal ausgeliefert. */
.instagram-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.instagram-section-heading .section-heading {
  margin-bottom: 0;
}

.instagram-profile-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #161616;
  color: #161616;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-profile-link:hover,
.instagram-profile-link:focus-visible {
  background: #161616;
  color: #ffffff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.instagram-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--tile-radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.instagram-card:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.instagram-media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e6e6e6;
}

.instagram-preview,
.instagram-video {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-preview {
  object-fit: cover;
  transition: transform 220ms ease;
}

.instagram-video {
  object-fit: contain;
  background: #161616;
}

.instagram-card:hover .instagram-preview {
  transform: scale(1.025);
}

.instagram-type {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  padding: 6px 9px;
  background: rgba(22, 22, 22, 0.9);
  color: #ffffff;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.instagram-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(16px, 1.7vw, 22px);
}

.instagram-card-copy h3 {
  margin: 0;
  color: var(--deep-teal);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 1000;
  line-height: 1.12;
}

.instagram-direct-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--deep-teal);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.instagram-direct-link:hover,
.instagram-direct-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .instagram-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .instagram-profile-link {
    width: 100%;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-card,
  .instagram-preview {
    transition: none;
  }

  .instagram-card:hover,
  .instagram-card:hover .instagram-preview {
    transform: none;
  }
}

/* 7) Datenschutz-Einwilligung: Checkbox links, Text rechts, volle Breite
   Nötig weil .newsletter-form label { display: block } und
   .contact-form input { width: 100% } aus styles.css die flex-Regel überschreiben. */
.newsletter-form .consent-option,
.consent-option {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
}

.contact-form .consent-option input,
.consent-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-bottom: 0;
}

.consent-option span {
  flex: 1 1 auto;
  min-width: 0;
}

.form-privacy-note {
  margin: 4px 0 18px;
  padding: 14px 16px;
  border-left: 3px solid #161616;
  background: #f2f2f2;
  color: #454545;
  font-size: 13px;
  line-height: 1.55;
}

.form-privacy-note a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-external-link .map-consent {
  min-height: 0;
}

/* 8) Unterstützer-Kollektion — Produktgalerie und Interessensanfrage */
.merch-shop-intro {
  padding-bottom: clamp(28px, 4vw, 52px);
}

.merch-shop .subpage-hero h1 {
  max-width: 1050px;
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: -0.06em;
}

.merch-shop-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 2px solid #161616;
  background: #f1f1f1;
  line-height: 1.55;
}

.merch-shop-status strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.merch-inquiry-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 2px solid #161616;
  background: #f1f1f1;
  line-height: 1.55;
}

.merch-inquiry-notice strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.merch-product-jump {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 0;
  margin-top: clamp(24px, 3vw, 40px);
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  scrollbar-width: thin;
}

.merch-product-jump a {
  flex: 1 0 auto;
  padding: 15px clamp(14px, 2vw, 26px);
  border-right: 1px solid rgba(0, 0, 0, 0.18);
  color: #161616;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.merch-product-jump a:last-child {
  border-right: 0;
  background: #161616;
  color: #ffffff;
}

.merch-product-jump a:hover,
.merch-product-jump a:focus-visible {
  background: #d9d9d9;
}

.merch-product-jump a:last-child:hover,
.merch-product-jump a:last-child:focus-visible {
  background: #4d4d4d;
}

.merch-product-section,
.merch-order-section {
  scroll-margin-top: 18px;
}

.merch-product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.merch-product.is-reversed .merch-gallery {
  order: 2;
}

.merch-product.is-reversed .merch-product-info {
  order: 1;
}

.merch-gallery,
.merch-product-info {
  min-width: 0;
}

.merch-main-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e6e6e6;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.merch-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: opacity 120ms ease;
}

.merch-main-image.is-changing {
  opacity: 0.42;
}

.merch-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 140px));
  gap: 12px;
  margin-top: 14px;
}

.merch-thumbnail {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  background: #dddddd;
  cursor: pointer;
}

.merch-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.merch-thumbnail:hover,
.merch-thumbnail.is-active {
  border-color: #161616;
}

.merch-thumbnail:focus-visible {
  outline: 3px solid #161616;
  outline-offset: 3px;
}

.merch-product-info {
  padding: clamp(28px, 4vw, 52px);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  overflow-wrap: anywhere;
}

.merch-product-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merch-product-info h2 {
  color: var(--deep-teal);
  font-size: clamp(1.75rem, calc(1.15rem + 2.5vw), 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: clamp(16px, 1.7vw, 22px);
}

.merch-product-description {
  margin-bottom: clamp(18px, 2vw, 26px);
  color: var(--muted);
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.merch-provenance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin: 0 0 clamp(20px, 2.2vw, 28px);
}

.merch-manufacturer {
  display: grid;
  grid-template-columns: auto minmax(70px, 128px);
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f7f7f7;
}

.merch-manufacturer .merch-label {
  margin: 0;
}

.merch-manufacturer-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.merch-manufacturer-logo {
  width: auto;
  max-width: 116px;
  height: 34px;
  flex: 0 1 auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.merch-origin-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: #161616;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.merch-origin-flag {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 17px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.28);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.merch-origin-flag span:nth-child(1) { background: #171717; }
.merch-origin-flag span:nth-child(2) { background: #c7162b; }
.merch-origin-flag span:nth-child(3) { background: #f0c900; }

.merch-price {
  color: var(--text);
  font-size: clamp(1.125rem, calc(0.85rem + 1.2vw), 2.25rem);
  font-weight: 1000;
  line-height: 1.08;
  margin-bottom: clamp(22px, 2.35vw, 30px);
}

.merch-price span {
  display: inline-block;
  color: var(--muted);
  font-size: clamp(0.6875rem, calc(0.6rem + 0.3vw), 0.875rem);
  font-weight: 700;
  letter-spacing: 0;
}

.merch-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 14px);
  margin-bottom: clamp(22px, 2.35vw, 30px);
}

.merch-summary > div {
  min-width: 0;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #f7f7f7;
}

.merch-summary strong,
.merch-label {
  display: block;
}

.merch-summary strong {
  font-size: clamp(0.8125rem, calc(0.7rem + 0.5vw), 1.0625rem);
  line-height: 1.3;
}

.merch-label {
  margin-bottom: clamp(4px, 0.55vw, 7px);
  color: var(--muted);
  font-size: clamp(0.625rem, calc(0.55rem + 0.25vw), 0.75rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merch-details {
  margin-bottom: clamp(22px, 2.35vw, 30px);
}

.merch-details > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(13px, 1.35vw, 17px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.merch-details > div:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.merch-details dt {
  color: var(--deep-teal);
  font-size: clamp(0.875rem, calc(0.75rem + 0.4vw), 1.0625rem);
  font-weight: 1000;
  line-height: 1.4;
}

.merch-details dd {
  color: var(--muted);
  font-size: clamp(0.875rem, calc(0.75rem + 0.4vw), 1.0625rem);
  line-height: 1.5;
}

.merch-product-safety {
  margin: calc(clamp(22px, 2.35vw, 30px) * -0.35) 0 clamp(22px, 2.35vw, 30px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.merch-product-safety summary {
  padding: 14px 0;
  color: #161616;
  font-size: clamp(0.8rem, calc(0.7rem + 0.35vw), 0.95rem);
  font-weight: 900;
  cursor: pointer;
}

.merch-product-safety > div {
  padding: 0 0 16px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.merch-product-safety p + p {
  margin-top: 12px;
}

.merch-sizes {
  padding: 0;
  margin: 0 0 clamp(22px, 2.35vw, 30px);
  border: 0;
}

.merch-sizes legend {
  color: var(--deep-teal);
  font-size: clamp(0.9rem, calc(0.75rem + 0.6vw), 1.25rem);
  font-weight: 1000;
  margin-bottom: clamp(10px, 1.1vw, 14px);
}

.merch-sizes legend span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: clamp(0.6875rem, calc(0.6rem + 0.3vw), 0.875rem);
  font-weight: 700;
  line-height: 1.4;
}

.merch-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 0.8vw, 10px);
}

.merch-size-option {
  position: relative;
  cursor: pointer;
}

.merch-size-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.merch-size-option span {
  min-width: clamp(48px, 4.5vw, 58px);
  height: clamp(44px, 4vw, 52px);
  display: grid;
  place-items: center;
  padding: 0 clamp(10px, 1.1vw, 14px);
  border: 2px solid #8c8c8c;
  background: #ffffff;
  color: #161616;
  font-size: clamp(0.875rem, calc(0.75rem + 0.35vw), 1rem);
  font-weight: 1000;
}

.merch-size-option:hover span,
.merch-size-option.is-selected span,
.merch-size-option input:checked + span {
  border-color: #161616;
  background: #161616;
  color: #ffffff;
}

.merch-size-option input:focus-visible + span {
  outline: 3px solid #161616;
  outline-offset: 3px;
}

.merch-variants .merch-size-option span {
  width: auto;
  min-width: 190px;
  height: auto;
  min-height: 52px;
  padding-block: 8px;
  line-height: 1.25;
  text-align: center;
}

.merch-purchase-controls {
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.merch-quantity {
  display: grid;
  gap: 7px;
  color: #161616;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merch-quantity input {
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 2px solid #8c8c8c;
  background: #ffffff;
  color: #161616;
  font: inherit;
  font-size: 1rem;
}

.merch-add-button,
.merch-interest-button,
.merch-submit-button {
  width: 100%;
  min-height: 52px;
  padding: 13px clamp(14px, 2vw, 24px);
  font-size: clamp(0.72rem, 1.15vw, 0.88rem);
  line-height: 1.35;
}

.merch-add-button:hover,
.merch-add-button:focus-visible,
.merch-interest-button:hover,
.merch-interest-button:focus-visible,
.merch-submit-button:not(:disabled):hover,
.merch-submit-button:not(:disabled):focus-visible {
  background: #4d4d4d;
}

.merch-submit-button:disabled {
  background: #6f6f6f;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.72;
}

.merch-selection-error {
  min-height: 1.4em;
  margin-top: 10px;
  color: #161616;
  font-size: 0.88rem;
  font-weight: 800;
}

.merch-order-section {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.merch-interest-button {
  width: 100%;
}

.merch-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.merch-inquiry-heading {
  position: sticky;
  top: 24px;
  display: block;
  align-self: start;
  margin-bottom: 0;
}

.merch-inquiry-heading p {
  max-width: 420px;
  margin-top: clamp(20px, 2.4vw, 30px);
  line-height: 1.65;
}

.merch-inquiry-form {
  min-width: 0;
}

.merch-inquiry-form > label {
  display: block;
  min-width: 0;
  color: #161616;
  font-size: 0.86rem;
  font-weight: 900;
}

.merch-interest-products {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.merch-interest-products legend {
  margin-bottom: 12px;
  color: #161616;
  font-size: 0.92rem;
  font-weight: 1000;
}

.merch-interest-products > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.merch-interest-products label {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 2px solid #8c8c8c;
  background: #ffffff;
  color: #161616;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.merch-interest-products label:has(input:checked) {
  border-color: #161616;
  background: #161616;
  color: #ffffff;
}

.merch-interest-products input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #161616;
}

.merch-interest-products input:focus-visible {
  outline: 3px solid #161616;
  outline-offset: 4px;
}

.merch-interest-summary {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-left: 4px solid #161616;
  background: #f1f1f1;
}

.merch-interest-summary strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.merch-interest-summary p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.merch-order-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.merch-order-summary {
  position: sticky;
  top: 24px;
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  background: #161616;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.merch-order-summary-heading {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.merch-order-summary h3,
.merch-order-form h3 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.merch-order-count {
  flex: 0 0 auto;
  color: #d2d2d2;
  font-size: 0.78rem;
  font-weight: 900;
}

.merch-order-empty {
  padding: 24px 0;
  color: #d2d2d2;
  line-height: 1.55;
}

.merch-order-lines {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.merch-order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.merch-order-line strong,
.merch-order-line span {
  display: block;
}

.merch-order-line strong {
  overflow-wrap: anywhere;
}

.merch-order-line span {
  margin-top: 5px;
  color: #d2d2d2;
  font-size: 0.8rem;
  line-height: 1.5;
}

.merch-order-remove {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
}

.merch-order-totals {
  margin-top: 22px;
}

.merch-order-totals > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, auto);
  gap: 16px;
  padding: 8px 0;
  font-size: 0.88rem;
}

.merch-order-totals dd {
  overflow-wrap: anywhere;
  text-align: right;
}

.merch-order-totals .merch-order-total {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2px solid #ffffff;
  font-size: 1rem;
  font-weight: 1000;
}

.merch-order-form {
  min-width: 0;
}

.merch-order-form h3 {
  margin-bottom: 24px;
}

.merch-order-form label:not(.consent-option) {
  display: block;
  min-width: 0;
  color: #161616;
  font-size: 0.86rem;
  font-weight: 900;
}

.merch-order-form .form-row {
  align-items: start;
}

.merch-order-form .merch-address-row {
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.28fr);
}

.merch-order-form .merch-city-row {
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
}

.merch-order-form input[readonly] {
  background: #eeeeee;
  color: #4d4d4d;
}

.merch-order-form .consent-option {
  margin: 6px 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}

.merch-order-form .consent-option a {
  text-decoration: underline;
}

.merch-optional {
  color: var(--muted);
  font-weight: 600;
}

.merch-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.merch-submit-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.merch-legal-section {
  padding: 28px 0;
}

.merch-legal-links {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.merch-legal-links h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.merch-legal-links p {
  color: var(--muted);
  line-height: 1.65;
}

.merch-legal-links > div {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.merch-legal-links a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  color: #161616;
  font-weight: 900;
  text-decoration: none;
}

.merch-legal-links a:hover,
.merch-legal-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.withdrawal-blank {
  min-height: 54px;
  border-bottom: 1px solid #161616;
}

.withdrawal-blank-short {
  max-width: 280px;
}

.merch-message-card {
  max-width: 800px;
  padding: clamp(26px, 4vw, 48px);
  background: #f1f1f1;
  border-left: 7px solid #161616;
}

.merch-message-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.merch-message-card p {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.merch-reference {
  padding: 14px 18px;
  background: #ffffff;
  overflow-wrap: anywhere;
}

.merch-message-link {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .merch-product {
    grid-template-columns: 1fr;
  }

  .merch-product.is-reversed .merch-gallery,
  .merch-product.is-reversed .merch-product-info {
    order: initial;
  }

  .merch-gallery {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .merch-order-layout {
    grid-template-columns: 1fr;
  }

  .merch-inquiry-layout {
    grid-template-columns: 1fr;
  }

  .merch-inquiry-heading {
    position: static;
  }

  .merch-order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .merch-shop-status {
    grid-template-columns: 1fr;
  }

  .merch-inquiry-notice {
    grid-template-columns: 1fr;
  }

  .merch-product-jump {
    width: 100%;
  }

  .merch-product-info {
    padding: clamp(20px, 6vw, 26px) clamp(16px, 5vw, 20px);
  }

  .merch-provenance,
  .merch-manufacturer,
  .merch-origin-badge {
    width: 100%;
  }

  .merch-manufacturer {
    grid-template-columns: auto minmax(80px, 1fr);
  }

  .merch-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .merch-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .merch-summary,
  .merch-purchase-controls,
  .merch-order-form .merch-address-row,
  .merch-order-form .merch-city-row {
    grid-template-columns: 1fr;
  }

  .merch-size-option {
    flex: 1 1 calc(50% - 5px);
  }

  .merch-size-option span {
    width: 100%;
  }

  .merch-variants .merch-size-option span {
    min-width: 0;
  }

  .merch-order-summary,
  .merch-order-form,
  .merch-inquiry-form {
    padding: 22px 18px;
  }

  .merch-interest-products > div {
    grid-template-columns: 1fr;
  }

  .merch-legal-links {
    grid-template-columns: 1fr;
  }

  .merch-legal-links h2 {
    grid-column: auto;
  }

  .merch-order-section .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    letter-spacing: -0.04em;
  }

  .merch-order-line,
  .merch-order-totals > div {
    grid-template-columns: 1fr;
  }

  .merch-order-totals dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .merch-main-image {
    transition: none;
  }
}

@media print {
  .withdrawal-form-copy {
    max-width: none;
  }

  .withdrawal-form-copy .print-hidden,
  .withdrawal-form-copy ~ *,
  body:has(.withdrawal-form-copy) .nav,
  body:has(.withdrawal-form-copy) .subpage-hero,
  body:has(.withdrawal-form-copy) .bottom-skyline {
    display: none !important;
  }
}

/* 9) Ziele-Seite — nummeriertes Editorial-Layout */

/* Lead-Absatz unter dem Hero */
.ziele-lead {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: var(--text);
}

/* Sticky Schwerpunkte-Ankerleiste */
.ziele-anchor-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ziele-anchor-bar::-webkit-scrollbar { display: none; }

.ziele-anchor-inner {
  display: flex;
  min-width: max-content;
  padding: 0 24px;
}

.ziele-anchor-bar a {
  display: block;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ziele-anchor-bar a:hover,
.ziele-anchor-bar a.is-current {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* Ziel-Sections */
.ziele-section {
  scroll-margin-top: 48px; /* Höhe der Ankerleiste */
}
.ziele-section + .ziele-section {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.ziele-section-inner {
  position: relative;
  display: grid;
  grid-template-columns: clamp(76px, 7vw, 112px) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

/* Große Nummer in einer eigenen Spalte – nicht hinter dem Text */
.ziele-ghost {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: 4px;
  font-size: clamp(76px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.09);
  pointer-events: none;
  user-select: none;
}

/* Abwechselnde Bild-/Textanordnung */
.ziele-section-inner--media-left .ziele-media {
  grid-column: 2;
  grid-row: 1;
}

.ziele-section-inner--media-left .ziele-content {
  grid-column: 3;
  grid-row: 1;
}

.ziele-section-inner--media-right .ziele-content {
  grid-column: 2;
  grid-row: 1;
}

.ziele-section-inner--media-right .ziele-media {
  grid-column: 3;
  grid-row: 1;
}

.ziele-media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(135deg, #d8d8d8 0%, #f3f3f3 48%, #c8c8c8 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.ziele-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ziele-media img[src$="/ziele-gesundheit.jpg"] {
  object-position: 50% 40%;
}

.ziele-media img[src$="/ziele-sicherheit.jpg"] {
  object-position: 50% 38%;
}

.ziele-media img[src$="/ziele-ehrenamt.jpg"] {
  object-position: 50% 34%;
}

.ziele-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ziele-content {
  position: relative;
  max-width: 620px;
}

.ziele-content h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--deep-teal);
}

.ziele-content p {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  margin-bottom: 16px;
}

.ziele-intro {
  font-size: clamp(17px, 1.45vw, 19px) !important;
}

.ziele-quote {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 5px solid #161616;
  background: rgba(0, 0, 0, 0.045);
}

.ziele-quote span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ziele-quote p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.ziele-priorities h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ziele-priorities ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ziele-priorities li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.48;
}

.ziele-priorities li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #161616;
}

@media (max-width: 980px) {
  .ziele-section-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .ziele-section-inner .ziele-ghost,
  .ziele-section-inner .ziele-media,
  .ziele-section-inner .ziele-content {
    grid-column: 1;
    grid-row: auto;
  }

  .ziele-ghost {
    order: 1;
    padding-top: 0;
    font-size: clamp(68px, 13vw, 92px);
  }

  .ziele-media {
    order: 2;
    width: min(100%, 720px);
  }

  .ziele-content {
    order: 3;
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .ziele-section-inner {
    gap: 20px;
  }

  .ziele-content h2 {
    margin-bottom: 20px;
  }

  .ziele-content p {
    font-size: 16px;
  }

  .ziele-quote {
    margin: 22px 0;
    padding: 18px;
  }

  .ziele-media figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Abschluss-CTA-Band */
.ziele-cta {
  background: var(--deep-teal);
  color: #ffffff;
  padding: 88px 24px;
  text-align: center;
}

.ziele-cta h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #ffffff;
  margin-bottom: 18px;
}

.ziele-cta-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
}

.ziele-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ziele-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
}
.ziele-cta-btn--primary {
  background: #ffffff;
  color: #1a1a1a;
}
.ziele-cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.ziele-cta-btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Scroll-Reveal-Animation */
.ziele-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ziele-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ziele-anchor-bar a { transition: none; }
  .ziele-reveal,
  .ziele-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 12) Presse-Hub: schneller Einstieg und kompakte Download-Galerie */
#pressefotos,
#presseanfrage {
  scroll-margin-top: 24px;
}

.press-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.press-hub-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  min-width: 0;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--tile-radius);
  background: #ffffff;
  color: #161616;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.press-hub-card:hover,
.press-hub-card:focus-visible {
  background: #161616;
  color: #ffffff;
  transform: translateY(-2px);
}

.press-hub-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.press-hub-card:hover .press-hub-number,
.press-hub-card:focus-visible .press-hub-number {
  color: rgba(255, 255, 255, 0.66);
}

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

.press-hub-card strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  text-transform: uppercase;
}

.press-hub-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.press-hub-card:hover small,
.press-hub-card:focus-visible small {
  color: rgba(255, 255, 255, 0.74);
}

.press-office-info {
  margin-top: clamp(22px, 3vw, 34px);
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 22px);
}

.press-gallery--official {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.press-gallery--official .press-photo {
  aspect-ratio: 4 / 5;
}

.press-gallery--official .press-photo img {
  object-fit: contain;
  object-position: center;
}

.press-photo {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--tile-radius);
  background: #dedede;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.press-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.press-photo--football img {
  object-position: 50% 38%;
}

.press-photo--portrait img {
  object-position: 50% 28%;
}

.press-photo:hover img {
  transform: scale(1.025);
}

.press-photo-credit {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(22, 22, 22, 0.88);
  color: #ffffff;
  font-size: 10px;
  line-height: 1.2;
}

.press-photo-download {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: rgba(22, 22, 22, 0.9);
  color: #ffffff;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.press-photo-download:hover,
.press-photo-download:focus-visible {
  background: #ffffff;
  color: #161616;
}

.press-gallery-note {
  max-width: 760px;
  margin-top: clamp(20px, 3vw, 30px);
  padding-left: 14px;
  border-left: 3px solid #161616;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.press-usage-note {
  max-width: 840px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.press-usage-note p + p {
  margin-top: 8px;
}

.press-subheading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  gap: 22px;
  align-items: end;
  margin: clamp(48px, 7vw, 82px) 0 clamp(22px, 3vw, 34px);
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.press-subheading h3 {
  color: var(--deep-teal);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 1000;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.press-subheading p {
  color: var(--muted);
  line-height: 1.5;
}

.press-contact-panel,
.press-contact-panel > * {
  min-width: 0;
}

.press-contact-panel .newsletter-info h2 {
  font-size: clamp(30px, 5vw, 58px);
  overflow-wrap: anywhere;
}

/* 13) Startseite: kleine persönliche Bildleiste direkt unter der Begrüßung */
.letter-image-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr);
  gap: clamp(10px, 1.5vw, 18px);
  width: min(100%, 780px);
  margin-top: clamp(28px, 4vw, 44px);
}

.letter-image {
  height: clamp(120px, 14vw, 180px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--tile-radius);
  background: #d7d7d7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.11);
}

.letter-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.letter-image--medicine img,
.letter-image--football img {
  object-position: center top;
}

@media (max-width: 980px) {
  .press-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .press-hub-grid,
  .press-subheading {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-gallery {
    gap: 9px;
  }

  .press-photo-download {
    right: 7px;
    bottom: 7px;
    min-width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 8px;
  }

  .press-photo-download span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .letter-image-strip {
    grid-template-columns: minmax(0, 1.35fr) minmax(96px, 0.65fr);
  }

  .letter-image {
    height: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .press-hub-card,
  .press-photo img {
    transition: none;
  }

  .press-hub-card:hover,
  .press-hub-card:focus-visible,
  .press-photo:hover img {
    transform: none;
  }
}

/* 14) Schlankerer mobiler Auftritt
   Der Desktop-Auftritt bleibt unverändert. Auf kleinen Bildschirmen werden
   Marke, Navigation und Homepage-Einstieg als ruhige, kompakte Ebenen gefasst. */
@media (max-width: 640px) {
  .nav {
    height: 78px;
  }

  .nav-inner {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .site-mini-logo {
    max-width: calc(100% - 62px);
    padding: 9px 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(12, 12, 12, 0.34);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.075em;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 35;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: rgba(12, 12, 12, 0.38);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 1;
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .menu-toggle:focus-visible,
  .nav-links a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }

  .nav-links {
    top: 54px;
    width: min(330px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(18, 18, 18, 0.92);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    letter-spacing: 0.055em;
  }

  .home-page .hero,
  .home-page .hero-content {
    min-height: clamp(590px, 82svh, 700px);
  }

  .home-page .hero-content {
    align-items: flex-end;
    padding: 94px 14px 112px;
  }

  .home-page .logo-lockup {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
  }

  .home-page .logo-name {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 0.94;
    letter-spacing: -0.035em;
  }

  .home-page .logo-role {
    width: fit-content;
    max-width: 30ch;
    margin-top: 12px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.66), rgba(12, 12, 12, 0.34));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    font-size: clamp(12px, 3.8vw, 15px);
    line-height: 1.35;
    letter-spacing: 0.07em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .home-page .hero-bottom {
    height: 126px;
  }

  .home-page .cta-row {
    top: -34px;
    gap: 10px;
  }

  .home-page .cta {
    width: 100%;
    height: 66px;
    padding: 0 13px 0 19px;
    border-radius: 14px;
    font-size: 15px;
    letter-spacing: 0.035em;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  }

  .home-page .arrow-circle {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .home-page #news {
    padding-top: 30px;
  }

  .home-page .section-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.92;
  }

  .home-page .section-heading p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .home-page .cards {
    gap: 12px;
  }

  .home-page .card {
    min-height: 220px;
    border-radius: 12px;
  }
}
