:root {
  --sage: #0a8f6e;
  --sage-light: #0eb188;
  --sage-pale: #daf2eb;
  --earth: #8c6e4f;
  --earth-light: #c4a882;
  --cream: #f7f4ee;
  --warm-white: #fdfbf7;
  --ink: #2a2620;
  --muted: #7a7268;
  --border: #ddd8cc;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── KEYFRAMES ── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(16px) scale(.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,247,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(2.5rem, calc(50vw - 600px)); height: 68px; gap: 1.5rem;
}
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: .6rem; cursor: pointer; text-decoration: none; color: inherit; flex-shrink: 0; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: .02em; white-space: nowrap; }
.nav-logo-sub { font-family: 'Jost', sans-serif; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 300; white-space: nowrap; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); cursor: pointer;
  transition: color .2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  padding: .5rem 1.5rem; background: var(--sage); color: #fff;
  border: none; font-family: 'Jost', sans-serif; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--earth); }

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - 68px);
  margin-top: 68px;
  overflow: hidden;
}
.hero-left {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem max(4rem, calc(50vw - 600px));
  width: 50%;
  background: linear-gradient(to right,
    rgba(247,244,238,0.97) 0%,
    rgba(247,244,238,0.95) 60%,
    rgba(247,244,238,0.88) 72%,
    rgba(247,244,238,0.75) 80%,
    rgba(247,244,238,0.55) 88%,
    rgba(247,244,238,0.28) 94%,
    rgba(247,244,238,0.08) 98%,
    transparent 100%);
}
.hero-left::before {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(107,124,94,.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-tag {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-tag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--sage);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-desc {
  font-size: .9rem; line-height: 1.9; color: var(--muted);
  max-width: 440px; margin-bottom: 3rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  padding: .85rem 2rem; background: var(--sage); color: #fff;
  border: none; font-family: 'Jost', sans-serif; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); }
.btn-outline {
  padding: .85rem 2rem; background: none;
  border: 1px solid var(--sage); color: var(--sage);
  font-family: 'Jost', sans-serif; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--sage-pale); }

.hero-right {
  position: absolute; inset: 0; z-index: 0;
  background: var(--sage-pale);
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.hero-quote-card {
  position: absolute; top: 2rem; right: max(2rem, calc(50vw - 600px)); z-index: 3;
  background: rgba(253,251,247,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 1.2rem 1.5rem;
  max-width: 240px;
}
.hero-quote-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .9rem; line-height: 1.6; color: var(--ink); margin-bottom: .5rem;
}
.hero-quote-author { font-size: .62rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--sage); color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 0 max(0px, calc(50vw - 600px));
}
.trust-item {
  padding: 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  margin-bottom: .3rem; font-weight: 400;
}
.trust-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

/* ── SECTIONS ── */
.section { padding: 6rem max(4rem, calc(50vw - 600px)); }
.section-alt { background: var(--cream); }
.section-tag {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-tag::before { content:''; display:block; width:24px; height:1px; background:var(--sage); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.section-intro {
  font-size: .9rem; line-height: 1.9; color: var(--muted);
  max-width: 620px; font-weight: 300;
}

/* ── METHODE ── */
.methode-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 3rem;
}
.methode-steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem; align-items: start;
}
.step-num {
  width: 48px; height: 48px; border: 1px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sage);
  flex-shrink: 0;
}
.step-title { font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.step-text { font-size: .82rem; line-height: 1.8; color: var(--muted); font-weight: 300; }
.methode-visual {
  background: var(--sage-pale); border: 1px solid var(--border);
  padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.visual-circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
  border: 1px solid var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto;
}
.visual-text {
  text-align: center; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem; color: var(--sage); line-height: 1.6;
}

/* ── PRODUCTS ── */
.products-section { padding: 6rem max(4rem, calc(50vw - 600px)); }
.cat-tabs {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: space-between; margin: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.cat-tab {
  padding: .6rem .85rem; font-size: .72rem; letter-spacing: .07em;
  text-transform: uppercase; cursor: pointer; border: none; background: none;
  color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .25s ease, border-color .3s ease; font-family: 'Jost', sans-serif;
}
.cat-tab:hover { color: var(--sage); }
.cat-tab.active { color: var(--sage); border-bottom-color: var(--sage); }

.cat-panel { display: none; }
.cat-panel.active { display: block; animation: fadeSlideIn .35s cubic-bezier(.22,1,.36,1) both; }
.cat-panel.fading-out { display: block; animation: fadeSlideOut .18s ease forwards; }

.products-grid {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.product-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--warm-white); padding: 1.2rem;
  transition: background .28s ease, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  cursor: pointer;
  display: flex; flex-direction: row; gap: 1rem; align-items: flex-start;
}
.product-card:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
}
.prod-content { flex: 1; min-width: 0; }
.prod-code {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage); margin-bottom: .5rem; font-weight: 500;
}
.prod-name {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  margin-bottom: .4rem; line-height: 1.3;
}
.prod-name-de { font-size: .72rem; color: var(--muted); margin-bottom: .4rem; }
.prod-more-info {
  font-size: .62rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: .6rem;
  cursor: pointer; display: inline-block;
}
.product-card:hover .prod-more-info { text-decoration: underline; }
.prod-desc { font-size: .75rem; line-height: 1.75; color: var(--muted); font-weight: 300; }
.prod-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--border);
}
.prod-price { font-size: .85rem; color: var(--earth); font-weight: 500; }
.prod-ml { font-size: .65rem; color: var(--muted); letter-spacing: .08em; }

/* ── PRODUCT IMAGE ── */
.prod-img {
  width: 90px;
  flex-shrink: 0;
  aspect-ratio: 2/3;
  border: 1px solid var(--border);
  overflow: hidden;
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .prod-img img { transform: scale(1.06); }
.prod-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
}
.prod-img-placeholder span { font-size: 2.2rem; opacity: .35; }
.prod-img-placeholder small {
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); opacity: .55;
}

/* ── HIDE DESC IN CARD (shown only in modal) ── */
.prod-desc { display: none; }
.product-card { cursor: pointer; }

/* ── ACTION BUTTONS IN CARD ── */
.prod-actions { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.btn-select {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border: 1px solid var(--sage);
  background: none; color: var(--sage); cursor: pointer;
  font-family: 'Jost', sans-serif; transition: all .2s; white-space: nowrap;
}
.btn-select:hover { background: var(--sage); color: #fff; }
.btn-select.selected { background: var(--sage); color: #fff; }
.btn-select.sold-out { border-color: var(--border); color: #aaa; cursor: default; }
.btn-select.sold-out:hover { background: none; color: #aaa; }

/* ── VARIANT BUTTONS (Produktkarte + Modal) ── */
.variant-btns { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.btn-variant {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: .45rem .85rem; border: 1px solid var(--sage); border-radius: 4px;
  background: none; color: var(--sage); cursor: pointer;
  font-family: 'Jost', sans-serif; transition: background .2s, color .2s;
  font-size: .63rem; letter-spacing: .07em; text-transform: uppercase; line-height: 1.3;
}
.btn-variant:hover { background: var(--sage); color: #fff; }
.btn-variant.selected { background: var(--sage); color: #fff; }
.btn-variant .v-price { font-size: .75rem; font-weight: 600; letter-spacing: 0; text-transform: none; margin-top: 2px; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(42,38,32,.55); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--warm-white); width: 100%; max-width: 620px;
  max-height: 92vh; overflow-y: auto; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: modalIn .32s cubic-bezier(.22,1,.36,1) both;
}
.modal-close {
  position: absolute; top: .9rem; right: 1rem; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1;
  padding: .1rem .4rem; z-index: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-inner { display: flex; gap: 1.5rem; padding: 2rem 2rem 1.5rem; }
.modal-img {
  width: 110px; flex-shrink: 0; aspect-ratio: 2/3;
  border: 1px solid var(--border); overflow: hidden;
  align-self: flex-start;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-body { flex: 1; min-width: 0; }
.modal-code { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage); margin-bottom: .35rem; font-weight: 500; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: .2rem; line-height: 1.2; }
.modal-name-de { font-size: .73rem; color: var(--muted); margin-bottom: 1rem; }
.modal-desc { font-size: .83rem; line-height: 1.85; color: var(--muted); font-weight: 300; }

/* Nährwerte-Streifen (volle Breite, unterhalb des Inhalts) */
.modal-nw-strip {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: .5rem 2rem .75rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.modal-nw-strip:empty { display: none; }
.nw-col-left, .nw-col-right {
  width: 100%;
  border: 1px solid var(--border); border-radius: 3px; overflow: hidden;
}
.nw-desktop-title { display: none; }
.nw-accordion-btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: .6rem .9rem; font-family: inherit;
  transition: background .15s;
}
.nw-accordion-btn:hover { background: rgba(10,143,110,.05); }
.nw-title { font-weight: 700; font-size: .7rem; color: var(--sage); text-transform: uppercase; letter-spacing: .07em; }
.nw-accordion-btn .nw-chevron {
  font-size: .6rem; color: var(--sage); transition: transform .25s;
  flex-shrink: 0; margin-left: .5rem;
}
.nw-accordion-btn[aria-expanded="true"] .nw-chevron { transform: rotate(180deg); }
.nw-accordion-body {
  overflow: hidden; max-height: 0; transition: max-height .3s ease;
  padding: 0 .9rem;
}
.nw-accordion-body.is-open { max-height: 600px; padding-bottom: .75rem; }
.nw-portion { font-size: .63rem; color: var(--muted); margin-bottom: .5rem; padding-top: .25rem; }
.nw-table { border-collapse: collapse; margin-bottom: 0; width: 100%; }
.nw-table td { padding: .18rem 0; border-bottom: 1px solid rgba(10,143,110,.15); font-size: .68rem; color: var(--ink); }
.nw-table td:last-child { text-align: right; font-weight: 600; padding-left: 1rem; }
.nw-table tr:last-child td { border-bottom: none; }
.nw-zutaten { font-size: .67rem; color: var(--muted); line-height: 1.55; margin-bottom: .35rem; padding-top: .25rem; }
.nw-footnote { font-size: .6rem; color: var(--muted); }
.nw-storage { font-size: .63rem; color: var(--muted); margin-top: .5rem; font-style: italic; }
.nw-custom { font-size: .7rem; color: var(--muted); white-space: pre-wrap; line-height: 1.6; padding-top: .25rem; }
.nw-table3 { border-collapse: collapse; width: 100%; margin-bottom: 0; }
.nw-table3 th { font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: .25rem .3rem .25rem 0; border-bottom: 1px solid var(--border); }
.nw-table3 th:last-child { text-align: right; padding-left: .5rem; }
.nw-table3 th:nth-child(2) { text-align: center; padding-left: .5rem; }
.nw-table3 td { padding: .18rem .3rem .18rem 0; border-bottom: 1px solid rgba(10,143,110,.15); font-size: .68rem; color: var(--ink); }
.nw-table3 td:nth-child(2) { text-align: center; padding-left: .5rem; }
.nw-table3 td:last-child { text-align: right; font-weight: 600; padding-left: .5rem; }
.nw-table3 tr:last-child td { border-bottom: none; }
.modal-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2rem; border-top: 1px solid var(--border); gap: 1rem;
}
.modal-price-wrap { display: flex; flex-direction: column; gap: .1rem; }
.modal-price { font-size: 1rem; color: var(--earth); font-weight: 500; }
.modal-ml { font-size: .65rem; color: var(--muted); letter-spacing: .08em; }
.porto-note { font-size: .65rem; color: var(--muted); font-weight: 300; letter-spacing: .04em; }
.btn-modal-select {
  padding: .7rem 1.8rem; background: var(--sage); color: #fff;
  border: none; font-family: 'Jost', sans-serif; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.btn-modal-select:hover { background: var(--earth); }
.btn-modal-select.selected { background: var(--earth); }
.btn-modal-select.sold-out { background: #ccc; cursor: default; }
.btn-modal-select.sold-out:hover { background: #ccc; }

/* ── FLOATING BADGE ── */
.selection-badge {
  display: none; position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  background: var(--sage); color: #fff; align-items: center; gap: .9rem;
  padding: .85rem 1.4rem; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: background .25s ease, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  animation: badgeIn .4s cubic-bezier(.22,1,.36,1) both;
}
.selection-badge:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.selection-badge-count {
  background: #fff; color: var(--sage);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}
.selection-badge-text { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── ORDER SUMMARY IN FORM ── */
.order-summary {
  border: 1px solid rgba(255,255,255,.18); margin-bottom: .2rem;
}
.order-summary-label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: .55; padding: .65rem 1rem .5rem;
  display: block;
}
.order-item {
  display: flex; align-items: center; gap: .7rem;
  padding: .45rem 1rem; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .8rem;
}
.order-item-code { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; opacity: .55; width: 55px; flex-shrink: 0; }
.order-item-name { flex: 1; font-weight: 300; }
.order-item-price { opacity: .65; font-size: .72rem; flex-shrink: 0; }
.order-item-qty { display: flex; align-items: center; gap: .3rem; flex-shrink: 0; }
.qty-btn { background: none; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); width: 20px; height: 20px; cursor: pointer; font-size: .85rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.qty-val { font-size: .8rem; min-width: 18px; text-align: center; }
.order-item-remove {
  background: none; border: none; color: rgba(255,255,255,.35);
  cursor: pointer; font-size: 1.1rem; padding: 0 .2rem; line-height: 1;
  transition: color .2s; flex-shrink: 0;
}
.order-item-remove:hover { color: #fff; }
.order-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1rem; margin-top: .3rem;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .8rem;
}
.order-total-label { opacity: .55; font-weight: 300; font-size: .72rem; letter-spacing: .04em; }
.order-total-price { font-weight: 500; font-size: .9rem; letter-spacing: .03em; }
.order-empty {
  font-size: .78rem; opacity: .35; padding: .7rem 1rem .4rem;
  font-weight: 300; font-style: italic;
}
.order-empty-hint {
  font-size: .78rem; opacity: .35; padding: 0 1rem .4rem;
  font-weight: 300; font-style: italic;
}
.btn-to-products {
  display: inline-block; margin: .4rem 1rem .8rem;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-light); border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .9rem; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-to-products:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── INVENTOR ── */
.inventor-grid {
  display: flex; flex-direction: column; gap: 2rem;
  align-items: start; margin-top: 3rem;
}
.inventor-img-wrap {
  display: flex; flex-direction: row; align-items: center; gap: 1.1rem;
}
.inventor-img-box {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border); flex-shrink: 0;
}
.inventor-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; filter: grayscale(15%); transition: filter .4s ease;
}
.inventor-photo:hover { filter: grayscale(0%); }
.inventor-caption {
  display: flex; flex-direction: column; gap: .1rem;
}
.inventor-name {
  font-size: .88rem; font-weight: 500; color: var(--ink); letter-spacing: .01em;
}
.inventor-meta {
  font-size: .7rem; color: var(--muted); font-weight: 300;
}
.inventor-text { font-size: .88rem; line-height: 1.9; color: var(--muted); font-weight: 300; }
.inventor-text p { margin-bottom: 1.2rem; }
.inventor-text strong { color: var(--ink); font-weight: 500; }

/* ── ÜBER MICH ── */
.about-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 5rem;
  align-items: start; margin-top: 3rem;
}
.about-photo-wrap {
  position: relative;
  width: 260px; flex-shrink: 0;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition: filter .4s ease;
}
.about-photo:hover { filter: grayscale(0%); }
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--sage); color: #fff;
  padding: 1rem 1.2rem; max-width: 170px; z-index: 2;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; line-height: 1; }
.about-badge-text { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .2rem; }
.about-text { font-size: .88rem; line-height: 1.9; color: var(--muted); font-weight: 300; }
.about-text p { margin-bottom: 1.2rem; }
.about-text strong { color: var(--ink); font-weight: 500; }
.about-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  margin-top: 1.5rem; margin-bottom: .2rem;
}
.about-title-line { font-size: .72rem; letter-spacing: .1em; color: var(--sage); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--warm-white); border: 1px solid var(--border); padding: 2rem;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.testi-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .95rem; line-height: 1.75; margin-bottom: 1rem;
  color: var(--ink);
}
.testi-quote::before { content: '»'; color: var(--sage); font-size: 1.3rem; }
.testi-source { font-size: .65rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

/* ── HINWEISE ── */
.hinweise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.hinweis-card {
  padding: 2rem; border: 1px solid var(--border); background: var(--warm-white);
}
.hinweis-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.hinweis-title { font-size: .82rem; font-weight: 500; margin-bottom: .6rem; }
.hinweis-text { font-size: .78rem; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* ── KONTAKT ── */
.kontakt-section {
  background: var(--ink); color: var(--cream);
  padding: 6rem max(4rem, calc(50vw - 600px));
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.kontakt-title {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400;
  line-height: 1.2; margin-bottom: 1.2rem;
}
.kontakt-sub { font-size: .88rem; line-height: 1.9; opacity: .7; font-weight: 300; margin-bottom: 2rem; }
.kontakt-detail {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem;
}
.kontakt-detail-label { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; opacity: .6; width: 80px; flex-shrink: 0; padding-top: .15rem; }
.kontakt-detail-val { font-size: .85rem; font-weight: 300; }
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#address-fields { display: flex; flex-direction: column; gap: 1rem; }
#address-fields .form-row { margin: 0; }
.form-input, .form-textarea {
  width: 100%; box-sizing: border-box;
  padding: .8rem 1rem; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15); color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: .82rem; outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--sage-light); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-textarea { height: 120px; resize: none; }
.btn-submit {
  padding: .85rem 2rem; background: var(--sage); color: #fff;
  border: none; font-family: 'Jost', sans-serif; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s; align-self: flex-start;
}
.btn-submit:hover { background: var(--sage-light); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-email-fallback { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .2rem; }
.form-email-fallback a { color: rgba(255,255,255,.65); text-decoration: underline; }
.form-email-fallback a:hover { color: #fff; }

/* ── FOOTER ── */
/* ── NEWSLETTER SECTIONS ── */
.nl-section {
  padding: 4.5rem max(4rem, calc(50vw - 600px));
  background: var(--cream);
  text-align: center;
}
.nl-section-form {
  display: flex; gap: .6rem;
  max-width: 460px; margin: 1.5rem auto 0;
}
.nl-section-input {
  flex: 1; padding: .75rem 1rem; border: 1px solid var(--border);
  background: var(--warm-white); font-family: 'Jost', sans-serif;
  font-size: .88rem; color: var(--ink); outline: none;
}
.nl-section-input:focus { border-color: var(--sage); }
.nl-section-btn {
  padding: .75rem 1.4rem; background: var(--sage); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
}
.nl-section-btn:hover { background: var(--sage-light); }
.nl-section-msg { font-size: .8rem; margin-top: .8rem; min-height: 1.2em; }
@media (max-width: 520px) {
  .nl-section-form { flex-direction: column; }
  .nl-section-input, .nl-section-btn { width: 100%; }
}

.nl-footer-banner {
  background: #1e1c18;
  padding: 1.4rem max(4rem, calc(50vw - 600px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.nl-footer-text { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .03em; }
.nl-footer-text strong { color: rgba(255,255,255,.85); font-weight: 500; }
.nl-footer-form { display: flex; gap: .5rem; flex: 1; max-width: 380px; min-width: 220px; }
.nl-footer-input {
  flex: 1; padding: .58rem .9rem; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); color: #fff;
  font-family: 'Jost', sans-serif; font-size: .82rem; outline: none;
}
.nl-footer-input::placeholder { color: rgba(255,255,255,.3); }
.nl-footer-input:focus { border-color: var(--sage-light); }
.nl-footer-btn {
  padding: .58rem 1.1rem; background: var(--sage); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
}
.nl-footer-btn:hover { background: var(--sage-light); }
.nl-footer-msg { font-size: .73rem; color: var(--sage-light); margin-top: .35rem; min-height: 1em; }

footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem max(4rem, calc(50vw - 600px));
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .08em;
}
footer a { color: rgba(255,255,255,.4); text-decoration: none; }
footer a:hover { color: var(--sage-light); }

/* ── LEGAL MODAL ── */
.legal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(30,28,24,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 2rem;
}
.legal-overlay.open { display: flex; }
.legal-box {
  background: var(--cream); border: 1px solid var(--border);
  max-width: 900px; width: 100%; max-height: 80vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.legal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem 1.25rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.legal-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400;
  color: var(--ink); margin: 0;
}
.legal-close {
  background: none; border: none; font-size: 1.6rem; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 0 .2rem;
  transition: color .2s;
}
.legal-close:hover { color: var(--ink); }
.legal-body {
  padding: 1.75rem 2rem; overflow-y: auto; flex: 1;
  font-size: .85rem; line-height: 1.85; color: var(--muted); font-weight: 300;
}
.legal-body p { margin-bottom: 1.1rem; }
.legal-body strong { color: var(--ink); font-weight: 500; }

/* ── AGB CHECKBOX ── */
.agb-check {
  display: flex; align-items: flex-start; gap: .6rem; cursor: pointer;
  font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.5;
}
.agb-check input[type="checkbox"] {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: .1rem; cursor: pointer;
  accent-color: var(--sage-light);
}
.agb-check a { color: rgba(255,255,255,.85); text-decoration: underline; }
.agb-check a:hover { color: #fff; }

/* ── ORDER CONFIRM OVERLAY ── */
.order-confirm-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(30,28,24,.6); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.order-confirm-overlay.open { display: flex; }
.order-confirm-box {
  background: var(--cream); border: 1px solid var(--border);
  max-width: 560px; width: 100%; border-radius: 4px;
  animation: modalIn .25s ease;
  max-height: 90vh; overflow-y: auto;
}
.order-confirm-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500;
  padding: 1.5rem 1.75rem .3rem; color: var(--ink);
}
.order-confirm-sub {
  font-size: .78rem; color: var(--muted); font-weight: 300;
  padding: 0 1.75rem .75rem; border-bottom: 1px solid var(--border);
}
.order-confirm-body {
  padding: 1.25rem 1.75rem; font-size: .82rem; line-height: 1.8; color: var(--ink);
}
.order-confirm-body .confirm-section { margin-bottom: 1rem; }
.order-confirm-body .confirm-label {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: .3rem;
}
.order-confirm-body .confirm-val { font-weight: 300; }
.order-confirm-body .confirm-products { margin-top: .3rem; }
.order-confirm-body .confirm-product-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .25rem 0; border-bottom: 1px solid var(--border); gap: .5rem;
}
.order-confirm-body .confirm-product-row:last-child { border-bottom: none; }
.order-confirm-body .confirm-total {
  display: flex; justify-content: space-between; font-weight: 500;
  padding-top: .6rem; font-size: .88rem;
}
.order-confirm-actions {
  display: flex; gap: .75rem; padding: 1rem 1.75rem 1.5rem;
  justify-content: flex-end; border-top: 1px solid var(--border);
}
.btn-confirm-back {
  padding: .7rem 1.4rem; background: none; border: 1px solid var(--border);
  font-family: 'Jost', sans-serif; font-size: .73rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.btn-confirm-back:hover { border-color: var(--ink); color: var(--ink); }
.btn-confirm-send {
  padding: .7rem 1.6rem; background: var(--sage); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: .73rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.btn-confirm-send:hover { background: var(--sage-light); }
.btn-confirm-send:disabled { opacity: .6; cursor: not-allowed; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin-left: .5rem;
  overflow: hidden;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .35s ease-in-out, opacity .35s ease-in-out;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links-cta { display: none; }


/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .cat-tabs { justify-content: flex-start; }
  nav { padding: 0 1.5rem; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(253,251,247,.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: .5rem 1.5rem 1rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    display: flex;
    transition: max-height .35s ease-in-out, opacity .35s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open { max-height: 400px; opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: .85rem 0; font-size: .8rem; }
  .nav-links-cta { display: block; }
  .nav-links-cta a { color: var(--sage) !important; font-weight: 500; }
}

@media (max-width: 810px) {
  /* stacked layout on tablet/mobile */
  .hero { display: flex; flex-direction: column; height: auto; margin-top: 68px; overflow: visible; }
  .hero-left { position: relative; z-index: auto; width: 100%; height: auto; background: var(--cream); border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; }
  .hero-right { position: relative; inset: auto; height: 80vh; }
  .hero-quote-card { pointer-events: none; }
  .hero-btns { position: relative; z-index: 5; }
  .hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .methode-grid, .inventor-grid, .about-grid, .kontakt-section { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap { width: 220px; margin: 0 auto; }
  .inventor-img-wrap { margin: 0 auto; }
  .product-card { flex: 0 0 calc(100% / 2); }
  .product-card:hover { transform: none; box-shadow: none; }
  /* modal: stack image above text on mobile */
  .modal-inner { flex-direction: column; align-items: center; padding: 1.5rem 1.25rem 1rem; gap: 1rem; }
  .modal-img { width: 140px; flex-shrink: 0; }
  .modal-box { max-width: 100%; margin: 0 1rem; }
  /* Nährwerte auf Mobile: volle Breite, gestapelt */
  .modal-nw-strip { padding: 0; flex-direction: column; gap: 0; align-items: stretch; }
  .nw-col-left, .nw-col-right {
    min-width: 0; border-radius: 0;
    border-left: none; border-right: none; border-bottom: none;
  }
  .nw-col-left { border-top: none; }
  .nw-col-right { border-top: 1px solid var(--border); }
  .nw-accordion-btn { padding: .75rem 1.25rem; }
  .nw-accordion-body { padding: 0 1.25rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .hinweise-grid { grid-template-columns: 1fr; }
  .section, .products-section, .kontakt-section { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .product-card { flex: 0 0 100%; border: 1px solid var(--border); margin: 0 0 -1px 0; }
  .products-grid { border: none; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-quote-card {
    top: 1.2rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    width: auto;
  }
  .hero-quote-text {
    font-size: .85rem;
    line-height: 1.5;
  }
}

