/* ==========================================================================
   Imkerei Fritschler — Stylesheet
   Farbwelt: Bienenkasten-Petrol + Honiggold (von den echten Bienenkästen
   und Honiggläsern der Imkerei abgeleitet). Leitmotiv: die Wabe (Hexagon).
   ========================================================================== */

:root {
  /* Farben */
  --hive-teal: #2e6e62;
  --hive-teal-dark: #1c433b;
  --hive-teal-light: #4a8c7e;
  --honey: #e8a33d;
  --honey-deep: #b8722a;
  --honey-pale: #f6d999;
  --bark: #3b2a1e;
  --cream: #faf3e2;
  --paper: #fffcf6;
  --ink: #241d15;
  --ink-soft: #5a4d3e;
  --gold-line: #d9b168;
  --alert: #a13d2d;

  /* Typografie */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Sonstiges */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 12px 30px -14px rgba(36, 29, 21, 0.35);
  --shadow-lift: 0 18px 40px -16px rgba(28, 67, 59, 0.4);
  --max-width: 1180px;
  --section-pad: clamp(3.5rem, 6vw, 6.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-video { display: none; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--bark); margin: 0 0 0.5em; line-height: 1.15; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--honey-deep);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hive-teal-dark);
  font-weight: 700;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--honey);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.section { padding: var(--section-pad) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section--alt { background: var(--paper); }

/* ---------- Waben-Trenner (Signatur-Element) ---------- */
.comb-divider {
  height: 34px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='34' viewBox='0 0 60 34'%3E%3Cpath d='M15 0 L45 0 L60 17 L45 34 L15 34 L0 17 Z' fill='none' stroke='%23d9b168' stroke-width='1.1' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

.honeycomb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cpath d='M21 0 L63 0 L84 24 L84 72 L63 96 L21 96 L0 72 L0 24 Z' fill='none' stroke='%23d9b168' stroke-width='0.8' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--hive-teal-dark);
  color: #fff;
  padding: 0.8em 1.2em;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 226, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(217, 177, 104, 0.45);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bark);
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hive-teal-dark);
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 0.3em 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--honey-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

.main-nav .nav-cta {
  background: var(--hive-teal);
  color: #fff !important;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700 !important;
  white-space: nowrap;
  display: inline-block;
}
.nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--hive-teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--hive-teal);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hive-teal-dark);
  margin: 4px auto;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hive-teal-dark) 0%, var(--hive-teal) 62%, var(--honey-deep) 100%);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,67,59,0.68) 0%, rgba(46,110,98,0.42) 55%, rgba(184,114,42,0.42) 100%);
  z-index: 1;
}
.hero .honeycomb-bg { opacity: 0.16; z-index: 2; }
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-pale);
  font-weight: 700;
  margin-bottom: 1.1em;
}
.hero-eyebrow::before {
  content: "";
  width: 11px; height: 11px;
  background: var(--honey);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  max-width: 14ch;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
  color: rgba(255, 252, 246, 0.88);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--honey); color: var(--bark); }
.btn-primary:hover { background: var(--honey-pale); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--hive-teal-dark); color: #fff; }
.btn-dark:hover { background: var(--bark); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.hero-hexstack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.hex-fact {
  background: rgba(255, 252, 246, 0.1);
  border: 1px solid rgba(255, 252, 246, 0.28);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  backdrop-filter: blur(2px);
}
.hex-fact .hex-icon {
  width: 34px; height: 34px;
  background: var(--honey);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  margin-bottom: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--bark); font-family: var(--font-display);
}
.hex-fact strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 0.2rem; }
.hex-fact span { font-size: 0.85rem; color: rgba(255,252,246,0.78); }

/* ---------- Über uns ---------- */
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
  border: 6px solid var(--paper);
  outline: 1px solid rgba(217,177,104,0.5);
  margin-bottom: 2.5rem;
}
.about-photo img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; object-position: center; }
.about-photo figcaption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.1rem 0;
  border: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stats > div {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  color: var(--hive-teal-dark);
  font-size: 1.15rem;
}
.about-stats span { font-size: 0.8rem; color: var(--ink-soft); }

.about-facts {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.about-facts li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.about-facts .hexdot {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 0.15em;
  background: var(--hive-teal);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
}

/* ---------- Produkte ---------- */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.1em 0.6em 0.85em;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hive-teal-dark);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cat-chip:hover { background: var(--honey-pale); transform: translateY(-1px); }
.cat-chip .dot {
  width: 9px; height: 9px;
  background: var(--honey-deep);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.category-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(217,177,104,0.4);
  align-items: start;
  scroll-margin-top: 90px;
}
.category-block:first-of-type { border-top: none; padding-top: 0; }
.category-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 6px solid var(--paper);
  outline: 1px solid rgba(217,177,104,0.5);
}
.category-photo img { width: 100%; height: auto; max-height: 380px; object-fit: cover; }
.category-photo .cat-badge {
  position: absolute;
  top: -14px; left: -14px;
  width: 58px; height: 58px;
  background: var(--honey);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.category-photo .cat-badge svg { width: 26px; height: 26px; }
.category-icon-block {
  border-radius: var(--radius);
  border: 2px dashed var(--gold-line);
  background: var(--paper);
  aspect-ratio: 4/3.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-icon-block svg { width: 34%; height: 34%; }

.category-copy h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.category-copy .cat-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hive-teal-dark);
  background: rgba(46,110,98,0.1);
  padding: 0.25em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.category-copy .cat-tag.age18 { color: var(--alert); background: rgba(161,61,45,0.1); }
.category-copy p { color: var(--ink-soft); }

.price-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.price-table tr { border-bottom: 1px dotted rgba(59,42,30,0.25); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 0.55em 0; font-size: 0.95rem; vertical-align: top; }
.price-table td.pname { color: var(--ink); }
.price-table td.punit { color: var(--ink-soft); font-size: 0.85rem; white-space: nowrap; padding-left: 0.7em; }
.price-table td.pprice { color: var(--honey-deep); font-weight: 700; text-align: right; white-space: nowrap; }
.price-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.9rem; font-style: italic; }

.gift-banner {
  margin-top: 3rem;
  background: linear-gradient(120deg, var(--hive-teal) 0%, var(--hive-teal-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
}
.gift-banner h3 { color: #fff; margin-bottom: 0.4rem; }
.gift-banner p { color: rgba(255,252,246,0.85); margin-bottom: 0; max-width: 60ch; }

/* ---------- Bestellformular ---------- */
.order-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-note {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: sticky;
  top: 100px;
}
.order-note h4 { font-size: 1.05rem; }
.order-note ol { padding-left: 1.2rem; margin: 0.8rem 0; }
.order-note li { margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.order-note .mini-note { font-size: 0.8rem; color: var(--ink-soft); border-top: 1px dashed var(--gold-line); padding-top: 0.9rem; margin-top: 0.9rem; }

form { background: var(--paper); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-soft); }
fieldset { border: none; padding: 0; margin: 0 0 2rem; }
legend {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bark);
  font-size: 1.15rem;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid rgba(217,177,104,0.5);
  width: 100%;
  margin-bottom: 1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label, .qty-row .qty-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--bark); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.7em 0.85em;
  border: 1px solid #cdbb95;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--hive-teal); }
.field .hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.3rem; }

.qty-list { display: grid; gap: 0.6rem; }
.qty-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65em 0.2em;
  border-bottom: 1px dotted rgba(59,42,30,0.2);
}
.qty-row:last-child { border-bottom: none; }
.qty-row .qty-price { font-size: 0.85rem; color: var(--honey-deep); font-weight: 700; white-space: nowrap; }
.qty-row .qty-unit { font-size: 0.78rem; color: var(--ink-soft); }
.qty-row input[type="number"] {
  width: 64px;
  padding: 0.4em 0.3em;
  text-align: center;
  border: 1px solid #cdbb95;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.check-row { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.9rem; }
.check-row input { margin-top: 0.25em; width: 17px; height: 17px; flex-shrink: 0; }
.check-row label a { color: var(--hive-teal-dark); text-decoration: underline; }

.order-summary {
  background: rgba(46,110,98,0.07);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.order-summary .sum-value { color: var(--honey-deep); font-size: 1.2rem; }
.order-summary small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.75rem; }

.age-gate {
  display: none;
  background: rgba(161,61,45,0.08);
  border: 1px solid rgba(161,61,45,0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
}
.age-gate.is-visible { display: block; }
.age-gate p { font-size: 0.88rem; color: var(--alert); margin-bottom: 0.6rem; }

.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.form-status { font-size: 0.88rem; margin-top: 0.9rem; }
.form-status.ok { color: var(--hive-teal-dark); }
.form-status.err { color: var(--alert); }

.copy-fallback {
  margin-top: 1.2rem;
  display: none;
}
.copy-fallback.is-visible { display: block; }
.copy-fallback textarea {
  width: 100%;
  min-height: 160px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  padding: 0.8em;
  border-radius: var(--radius-sm);
  border: 1px solid #cdbb95;
}

/* ---------- Galerie ---------- */
.gallery-grid {
  column-count: 3;
  column-gap: 1.1rem;
}
.gallery-item {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 5px solid var(--paper);
  outline: 1px solid rgba(217,177,104,0.5);
  text-align: left;
  break-inside: avoid;
  margin-bottom: 1.1rem;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(28,67,59,0.88), rgba(28,67,59,0));
  color: #fff;
  padding: 1.6rem 0.9rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: 780px; width: 100%; text-align: center; }
.lightbox-inner img { max-height: 68vh; margin: 0 auto; border-radius: 10px; }
.lightbox-cap { color: var(--cream); margin-top: 1rem; font-size: 0.95rem; }
.lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.lightbox-controls button { pointer-events: auto; }
.lb-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}
.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info h3 { font-size: 1.25rem; }
.info-list { list-style: none; display: grid; gap: 1.1rem; margin: 1.4rem 0 2rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--hive-teal);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
}
.info-list .ico svg { width: 17px; height: 17px; stroke: #fff; }
.info-list a { text-decoration: none; font-weight: 600; color: var(--hive-teal-dark); }
.info-list span.label { display: block; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--honey-pale); }
.social-row svg { width: 19px; height: 19px; stroke: var(--hive-teal-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bark);
  color: rgba(250,243,226,0.82);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(250,243,226,0.15);
}
.site-footer h5 {
  color: var(--honey-pale);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.site-footer .brand-text { color: #fff; }
.site-footer .brand-text small { color: var(--honey-pale); }
.site-footer p { color: rgba(250,243,226,0.75); font-size: 0.92rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand-row .brand-mark { width: 46px; height: 46px; }
.footer-links { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(250,243,226,0.82); text-decoration: none; font-size: 0.92rem; }
.member-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(250,243,226,0.15);
}
.member-badge img { width: 44px; height: auto; flex-shrink: 0; }
.member-badge span { font-size: 0.82rem; color: rgba(250,243,226,0.72); line-height: 1.4; }
.footer-links a:hover { color: var(--honey); }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(250,243,226,0.55);
}
.footer-bottom a { color: rgba(250,243,226,0.55); text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal-page { background: var(--paper); }
.legal-page .container { max-width: 820px; }
.legal-hero {
  background: var(--hive-teal-dark);
  color: #fff;
  padding: 2.6rem 0;
}
.legal-hero .container { max-width: 820px; }
.legal-hero h1 { color: #fff; margin-bottom: 0.3rem; font-size: 1.9rem; }
.legal-hero p { color: rgba(255,252,246,0.8); margin: 0; }
.legal-body { padding: 3rem 0 5rem; }
.legal-body h2 { font-size: 1.25rem; margin-top: 2.2rem; }
.legal-body h3 { font-size: 1.05rem; margin-top: 1.4rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; }
.legal-body ul, .legal-body ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.legal-body li { margin-bottom: 0.4rem; }
.legal-body a { color: var(--hive-teal-dark); }
.legal-body address { font-style: normal; }
.callout {
  background: rgba(232,163,61,0.12);
  border: 1px solid rgba(232,163,61,0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  margin: 1.4rem 0;
}
.callout strong { color: var(--bark); }
.back-home { display: inline-flex; align-items: center; gap: 0.4em; text-decoration: none; color: var(--honey-pale); font-size: 0.9rem; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .category-block { grid-template-columns: 1fr; }
  .category-photo, .category-icon-block { max-width: 420px; }
  .order-wrap { grid-template-columns: 1fr; }
  .order-note { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 720px) {
  .hero-video { display: none; }
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--gold-line); max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
  .main-nav.is-open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.2rem; }
  .main-nav li { border-bottom: 1px solid rgba(217,177,104,0.3); }
  .main-nav a { display: block; padding: 0.9em 0; }
  .nav-toggle { display: block; }
  .nav-cta { display: inline-block; margin-top: 0.8em; }
  .field-row { grid-template-columns: 1fr; }
  .gift-banner { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .qty-row { grid-template-columns: 1fr auto; }
  .qty-row .qty-price { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
  .hero-hexstack { grid-template-columns: 1fr; }
}

/* ---------- Unsere Werte ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.value-card .hex-icon {
  width: 46px; height: 46px;
  background: var(--hive-teal);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.value-card .hex-icon svg { width: 22px; height: 22px; stroke: #fff; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }

.mission-lead { max-width: 72ch; font-size: 1.05rem; color: var(--ink-soft); }

.swarm-banner {
  margin-top: 3rem;
  background: linear-gradient(120deg, var(--honey-deep) 0%, var(--honey) 100%);
  color: var(--bark);
  border-radius: var(--radius);
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
}
.swarm-banner h3 { color: var(--bark); margin-bottom: 0.4rem; }
.swarm-banner p { color: rgba(59,42,30,0.85); margin-bottom: 0; max-width: 60ch; }

/* ---------- Schwarm-Seite ---------- */
.swarm-steps {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  margin: 1.8rem 0 2.4rem;
  max-width: 640px;
}
.swarm-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.swarm-steps .step-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--honey);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--bark); font-family: var(--font-display);
  font-size: 0.9rem;
}
.swarm-steps strong { display: block; color: var(--bark); font-size: 0.98rem; margin-bottom: 0.15rem; }
.swarm-steps span { font-size: 0.88rem; color: var(--ink-soft); }

.swarm-contact {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 640px;
  margin-bottom: 2rem;
}
.swarm-contact .free-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hive-teal-dark);
  background: rgba(46,110,98,0.1);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.swarm-contact .swarm-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.3rem; }
.btn-whatsapp { background: var(--hive-teal); color: #fff; }
.btn-whatsapp:hover { background: var(--hive-teal-dark); }

@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
  .swarm-banner { grid-template-columns: 1fr; text-align: left; }
}
