/* ============================================================
   Imkerei Manufaktur · Manuel Naß
   Natural History Specimen Catalog
   ------------------------------------------------------------
   Typography: Cormorant (geometric serif) + IBM Plex Mono
   Palette: ivory paper / forest green / honey gradients
   Feel: museum catalog / botanical field guide
============================================================ */

:root {
  /* Paper — warm ivory, not cream (different from Mühlenhof) */
  --paper:      #f5efe0;
  --paper-2:    #ece4cf;
  --paper-3:    #ddd3b6;
  --rule:       #c4b89c;

  /* Forest / ink — more olive-green than Mühlenhof's cool forest */
  --ink:        #1f2a1f;
  --ink-2:      #2a3a2a;
  --ink-3:      #556155;

  /* Honey accents */
  --honey-light:#f1c97a;
  --honey-mid:  #b48a3a;
  --honey-dark: #5d4a2a;

  /* Specimen accent (used for card numbers) */
  --amber:      #7a5a2e;

  /* Type */
  --ff-serif: "Cormorant", "Cormorant Garamond", "Garamond", "Georgia", serif;
  --ff-mono:  "IBM Plex Mono", "SFMono-Regular", "Menlo", monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 0px;  /* flat, catalog-like */
  --radius-sm: 2px;

  --shadow-sm: 0 1px 3px rgba(31, 42, 31, 0.06);
  --shadow-md: 0 18px 40px -16px rgba(31, 42, 31, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(31, 42, 31, 0.32);
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper grain — same as Mühlenhof but tuned for this palette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ============================================================
   UTILITY / DISPLAY
============================================================ */

/* Monospace spec labels — the signature of this design */
.spec-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
}

.spec-divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rule);
  vertical-align: middle;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.5rem;
}

/* Large display heading */
.h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

/* Lede */
.lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--solid:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 0.95rem 0.5rem;
}
.btn--text:hover { color: var(--amber); }
.btn--full { width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 224, 0.93);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}
.brand__mark {
  color: var(--amber);
  flex-shrink: 0;
}
.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.35rem;
}

.nav__list {
  display: flex;
  gap: 2.2rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__list a {
  color: var(--ink-2);
  position: relative;
  padding: 0.35rem 0;
  transition: color .2s ease;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -2px;
  height: 1px;
  background: var(--amber);
  transition: left .25s ease, right .25s ease;
}
.nav__list a:hover { color: var(--amber); }
.nav__list a:hover::after { left: 0; right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 0.75rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all .25s ease;
}
.header-cta:hover {
  background: var(--amber);
  gap: 0.7rem;
}
.header-cta__arrow { transition: transform .2s ease; }
.header-cta:hover .header-cta__arrow { transform: translateX(2px); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 0 var(--gutter);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height .35s cubic-bezier(.4, 0, .2, 1),
    opacity .25s ease,
    transform .35s cubic-bezier(.4, 0, .2, 1),
    padding .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 12px 24px -8px rgba(31, 42, 31, 0.12);
  pointer-events: none;
}
.mobile-nav.is-open {
  max-height: 1000px; /* Gives the menu plenty of room to expand */
  overflow-y: auto;   /* Lets the user scroll inside the menu on tiny screens */
  opacity: 1;
  transform: translateY(0);
  padding: 1rem var(--gutter) 3rem; /* Added extra breathing room at the bottom */
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-nav.is-open li { opacity: 1; transform: translateX(0); }
.mobile-nav.is-open li:nth-child(1) { transition-delay: .08s; }
.mobile-nav.is-open li:nth-child(2) { transition-delay: .13s; }
.mobile-nav.is-open li:nth-child(3) { transition-delay: .18s; }
.mobile-nav.is-open li:nth-child(4) { transition-delay: .23s; }
.mobile-nav.is-open li:nth-child(5) { transition-delay: .28s; }
.mobile-nav.is-open li:nth-child(6) { transition-delay: .33s; }
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  min-height: 48px;
}
.mobile-nav li:last-child a { border-bottom: 0; }
.mobile-nav__contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
}
.mobile-nav__contact a {
  color: var(--amber);
  letter-spacing: 0.04em;
}
body.nav-open { overflow: hidden; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__plate { order: -1; max-width: 320px; margin: 0 auto; }
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.75rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 52ch;
  color: var(--ink-2);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  opacity: 0.6;
}
.hero__scroll-hint span:first-child {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--amber), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}
@media (max-width: 900px) {
  .hero__scroll-hint { display: none; }
}

/* ============================================================
   JAR SVG / SPECIMEN PLATE
============================================================ */
.hero__plate {
  margin: 0;
  text-align: center;
}
.hero__plate-caption {
  margin-top: 1.5rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.jar {
  display: inline-block;
  position: relative;
  width: 260px;
  max-width: 100%;
  margin: 0 auto;
}
.jar__lid {
  width: 80%;
  height: 32px;
  margin: 0 auto -2px;
  background:
    linear-gradient(180deg, #8a5e2a 0%, #5d4a2a 50%, #3d3020 100%);
  border-radius: 6px 6px 2px 2px;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.12),
    0 2px 6px rgba(31, 42, 31, 0.18);
  position: relative;
}
.jar__lid::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}
.jar__body {
  position: relative;
  width: 100%;
  height: 340px;
  background:
    linear-gradient(180deg,
      rgba(180, 138, 58, 0.12) 0%,
      rgba(180, 138, 58, 0.20) 100%);
  border: 1.5px solid rgba(93, 74, 42, 0.35);
  border-radius: 3px 3px 14px 14px;
  overflow: hidden;
  box-shadow:
    inset 3px 0 8px rgba(255, 255, 255, 0.25),
    inset -3px 0 8px rgba(0, 0, 0, 0.05),
    0 20px 40px -10px rgba(31, 42, 31, 0.2);
}
.jar__content {
  position: absolute;
  inset: 8% 6% 6%;
  background:
    linear-gradient(180deg,
      #d49a46 0%,
      #b08a44 40%,
      #8a5e2a 80%,
      #5d4a2a 100%);
  border-radius: 1px 1px 10px 10px;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.15);
}
/* Subtle liquid highlight */
.jar__content::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 8%;
  width: 18%;
  height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  border-radius: 50%;
  filter: blur(3px);
}

/* The label on the jar */
.jar__label {
  position: absolute;
  inset: 45% 12% 12%;
  background: var(--paper);
  border: 1px solid var(--amber);
  padding: 0.9rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow:
    0 0 0 1px rgba(93, 74, 42, 0.1) inset,
    1px 1px 0 rgba(0, 0, 0, 0.04);
  z-index: 2;
}
.jar__label-n {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.jar__label-latin {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-3);
  font-weight: 300;
}
.jar__label-name {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0.15rem 0;
}
.jar__label-loc {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.2rem;
}
.jar__label-year {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-top: 0.1rem;
  padding-top: 0.3rem;
  border-top: 1px solid var(--rule);
  width: 60%;
}

/* ============================================================
   QUOTE BAND
============================================================ */
.quote-band {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.quote-band__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 1rem;
}
.quote-band__text em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}
.quote-band__attr {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

/* ============================================================
   SECTION BASE
============================================================ */
.section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

/* ============================================================
   SORTEN — specimen grid
============================================================ */
.specimens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 900px) { .specimens { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .specimens { grid-template-columns: 1fr; } }

.spec {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.spec:hover {
  background: var(--paper-2);
}

/* The color swatch — honey-hued circle, the signature visual */
.spec__swatch {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%,
      color-mix(in srgb, var(--honey) 100%, white 25%) 0%,
      var(--honey) 45%,
      color-mix(in srgb, var(--honey) 100%, black 25%) 100%);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.15),
    0 6px 14px -4px rgba(31, 42, 31, 0.25);
  margin-bottom: 0.3rem;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.spec__swatch::after {
  /* Small highlight "droplet" */
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(2px);
}
.spec:hover .spec__swatch {
  transform: scale(1.08) rotate(-4deg);
}

.spec__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: -0.3rem;
}
.spec__n {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.spec__latin {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-3);
  font-weight: 300;
}

.spec__name {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}

.spec__notes {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}

/* Price table — specimen-label style */
.spec__price {
  display: flex;
  gap: 0.8rem;
  margin: 0.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.spec__price div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 48px;
}
.spec__price dt {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.spec__price dd {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.sorten__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   STANDORTE — map + list
============================================================ */
.section--standorte {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.standorte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) {
  .standorte-grid { grid-template-columns: 1fr; }
}

.map-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.5rem;
  position: relative;
}
.map-card::before {
  content: "KARTE · SAMMELSTANDORTE";
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--paper);
  padding: 0 0.75rem;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.map {
  width: 100%;
  height: auto;
  max-height: 520px;
}

.standorte-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.standorte-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.standorte-item:last-child { border-bottom: 0; }
.standorte-item__n {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.standorte-item h4 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.standorte-item p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ============================================================
   IMKER — portrait + text
============================================================ */
.imker {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .imker { grid-template-columns: 1fr; }
  .imker__portrait { max-width: 460px; margin: 0 auto; }
}

.imker-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.imker-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.25rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.imker-facts li span {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.imker-facts li strong {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: italic;
}

.imker__portrait {
  margin: 0;
  position: relative;
}
.imker__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  box-shadow: var(--shadow-lg);
}
.imker__portrait figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   BEZUGSORTE — stores grid
============================================================ */
.section--bezugsorte {
  background: var(--paper);
}

.stores-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
@media (max-width: 780px) {
  .stores-regions { grid-template-columns: 1fr; gap: 2.5rem; }
}

.store-region {
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}
.store-region__h {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.store-region ul {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.store-region li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.store-region strong {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.store-region span {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   BESTELLEN
============================================================ */
.section--bestellen {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
}
.section--bestellen .eyebrow {
  color: var(--honey-light);
}
.section--bestellen .h2 {
  color: var(--paper);
}
.section--bestellen .h2 em {
  color: var(--honey-light);
}
.section--bestellen .lede {
  color: rgba(245, 239, 224, 0.78);
}

.bestellen {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .bestellen { grid-template-columns: 1fr; }
}

.bestellen__intro {
  padding-top: 1rem;
}

.bestellen__conditions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 224, 0.2);
}
.bestellen__conditions div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.bestellen__conditions span {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
}
.bestellen__conditions strong {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  font-style: italic;
}

.bestellen__form {
  background: var(--paper);
  color: var(--ink-2);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.bestellen__form-title {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.01em;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.field > span {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--ff-serif);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(122, 90, 46, 0.15);
}
.field textarea { resize: vertical; font-family: var(--ff-serif); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field--check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.field--check span {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.55;
}
.field--check strong { color: var(--ink); font-weight: 600; }

.form__note {
  margin-top: 0.75rem;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--amber);
  min-height: 1.25em;
}

.bestellen__alt {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--ink-3);
  text-align: center;
}
.bestellen__alt a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bestellen__alt a:hover { color: var(--ink); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--paper-2);
  color: var(--ink-2);
  padding: 4.5rem 0 0;
  border-top: 1px solid var(--rule);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
}
.footer__brand .brand__mark { color: var(--amber); }
.footer__wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.footer__wordmark em {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.5rem;
  font-style: normal;
}

.footer__certs {
  display: flex;
  gap: 1rem;
}
.cert {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--amber);
  color: var(--amber);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__cols { grid-template-columns: 1fr; gap: 2rem; } }

.footer__h {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.25rem;
}
.footer__cols ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--ff-serif);
  font-size: 1rem;
}
.footer__cols a:hover { color: var(--amber); }
.footer__copy-mini {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 0.5rem;
}

.footer__bar {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--ink-3);
}
@media (max-width: 600px) { .footer__bar { justify-content: center; text-align: center; } }
.footer__made a { color: var(--amber); }
.footer__made a:hover { color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll-hint span:first-child { animation: none; }
  .spec:hover .spec__swatch { transform: none; }
}

::selection { background: var(--amber); color: var(--paper); }

/* ============================================================
   MOBILE POLISH
============================================================ */
@media (max-width: 720px) {
  body { font-size: 17px; }

  .hero__title { font-size: clamp(2.4rem, 11vw, 3.8rem); line-height: 1; }
  .hero__lede { font-size: 1.05rem; }

  .spec__name { font-size: 1.65rem; }
  .spec__price dd { font-size: 1rem; }

  .standorte-item { gap: 1rem; padding: 1.25rem 0; }
  .standorte-item__n { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__certs { flex-wrap: wrap; }
}
