/* ==========================================================================
   Imkerei Matschurek – Redesign 2026
   Farbwelt aus der bisherigen Seite übernommen:
   Honig-Gelb #F1B00A · Bernstein-Orange #FB8E28 · Warmgrau · Weiß
   ========================================================================== */

:root {
  --honey: #F1B00A;
  --amber: #FB8E28;
  --amber-dark: #d97417;
  --dark: #2b2117;          /* warmes Dunkelbraun statt Schwarz */
  --dark-soft: #4a3c2c;
  --text: #4a4a4a;
  --muted: #8a8378;
  --cream: #fdf8ef;
  --cream-2: #faf1dd;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(43, 33, 23, .08);
  --shadow-md: 0 10px 34px rgba(43, 33, 23, .14);
  --shadow-lg: 0 24px 60px rgba(43, 33, 23, .22);
  --grad-honey: linear-gradient(120deg, var(--honey), var(--amber));
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--amber-dark); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--dark); line-height: 1.2; }

.container { width: min(1160px, 92%); margin-inline: auto; }

section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: .9rem;
}
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: ""; width: 28px; height: 2px; background: var(--grad-honey); border-radius: 2px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: .8rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none !important; }
}

/* --------------------------------------------------------------------------
   Navigation (Glas-Effekt)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(255, 253, 247, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 56px; width: auto; transition: height .3s ease; }
.nav.scrolled .nav-logo img { height: 44px; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark { display: none; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-dark { display: block; }

.nav-links { display: flex; gap: clamp(14px, 2.4vw, 34px); list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: .98rem; position: relative; padding: 6px 0;
}
.nav.scrolled .nav-links a { color: var(--dark-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-honey); border-radius: 2px; transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.btn-nav {
  background: var(--grad-honey); color: var(--dark); padding: 10px 22px; border-radius: 999px;
  font-weight: 700; box-shadow: 0 6px 18px rgba(241, 176, 10, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-links a.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(241, 176, 10, .45); }
.nav-links a.btn-nav::after { display: none; }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer; z-index: 110;
  width: 42px; height: 42px; border-radius: 12px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px;
  background: var(--white); transition: transform .3s ease, opacity .3s ease;
}
.nav.scrolled .nav-burger span, .nav.open .nav-burger span { background: var(--dark); }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 0; height: 100dvh; flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(253, 248, 239, .98);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.3,1);
  }
  /* WICHTIG: backdrop-filter auf .nav würde die fixe Vollbild-Navigation an der
     Leiste "einsperren" (Containing Block) – bei offenem Menü deshalb deaktivieren */
  .nav.open {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(253, 248, 239, .98); box-shadow: none;
  }
  .nav.open .logo-light { display: none; }
  .nav.open .logo-dark { display: block; }
  .nav.open .nav-links { transform: none; }
  .nav-links a { color: var(--dark) !important; font-size: 1.3rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden; padding: 120px 0 90px; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -6%; z-index: -2;
  background: url("../img/hero-biene.jpg") center 38% / cover no-repeat;
  transform: scale(1.05); will-change: transform;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30, 22, 12, .55), rgba(30, 22, 12, .35) 45%, rgba(30, 22, 12, .72));
}
.hero-content { color: var(--white); max-width: 860px; padding-inline: 5%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px;
  padding: 8px 20px; font-size: .88rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(6px); margin-bottom: 1.6rem;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 600; margin-bottom: 1.2rem;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--honey); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255, 255, 255, .88); max-width: 620px; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 15px 34px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: var(--grad-honey); color: var(--dark); box-shadow: 0 10px 30px rgba(241, 176, 10, .4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(241, 176, 10, .5); }
.btn-ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.btn-dark { background: var(--dark); color: var(--honey); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Waben-Kante am Hero-Ende */
.hex-divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hex-divider svg { width: 100%; height: clamp(30px, 6vw, 70px); display: block; }

/* --------------------------------------------------------------------------
   Über mich
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media .main-img {
  border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.about-media .float-card {
  position: absolute; right: -8%; bottom: 8%;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px 26px; display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.float-card .num { font-family: var(--font-head); font-size: 2rem; color: var(--amber-dark); font-weight: 600; }
.float-card small { color: var(--muted); line-height: 1.4; display: block; }
.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-points { list-style: none; margin: 1.4rem 0 2rem; display: grid; gap: .9rem; }
.about-points li { display: flex; gap: .8rem; align-items: flex-start; }
.about-points .hex-ico { flex: 0 0 auto; margin-top: 3px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media .float-card { right: 4%; }
}

/* --------------------------------------------------------------------------
   Zahlen / Bienenwissen
   -------------------------------------------------------------------------- */
.facts { background: var(--dark); color: #e8ded0; overflow: hidden; }
.facts::before {
  content: ""; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 2 52 16v28L28 58 4 44V16Z M28 60 52 74v28L28 116 4 102V74Z' fill='none' stroke='%23F1B00A' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 56px 97px;
}
.facts .section-head h2, .facts h3 { color: var(--white); }
.facts .section-head p { color: rgba(232, 222, 208, .75); }
/* Bienenwissen als Waben: feste Hexagon-Geometrie (aspect-ratio) –
   die Höhe ändert sich beim Hochzählen der Zahlen NICHT mehr (kein Layout-Wackeln) */
.facts-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 2.5vw, 30px); }
.fact-card {
  position: relative; width: 250px; aspect-ratio: 0.866; flex: 0 0 auto;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--grad-honey);
  display: grid; place-content: center; text-align: center;
  padding: 0 34px; transition: transform .3s ease;
}
.fact-card::before {
  content: ""; position: absolute; inset: 4px; z-index: 0;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(165deg, #3d2f1e, #241b10);
}
.fact-card > * { position: relative; z-index: 1; }
.fact-card:hover { transform: translateY(-6px); }
.fact-card .value {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 600;
  color: var(--honey); display: block; margin-bottom: .4rem;
  white-space: nowrap; font-variant-numeric: tabular-nums; min-height: 1.25em;
}
.fact-card .value small { font-size: .55em; }
.fact-card p { color: rgba(232, 222, 208, .82); font-size: .84rem; line-height: 1.5; }
@media (max-width: 560px) {
  .fact-card { width: min(78vw, 250px); }
}

/* --------------------------------------------------------------------------
   Honigsorten
   -------------------------------------------------------------------------- */
.honey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(22px, 3.5vw, 36px); }
.honey-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.honey-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.honey-card .media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.honey-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.honey-card:hover .media img { transform: scale(1.07); }
.honey-card .tag {
  position: absolute; top: 16px; left: 16px; background: var(--grad-honey); color: var(--dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.honey-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.honey-card h3 { font-size: 1.35rem; }
.honey-card p { color: var(--muted); font-size: .97rem; flex: 1; }
.honey-card .more { font-weight: 700; color: var(--amber-dark); display: inline-flex; align-items: center; gap: .4rem; }
.honey-card .more:hover { gap: .7rem; }
.honey-card .more::after { content: "→"; transition: inherit; }

/* Artikel-Layout (honig.html) */
.article { max-width: 820px; margin-inline: auto; }
.article h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 2.6rem 0 1rem; }
.article h2:first-child { margin-top: 0; }
.article p { margin-bottom: 1.05rem; }
.article .lead { font-size: 1.14rem; color: var(--dark-soft); }
.article img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 1.6rem 0; }

/* --------------------------------------------------------------------------
   Galerie – Waben-Grid (Hexagone, Positionen berechnet main.js)
   -------------------------------------------------------------------------- */
.hex-gallery { position: relative; }
.hex-cell {
  position: absolute; overflow: hidden; cursor: zoom-in; margin: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), filter .35s ease;
  filter: drop-shadow(0 6px 14px rgba(43, 33, 23, .18));
}
.hex-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hex-cell::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 33, 23, .72));
  opacity: 0; transition: opacity .35s ease;
}
.hex-cell::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  clip-path: inherit; opacity: 0; transition: opacity .35s ease;
  background: linear-gradient(120deg, rgba(241,176,10,.0) 60%, rgba(241,176,10,.45));
  mix-blend-mode: overlay;
}
.hex-cell .cap {
  position: absolute; left: 22%; right: 22%; bottom: 12%; z-index: 3; text-align: center;
  color: var(--white); font-size: .85rem; font-weight: 600; line-height: 1.3;
  transform: translateY(10px); opacity: 0; transition: transform .35s ease, opacity .35s ease;
}
.hex-cell:hover, .hex-cell:focus-visible { transform: scale(1.1) rotate(1.5deg); z-index: 10; }
.hex-cell:hover img { transform: scale(1.12); }
.hex-cell:hover::before, .hex-cell:hover::after,
.hex-cell:hover .cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(20, 15, 8, .92); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 12px;
  box-shadow: var(--shadow-lg); object-fit: contain;
}
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #e8ded0; font-size: .95rem; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; display: grid; place-items: center;
  transition: background .25s ease;
}
.lightbox button:hover { background: rgba(241, 176, 10, .4); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Termine
   -------------------------------------------------------------------------- */
.events-list { max-width: 780px; margin-inline: auto; display: grid; gap: 18px; }
.event-card {
  display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 22px 26px;
  box-shadow: var(--shadow-sm); border-left: 5px solid var(--honey);
  transition: transform .3s ease, box-shadow .3s ease;
}
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.event-date {
  text-align: center; background: var(--cream-2); border-radius: 14px; padding: 12px 8px;
}
.event-date .day { font-family: var(--font-head); font-size: 1.9rem; font-weight: 600; color: var(--amber-dark); display: block; line-height: 1.1; }
.event-date .month { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.event-info h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.event-info .meta { font-size: .9rem; color: var(--muted); display: flex; gap: 1.2rem; flex-wrap: wrap; }
.event-info p { margin-top: .45rem; font-size: .95rem; }
.events-empty {
  text-align: center; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 54px 30px; max-width: 640px; margin-inline: auto;
}
.events-empty .hex-big { font-size: 2.6rem; margin-bottom: .8rem; }
.events-empty h3 { margin-bottom: .5rem; }
.events-empty p { color: var(--muted); }

/* --------------------------------------------------------------------------
   Verkaufsstellen
   -------------------------------------------------------------------------- */
.shops { background: var(--cream-2); }
.shops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.shop-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.shop-card .ico {
  width: 66px; height: 66px; margin: 0 auto 18px; display: grid; place-items: center;
  background: var(--grad-honey); border-radius: 22px; box-shadow: 0 8px 20px rgba(241,176,10,.35);
  font-size: 1.7rem;
}
.shop-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.shop-card p { color: var(--muted); font-size: .96rem; }
.shop-card .addr { display: block; margin-top: .5rem; font-weight: 600; color: var(--dark-soft); }

/* --------------------------------------------------------------------------
   Bewertungen
   -------------------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); position: relative;
}
.review-card::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-head); font-size: 4.6rem; color: rgba(241, 176, 10, .25); line-height: 1;
}
.review-card .stars { color: var(--honey); letter-spacing: 3px; margin-bottom: .8rem; font-size: 1.05rem; }
.review-card p { font-size: .98rem; margin-bottom: 1rem; }
.review-card .who { font-weight: 700; color: var(--dark-soft); font-size: .92rem; }
.review-card .who small { display: block; font-weight: 400; color: var(--muted); }

/* --------------------------------------------------------------------------
   Kontakt / CTA
   -------------------------------------------------------------------------- */
.contact { background: var(--dark); color: #e8ded0; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241,176,10,.22), transparent 65%);
  top: -180px; right: -120px; pointer-events: none;
}
.contact h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.contact p.lead { color: rgba(232, 222, 208, .8); margin-bottom: 1.8rem; }
.contact-cards { display: grid; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(241,176,10,.22);
  border-radius: var(--radius); padding: 20px 24px; color: inherit;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.contact-item:hover { border-color: var(--honey); background: rgba(241,176,10,.09); transform: translateX(5px); }
.contact-item .ico { font-size: 1.5rem; }
.contact-item strong { color: var(--white); display: block; font-size: 1.02rem; }
.contact-item span { color: rgba(232,222,208,.75); font-size: .92rem; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Unterseiten-Header
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 170px 0 90px; text-align: center; color: var(--white);
  background: linear-gradient(180deg, rgba(30,22,12,.68), rgba(30,22,12,.5)), url("../img/hero-biene.jpg") center 35% / cover;
  position: relative;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: .7rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: #221a11; color: rgba(232, 222, 208, .72); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 5vw, 60px); margin-bottom: 44px; }
.footer img.f-logo { height: 62px; margin-bottom: 16px; }
.footer h4 { color: var(--honey); font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer a { color: rgba(232, 222, 208, .72); transition: color .25s ease; }
.footer a:hover { color: var(--honey); }
.footer-bottom {
  border-top: 1px solid rgba(241, 176, 10, .15); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Rechtstexte
   -------------------------------------------------------------------------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { margin: 2.2rem 0 .8rem; font-size: 1.5rem; }
.legal p, .legal li { margin-bottom: .8rem; }
.legal ul { padding-left: 1.3rem; }

/* Kleiner Hex-Aufzählungspunkt */
.hex-ico {
  width: 22px; height: 22px; display: inline-grid; place-items: center;
  background: var(--grad-honey); color: var(--dark);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  font-size: .7rem; font-weight: 800;
}

/* --------------------------------------------------------------------------
   SVG-Icons (Linienstil)
   -------------------------------------------------------------------------- */
.i { width: 1.6em; height: 1.6em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.shop-card .ico .i { width: 32px; height: 32px; color: var(--dark); }
.contact-item .ico { display: grid; place-items: center; }
.contact-item .ico .i { width: 26px; height: 26px; color: var(--honey); }
.hero-badge .i-bee { width: 24px; height: 20px; }
.event-info .meta .i { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; stroke-width: 2; color: var(--amber-dark); }
.events-empty .i-bee { width: 74px; height: 60px; margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   Bienen! (Hero-Flug, Scroll-Begleiterin, Flügelschlag)
   -------------------------------------------------------------------------- */
.bee-svg { display: block; width: 100%; height: auto; overflow: visible; }
.bee-svg .wing { transform-origin: 26px 17px; animation: flap .16s ease-in-out infinite alternate; }
.bee-svg .wing-r { transform-origin: 38px 15px; animation-delay: .08s; }
@keyframes flap { from { transform: rotate(-16deg); } to { transform: rotate(14deg); } }

.hero-content { position: relative; z-index: 2; will-change: transform, opacity; }

/* Wort-für-Wort-Einstieg der Überschriften */
.hero h1 .w, .page-hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .w > span, .page-hero h1 .w > span {
  display: inline-block; transform: translateY(115%);
  transition: transform .75s cubic-bezier(.2, .7, .2, 1);
}
.hero h1.in .w > span, .page-hero h1.in .w > span { transform: none; }

#bee-buddy {
  position: absolute; top: 0; left: 0; width: 58px; z-index: 60; cursor: pointer;
  will-change: transform; filter: drop-shadow(0 6px 10px rgba(43,33,23,.25));
  user-select: none; -webkit-tap-highlight-color: transparent;
}

.trail-dot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); opacity: .5; z-index: 55; pointer-events: none;
  animation: trailfade .9s ease-out forwards;
}
@keyframes trailfade { to { opacity: 0; transform: scale(.25); } }

.honey-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 120;
  background: var(--grad-honey); border-radius: 0 99px 99px 0;
  box-shadow: 0 0 10px rgba(241, 176, 10, .55);
}
#bee-buddy .bee-inner { display: block; }
#bee-buddy.loop .bee-inner { animation: beeloop .9s cubic-bezier(.4,0,.4,1); }
@keyframes beeloop {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(-200deg) scale(1.25); }
  100% { transform: rotate(-360deg) scale(1); }
}
@media (max-width: 860px) { #bee-buddy { display: none; } }

.honey-drop {
  position: absolute; z-index: 59; width: 11px; height: 15px; pointer-events: none;
  background: var(--grad-honey); border-radius: 50% 50% 55% 55% / 62% 62% 40% 40%;
  animation: dropfall 1.1s ease-in forwards;
}
.honey-drop::before { content: ""; position: absolute; top: -5px; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-bottom: 7px solid var(--honey); border-top: 0; }
@keyframes dropfall {
  0% { opacity: 1; transform: translateY(0) scale(.7); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(130px) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .bee-svg .wing { animation: none !important; }
  #bee-buddy, .trail-dot, .marquee-track { animation: none !important; }
  #bee-buddy { display: none !important; }
  .hero h1 .w > span, .page-hero h1 .w > span { transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   Laufband (Marquee) unter dem Hero
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--grad-honey); overflow: hidden; position: relative; z-index: 5;
  transform: rotate(-1.3deg) scale(1.02); margin-top: -14px; padding: 13px 0;
  box-shadow: 0 10px 30px rgba(241, 176, 10, .3);
}
.marquee-track { display: flex; width: max-content; animation: mq 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem;
  font-weight: 700; color: var(--dark); text-transform: uppercase;
  letter-spacing: .14em; font-size: .9rem; white-space: nowrap;
}
.mq-hex { width: 12px; height: 12px; fill: var(--dark); opacity: .5; flex: 0 0 auto; }
@keyframes mq { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Blumenwiese (generierte Illustration): Parallax + Windhauch + Bienen + Pollen
   -------------------------------------------------------------------------- */
.meadow { padding: 0; height: clamp(190px, 28vw, 360px); overflow: hidden; position: relative; }
.meadow-inner {
  position: absolute; left: 0; bottom: -12%; width: 100%; height: 124%;
  will-change: transform;
}
.meadow-inner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
  transform-origin: 50% 100%;
  animation: breeze 7s ease-in-out infinite alternate;
}
@keyframes breeze {
  from { transform: rotate(-.45deg) scale(1.025); }
  to   { transform: rotate(.45deg) scale(1.025); }
}
.m-bee { position: absolute; z-index: 2; pointer-events: none; animation: mfly var(--dur, 20s) linear infinite; animation-delay: var(--delay, 0s); left: -70px; }
.m-bee .bee-svg { animation: mbob 1.5s ease-in-out infinite alternate; }
.m-bee.rtl { left: auto; right: -70px; animation-name: mfly-rtl; }
.m-bee.rtl .bee-svg { transform: scaleX(-1); animation-name: mbob-rtl; }
@keyframes mfly { to { transform: translateX(calc(100vw + 140px)); } }
@keyframes mfly-rtl { to { transform: translateX(calc(-100vw - 140px)); } }
@keyframes mbob { from { translate: 0 -8px; rotate: -4deg; } to { translate: 0 8px; rotate: 5deg; } }
@keyframes mbob-rtl { from { translate: 0 -8px; rotate: 4deg; } to { translate: 0 8px; rotate: -5deg; } }
.pollen {
  position: absolute; bottom: -8px; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(241, 176, 10, .9); box-shadow: 0 0 8px rgba(241, 176, 10, .8);
  opacity: 0; pointer-events: none;
  animation: pollenrise var(--dur, 9s) linear infinite; animation-delay: var(--delay, 0s);
}
@keyframes pollenrise {
  0% { transform: translate(0, 0) scale(.7); opacity: 0; }
  12% { opacity: .9; }
  85% { opacity: .5; }
  100% { transform: translate(var(--dx, 20px), -180px) scale(1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Bee-Build: Fotorealistische Biene setzt sich beim Scrollen zusammen
   -------------------------------------------------------------------------- */
.bee-build { background: var(--cream-2); overflow-anchor: none; contain: layout paint; }
.bb-sticky {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 0 4%; overflow: hidden;
}
.bb-sticky .section-head { margin-bottom: 26px; }
.bb-hint { font-size: .92rem; color: var(--amber-dark) !important; transition: opacity .6s ease; }
.bb-stage {
  position: relative; width: min(780px, 92vw); aspect-ratio: 3 / 2;
}
/* Dezentes Waben-Wasserzeichen hinter der Biene */
.bb-stage::before {
  content: ""; position: absolute; inset: -6%; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 2 52 16v28L28 58 4 44V16Z M28 60 52 74v28L28 116 4 102V74Z' fill='none' stroke='%23c97a17' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 56px 97px;
}
.bb-parts { position: absolute; inset: 0; }
/* Jedes Körperteil = dieselbe freigestellte Bienen-Illustration, per clip-path auf das
   Teil beschnitten. Die Schnittlinien verlaufen durch die transparenten Zwischenräume,
   daher wirkt jedes Teil wie einzeln freigestellt. */
.bb-part {
  position: absolute; inset: 0;
  background: url("../img/bee-illu.webp") center / 100% 100% no-repeat;
  will-change: transform, opacity; backface-visibility: hidden;
}
.bb-part[data-part="fuehler"]       { clip-path: polygon(8% 12%, 38% 16%, 36% 24%, 30% 30%, 27% 40%, 22% 54%, 13% 52%, 7% 28%); transform-origin: 25% 30%; --sx: -120%; --sy: -55%; --sr: -50deg; --d: 1.05s; }
.bb-part[data-part="kopf"]          { clip-path: polygon(30% 30%, 36% 24%, 43% 23%, 46% 30%, 46% 52%, 40% 52%, 32% 46%, 27% 40%); transform-origin: 37% 38%; --sx: -125%; --sy: 10%; --sr: -40deg; --d: .7s; }
.bb-part[data-part="mundwerkzeug"]  { clip-path: polygon(32% 46%, 40% 52%, 46% 52%, 44% 64%, 26% 58%, 24% 48%, 22% 54%, 27% 40%); transform-origin: 34% 54%; --sx: -110%; --sy: 70%; --sr: 35deg; --d: 1.4s; }
.bb-part[data-part="thorax"]        { clip-path: polygon(43% 23%, 57% 20%, 58% 32%, 50% 38%, 54% 48%, 42% 56%, 46% 30%); transform-origin: 50% 36%; --sx: -10%; --sy: -125%; --sr: 25deg; --d: .35s; }
.bb-part[data-part="vorderfluegel"] { clip-path: polygon(50% 40%, 52% 26%, 56% 10%, 64% 7%, 67% 38%, 60% 43%); transform-origin: 58% 40%; --sx: 40%; --sy: -125%; --sr: 35deg; --d: 3.15s; }
.bb-part[data-part="hinterfluegel"] { clip-path: polygon(64% 7%, 84% 9%, 79% 41%, 67% 38%); transform-origin: 68% 38%; --sx: 95%; --sy: -115%; --sr: 45deg; --d: 2.8s; }
.bb-part[data-part="hinterleib"]    { clip-path: polygon(48% 58%, 50% 40%, 60% 40%, 68% 40%, 80% 44%, 81% 62%, 68% 76%, 56% 64%); transform-origin: 66% 55%; --sx: 125%; --sy: 15%; --sr: 40deg; --d: 0s; }
.bb-part[data-part="vorderbein"]    { clip-path: polygon(36% 54%, 46% 52%, 48% 88%, 32% 76%); transform-origin: 40% 68%; --sx: -70%; --sy: 120%; --sr: -35deg; --d: 1.75s; }
.bb-part[data-part="mittelbein"]    { clip-path: polygon(46% 52%, 54% 54%, 60% 92%, 44% 90%); transform-origin: 51% 70%; --sx: 5%; --sy: 125%; --sr: 30deg; --d: 2.1s; }
.bb-part[data-part="hinterbein"]    { clip-path: polygon(54% 54%, 63% 55%, 78% 88%, 56% 96%); transform-origin: 64% 74%; --sx: 80%; --sy: 120%; --sr: 45deg; --d: 2.45s; }

/* Zeitgesteuerter Zusammenbau: Teile starten verstreut und schweben nacheinander ein */
.js-scrolly .bb-part {
  opacity: 0;
  transform: translate(var(--sx), var(--sy)) rotate(var(--sr)) scale(.72);
  transition: transform 1.25s cubic-bezier(.22, .85, .3, 1.04), opacity .7s ease;
  transition-delay: var(--d);
}
.js-scrolly .bb-stage.assemble .bb-part { opacity: 1; transform: none; }
/* Beim Replay-Reset ohne Rückwärts-Animation in den Startzustand springen */
.js-scrolly .bb-stage.noanim .bb-part { transition: none !important; }

/* Flügelschlag + Schweben, sobald die Biene komplett ist */
.bb-stage.done .bb-part[data-part="vorderfluegel"] { animation: flapv .9s ease-in-out infinite alternate; }
.bb-stage.done .bb-part[data-part="hinterfluegel"] { animation: flaph .9s ease-in-out infinite alternate; animation-delay: .1s; }
@keyframes flapv { from { transform: rotate(0deg); } to { transform: rotate(4deg); } }
@keyframes flaph { from { transform: rotate(0deg); } to { transform: rotate(2.5deg); } }
.bb-stage.done .bb-parts { animation: beehover 3.2s ease-in-out infinite alternate; }
@keyframes beehover { from { transform: translateY(-7px); } to { transform: translateY(7px); } }
.bb-label {
  position: absolute; left: var(--x); top: var(--y); z-index: 3;
  opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease;
}
.bb-label.show { opacity: 1; transform: none; }
.bb-dot {
  position: absolute; left: -7px; top: -7px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--honey); border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(241,176,10,.4);
  animation: dotpulse 2s ease-in-out infinite;
}
@keyframes dotpulse { 50% { box-shadow: 0 0 0 9px rgba(241, 176, 10, .12); } }
.bb-text {
  position: absolute; top: -10px; width: max(180px, 14vw); max-width: 230px;
  background: rgba(255, 255, 255, .93); backdrop-filter: blur(4px);
  border-radius: 12px; padding: 12px 15px; font-size: .84rem; line-height: 1.45;
  box-shadow: var(--shadow-md); color: var(--text);
}
.bb-label[data-side="left"] .bb-text { right: 26px; }
.bb-label[data-side="right"] .bb-text { left: 26px; }
.bb-text strong { display: block; font-size: .95rem; color: var(--dark); margin-bottom: 2px; }
.bb-label[data-side="left"] .bb-text::after,
.bb-label[data-side="right"] .bb-text::after {
  content: ""; position: absolute; top: 14px; width: 18px; height: 2px; background: var(--honey);
}
.bb-label[data-side="left"] .bb-text::after { right: -20px; }
.bb-label[data-side="right"] .bb-text::after { left: -20px; }

/* Ältere Labels schrumpfen zu Pillen (nur Titel); Hover (Desktop) bzw. Tippen (Touch) klappt sie auf */
.bb-label.past .bb-text { width: auto; max-width: none; white-space: nowrap; padding: 6px 12px; cursor: pointer; }
.bb-label.past .bb-text .d { display: none; }
.bb-label.past .bb-text strong { margin: 0; font-size: .82rem; }
.bb-label.past.open .bb-text {
  width: max(180px, 14vw); max-width: 230px; white-space: normal; padding: 12px 15px; z-index: 20; position: absolute;
}
.bb-label.past.open .bb-text .d { display: block; }
.bb-label.past.open { z-index: 20; }
@media (hover: hover) {
  .bb-label.past:hover .bb-text {
    width: max(180px, 14vw); max-width: 230px; white-space: normal; padding: 12px 15px; z-index: 20; position: absolute;
  }
  .bb-label.past:hover .bb-text .d { display: block; }
  .bb-label.past:hover { z-index: 20; }
}

/* Ohne JS: Biene fertig montiert, alle Labels sichtbar */
html:not(.js-scrolly) .bb-label { opacity: 1; transform: none; }
/* Mobile Infobox: Beschreibungen erscheinen gesammelt unter der Biene statt neben den Punkten */
.bb-mobile-info {
  display: none; margin-top: 18px; width: min(94vw, 430px); min-height: 84px;
  background: var(--white); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-sm); font-size: .86rem; line-height: 1.5; color: var(--text);
}
.bb-mobile-info strong { display: block; color: var(--dark); margin-bottom: 2px; }
.bb-mobile-info:empty::before { content: "Tippen Sie auf einen Punkt an der Biene, um mehr zu erfahren."; color: var(--muted); }
@media (max-width: 700px) {
  .bb-stage { width: min(94vw, 430px); }
  /* Alle Labels sind auf dem Smartphone kompakte Pills – nie abgeschnittene Karten */
  .bb-text, .bb-label.current .bb-text, .bb-label.past.open .bb-text {
    width: auto; max-width: none; white-space: nowrap; padding: 5px 10px;
    font-size: .72rem; position: absolute;
  }
  .bb-text .d { display: none !important; }
  .bb-text strong { font-size: .74rem; margin: 0; }
  .bb-dot { width: 11px; height: 11px; left: -5px; top: -5px; }
  .bb-sticky .section-head { margin-bottom: 8px; }
  .bb-mobile-info { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .bb-part { transform: none !important; opacity: 1 !important; animation: none !important; }
  .bb-label { opacity: 1; transform: none; }
  .bb-stage.done .bb-parts { animation: none; }
  .meadow-inner img, .m-bee, .m-bee .bee-svg, .pollen { animation: none !important; }
  .m-bee, .pollen { display: none; }
}

/* --------------------------------------------------------------------------
   Karte (Google Maps, Zwei-Klick-Lösung)
   -------------------------------------------------------------------------- */
.shop-card { cursor: pointer; border: 2px solid transparent; }
.shop-card.active { border-color: var(--honey); box-shadow: var(--shadow-md); }
.shop-card.active .ico { animation: pulse .5s ease; }
@keyframes pulse { 50% { transform: scale(1.12); } }

.map-box {
  position: relative; margin-top: clamp(28px, 4vw, 48px); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 21 / 9;
  background: var(--cream);
}
@media (max-width: 700px) { .map-box { aspect-ratio: 4 / 3; } }
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent {
  position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; text-align: center;
  gap: 10px; padding: 30px;
  background:
    linear-gradient(rgba(253, 248, 239, .88), rgba(253, 248, 239, .88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 2 52 16v28L28 58 4 44V16Z M28 60 52 74v28L28 116 4 102V74Z' fill='none' stroke='%23F1B00A' stroke-width='1.5'/%3E%3C/svg%3E");
}
.map-consent h3 { font-size: 1.35rem; }
.map-consent p { color: var(--muted); max-width: 480px; margin-inline: auto; font-size: .93rem; }
.map-consent .btn { margin: 8px auto 0; }
.map-consent.hidden { display: none; }
.map-note { text-align: center; margin-top: 18px; font-size: .92rem; color: var(--muted); }
