  .band-cream { background: #faf8f4; }

  .section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head.center .lede { margin-left: auto; margin-right: auto; }
  .section-head .lede + .lede { margin-top: clamp(1rem, 1.8vw, 1.4rem); }
  .prose.center p { margin-left: auto; margin-right: auto; text-align: center; }

  /* Icon-Karten wie auf den Produktseiten */
  .steps--icons .step { align-items: center; text-align: center; gap: 0.65rem; padding-block: clamp(1.8rem, 3vw, 2.4rem); }
  .steps--icons .step-icon { width: 40px; height: 40px; color: var(--gold); margin: 0 0 0.4rem; stroke-width: 1.6; }
  .steps--icons .step h3 { font-size: 1.15rem; }
  .steps { align-items: stretch; }
  .step { display: flex; flex-direction: column; gap: 0.5rem; }
  .step h3, .step p { margin: 0; }

  /* Logo-Raster in der Größe des Oberflächen-Rasters */
  .press-media { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); gap: clamp(1.6rem, 3vw, 2.4rem); }
  /* Vorschaufenster füllen die Zeilenhöhe — so bleibt das Raster bündig,
     auch wenn das Hochformat-Porträt mehr Höhe braucht als eine Wortmarke. */
  .press-item { display: flex; flex-direction: column; height: 100%; }
  .press-preview { height: auto; min-height: 190px; flex: 1; }
  .press-preview--photo { min-height: 340px; }
  .press-preview--photo img { object-position: center 30%; }

  /* ── Pressemitteilung: Karte mit Mitteilung + Abbildung ── */
  .releases { max-width: 62rem; }

  .release-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.4rem, 3vw, 2.2rem);
  }
  .release-kopf { display: flex; flex-direction: column; gap: 0.55rem; }
  .release-card .release-title { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.3; color: var(--text); margin: 0; }
  .release-card .release-sub { font-size: 0.98rem; color: var(--text-dim); margin: 0; max-width: 52rem; }

  .release-dateien {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .datei { margin: 0; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }

  /* Vorschaubild ist selbst die Schaltfläche */
  .datei-vorschau {
    position: relative; display: block; width: 100%; padding: 0;
    border: 0; border-bottom: 1px solid var(--line); background: #fff;
    cursor: zoom-in; line-height: 0;
  }
  .datei-vorschau img { width: 100%; height: 230px; object-fit: cover; object-position: top center; display: block; }
  /* Das Hochformat-Foto vollständig zeigen statt anzuschneiden — der dunkle
     Grund passt zum Bild selbst und lässt die Kachel absichtlich wirken. */
  .datei-vorschau--foto { background: #1a1a1a; }
  .datei-vorschau--foto img { object-fit: contain; }
  .datei-lupe {
    position: absolute; inset-inline: 0; bottom: 0;
    padding: 0.5rem; text-align: center;
    font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: #fff; background: linear-gradient(180deg, rgba(26,26,26,0), rgba(26,26,26,0.82));
    opacity: 0; transition: opacity 0.2s ease; line-height: 1.4;
  }
  .datei-vorschau:hover .datei-lupe,
  .datei-vorschau:focus-visible .datei-lupe { opacity: 1; }

  .datei figcaption { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.9rem 1rem 1rem; }
  .datei-name { font-size: 0.98rem; font-weight: 500; color: var(--text); }
  .datei-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-faint); }
  .datei-aktionen { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.55rem; }

  .datei-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.9rem; border-radius: 999px;
    border: 1px solid var(--gold-line); background: transparent;
    font-family: inherit; font-size: 0.86rem; color: var(--gold-deep);
    text-decoration: none; cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .datei-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
  .datei-btn--download::after { content: " ↓"; }


  /* ── Overlay für Mitteilung und Abbildung ── */
  .pm-overlay {
    position: fixed; inset: 0; z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(0.6rem, 3vmin, 2.5rem);
    background: rgba(20, 18, 15, 0.9);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  }
  .pm-overlay[hidden] { display: none; }
  body.pm-offen { overflow: hidden; }

  .pm-rahmen {
    display: flex; flex-direction: column;
    width: min(58rem, 100%); max-height: 100%;
    background: var(--surface); border-radius: var(--radius);
    box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.7); overflow: hidden;
  }
  .pm-kopf { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0.9rem 0.9rem 1.2rem; border-bottom: 1px solid var(--line); }
  .pm-titel { margin: 0; flex: 1; font-size: 0.95rem; font-weight: 500; color: var(--text); }
  .pm-schliessen {
    flex: none; width: 2.3rem; height: 2.3rem; display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: transparent;
    color: var(--text-dim); cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease;
  }
  .pm-schliessen svg { width: 16px; height: 16px; }
  .pm-schliessen:hover { color: var(--gold-deep); border-color: var(--gold-line); }

  .pm-buehne { display: flex; flex-direction: column; gap: 0.9rem; padding: 1rem; overflow: auto; background: var(--surface-2); }
  .pm-laden { margin: 0; font-size: 0.88rem; color: var(--text-dim); }
  .pm-pdf { width: 100%; height: min(72vh, 50rem); border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
  .pm-bild { max-width: 100%; max-height: 72vh; margin: 0 auto; display: block; border-radius: var(--radius-sm); }
  .pm-fuss { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

  .hinweis { margin-top: clamp(2rem, 4vw, 3rem); }
  .kontakt-aktionen { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: clamp(1.8rem, 3vw, 2.4rem); }

  /* Textblöcke unter der zentrierten Überschrift mittig ausrichten —
     der Text selbst bleibt linksbündig, sonst leidet die Lesbarkeit */
  .section .prose, .section .releases, .section .releases-empty, .section .press-grid { margin-inline: auto; }
  .section .prose p { margin-inline: auto; }

  /* Kopf wie auf den Produktseiten: warmer Anlauf statt Kreideweiß */
  .presse-hero {
    padding-top: clamp(5.5rem, 9vw, 9rem);
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
    text-align: center;
    background:
      radial-gradient(80rem 34rem at 50% -8rem, rgba(232, 180, 99, 0.14), transparent 62%),
      linear-gradient(180deg, #fffdf9 0%, #ffffff 70%);
  }
  .presse-hero .product-mark { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; line-height: 1.05; margin-bottom: clamp(2rem, 3.5vw, 2.8rem); }
  .presse-hero .product-name { font-size: clamp(3.4rem, 7.5vw, 6rem); font-weight: 600; letter-spacing: -0.03em; color: var(--gold); line-height: 0.95; }
  .presse-hero .product-tagline { font-size: clamp(1.5rem, 2.9vw, 2.5rem); font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
  .presse-hero h1 { font-size: clamp(1.5rem, 2.5vw, 2.05rem); font-weight: 500; letter-spacing: -0.01em; margin: 0 auto; }
  .presse-hero .lede { max-width: 52rem; margin: clamp(1.6rem, 3vw, 2.3rem) auto 0; }
