/* ==========================================================================
   DER BIENENMANN – Landingpage
   Naturpapier als Grund, Violett-Pflaume als Scheinwerfer, Honiggelb als Akzent
   ========================================================================== */

/* ---------------------------------------------------------------------------
   SCHRIFTEN
   Drei Plakatschriften, alle unter der SIL Open Font License und in
   assets/fonts/ abgelegt. Sie werden vom eigenen Server geladen - es geht
   nichts an Google, deshalb ist kein Cookie-Banner noetig.
   Lizenz und Herkunft: assets/fonts/LIZENZ.txt

   Zum Wechseln nur --font-marke weiter unten aendern:
     "Oswald"      schmal und sachlich
     "Bebas Neue"  sehr hoch und schlank
     "Anton"       das schwerste Gewicht
   --------------------------------------------------------------------------- */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivoblack-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kaushan Script";
  src: url("../fonts/kaushanscript-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yellowtail";
  src: url("../fonts/yellowtail-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebasneue-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pflaume: #4a2a5f;
  --pflaume-dunkel: #341d44;
  --papier: #f7f2e8;
  --papier-warm: #efe7d8;
  --papier-tief: #e2d7c3;
  --tinte: #1e1c1a;
  --anthrazit: #4a4640;
  --grau: #7b7367;
  --honig: #dfa022;
  --weiss: #ffffff;
  --linie: rgba(30, 28, 26, 0.13);

  --font: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Zapfe Display", "Helvetica Neue Condensed Bold",
    "HelveticaNeue-CondensedBold", Oswald, "Arial Narrow", Impact, var(--font);
  /* Schreibschrift wie beim Honigzapfe-Schriftzug.
     Alternative: "Yellowtail" - liegt ebenfalls im Ordner. */
  /* Headlines: breite, fette Grotesk - bewusst klar unterscheidbar von der
     schmalen Oswald, die exklusiv dem Markennamen vorbehalten ist. */
  --font-headline: "Archivo Black", "Arial Black", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  --font-script: "Yellowtail", "Kaushan Script", "Snell Roundhand",
    "Brush Script MT", "Segoe Script", cursive;
  /* Markenname. Hier die gewuenschte Plakatschrift eintragen:
     "Oswald" | "Bebas Neue" | "Anton" */
  --font-marke: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Schraegstellung des Schriftzugs. 0deg = aufrecht, -8deg = Plakat-Look */
  --marke-neigung: -8deg;

  /* Kopfbild-Zoom: 1 = randlos formatfuellend, kleiner = weiter herausgezoomt */
  --hero-zoom: 1;

  --breite: 1220px;
  --radius: 3px;
}

/* ------------------------------------------------------------------ Basis */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--pflaume); }

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.6rem, 7.6vw, 5.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-align: center; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); letter-spacing: 0.05em; }

p { margin: 0 0 1.15em; }

.container { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 28px; }
.container-schmal { max-width: 860px; }

/* Viel Luft - das ist die halbe Miete fuer die ruhige Anmutung */
section { padding: clamp(80px, 11vw, 150px) 0; }

.bg-papier { background: var(--papier); }
.bg-warm { background: var(--papier-warm); }
.bg-weiss { background: var(--weiss); }

/* ------------------------------------------------------------ Typo-Helfer */
.kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pflaume);
  margin-bottom: 20px;
}
.lead { font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.55; color: var(--anthrazit); }
.klein { font-size: 0.92rem; color: var(--grau); }
.text-mitte { text-align: center; }
.pflaume { color: var(--pflaume); }

.section-kopf { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-kopf.text-mitte { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-pflaume { background: var(--pflaume); color: var(--weiss); }
.btn-pflaume:hover { background: var(--pflaume-dunkel); }
.btn-outline { background: transparent; color: var(--tinte); border-color: var(--tinte); }
.btn-outline:hover { background: var(--tinte); color: var(--weiss); }
.btn-gruppe { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------------------------------------------------- Header
   Ueber dem Kopfbild unsichtbar. Erst beim Scrollen erscheint eine
   schlanke Zeile - das Kopfbild bleibt ein reines Bild. */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header.versteckt { transform: translateY(-100%); opacity: 0; pointer-events: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.wortmarke {
  font-family: var(--font-marke);
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tinte);
  text-decoration: none;
  line-height: 1;
}
.site-header:not(.versteckt) 
.header-rechts { display: flex; align-items: center; gap: 22px; }
.header-rechts .btn { padding: 12px 24px; font-size: 0.78rem; }
.header-tel { font-size: 0.9rem; font-weight: 700; color: var(--tinte); text-decoration: none; white-space: nowrap; }
.header-tel:hover { color: var(--pflaume); }
body.ohne-hero main { padding-top: 0; }
body.ohne-hero .site-header { position: sticky; }

/* ------------------------------------------------- SECTION 1: Kopfbild
   Wie ein Filmplakat: gross, ruhig, nur Name und Rolle. */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  background: var(--pflaume-dunkel);
  overflow: hidden;
}
.hero-foto { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* Weich gezeichnete Kopie desselben Fotos - fuellt den Rand, der beim
   Herauszoomen entsteht, damit das Kopfbild randlos bleibt. */
.hero-fuellung {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  filter: blur(46px) brightness(0.74) saturate(0.9);
}
.hero-motiv {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(var(--hero-zoom));
  /* weicher Uebergang zum Rand, damit kein harter Rahmen entsteht */
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 78%, transparent 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(18, 11, 24, 0.5) 0%, rgba(18, 11, 24, 0.14) 30%, rgba(18, 11, 24, 0) 52%),
    linear-gradient(to right, rgba(18, 11, 24, 0.32) 0%, rgba(18, 11, 24, 0) 44%),
    linear-gradient(to top, rgba(18, 11, 24, 0.3) 0%, rgba(18, 11, 24, 0) 22%);
}
.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(38px, 5vw, 68px);
  padding-bottom: clamp(38px, 5vw, 68px);
}
/* Markenname oben links, zweizeilig in Oswald. Der Schriftzug
   "aus Landschaft Honig machen" steckt im Foto selbst. */
.hero-marke {
  font-family: var(--font-marke);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 700 !important;
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--weiss);
  margin: 0;
  text-shadow: 0 2px 20px rgba(18, 11, 24, 0.4);
}
.marke-der  { display: block; font-size: 0.44em; letter-spacing: 0.08em; line-height: 1.1; }
.marke-name { display: block; font-size: 1em; letter-spacing: 0.005em; }

/* Schreibschrift-Zeile unter der Marke, zweite Zeile versetzt */
.hero-claim {
  font-family: "Caveat", var(--font-script);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  color: var(--weiss);
  /* tiefer und nach rechts geschoben, fuellt die Luecke neben Rico */
  margin: clamp(30px, 6vw, 90px) 0 0 clamp(24px, 8vw, 170px);
  text-shadow: 0 3px 24px rgba(18, 11, 24, 0.45);
}
.hero-claim span { display: block; }
.claim-zeile2 { margin-left: 1.2em; }

/* Bildunterschrift unten rechts */
.hero-fuss { display: flex; justify-content: flex-end; }
.hero-rolle {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(18, 11, 24, 0.5);
}

/* Praesenter Sprung zum Produkt, unten mittig */
.hero-shortcut {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 40px);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 10px 30px rgba(18, 11, 24, 0.35);
}
.hero-shortcut:hover { transform: translateX(-50%) translateY(-2px); }
.hero-shortcut span { font-size: 1.05rem; line-height: 1; }


/* ------------------------------------------------ SECTION 2: Mission */
#mission { padding-bottom: clamp(56px, 7vw, 90px); }
/* Einzeilig; auf schmalen Schirmen skaliert die Groesse mit, damit nichts ueberlaeuft */
.mission-untertitel {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--anthrazit);
  margin: 0;
}
/* Die drei Stationen sind die eigentliche Aussage - groesser als die Headline */
.kurzweg-klein { margin: clamp(38px, 5vw, 60px) 0 26px; }
.kurzweg-klein .kurzweg-schritt svg { width: clamp(80px, 12vw, 150px); height: clamp(80px, 12vw, 150px); }
.kurzweg-klein .kurzweg-schritt span { font-size: clamp(0.78rem, 1.3vw, 1.05rem); }
.kurzweg-klein .kurzweg-pfeil { flex-basis: clamp(44px, 8vw, 140px); margin-top: clamp(40px, 6vw, 75px); height: 3px; }
/* Die Innovation als Handlung, direkt unter dem Kurzweg */
.mission-prozess {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--pflaume);
  margin: 0 0 14px;
}

.mission-subline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0;
}

/* Kleiner CTA unter den drei Orten */
.orte-cta { text-align: center; margin: clamp(36px, 5vw, 54px) 0 0; }

/* Produktname in der Idee-Sektion */
.produkt-name { margin: 6px 0 clamp(34px, 4.5vw, 50px); }
.produkt-name > span:last-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--anthrazit);
}

/* ------------------------------- SECTION 5: Imkerei · Team · Honig
   Drei gleichwertige Karten. Vertiefen, ohne Voraussetzung zu sein. */
/* Kopfmenue des Karussells */
.welt-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 46px);
  margin-bottom: clamp(28px, 4vw, 42px);
}
.welt-nav button {
  appearance: none;
  background: none;
  border: 0;
  padding: 6px 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grau);
  border-bottom: 2px solid transparent;
}
.welt-nav button:hover { color: var(--anthrazit); }
.welt-nav button.aktiv { color: var(--pflaume); border-bottom-color: var(--pflaume); }

/* Die Tafel: ein geschlossener Block je Reiter - Bild links buendig
   eingebaut, Wahlmotive als Leiste darunter, Text rechts. */
.tafel { max-width: 1080px; margin: 0 auto clamp(44px, 6vw, 68px); }
.tafel-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 3px solid var(--pflaume);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(30, 28, 26, 0.12);
  margin-bottom: 56px;
}
html.js .tafel-panel { display: none; margin-bottom: 0; }
html.js .tafel-panel.aktiv { display: grid; animation: einblenden 0.45s ease; }
@keyframes einblenden { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Bildspalte: im Block gerahmt, festes Seitenverhaeltnis -
   der Text bestimmt die Bildhoehe nicht mehr */
.tafel-bilder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(14px, 1.8vw, 22px);
  height: 100%;
  background: var(--papier-warm);
  border-right: 1px solid var(--linie);
}
.tafel-gross { margin: 0; flex: 1 1 auto; min-height: 0; }
.tafel-gross img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.tafel-wahl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wahlmotiv {
  appearance: none;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.7;
  transition: opacity 0.18s ease, border-color 0.18s ease;
}
.wahlmotiv img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; display: block; }
.wahlmotiv:hover { opacity: 1; }
.wahlmotiv.aktiv { border-color: var(--pflaume); opacity: 1; }

/* Textspalte */
.tafel-inhalt {
  padding: clamp(18px, 2.4vw, 30px) clamp(18px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tafel-intro {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--anthrazit);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--linie);
}
.info-punkt { position: relative; padding: 0 0 11px 24px; }
.info-punkt:last-child { padding-bottom: 0; }
.info-punkt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 2px;
  background: var(--pflaume);
}
.info-punkt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.info-punkt p { margin: 0; font-size: 0.88rem; color: var(--grau); line-height: 1.5; }

/* Fakten und Auszeichnungen kompakt unter der Collage */
.welt-fakten-zeile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.welt-fakten-zeile li {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.welt-fakten-zeile li + li::before { content: "\00b7"; margin-right: 12px; color: var(--pflaume); }
.awards-zeile {
  max-width: 640px;
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--linie);
  text-align: center;
  font-size: 0.88rem;
  color: var(--grau);
  line-height: 1.7;
}
.awards-zeile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anthrazit);
  margin-bottom: 4px;
}



/* Auszeichnungen: beilaeufig, nicht gefeiert */

/* Bekannt aus: eine ruhige Zeile statt Laufband */
.presse { padding: clamp(38px, 5vw, 56px) 0 0; border-top: 1px solid var(--linie); margin-top: clamp(44px, 6vw, 72px); }
/* Logo-Laufband: das Band laeuft endlos, Logos verschmelzen per
   multiply mit dem Papierton */
.laufband {
  overflow: hidden;
  margin-top: 26px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.laufband-spur {
  display: flex;
  width: max-content;
  animation: laufen 95s linear infinite;
}
.laufband:hover .laufband-spur { animation-play-state: paused; }
.laufband-spur img {
  height: clamp(44px, 5.8vw, 66px);
  width: auto;
  padding-right: clamp(46px, 7vw, 110px);
  mix-blend-mode: multiply;
  opacity: 0.85;
}
@keyframes laufen { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .laufband-spur { animation: none; } }

.presse-label { display: block; text-align: center; }

.presse-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 22px;
  text-align: center;
}
.presse-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grau);
}
.presse-namen {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--anthrazit);
  opacity: 0.55;
}

/* ------------------------------------------------ SECTION 3: Die Neuheit
   Zentrierte Buehne: Eyebrow, Titel, dann das Plakat riesig in der Mitte. */
.eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: var(--anthrazit);
  color: var(--papier);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-bottom: 26px;
}
.neuheit-titel { margin-bottom: 14px; }
.neuheit-subline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  color: var(--anthrazit);
  max-width: 34ch;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

/* Das Plakat: gross, mittig, wie aufgehaengt */
.poster {
  max-width: min(660px, 88vw);
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.poster img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(30, 28, 26, 0.22);
}

/* Vier Nutzenpunkte als ruhige Zeile */
.nutzen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nutzen li {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau);
}
.nutzen li + li::before { content: "\00b7"; margin-right: 12px; color: var(--pflaume); }

/* --------------------------------------------------- SECTION 4: Die Idee
   Erst die Innovation: drei grosse freie Symbole, kein Rahmen.
   Darunter als Kontrast der uebliche Irrsinn: klein, grau, viele Stationen. */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Der kurze Weg: gross und frei ---- */
.kurzweg {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 3vw, 40px);
  margin-bottom: clamp(34px, 4.5vw, 52px);
  color: var(--pflaume);
}
.kurzweg-schritt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.kurzweg-schritt svg { width: clamp(58px, 9vw, 104px); height: clamp(58px, 9vw, 104px); }
.kurzweg-schritt span {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kurzweg-star svg { stroke-width: 2.2; }

/* Langer, ruhiger Pfeil zwischen den Schritten */
.kurzweg-pfeil {
  position: relative;
  flex: 0 1 clamp(40px, 8vw, 130px);
  height: 2px;
  background: currentColor;
  margin-top: clamp(29px, 4.5vw, 52px);
  opacity: 0.85;
}
.kurzweg-pfeil::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 9px; height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* Die fuenf Punkte darunter */
.vorteil-zeile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0 0 clamp(56px, 8vw, 96px);
  padding: 0;
}
.vorteil-zeile li {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.vorteil-zeile li + li::before { content: "\00b7"; margin-right: 12px; color: var(--pflaume); }






/* --------------------------------------------- Neues vom Bienenmann */
.blog-datum {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pflaume);
  margin: 0 0 10px;
}

/* Journal-Layout: ein Beitrag gross, die uebrigen klein daneben */
.journal {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.journal-haupt {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(30, 28, 26, 0.1);
}
/* Hochformat-Anschnitt; die Hoehe ist gedeckelt, damit das Bild nie zum
   schmalen Streifen gestreckt wird */
.journal-haupt > img { width: 100%; height: 100%; min-height: 340px; max-height: 560px; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.journal-haupt-text { padding: clamp(22px, 3vw, 34px); align-self: center; }
/* Beitrag ohne Bild: Text nutzt die volle Breite */
.journal-haupt:not(:has(> img)) { grid-template-columns: 1fr; }
.journal-haupt-text h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 12px;
}
.journal-haupt-text p:last-child { margin: 0; color: var(--grau); }
.journal-haupt-text .blog-datum { margin-bottom: 10px; font-size: 0.88rem; }

.journal-liste { display: grid; gap: 14px; }
.journal-eintrag {
  appearance: none;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px;
  background: var(--weiss);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(30, 28, 26, 0.07);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.journal-eintrag:hover { border-color: var(--pflaume); transform: translateY(-2px); }
.journal-eintrag img { width: 92px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); display: block; }
.journal-eintrag .blog-datum { display: block; margin: 0 0 3px; font-size: 0.68rem; }
.journal-eintrag strong {
  font-family: var(--font-headline);
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--tinte);
}

/* Karten sind klickbar und fuehren ins Lesefenster */
.journal-haupt[data-beitrag], .archiv-karte[data-beitrag] { cursor: pointer; }
.journal-haupt[data-beitrag]:hover, .archiv-karte[data-beitrag]:hover { box-shadow: 0 16px 44px rgba(30, 28, 26, 0.16); }
.weiterlesen {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pflaume);
  border-bottom: 2px solid var(--pflaume);
  padding-bottom: 2px;
}

/* Das Lesefenster: Volltext als Overlay */
.lesefenster {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 40px);
  background: rgba(20, 17, 15, 0.62);
}
.lesefenster.offen { display: flex; }
.lesefenster-karte {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 900px);
  overflow-y: auto;
  background: var(--papier);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.lesefenster-zu {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--tinte);
  color: var(--weiss);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lesefenster-zu:hover { background: var(--pflaume); }
.lesefenster-inhalt img {
  width: 100%;
  max-height: 46vh;
  object-fit: cover;
  display: block;
}
.lesefenster-text { padding: clamp(22px, 3.5vw, 40px); }
.lesefenster-text h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.lesefenster-text p:last-child { margin: 0; line-height: 1.75; color: var(--anthrazit); }
.lesefenster-text .blog-datum { margin-bottom: 8px; }

/* Archivseite: Beitraege als Kartenraster - schneller Ueberblick in Reihen */
.journal-archiv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin: 0 auto;
}
.archiv-karte {
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 28, 26, 0.09);
}
.archiv-karte > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.archiv-karte-text { padding: clamp(16px, 2vw, 24px); }
.archiv-karte-text h3 {
  font-family: var(--font-headline);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 0 8px;
}
.archiv-karte-text p:last-child { margin: 0; color: var(--grau); font-size: 0.9rem; }
.archiv-karte-text .blog-datum { margin-bottom: 8px; }
.journal-alle { width: 100%; }

/* ------------------------------------------------- SECTION 5: Drei Orte */
.orte { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); }
.ort .bild { margin-bottom: 24px; }
.ort h3 { margin-bottom: 8px; }
.ort .ort-claim {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  text-transform: none;
  letter-spacing: 0;
  color: var(--pflaume);
  margin-bottom: 12px;
}
.ort p { font-size: 0.96rem; color: var(--grau); margin: 0; }

.cta-block { margin-top: clamp(56px, 7vw, 84px); text-align: center; }
.cta-block .cta-unter { font-size: 0.9rem; color: var(--grau); margin-bottom: 30px; }

/* ------------------------------------------------ SECTION 6: Konsument */
.wahl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.wahl label {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 14px;
  text-align: center;
  background: var(--weiss);
  border: 2px solid var(--linie);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.wahl input { position: absolute; opacity: 0; pointer-events: none; }
.wahl label:hover { border-color: var(--pflaume); }
.wahl input:checked + span,
.wahl label:has(input:checked) { border-color: var(--pflaume); background: var(--pflaume); color: var(--weiss); }
.wahl input:focus-visible + span { outline: 2px solid var(--pflaume); outline-offset: 3px; }

/* ---------------------------------------------------------- Formulare */
.formular { display: grid; gap: 16px; }
.feld { display: grid; gap: 7px; }
.feld label {
  font-family: var(--font-display);
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.feld input, .feld textarea, .feld select {
  width: 100%; padding: 15px 16px;
  font-family: inherit; font-size: 1rem; color: var(--tinte);
  background: var(--weiss);
  border: 1px solid var(--papier-tief);
  border-radius: var(--radius);
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--pflaume);
  box-shadow: 0 0 0 3px rgba(74, 42, 95, 0.13);
}
.feld textarea { min-height: 110px; resize: vertical; }
.feld-zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-zeile { display: flex; align-items: flex-start; gap: 11px; font-size: 0.86rem; color: var(--grau); }
.checkbox-zeile input { width: auto; margin-top: 4px; }
.feld-hinweis { font-size: 0.84rem; color: var(--grau); margin: 0; }
.formular-karte {
  max-width: 640px; margin: 0 auto; text-align: left;
  padding: clamp(26px, 3vw, 40px);
  background: var(--papier-warm);
  border-radius: var(--radius);
}
.bg-warm .formular-karte { background: var(--weiss); }

/* Rueckmeldung nach dem Absenden */
.danke {
  display: none;
  padding: clamp(26px, 3vw, 40px);
  background: var(--weiss);
  border-left: 4px solid var(--pflaume);
  border-radius: var(--radius);
  text-align: left;
}
.danke.sichtbar { display: block; }
.danke p:last-child { margin-bottom: 0; }
.formular.versendet { display: none; }

/* -------------------------------------------------------- Häufige Fragen */
.faq-item { border-bottom: 1px solid var(--linie); }
.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pflaume);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-antwort { padding: 0 0 22px; color: var(--anthrazit); font-size: 0.98rem; line-height: 1.7; }
.faq-antwort p { margin: 0 0 12px; }
.faq-antwort p:last-child { margin: 0; }
.faq-weg {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pflaume);
}

/* ---------------------------------------------------- SECTION 7: Zitat */
.zitat-section {
  position: relative;
  min-height: 82svh;
  display: flex;
  /* Das Zitat sitzt unten, auf Hoehe der Gaensebluemchen im Bild */
  align-items: flex-end;
  padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 9vw, 120px);
  background: var(--pflaume-dunkel);
  overflow: hidden;
}
.zitat-foto { position: absolute; inset: 0; z-index: 0; }
.zitat-foto img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.zitat-section::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18, 11, 24, 0.72) 0%, rgba(18, 11, 24, 0.25) 34%, rgba(18, 11, 24, 0) 60%);
}
.zitat-section > .container { position: relative; z-index: 2; }
.zitat-text {
  /* Dieselbe Handschrift wie im Kopfbild - der Kreis schliesst sich */
  font-family: "Caveat", var(--font-script);
  font-weight: 700;
  /* Eine Zeile: Groesse waechst mit der Breite, damit der Satz nie umbricht */
  font-size: clamp(0.95rem, 4.35vw, 3.8rem);
  white-space: nowrap;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
  color: var(--weiss);
  max-width: none;
  margin: 0 0 18px;
  text-align: center;
  text-shadow: 0 3px 24px rgba(18, 11, 24, 0.45);
}
.zitat-quelle {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ------------------------------------------------------------ Bildrahmen */
.bild { position: relative; overflow: hidden; background: var(--papier-tief); border-radius: var(--radius); }
.bild img { width: 100%; height: 100%; object-fit: cover; }
.bild.quer { aspect-ratio: 4 / 3; }
.bild.hoch { aspect-ratio: 4 / 5; }
.bild.gross { aspect-ratio: 3 / 2; }

.platzhalter {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  height: 100%; min-height: 200px; padding: 28px;
  text-align: center; font-size: 0.85rem; line-height: 1.5; color: var(--grau);
  background:
    repeating-linear-gradient(45deg, rgba(74,42,95,0.05) 0 12px, transparent 12px 24px),
    var(--papier-tief);
  border: 2px dashed rgba(74, 42, 95, 0.3);
  border-radius: var(--radius);
}
.platzhalter strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pflaume);
}
.platzhalter code { font-size: 0.76rem; color: var(--grau); word-break: break-all; }
.platzhalter .pl-icon { font-size: 1.7rem; line-height: 1; }

/* --------------------------------------------------------------- Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.split-text-schmal { grid-template-columns: 0.9fr 1.1fr; }

/* ------------------------------------------------------------- Footer */
.site-footer { background: var(--tinte); color: rgba(255, 255, 255, 0.62); padding: 52px 0 34px; font-size: 0.92rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--weiss); text-decoration: underline; }
.footer-marke {
  font-family: var(--font-marke);
  font-style: normal;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--weiss); text-decoration: none;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* --------------------------------------------------------- Rechtstexte */
.rechtstext { font-size: 1rem; line-height: 1.75; }
.rechtstext h2 { font-size: 1.4rem; margin-top: 42px; }
.rechtstext ul { padding-left: 22px; }
.rechtstext li { margin-bottom: 8px; }
.hinweis-box {
  padding: 22px 26px; background: #fff6e0;
  border-left: 4px solid var(--honig);
  border-radius: var(--radius); font-size: 0.94rem;
}
.hinweis-box p:last-child { margin-bottom: 0; }
.seitenkopf { background: var(--pflaume); color: var(--weiss); padding: clamp(48px, 7vw, 78px) 0; }
.seitenkopf h1 { color: var(--weiss); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.brotkrumen { font-size: 0.84rem; color: rgba(255, 255, 255, 0.66); margin-bottom: 14px; }
.brotkrumen a { color: rgba(255, 255, 255, 0.88); }

/* ----------------------------------------------------------- Animation */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .laufband-spur { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Hochkante Bildschirme: das Kopfbild traegt seinen Schriftzug im Foto -
   ein Beschnitt wuerde ihn zerschneiden. Deshalb laeuft das Bild hier in
   seinem eigenen Format, die Marke liegt darueber. */
@media (max-aspect-ratio: 1/1) {
  .hero { min-height: auto; display: block; background: var(--papier); }
  .hero::after { display: none; }
  .hero-foto { position: relative; aspect-ratio: 1672 / 941; }
  .hero-fuellung { display: none; }
  /* Der Text-Rahmen deckt genau die Bildflaeche ab, nicht den Streifen darunter */
  .hero > .container {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: calc(100vw * 941 / 1672);
    z-index: 2;
    min-height: 0;
    padding: 14px 18px;
  }
  .hero-marke { font-size: 1.05rem; }
  .hero-claim { font-size: 1.35rem; margin-top: 0.4em; }
  .hero-rolle { font-size: 0.56rem; letter-spacing: 0.1em; }
  .hero-shortcut {
    position: static;
    transform: none;
    display: flex;
    width: max-content;
    margin: 16px auto 4px;
  }
  .hero-shortcut:hover { transform: translateY(-2px); }
}

/* ---------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .split, .split-text-schmal { grid-template-columns: 1fr; }
      .neuheit-bild { order: -1; }
  .orte { grid-template-columns: 1fr; gap: 44px; }

  }

@media (max-width: 700px) {
    
  /* Das hohe Format wuerde sonst den halben Bildschirm fuellen */
      
  /* Der lange Weg darf seitlich scrollen - das zeigt die Laenge sogar.
     Der kurze Weg muss auf einen Blick passen, er ist die Aussage. */
  }

@media (max-width: 560px) {
  body { font-size: 17px; }
  .container { padding: 0 20px; }
  /* Etwas kleiner, damit der Name nicht in Ricos Kopf laeuft */
  .header-tel { display: none; }
  .feld-zeile { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-gruppe { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   UNTERSEITE /honigzapfe/ - Landeseite fuer Plakat, Aufsteller, Gespraech
   ========================================================================== */

/* Block 1: Produkt-Hero. Das violette Element ist der Schriftzug. */
.zapfe-hero { padding-top: clamp(8px, 1.2vw, 16px); text-align: center; }
.zapfe-hero .produkt-ueber {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tinte);
}
.zapfe-hero .produkt-schrift {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
  color: var(--pflaume);
  margin: 0.04em 0 0;
}
.zapfe-hero-bild { max-width: 520px; margin: 0 auto clamp(24px, 3.5vw, 40px); }
.zapfe-hero-bild img, .zapfe-hero-bild .platzhalter { border-radius: var(--radius); }
.zapfe-hero-bild img { width: 100%; box-shadow: 0 18px 50px rgba(30, 28, 26, 0.18); }
.zapfe-hero .subline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--anthrazit);
  margin: 0 0 26px;
}

/* Block 2: das Erlebnis in drei Schritten */
.hahn-signet { display: block; width: 46px; height: 46px; margin: 0 auto 18px; color: var(--pflaume); }
.erlebnis { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3.5vw, 48px); max-width: 980px; margin: 0 auto; }
.erlebnis-schritt { text-align: center; }
.erlebnis-schritt h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-bottom: 10px;
}
.erlebnis-schritt p { font-size: 0.98rem; color: var(--grau); margin: 0; }

/* Block 3: das Zitat unter der Kettengrafik */
.mission-zitat {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  text-transform: none;
  color: var(--tinte);
  margin: clamp(34px, 4.5vw, 50px) 0 0;
}

/* Standortliste auf der Startseite, innerhalb der Idee-Sektion */
/* Der Standort-Aushang: wie eine amtliche Tafel gerahmt */
.standorte-block {
  max-width: 680px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 3px solid var(--pflaume);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(30, 28, 26, 0.12);
  padding: 0 clamp(22px, 3vw, 38px) clamp(20px, 2.6vw, 30px);
  overflow: hidden;
}
.standorte-titel {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--anthrazit);
  margin: 0 0 10px;
}
.standorte-block .standorte-titel {
  margin: 0 calc(-1 * clamp(22px, 3vw, 38px)) 8px;
  padding: 15px 20px 13px;
  background: var(--papier-warm);
  border-bottom: 1px solid var(--linie);
}
.standorte-block .standorte li { text-align: left; }
.standorte-block .standorte li:last-child { border-bottom: none; }
.standorte-block .standorte-hinweis {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--linie);
}

/* Hero der Honigzapfen-Seite */
.zapfe-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
}
.zapfe-endlich {
  display: block;
  font-size: 0.62em;
  letter-spacing: 0.14em;
  color: var(--pflaume);
  margin-bottom: 0.15em;
}

.zapfe-subline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 700;
  color: var(--anthrazit);
  margin: 0 0 clamp(22px, 3vw, 34px);
}
.zapfe-hero-bild { margin-bottom: clamp(24px, 3.2vw, 38px); }

/* Riesiges Produktbild im Hero */
.zapfe-hero-riesig {
  max-width: min(720px, 94vw);
  margin-left: auto;
  margin-right: auto;
}
.zapfe-hero-riesig img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(30, 28, 26, 0.2);
}

/* Award-Abzeichen */
.awards { display: flex; justify-content: flex-end; gap: clamp(10px, 1.6vw, 18px); margin: 26px 0 0; opacity: 0.85; }
.awards img { width: clamp(48px, 5vw, 62px); height: auto; }

/* Aller guten Dinge sind drei */
.drei-satz {
  text-align: center;
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  text-transform: uppercase;
  margin: clamp(60px, 8vw, 110px) 0 14px;
}

/* Drei Illustrationen mit Pfeilen, alles mittig */
.drei-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 34px);
  margin-bottom: clamp(10px, 2vw, 20px);
}
.illu { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.illu svg { width: clamp(88px, 13vw, 150px); height: clamp(88px, 13vw, 150px); }
.illu span {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.illu-pfeil {
  position: relative;
  width: clamp(30px, 5vw, 70px);
  height: 3px;
  background: var(--pflaume);
  margin-bottom: 34px;
}
.illu-pfeil::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 9px; height: 9px;
  border-top: 3px solid var(--pflaume);
  border-right: 3px solid var(--pflaume);
  transform: translateY(-50%) rotate(45deg);
}

/* Standorte als wachsende Bewegung: drei Karten */
.standort-karten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 860px;
  margin: 0 auto clamp(38px, 5vw, 56px);
}
.standort-karte {
  display: block;
  padding: clamp(22px, 3vw, 34px) 18px;
  background: var(--weiss);
  border-top: 3px solid var(--pflaume);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(30, 28, 26, 0.1);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.standort-karte:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(30, 28, 26, 0.16); }
.standort-karte strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinte);
  margin-bottom: 4px;
}
.standort-karte span { color: var(--grau); font-size: 0.95rem; }

.ums-eck { margin-top: clamp(50px, 7vw, 90px); }
.ums-eck-frage {
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  text-transform: uppercase;
  margin: 0 0 4px;
}
.ums-eck .klein { margin-bottom: 18px; }

/* Ein Projekt vom Bienenmann */
.projekt {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.projekt-ueber {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0 0 4px;
}
.projekt-marke {
  font-family: var(--font-marke);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--tinte);
  margin: 0 0 18px;
}
.projekt-fakten {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--anthrazit);
  margin: 16px 0 20px;
}

/* Und der Honig */
.honig-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.honig-merksatz {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  color: var(--pflaume);
  margin: 18px 0;
}

/* Mission auf Bild */
.mission-bild {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pflaume-dunkel);
  text-align: center;
}
.mission-foto { position: absolute; inset: 0; }
.mission-foto img { width: 100%; height: 100%; object-fit: cover; }
.mission-bild::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(18, 11, 24, 0.52);
}
.mission-bild .container { position: relative; z-index: 2; }
.mission-bild .kicker { color: var(--honig); }
.mission-bild h2 { color: var(--weiss); max-width: 26ch; margin-left: auto; margin-right: auto; }

.zitat-link { text-align: center; margin: 14px 0 0; }
.zitat-link a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.zitat-link a:hover { color: var(--weiss); }

/* Block 4: die Standortliste - die meistgepflegte Stelle der Website */
.standorte { max-width: 640px; margin: 0 auto; list-style: none; padding: 0; }
.standorte li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--linie);
}
.standorte .standort-name { font-weight: 700; font-size: 1.05rem; }
.standorte .standort-ort { color: var(--grau); font-size: 0.95rem; }
.standorte .standort-adresse {
  color: var(--grau);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--grau);
}
.standorte .standort-adresse:hover { color: var(--pflaume); border-bottom-color: var(--pflaume); }

.standorte .standort-art {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthrazit);
  white-space: nowrap;
}
.standort-neu {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--weiss);
  background: var(--pflaume);
  border-radius: var(--radius);
  padding: 3px 8px;
}
.standorte-hinweis { text-align: center; margin-top: 28px; font-size: 0.95rem; color: var(--grau); }

/* Block 5: der Absender */
.absender { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4.5vw, 64px); align-items: center; max-width: 980px; margin: 0 auto; }
.absender-fakten { list-style: none; margin: 0 0 18px; padding: 0; }
.absender-fakten li {
  position: relative;
  padding: 0 0 12px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.absender-fakten li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  background: var(--pflaume);
}

/* Block 6: Anfrage mit sichtbarer Telefonnummer */
.anfrage-zweispaltig { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4.5vw, 60px); align-items: start; }
.anfrage-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--tinte);
  text-decoration: none;
  margin-top: 14px;
}
.anfrage-tel:hover { color: var(--pflaume); }
.anfrage-worte {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0 0 6px;
}

@media (max-width: 900px) {
  .tafel-panel { grid-template-columns: 1fr; }
  html.js .tafel-panel.aktiv { display: block; }
  .tafel-bilder { border-right: none; border-bottom: 1px solid var(--linie); }
  .tafel-gross img { height: auto; aspect-ratio: 4 / 3; min-height: 0; }
  .journal { grid-template-columns: 1fr; }
  .standort-karten { grid-template-columns: 1fr; max-width: 420px; }
  .projekt, .honig-block { grid-template-columns: 1fr; }
  .journal-archiv { grid-template-columns: repeat(2, 1fr); }
  .journal-haupt { grid-template-columns: 1fr; }
  .journal-haupt > img { aspect-ratio: 4 / 3; min-height: 0; }
  .erlebnis { grid-template-columns: 1fr; gap: 34px; }
  .absender, .anfrage-zweispaltig { grid-template-columns: 1fr; }
}

/* ===== Zapfenseite: großes Glas nach dem Hero ===== */
.glas-gross-section { padding-top: clamp(10px, 1.5vw, 20px); }
.glas-gross { max-width: min(780px, 92vw); margin: 0 auto clamp(40px, 5.5vw, 70px); }

.loesung-eyebrow { margin: 0 0 clamp(26px, 3.5vw, 44px); }

/* Text-Laufband: Vorteile als ruhig ziehende Zeile */
.text-laufband { margin: clamp(34px, 4.5vw, 56px) 0 clamp(14px, 2vw, 24px); }
.text-laufband .laufband-spur {
  align-items: center;
  gap: clamp(26px, 3.5vw, 52px);
  animation-duration: 38s;
}
.text-laufband .laufband-spur span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anthrazit);
  white-space: nowrap;
}
.text-laufband .lauf-punkt { color: var(--honig); font-size: 1.3em; }
.glas-gross img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(30, 28, 26, 0.14);
}

/* ===== Zapfenseite: Bildpaar unter dem Reduziert-Satz ===== */
.weg-motive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 28px);
  max-width: 1020px;
  margin: clamp(30px, 4vw, 52px) auto;
}
.weg-motive img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(30, 28, 26, 0.14);
}
@media (max-width: 640px) {
  .weg-motive { grid-template-columns: 1fr; }
}

/* ===== Mission: Flugradius-Dramaturgie (Stationen A bis D) ===== */
h2.flugradius-zahl {
  font-family: var(--font-headline);
  /* Untergrenze so, dass "Kilometer" auch auf 375 px in eine Zeile passt */
  font-size: clamp(2.5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--honig);
  margin: clamp(10px, 1.6vw, 20px) 0 12px;
}
.flugradius-satz {
  max-width: 540px;
  margin: 0 auto clamp(34px, 4.5vw, 56px);
  color: var(--anthrazit);
}
.station-bild { max-width: min(780px, 92vw); margin: 0 auto; }
.station-bild img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(30, 28, 26, 0.14);
}

/* Station B: vollbreit und kuehl. Ohne Foto traegt der Anthrazit-Grund,
   mit foto-lange-reise.jpg legt sich das Bild automatisch darunter. */
.lange-reise {
  background-color: var(--anthrazit);
  background-size: cover;
  background-position: center;
  color: var(--papier);
  padding: clamp(70px, 10vw, 140px) 0;
  margin: clamp(60px, 8vw, 110px) 0;
}
.lange-reise.mit-foto {
  background-color: rgba(30, 28, 26, 0.55);
  background-blend-mode: multiply;
}
.lange-reise-zeile {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 6.4vw, 4.9rem);
  line-height: 1.06;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.lange-reise-sub {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
}
.lange-reise-bild { max-width: min(920px, 92vw); margin: clamp(30px, 4.5vw, 54px) auto; }
.lange-reise-bild img { width: 100%; border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35); }
.lange-reise-fakt { font-size: clamp(0.95rem, 1.5vw, 1.1rem); opacity: 0.85; margin: 0; }

.atemzug {
  max-width: 760px;
  margin: 0 auto clamp(80px, 11vw, 140px);
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  color: var(--tinte);
}

/* Heller Eyebrow fuer dunkle Flaechen */
.eyebrow-hell { background: var(--papier); color: var(--anthrazit); }

/* Station D: die Honigzapfe ist das einzige violette Element */
.kurzweg-zapfe { color: var(--pflaume); }
#mission .mission-prozess { color: var(--tinte); }

.fussnote {
  margin: clamp(50px, 7vw, 90px) 0 0;
  font-size: 0.78rem;
  color: var(--grau);
}

/* ===== Neuheit: Produkt-Headline und Bewaehrungszeile ===== */
.produkt-headline .produkt-schrift-wort {
  font-family: var(--font-script);
  text-transform: none;
  font-weight: 400;
  font-size: 1.18em;
  letter-spacing: 0;
  color: var(--pflaume);
}
.bewaehrung {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anthrazit);
  margin: 6px 0 0;
}

/* Zweiter Standortlisten-Titel im Aushang */
.standorte-block .standorte-titel-partner {
  margin-top: 22px;
  border-top: 1px solid var(--linie);
}
.stadtplan-illu { max-width: 420px; margin: 20px auto 0; }
.biene-illu { max-width: 220px; margin: 30px auto 0; }

/* Fusszeile: Rechtszeile */
.footer-recht {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--grau);
  text-align: center;
}

/* ===== Feinschliff 02.09.2026: Eyebrows sind Fragen, Sektionen neu geordnet =====
   Jede Sektion beginnt mit einer Frage im Eyebrow; die Ueberschrift darunter
   ist die Antwort. Der Eyebrow im Sektionskopf bekommt deshalb etwas mehr
   Abstand zur Ueberschrift. */
.section-kopf .eyebrow { margin-bottom: 22px; }

/* Sektion 2: das grosse Glas Zapfhonig direkt unter dem Kopfbild */
#zapfhonig .glas-gross { margin-bottom: clamp(30px, 4vw, 48px); }
.zapfhonig-subline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--anthrazit);
  margin: 0 auto clamp(40px, 5vw, 64px);
}
/* Drei Saetze wie ein Manifest: gestapelt, der letzte in Pflaume */
.manifest {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--tinte);
}
.manifest span { display: block; }
.manifest span + span { margin-top: 0.35em; }
.manifest span:last-child { color: var(--pflaume); }

/* Sektion 3: die Vorteilszeile schliesst die Sektion jetzt ab
   (die Standortliste steht bei den drei Orten) */
.vorteil-zeile-ende { margin-bottom: 0; }

/* Sektion 5: Standortliste zwischen Laufband und Anfrage-Knopf */
#orte .standorte-block { margin-top: clamp(40px, 5vw, 60px); }

/* Sektion 3: Bewaehrungszeile rueckt an die Subline, das Foto bekommt Luft */
#honigzapfe .neuheit-subline { margin-bottom: 14px; }
#honigzapfe .bewaehrung { margin: 0 0 clamp(36px, 5vw, 56px); }

/* Versteckte Bildplaetze (hidden-Attribut) bleiben wirklich unsichtbar,
   auch wenn img weiter oben auf display:block steht */
[hidden] { display: none !important; }

/* Standortvorschlag: die drei Auswahlknoepfe stehen auf dem Handy
   untereinander, sonst schieben sie das Formular ueber den Rand */
@media (max-width: 560px) {
  .wahl { grid-template-columns: 1fr; }
  .wahl label { padding: 14px; }
}

/* Kopfzeile auf dem Handy: Wortmarke und Knopf muessen nebeneinander
   in 375 Pixel passen, sonst laesst sich die Seite seitlich schieben */
@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .wortmarke { font-size: 0.85rem; letter-spacing: 0.12em; }
  .header-rechts .btn { width: auto; padding: 10px 14px; font-size: 0.7rem; letter-spacing: 0.06em; white-space: nowrap; }
}

/* ===== Feinschliff 02.09.2026, Runde 2 =====
   Eyebrows violett, Knoepfe honiggold, Ueberschriften und Sublines einheitlich */
:root { --honig-dunkel: #c68b14; }
.eyebrow { background: var(--pflaume); color: var(--papier); }
.btn-pflaume { background: var(--honig); color: var(--tinte); }
.btn-pflaume:hover { background: var(--honig-dunkel); color: var(--tinte); }

/* Alle Sektions-Ueberschriften: eine Groesse, eine Farbe, Versalien */
h2.flugradius-zahl {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  color: var(--tinte);
  margin: 0 0 0.45em;
}
.lange-reise-zeile { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.04; margin: 0 0 0.45em; }

/* Produktname: Wortmarke oben, Schreibschrift darunter */
.produkt-headline .produkt-schrift-wort { display: block; line-height: 1.15; margin-top: 0.05em; }

/* Sublines: ueberall gleich gross und lesbar */
.subline {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  color: var(--anthrazit);
}
.subline.mission-subline { font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: 0.12em; }
.subline.lange-reise-sub { color: inherit; opacity: 0.92; letter-spacing: 0.04em; }
.subline.lange-reise-fakt { color: inherit; opacity: 0.9; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.subline.flugradius-satz { max-width: none; margin-bottom: clamp(30px, 4vw, 48px); }

/* Sektion 3: die vier Nutzenpunkte als ruhige Liste unter der Zapfe */
.vorteil-liste {
  list-style: none;
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tinte);
}
.vorteil-liste li::before { content: "\00b7"; color: var(--honig); margin-right: 12px; font-size: 1.3em; line-height: 0; }
#honigzapfe .poster { margin-bottom: 0; }

/* Sektion 4: die Tuschezeichnung im Breitformat darf breiter stehen */
.station-bild-breit { max-width: min(1100px, 92vw); }

/* ===== Feinschliff 02.09.2026, Runde 3 ===== */
/* Sektion 2: freigestelltes Glas, gross und ohne Rahmen */
.glas-frei { max-width: min(1000px, 96vw); margin: 0 auto clamp(6px, 1vw, 14px); }
.glas-frei img { width: 100%; height: auto; }
#zapfhonig h2 { margin-bottom: 0.35em; }

/* Dunkles Band: der Atemzug als letzte, grosse Zeile */
.lange-reise-atemzug {
  max-width: 820px;
  margin: clamp(40px, 6vw, 72px) auto 0;
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--papier);
}

/* Mission: die drei Stationen als Zeichnung, danach etwas Luft */
#mission .station-bild + .mission-prozess { margin-top: clamp(28px, 4vw, 44px); }

/* ===== Feinschliff 02.09.2026, Runde 4 ===== */
/* Sektion 2: mehr Luft ueber dem Glas, damit es wirkt */
#zapfhonig { padding-top: clamp(56px, 8vw, 120px); }
.zapfhonig-subline .trenner { color: var(--honig); margin: 0 0.35em; }

/* Manifest als Aufzaehlung: zwei Absagen, dann die Aufloesung */
ul.manifest {
  list-style: none;
  display: inline-block;
  text-align: left;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
  color: var(--tinte);
}
ul.manifest li { display: block; padding-left: 1.6em; position: relative; }
ul.manifest li + li { margin-top: 0.55em; }
ul.manifest li::before {
  content: "\2013";
  position: absolute; left: 0;
  color: var(--grau);
}
ul.manifest li.manifest-aufloesung {
  margin-top: 0.9em;
  font-family: var(--font-headline);
  font-size: 1.15em;
  text-transform: uppercase;
  color: var(--pflaume);
}
ul.manifest li.manifest-aufloesung::before { content: "\203A"; color: var(--honig); font-size: 1.3em; line-height: 1; top: 0.02em; }
ul.manifest li.manifest-aufloesung strong {
  font-weight: inherit;
  background: linear-gradient(transparent 62%, var(--honig) 62%, var(--honig) 92%, transparent 92%);
  padding: 0 0.08em;
}

/* Mission: der Clou, groesser als jede Ueberschrift */
.mission-verkuerzt { margin-top: clamp(28px, 4vw, 44px); }
#mission .station-bild + .mission-verkuerzt { margin-top: clamp(36px, 5vw, 60px); }
.clou {
  margin: clamp(18px, 2.6vw, 30px) auto clamp(18px, 2.4vw, 28px);
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--pflaume);
}
.clou span { display: block; }
.clou span:last-child { color: var(--tinte); }

/* ===== Feinschliff 02.09.2026, Runde 5 ===== */
/* 1) Marke: DER gerade, BIENENMANN kursiv - in Kopfzeile, Kopfbild, Fusszeile
   und auf der Zapfenseite. Oswald liegt nur aufrecht vor, der Browser stellt
   die Schraege selbst her (font-synthesis). */
.marke-kursiv, .marke-name, .projekt-marke { font-style: italic; }
.wortmarke .marke-kursiv, .footer-marke .marke-kursiv { padding-right: 0.12em; }

/* 2 + 3) Das Glas: zehn Prozent kleiner, mehr Luft zum Kopfbild und zur
   Ueberschrift darunter */
#zapfhonig { padding-top: clamp(84px, 12vw, 180px); }
.glas-frei { max-width: min(900px, 86vw); margin: 0 auto clamp(44px, 6vw, 84px); }

/* 6) Der Clou als Ablauf: zwei nummerierte Schritte mit Pfeil dazwischen */
.prozess {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  max-width: 980px;
  margin: clamp(30px, 4.5vw, 56px) auto clamp(18px, 2.4vw, 28px);
}
.prozess-schritt {
  flex: 0 1 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 2.4vw, 28px) clamp(24px, 3vw, 34px);
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 3px solid var(--honig);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(30, 28, 26, 0.10);
}
.prozess-nr {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--honig);
  color: var(--tinte);
  font-family: var(--font-headline);
  font-size: 1.6rem;
  line-height: 1;
}
.prozess-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.prozess-wer {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--pflaume);
  margin-bottom: 0.2em;
}
.prozess-schritt:last-child .prozess-wer { color: var(--tinte); }
/* Pfeil: Linie mit Spitze, zeigt von Schritt 1 zu Schritt 2 */
.prozess-pfeil {
  flex: 0 0 clamp(44px, 7vw, 96px);
  position: relative;
  align-self: center;
  height: 3px;
  background: var(--honig);
}
.prozess-pfeil::after {
  content: "";
  position: absolute;
  right: -2px; top: 50%;
  width: 14px; height: 14px;
  border-top: 3px solid var(--honig);
  border-right: 3px solid var(--honig);
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 640px) {
  .prozess { flex-direction: column; align-items: center; }
  .prozess-schritt { flex-basis: auto; width: 100%; max-width: 420px; }
  .prozess-pfeil { flex-basis: auto; width: 3px; height: clamp(40px, 8vw, 60px); }
  .prozess-pfeil::after { right: auto; top: auto; left: 50%; bottom: -2px; transform: translateX(-50%) rotate(135deg); }
}

/* 5) Neue Sektion "Du isst deinen Sommer": weisser Grund zwischen Papier
   und Papier-warm, das Glas gross in der Mitte, dann zwei Spalten
   (links Ort und Honig, rechts Tier und Geschichte), viel Luft, Fazit */
.bg-weiss { background: var(--weiss); }
#sommer .section-kopf { max-width: 860px; margin-left: auto; margin-right: auto; }
#sommer .sommer-subline { margin-bottom: clamp(18px, 2.4vw, 28px); }
.sommer-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--anthrazit);
}
.sommer-glas { max-width: min(680px, 78vw); margin: clamp(30px, 4.5vw, 56px) auto clamp(36px, 5vw, 64px); }
.sommer-glas img { width: 100%; height: auto; display: block; }
.sommer-spalten {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 1080px;
  margin: 0 auto;
}
.sommer-bild { margin: 0 0 22px; }
.sommer-bild img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
}
.sommer-titel {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pflaume);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--honig);
}
.sommer-spalte p { font-size: 1.02rem; line-height: 1.62; color: var(--anthrazit); margin: 0 0 0.85em; }
.sommer-spalte p:last-child { margin-bottom: 0; }
.sommer-spalte .sommer-merksatz {
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  color: var(--tinte);
  margin-top: 1.1em;
}
.sommer-schluss { margin-top: clamp(80px, 12vw, 160px); }
.sommer-fazit {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--pflaume);
  margin: 0 0 0.4em;
}
.sommer-fazit-klein {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--anthrazit);
  margin: 0;
}
@media (max-width: 760px) {
  .sommer-spalten { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Feinschliff 02.09.2026, Runde 6 ===== */
/* Flugradius: "fliegt die Biene" etwas kraeftiger, "ihr Honig" im dunklen
   Band in derselben Schrift und Groesse (Grundschrift, keine Versalien) */
.subline.flugradius-satz { font-weight: 500; color: var(--tinte); }
.subline.lange-reise-sub {
  font-family: var(--font);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
  opacity: 0.95;
}

/* Dunkles Band: vier Bilder in einer Reihe - links die Industrieimkerei als
   eigenes Foto, rechts die vorhandene Dreier-Datei. Alle vier gleich hoch. */
.lange-reise-vier {
  display: flex;
  align-items: stretch;
  gap: 4px;
  max-width: min(1200px, 92vw);
  padding: 4px;
  background: var(--papier);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.lange-reise-vier img { border-radius: 0; box-shadow: none; display: block; }
.lange-reise-vier .lange-reise-panel {
  flex: 0 0 calc(25% - 3px);
  width: calc(25% - 3px);
  aspect-ratio: 600 / 1198;
  height: auto;
  object-fit: cover;
  object-position: center 62%;
}
.lange-reise-vier img:last-child { flex: 1 1 auto; width: calc(75% - 1px); min-width: 0; height: auto; }

/* Du isst deinen Sommer: Buehne mit Wabe und Glas nebeneinander */
.sommer-buehne {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 32px);
  max-width: min(1000px, 92vw);
  margin: clamp(30px, 4.5vw, 56px) auto clamp(36px, 5vw, 64px);
}
.sommer-wabe { flex: 0 1 56%; }
.sommer-wabe img { width: 100%; height: auto; display: block; }
.sommer-buehne .sommer-glas { flex: 0 1 40%; margin: 0 0 3%; max-width: none; }
@media (max-width: 640px) {
  .sommer-buehne { flex-direction: column; align-items: center; gap: 12px; }
  .sommer-wabe { flex-basis: auto; width: 92%; }
  .sommer-buehne .sommer-glas { flex-basis: auto; width: 72%; margin: 0; }
}

/* ===== Feinschliff 02.09.2026, Runde 7 ===== */
/* Marke komplett kursiv; im Kopfbild rueckt das DER etwas ein */
.wortmarke, .footer-marke, .hero-marke, .projekt-marke { font-style: italic; }
.marke-der { padding-left: 0.55em; }

/* Ablauf-Karten: Zeichnung oben, Nummer sitzt auf der Bildunterkante,
   Text darunter */
.prozess-schritt { padding-top: clamp(14px, 1.8vw, 20px); }
.prozess-bild { width: 100%; max-width: 300px; margin: 0 auto -29px; }
.prozess-bild img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.prozess-schritt .prozess-nr { position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--weiss); }

/* "gezapft": Pinselstrich als Unterstreichung statt Balken durchs Wort */
ul.manifest li.manifest-aufloesung strong {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 22' preserveAspectRatio='none'><path d='M3 12 C 30 6, 60 15, 95 10 S 160 14, 197 8' fill='none' stroke='%23dfa022' stroke-width='9' stroke-linecap='round' opacity='0.95'/><path d='M6 15 C 40 12, 90 18, 130 13 S 175 12, 194 14' fill='none' stroke='%23dfa022' stroke-width='5' stroke-linecap='round' opacity='0.8'/></svg>") no-repeat center bottom / 100% 0.32em;
  padding: 0 0.06em 0.16em;
}

/* Ablauf-Karten ohne gelben Streifen oben; "Kurz. Frisch. Nah." gross und
   mit Abstand unter den Karten */
.prozess-schritt { border-top: 1px solid var(--linie); }
.subline.mission-subline {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  letter-spacing: 0.16em;
  color: var(--tinte);
  margin-top: clamp(40px, 5.5vw, 72px);
}

/* Fusszeile: DER klein oben, BIENENMANN darunter - wie im Kopfbild */
.footer-marke {
  display: inline-block;
  line-height: 1;
  padding-left: 0.5em;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.footer-marke .marke-kursiv {
  display: block;
  margin-left: -0.5em;
  margin-top: 0.15em;
  font-size: 1.9em;
  letter-spacing: 0.01em;
  padding-right: 0.1em;
}

/* Sommer-Buehne: das Marienkaefer-Glas ist ein Foto mit eigenem Hintergrund,
   deshalb als weiche Karte neben der freigestellten Wabe */
.sommer-buehne .sommer-glas-foto { flex: 0 1 38%; margin-bottom: 4%; }
.sommer-buehne .sommer-glas-foto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(30, 28, 26, 0.16);
}

/* "gezapft": Pinselstrich mit mehr Schwung - holt aus, taucht ab, zieht
   nach rechts oben hinaus */
ul.manifest li.manifest-aufloesung strong {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 40' preserveAspectRatio='none'><path d='M4 20 C 30 34, 70 6, 110 24 S 175 32, 216 8' fill='none' stroke='%23dfa022' stroke-width='11' stroke-linecap='round' opacity='0.95'/><path d='M10 26 C 45 36, 85 12, 125 28 S 185 30, 208 14' fill='none' stroke='%23dfa022' stroke-width='5' stroke-linecap='round' opacity='0.75'/></svg>") no-repeat center bottom / 106% 0.5em;
  padding: 0 0.08em 0.22em;
}

/* Sommer-Buehne: Glas und Wabe stehen auf einer Linie */
.sommer-buehne .sommer-glas { margin-bottom: 0; }

/* Du isst deinen Sommer: nur noch ein Bild, das Glas gross in der Mitte
   (die Buehne mit Wabe ist raus) */
#sommer .sommer-glas { max-width: min(560px, 80vw); margin: clamp(30px, 4.5vw, 56px) auto clamp(36px, 5vw, 64px); }

/* ===== Feinschliff 02.09.2026, Runde 8: Ueberschriften in der Schrift von
   "Kurz. Frisch. Nah." (schmale, fette Display-Schrift mit Sperrung).
   Auf Apple-Geraeten ist das Helvetica Neue Condensed Bold, ueberall sonst
   die mitgelieferte Oswald - beide schmal und fett, deshalb wirkt es gleich.
   Archivo Black bleibt fuer die Akzente (gezapft, Der Imker / Du). */
h2, h2.flugradius-zahl, .lange-reise-zeile, .lange-reise-atemzug, .sommer-fazit {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.08;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h2.flugradius-zahl { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.lange-reise-zeile { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.lange-reise-atemzug { font-size: clamp(2rem, 4.6vw, 3.5rem); max-width: 900px; }
.sommer-fazit { font-size: clamp(1.8rem, 4.4vw, 3.4rem); }
.rechtstext h2 { font-size: 1.5rem; letter-spacing: 0.08em; }

/* Dunkles Band ohne Schlusszeile: weniger Hoehe, weniger Abstand */
.lange-reise { padding: clamp(48px, 6vw, 84px) 0 clamp(44px, 5.5vw, 76px); margin: clamp(40px, 6vw, 80px) 0; }
.lange-reise-bild { margin-bottom: clamp(22px, 3vw, 36px); }

/* Honigtopf-Feld der Formulare: fuer Menschen unsichtbar, Roboter fuellen es */
.honigtopf { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ===== Handy-Feinschliff 02.09.2026 =====
   Kopfbild auf hochkanten Bildschirmen: Marke und Handschrift groesser.
   Das Schlusszitat darf auf schmalen Bildschirmen umbrechen und wird dafuer
   deutlich groesser. */
@media (max-aspect-ratio: 1/1) {
  .hero-marke { font-size: clamp(1.4rem, 5.2vw, 2.2rem); }
  .hero-claim { font-size: clamp(1.7rem, 6.4vw, 2.7rem); margin-top: 0.35em; }
}
@media (max-width: 640px) {
  .zitat-text {
    white-space: normal;
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    line-height: 1.15;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }
}

/* "Bekannt aus"-Band: auf dem iPhone blieb es leer. Ursache ist die
   Kombination aus Maske (mask-image) und Multiply-Mischung, die Safari
   nicht zusammen zeichnet. Deshalb: keine Maske mehr, die weichen Raender
   kommen von zwei Farbverlaeufen ueber dem Band. */
.laufband {
  position: relative;
  -webkit-mask-image: none;
  mask-image: none;
}
.laufband::before, .laufband::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(24px, 8vw, 90px);
  z-index: 1;
  pointer-events: none;
}
.laufband::before { left: 0; background: linear-gradient(to right, var(--papier), rgba(247, 242, 232, 0)); }
.laufband::after { right: 0; background: linear-gradient(to left, var(--papier), rgba(247, 242, 232, 0)); }
.laufband-spur img { flex: 0 0 auto; }
