/* ============================================================
   Biopana Shop — Gestaltungssystem
   1. Tokens
   2. Grundlagen
   3. Layout-Bausteine
   4. Kopfbereich & Navigation
   5. Abschnitte der Startseite
   6. Formular
   7. Inhaltsseiten
   8. Fußbereich
   9. Cookie-Hinweis
  10. Bewegung & Reaktionsverhalten
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --ink: #072320;
  --forest: #0d3e30;
  --moss: #14513f;
  --emerald: #0f9e6e;
  --emerald-deep: #0a6e4e;
  --emerald-soft: #d7f0e5;
  --azure: #1e88c3;
  --azure-deep: #105c8c;
  --azure-soft: #dbeef8;
  --silver: #c4d1d7;
  --silver-dim: #93a7b0;
  --steel: #5d7078;
  --mist: #f1f6f8;
  --cloud: #fbfdfd;
  --white: #ffffff;
  --amber: #d98724;

  --chrome: linear-gradient(155deg, #ffffff 0%, #e4edf1 22%, #adbfc8 48%,
                            #f4f9fb 68%, #c6d5db 88%, #eef4f7 100%);
  --chrome-line: linear-gradient(90deg, rgba(255,255,255,0) 0%, #ffffff 12%,
                                 #9fb2bb 50%, #ffffff 88%, rgba(255,255,255,0) 100%);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-line: rgba(255, 255, 255, 0.85);

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-tech: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, "Roboto Mono", ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;

  --shadow-1: 0 1px 2px rgba(7, 35, 32, .06), 0 6px 18px rgba(7, 35, 32, .06);
  --shadow-2: 0 2px 6px rgba(7, 35, 32, .07), 0 18px 44px rgba(7, 35, 32, .10);
  --shadow-3: 0 30px 70px rgba(7, 35, 32, .18);

  --wrap: 1200px;
  --gap: clamp(18px, 2.2vw, 30px);
  --band: clamp(64px, 8vw, 118px);
}

/* ---------- 2. Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, .42vw + 15px, 18px);
  line-height: 1.68;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  color: var(--forest);
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4.05rem); letter-spacing: -.028em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--emerald-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--azure-deep); }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -70px;
  z-index: 200; padding: 12px 20px; border-radius: 0 0 var(--r-md) var(--r-md);
  background: var(--forest); color: #fff; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout-Bausteine ---------- */
.wrap { width: min(100% - 2 * clamp(18px, 5vw, 46px), var(--wrap)); margin-inline: auto; }
.wrap--wide { width: min(100% - 2 * clamp(18px, 4vw, 40px), 1380px); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * clamp(18px, 5vw, 46px), 840px); margin-inline: auto; }

.band { padding-block: var(--band); }
.band--tight { padding-block: calc(var(--band) * .62); }

.eyebrow {
  font-family: var(--font-tech);
  font-size: .705rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 1.05em;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; flex: none; border-radius: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--azure));
}
.eyebrow--light { color: rgba(255, 255, 255, .72); }
.eyebrow--center { justify-content: center; }

.lede { font-size: clamp(1.03rem, 1.1vw, 1.18rem); color: #35504a; max-width: 62ch; }
.lede--light { color: rgba(233, 244, 241, .85); }

.rule { height: 1px; border: 0; margin: 0; background-image: var(--chrome-line); opacity: .9; }

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--mist);
  box-shadow: var(--shadow-2);
}
.media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media--wide { aspect-ratio: 16 / 9; }
.media--photo { aspect-ratio: 4 / 3; }
.media--tall { aspect-ratio: 3 / 4; }
.media--panorama { aspect-ratio: 21 / 9; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-tech); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--forest);
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(13, 62, 48, .1);
  backdrop-filter: blur(9px);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); flex: none; }

/* Schaltflächen */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: .97rem; font-weight: 600;
  letter-spacing: .005em;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 62%, var(--moss) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10, 110, 78, .28), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.btn--primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(10, 110, 78, .34); transform: translateY(-2px); }

.btn--chrome {
  background-image: var(--chrome);
  color: var(--forest);
  border-color: rgba(93, 112, 120, .35);
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.btn--chrome:hover { color: var(--azure-deep); transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(13, 62, 48, .28); }
.btn--ghost:hover { background: rgba(13, 62, 48, .06); color: var(--forest); }

.btn--light { background: rgba(255,255,255,.94); color: var(--forest); }
.btn--light:hover { background: #fff; color: var(--azure-deep); transform: translateY(-2px); }

.btn--wide { width: 100%; }

.btn .arrow { font-family: var(--font-tech); font-size: 1.05em; line-height: 1; }

/* ---------- 4. Kopfbereich & Navigation ---------- */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 253, 253, .82);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(147, 167, 176, .3);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-head.is-stuck { box-shadow: 0 10px 30px rgba(7, 35, 32, .09); background: rgba(251, 253, 253, .95); }

.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-mark {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: linear-gradient(140deg, var(--emerald) 0%, var(--azure-deep) 100%);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 6px 16px rgba(16, 92, 140, .25);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name {
  font-family: var(--font-display); font-size: 1.24rem; font-weight: 600;
  color: var(--forest); line-height: 1.05; letter-spacing: -.01em;
}
.brand-sub {
  display: block; font-family: var(--font-tech); font-size: .6rem;
  letter-spacing: .19em; text-transform: uppercase; color: var(--steel); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav a {
  font-size: .93rem; font-weight: 500; color: #2c4741; text-decoration: none;
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  border-radius: 2px; background: linear-gradient(90deg, var(--emerald), var(--azure));
  transition: right .25s ease;
}
.nav a:hover { color: var(--forest); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

.head-cta { display: inline-flex; }
.head-cta .btn { padding: 11px 20px; font-size: .88rem; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(93, 112, 120, .34); background-image: var(--chrome);
  cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle span {
  display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--forest);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; border-radius: 2px;
  background: var(--forest); transition: transform .22s ease, top .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- 5. Abschnitte ---------- */

/* 5.1 Hero */
.hero { position: relative; padding-block: clamp(48px, 6vw, 86px) clamp(56px, 7vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -30% auto -30%; height: 130%;
  background:
    radial-gradient(58% 48% at 18% 8%, rgba(219, 238, 248, .95), transparent 68%),
    radial-gradient(52% 44% at 88% 24%, rgba(215, 240, 229, .85), transparent 70%),
    linear-gradient(180deg, var(--mist), var(--cloud) 72%);
  z-index: -1;
}
.hero-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
}
.hero-copy h1 { margin-bottom: .38em; }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(105deg, var(--emerald-deep) 10%, var(--azure-deep) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px; margin-top: 38px;
  border-radius: var(--r-md); overflow: hidden;
  background: rgba(147, 167, 176, .34);
  border: 1px solid rgba(147, 167, 176, .34);
}
.hero-facts div { background: rgba(255, 255, 255, .8); padding: 16px 18px; }
.hero-facts dt {
  font-family: var(--font-tech); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 6px;
}
.hero-facts dd { margin: 0; font-family: var(--font-display); font-size: 1.16rem; color: var(--forest); }

.hero-visual { position: relative; }
.hero-visual .media { aspect-ratio: 5 / 6; border-radius: var(--r-xl); }
.hero-visual .badge { position: absolute; top: 20px; left: 20px; }
.hero-note {
  position: absolute; right: clamp(-8px, -0.5vw, 0px); bottom: 26px;
  width: min(268px, 76%);
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--glass); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-2);
  font-size: .88rem; line-height: 1.55; color: #2c4741;
}
.hero-note strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--forest); margin-bottom: 4px; }

/* 5.2 Vorstellung */
.intro { background: var(--white); }
.intro-grid {
  display: grid; gap: clamp(28px, 4vw, 60px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
}
.intro-visual { position: relative; }
.intro-visual .media { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
.intro-stamp {
  position: absolute; left: -14px; bottom: -18px;
  width: 118px; height: 118px; border-radius: 50%;
  background-image: var(--chrome);
  border: 1px solid rgba(147, 167, 176, .5);
  box-shadow: var(--shadow-2);
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-tech); font-size: .6rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--forest); line-height: 1.7;
}
.intro-stamp b { display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0; text-transform: none; }
.intro-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 2px; }
.intro-points li {
  margin: 0; padding: 15px 0 15px 34px; position: relative;
  border-top: 1px solid rgba(147, 167, 176, .34); font-size: .98rem; color: #2c4741;
}
.intro-points li:last-child { border-bottom: 1px solid rgba(147, 167, 176, .34); }
.intro-points li::before {
  content: ""; position: absolute; left: 4px; top: 24px;
  width: 12px; height: 12px; border-radius: 4px;
  background: linear-gradient(140deg, var(--emerald), var(--azure-deep));
}

/* 5.3 Erntekalender (Signatur) */
.season { background: linear-gradient(180deg, var(--ink) 0%, var(--forest) 62%, #0a4e3c 100%); color: #e9f4f1; }
.season h2, .season h3 { color: #fff; }
.season-head { display: grid; gap: 20px; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); align-items: end; margin-bottom: 38px; }

.season-months {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px; margin-bottom: 30px;
}
.season-month {
  appearance: none; cursor: pointer;
  font-family: var(--font-tech); font-size: .74rem; letter-spacing: .06em;
  padding: 13px 4px; border-radius: 11px;
  color: rgba(233, 244, 241, .74);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.season-month:hover { background: rgba(255, 255, 255, .13); color: #fff; transform: translateY(-2px); }
.season-month[aria-selected="true"] {
  background-image: var(--chrome);
  color: var(--ink); border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
}

.season-panel {
  display: grid; gap: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
}
.season-panel h3 { margin-bottom: .3em; }
.season-panel .season-desc { color: rgba(233, 244, 241, .82); font-size: .97rem; }
.season-tag {
  font-family: var(--font-tech); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(233, 244, 241, .6); margin-bottom: 10px;
}
.season-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.season-list li {
  margin: 0; padding: 12px 15px; border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .92rem; display: flex; align-items: center; gap: 10px;
}
.season-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 3px; flex: none;
  background: var(--emerald);
}
.season-list li.is-fruit::before { background: var(--amber); }
.season-legend {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px;
  font-family: var(--font-tech); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(233, 244, 241, .62);
}
.season-legend span { display: inline-flex; align-items: center; gap: 9px; }
.season-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.season-foot { margin-top: 26px; font-size: .86rem; color: rgba(233, 244, 241, .6); }

/* 5.4 Sortiments-Karte */
.assortment { background: var(--mist); }
.assortment-grid {
  display: grid; gap: clamp(26px, 3.4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
}
.product-card {
  position: relative; padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, #ffffff 0%, #eef5f8 52%, #dfeaef 100%);
  border: 1px solid rgba(147, 167, 176, .4);
  box-shadow: var(--shadow-2);
  text-align: center;
}
.product-card::after {
  content: ""; position: absolute; left: 12%; right: 12%; top: 0; height: 1px;
  background-image: var(--chrome-line);
}
.product-card img { width: min(100%, 400px); margin-inline: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.product-meta {
  margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.product-meta span {
  font-family: var(--font-tech); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; color: var(--azure-deep);
  background: var(--azure-soft); border: 1px solid rgba(30, 136, 195, .2);
}
.assortment-table { width: 100%; border-collapse: collapse; margin: 24px 0 26px; font-size: .95rem; }
.assortment-table th, .assortment-table td { text-align: left; padding: 13px 4px; border-bottom: 1px solid rgba(147, 167, 176, .4); }
.assortment-table th { font-family: var(--font-tech); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); font-weight: 400; }
.assortment-table td:last-child { text-align: right; color: var(--forest); font-family: var(--font-display); }
.assortment-hint { font-size: .87rem; color: var(--steel); }

/* 5.5 Ablauf */
.route { background: var(--white); }
.route-head { max-width: 720px; margin-bottom: 46px; }
.route-track { display: grid; gap: var(--gap); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.route-step {
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 24px 28px; border-radius: var(--r-md);
  background: var(--cloud); border: 1px solid rgba(147, 167, 176, .32);
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.route-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.route-step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--emerald), var(--azure));
}
.route-num {
  font-family: var(--font-tech); font-size: .72rem; letter-spacing: .18em; color: var(--steel);
}
.route-step h3 { margin: 0; font-size: 1.14rem; }
.route-step p { font-size: .93rem; color: #3d5751; margin: 0; }

/* 5.6 Qualität */
.quality { background: linear-gradient(180deg, var(--mist), #e6eff3); }
.quality-grid { display: grid; gap: clamp(26px, 3.4vw, 54px); grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); align-items: center; }
.quality-visual .media { aspect-ratio: 4 / 3; }
.quality-cards { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.quality-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 20px 22px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px); box-shadow: var(--shadow-1);
}
.quality-card h3 { font-size: 1.02rem; margin: 0; }
.quality-card p { margin: 0; font-size: .9rem; color: #3d5751; }
.quality-icon {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--emerald-soft), var(--azure-soft));
  border: 1px solid rgba(30, 136, 195, .18);
}
.quality-icon svg { width: 18px; height: 18px; }

/* 5.7 Lieferung & Verpackung */
.logistics { background: var(--white); }
.logistics-split { display: grid; gap: var(--gap); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel {
  display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 40px); border-radius: var(--r-lg);
  border: 1px solid rgba(147, 167, 176, .38);
  background: var(--cloud);
}
.panel--accent {
  background: linear-gradient(160deg, #0d3e30 0%, #10604a 100%);
  border-color: rgba(255, 255, 255, .16); color: rgba(233, 244, 241, .88);
}
.panel--accent h2, .panel--accent h3 { color: #fff; }
.panel--accent .rule { opacity: .35; }
.delivery-list { list-style: none; margin: 22px 0 0; padding: 0; }
.delivery-list li {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px dashed rgba(147, 167, 176, .5); font-size: .95rem;
}
.panel--accent .delivery-list li { border-color: rgba(255, 255, 255, .22); }
.delivery-list li:last-child { border-bottom: 0; }
.delivery-list b { font-family: var(--font-display); font-weight: 600; }
.delivery-list span { font-family: var(--font-tech); font-size: .78rem; letter-spacing: .06em; opacity: .82; text-align: right; }
.pack-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.pack-item {
  padding: 16px 18px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .9rem;
}
.pack-item strong { display: block; font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 4px; }

/* 5.8 Beratung */
.advice { background: var(--mist); }
.advice-grid { display: grid; gap: clamp(26px, 3.4vw, 54px); grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); align-items: center; }
.advice-steps { list-style: none; margin: 0; padding: 0; counter-reset: adv; }
.advice-steps li {
  position: relative; margin: 0; padding: 20px 0 20px 62px;
  border-bottom: 1px solid rgba(147, 167, 176, .4);
}
.advice-steps li:first-child { border-top: 1px solid rgba(147, 167, 176, .4); }
.advice-steps li::before {
  counter-increment: adv; content: counter(adv, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-tech); font-size: .78rem; color: var(--forest);
  background-image: var(--chrome); border: 1px solid rgba(147, 167, 176, .5);
}
.advice-steps h3 { font-size: 1.08rem; margin-bottom: .2em; }
.advice-steps p { font-size: .93rem; color: #3d5751; margin: 0; }
.advice-visual .media { aspect-ratio: 3 / 4; }

/* 5.9 FAQ */
.faq { background: var(--white); }
.faq-layout { display: grid; gap: clamp(24px, 3vw, 54px); grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(147, 167, 176, .4); border-radius: var(--r-md);
  background: var(--cloud); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open { border-color: rgba(15, 158, 110, .5); box-shadow: var(--shadow-1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 19px 22px; font-family: var(--font-display); font-size: 1.05rem;
  color: var(--forest);
}
.faq-sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq-sign::before, .faq-sign::after {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px;
  border-radius: 2px; background: var(--emerald-deep); transition: transform .22s ease;
}
.faq-sign::after { transform: rotate(90deg); }
.faq-item.is-open .faq-sign::after { transform: rotate(0deg); }
.faq-a { display: none; padding: 0 22px 22px; font-size: .95rem; color: #3d5751; }
.faq-item.is-open .faq-a { display: block; }

/* 5.10 Beratungsanfrage */
.consult { background: linear-gradient(155deg, #072320 0%, #0d3e30 46%, #0f5a45 100%); color: #e9f4f1; position: relative; overflow: hidden; }
.consult::before {
  content: ""; position: absolute; width: 60vw; height: 60vw; right: -18vw; top: -22vw;
  background: radial-gradient(circle, rgba(30, 136, 195, .34), transparent 62%);
  border-radius: 50%; pointer-events: none;
}
.consult h2 { color: #fff; }
.consult-grid { display: grid; gap: clamp(28px, 3.6vw, 58px); grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: start; position: relative; }
.consult-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.consult-points li { margin: 0; padding-left: 30px; position: relative; font-size: .95rem; color: rgba(233, 244, 241, .84); }
.consult-points li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 8px;
  border-left: 2px solid var(--emerald); border-bottom: 2px solid var(--emerald);
  transform: rotate(-45deg);
}
.consult-contact { margin-top: 30px; font-size: .92rem; color: rgba(233, 244, 241, .76); }
.consult-contact a { color: #fff; }

/* ---------- 6. Formular ---------- */
.form-card {
  padding: clamp(24px, 3vw, 40px); border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-3);
  color: var(--ink);
}
.form-card h3 { margin-bottom: .35em; }
.form-intro { font-size: .93rem; color: #3d5751; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-tech); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 8px;
}
.field .req { color: var(--emerald-deep); }
.field input[type="text"], .field input[type="tel"], .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm);
  border: 1px solid rgba(147, 167, 176, .8); background: var(--cloud);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--silver-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--emerald); background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 158, 110, .16);
}
.field-hint { font-size: .8rem; color: var(--steel); margin-top: 7px; }
.field-error { display: none; font-size: .82rem; color: #b4231d; margin-top: 7px; }
.field.has-error input, .field.has-error select { border-color: #b4231d; background: #fff6f5; }
.field.has-error .field-error { display: block; }

.field-row { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.check { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 22px; }
.check input { width: 21px; height: 21px; flex: none; margin: 2px 0 0; accent-color: var(--emerald-deep); cursor: pointer; }
.check label { font-size: .875rem; color: #3d5751; line-height: 1.55; }
.check.has-error label { color: #b4231d; }

.form-legal { font-size: .78rem; color: var(--steel); margin-top: 18px; line-height: 1.6; }

/* ---------- Kontakt ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; gap: clamp(26px, 3.4vw, 54px); grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: stretch; }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 2px; }
.contact-list li { margin: 0; padding: 18px 0; border-top: 1px solid rgba(147, 167, 176, .38); }
.contact-list li:last-child { border-bottom: 1px solid rgba(147, 167, 176, .38); }
.contact-key {
  display: block; font-family: var(--font-tech); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 5px;
}
.contact-val { font-size: 1.02rem; color: var(--forest); font-style: normal; }
.contact-val a { color: var(--forest); text-decoration: none; }
.contact-val a:hover { color: var(--azure-deep); text-decoration: underline; }

.map-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 340px;
  border: 1px solid rgba(147, 167, 176, .45);
  background:
    repeating-linear-gradient(0deg, rgba(147,167,176,.22) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(147,167,176,.22) 0 1px, transparent 1px 46px),
    linear-gradient(150deg, #eef5f8 0%, #dfeaef 58%, #d3e4ea 100%);
}
.map-frame::before {
  content: ""; position: absolute; left: -10%; top: 32%; width: 130%; height: 54px;
  background: linear-gradient(90deg, rgba(30,136,195,.16), rgba(15,158,110,.2));
  transform: rotate(-7deg);
}
.map-frame::after {
  content: ""; position: absolute; left: 22%; top: -10%; width: 46px; height: 130%;
  background: rgba(147, 167, 176, .2); transform: rotate(9deg);
}
.map-pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.map-pin i {
  width: 24px; height: 24px; border-radius: 50% 50% 50% 2px; transform: rotate(45deg);
  background: linear-gradient(140deg, var(--emerald), var(--emerald-deep));
  box-shadow: 0 8px 18px rgba(10, 110, 78, .4);
}
.map-card {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line); box-shadow: var(--shadow-2);
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between;
}
.map-card p { margin: 0; font-size: .9rem; color: #2c4741; }
.map-card strong { display: block; font-family: var(--font-display); color: var(--forest); font-size: 1.02rem; }

/* ---------- 7. Inhaltsseiten ---------- */
.page-head {
  padding-block: clamp(48px, 6vw, 88px) clamp(30px, 4vw, 52px);
  background:
    radial-gradient(48% 60% at 82% 4%, rgba(219, 238, 248, .9), transparent 66%),
    linear-gradient(180deg, var(--mist), var(--cloud));
  border-bottom: 1px solid rgba(147, 167, 176, .32);
}
.page-head h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.crumbs {
  font-family: var(--font-tech); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 22px;
}
.crumbs a { color: var(--steel); text-decoration: none; }
.crumbs a:hover { color: var(--emerald-deep); text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: .6; }

.doc { padding-block: clamp(38px, 5vw, 70px); }
.doc-layout { display: grid; gap: clamp(26px, 3.4vw, 56px); grid-template-columns: minmax(0, 260px) minmax(0, 1fr); align-items: start; }
.doc-nav {
  position: sticky; top: 100px;
  padding: 22px 22px 24px; border-radius: var(--r-md);
  background: var(--mist); border: 1px solid rgba(147, 167, 176, .36);
}
.doc-nav p {
  font-family: var(--font-tech); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 12px;
}
.doc-nav ul { list-style: none; margin: 0; padding: 0; }
.doc-nav li { margin-bottom: 9px; }
.doc-nav a { font-size: .9rem; color: #2c4741; text-decoration: none; }
.doc-nav a:hover { color: var(--emerald-deep); text-decoration: underline; }

.prose h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.prose { font-size: 1rem; color: #2c4741; }
.prose strong { color: var(--forest); }
.prose .meta {
  font-family: var(--font-tech); font-size: .74rem; letter-spacing: .1em;
  color: var(--steel); text-transform: uppercase; margin-bottom: 2.2em;
}

.note-box {
  padding: 22px 24px; border-radius: var(--r-md); margin: 1.8em 0;
  background: var(--emerald-soft); border: 1px solid rgba(15, 158, 110, .28);
  font-size: .93rem; color: #16483a;
}
.note-box--azure { background: var(--azure-soft); border-color: rgba(30, 136, 195, .28); color: #123d55; }
.note-box strong { color: inherit; }

.data-table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .93rem; }
.data-table caption { text-align: left; font-family: var(--font-tech); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); padding-bottom: 12px; }
.data-table th, .data-table td { padding: 13px 14px; text-align: left; border: 1px solid rgba(147, 167, 176, .45); vertical-align: top; }
.data-table th { background: var(--mist); font-family: var(--font-body); font-weight: 600; color: var(--forest); }

/* Erfolgsseite */
.success { min-height: 76vh; display: grid; place-items: center; padding-block: clamp(48px, 7vw, 100px);
  background: radial-gradient(52% 46% at 50% 0%, rgba(215, 240, 229, .9), transparent 70%), var(--cloud); }
.success-card {
  max-width: 720px; text-align: center; padding: clamp(32px, 5vw, 62px);
  border-radius: var(--r-xl); background: #fff;
  border: 1px solid rgba(147, 167, 176, .4); box-shadow: var(--shadow-2);
}
.success-ring {
  width: 88px; height: 88px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--emerald) 0%, var(--azure-deep) 100%);
  box-shadow: 0 16px 34px rgba(10, 110, 78, .28), inset 0 1px 0 rgba(255,255,255,.45);
}
.success-ring svg { width: 40px; height: 40px; }
.success-next { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 12px; text-align: left; }
.success-next li {
  margin: 0; padding: 16px 18px; border-radius: var(--r-sm);
  background: var(--mist); border: 1px solid rgba(147, 167, 176, .36); font-size: .93rem;
}
.success-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* Nutrition-Kacheln */
.facts-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fact-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px 28px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid rgba(147, 167, 176, .36);
  box-shadow: var(--shadow-1);
}
.fact-card h3 { margin: 0; font-size: 1.08rem; }
.fact-card p { margin: 0; font-size: .93rem; color: #3d5751; }
.fact-tag {
  align-self: flex-start; font-family: var(--font-tech); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--azure-deep);
  padding: 6px 11px; border-radius: 999px; background: var(--azure-soft);
}

/* ---------- 8. Fußbereich ---------- */
.site-foot { background: var(--ink); color: rgba(226, 240, 236, .74); padding-block: clamp(48px, 6vw, 78px) 32px; }
.foot-grid {
  display: grid; gap: clamp(26px, 3vw, 48px);
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, .78fr));
}
.site-foot h2 { color: #fff; font-size: 1.2rem; }
.foot-col p { font-size: .9rem; margin-bottom: .8em; }
.foot-title {
  font-family: var(--font-tech); font-size: .64rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(226, 240, 236, .5); margin-bottom: 16px;
}
.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list li { margin-bottom: 10px; }
.foot-list a, .foot-col a { color: rgba(226, 240, 236, .82); text-decoration: none; font-size: .92rem; }
.foot-list a:hover, .foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: rgba(226, 240, 236, .5); }
.foot-bar {
  margin-top: clamp(34px, 4vw, 52px); padding-top: 24px;
  border-top: 1px solid rgba(226, 240, 236, .16);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: .82rem; color: rgba(226, 240, 236, .55);
}
.foot-bar a { color: rgba(226, 240, 236, .7); }

/* ---------- 9. Cookie-Hinweis ---------- */
.cookie {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 130%);
  width: min(100% - 28px, 1080px); z-index: 120;
  padding: 24px clamp(20px, 3vw, 32px); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .95); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(147, 167, 176, .5); box-shadow: var(--shadow-3);
  transition: transform .42s cubic-bezier(.22, .8, .3, 1), opacity .3s ease;
  opacity: 0; visibility: hidden;
}
.cookie.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.cookie-main { display: grid; gap: 20px 34px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.cookie h2 { font-size: 1.14rem; margin-bottom: .35em; }
.cookie p { font-size: .88rem; color: #3d5751; margin: 0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 12px 22px; font-size: .89rem; }

.cookie-options { display: none; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(147, 167, 176, .45); }
.cookie-options.is-open { display: block; }
.cookie-opt { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed rgba(147, 167, 176, .5); }
.cookie-opt:last-of-type { border-bottom: 0; }
.cookie-opt input { width: 20px; height: 20px; margin: 3px 0 0; flex: none; accent-color: var(--emerald-deep); }
.cookie-opt strong { display: block; font-family: var(--font-display); color: var(--forest); }
.cookie-opt span { font-size: .85rem; color: #3d5751; }
.cookie-options .btn { margin-top: 14px; }

/* ---------- 10. Bewegung & Reaktionsverhalten ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid, .intro-grid, .quality-grid, .advice-grid, .consult-grid,
  .contact-grid, .assortment-grid, .season-head, .faq-layout, .doc-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual { order: -1; }
  .hero-visual .media { aspect-ratio: 16 / 10; }
  .advice-visual .media, .intro-visual .media { aspect-ratio: 16 / 10; }
  .route-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doc-nav { position: static; }
  .season-months { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .season-panel { grid-template-columns: minmax(0, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 74px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px clamp(18px, 5vw, 46px) 26px;
    background: rgba(251, 253, 253, .98); backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(147, 167, 176, .4);
    box-shadow: 0 22px 40px rgba(7, 35, 32, .12);
    transform: translateY(-118%); transition: transform .34s cubic-bezier(.22,.8,.3,1);
    visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(147, 167, 176, .3); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: grid; }
  .head-cta { display: none; }
  .logistics-split { grid-template-columns: minmax(0, 1fr); }
  .cookie-main { grid-template-columns: minmax(0, 1fr); }
  .cookie-actions .btn { flex: 1 1 140px; }
}

@media (max-width: 620px) {
  .route-track, .quality-cards, .pack-grid, .field-row, .facts-grid,
  .foot-grid, .hero-facts { grid-template-columns: minmax(0, 1fr); }
  .hero-facts div { padding: 14px 16px; }
  .hero-note { position: static; width: auto; margin-top: 16px; }
  .season-months { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .intro-stamp { width: 96px; height: 96px; left: 8px; bottom: -14px; }
  .map-frame { min-height: 300px; }
  .map-card { position: static; margin: 0 14px 14px; }
  .map-frame { display: flex; flex-direction: column; justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-head, .cookie, .consult, .site-foot .foot-grid { display: none; }
  body { background: #fff; }
}
