/* ============================================================
   kräuterdisco — design system
   Fraunces (display) · Figtree (body) · Caveat (hand)
   All fonts self-hosted (GDPR). No external requests.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-wght.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-wght-italic.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-wght.woff2") format("woff2");
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-wght.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --ink: #16241c;
  --ink-soft: #3b4b41;
  --paper: #f5f2e8;
  --paper-2: #efe9d9;
  --herb: #2e5d34;
  --herb-deep: #1b3d22;
  --sprout: #86c440;
  --sprout-deep: #5c8f28;
  --berry: #6e5a9a;
  --berry-soft: #efeaf6;
  --sand: #e4d9c4;
  --line: #d9d1bd;
  --white: #fffdf7;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 22px 50px -28px rgba(22, 36, 28, 0.55);
  --shadow-sm: 0 10px 30px -18px rgba(22, 36, 28, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--sprout); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 60;
}

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 1rem + 1.4vw, 1.9rem);
  font-weight: 600;
  color: var(--sprout-deep);
  line-height: 1;
  margin: 0 0 0.4rem;
}
.eyebrow--light { color: var(--sprout); }
.lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem); color: var(--ink-soft); max-width: 60ch; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--white); padding: 0.6rem 1rem;
  border-radius: 8px; text-decoration: none; transition: top 0.2s;
}
.skip:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; text-decoration: none;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  border: 1.5px solid transparent; line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--sprout); color: var(--herb-deep); box-shadow: 0 12px 26px -14px rgba(92, 143, 40, 0.9); }
.btn--primary:hover { background: #92d049; }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #1f3327; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; color: var(--herb); flex: none; }
.brand .word { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.02em; }
.brand .word b { color: var(--herb); font-weight: 600; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav a { text-decoration: none; font-weight: 500; font-size: 0.98rem; color: var(--ink-soft); position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--sprout); transition: right 0.28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.nav .btn { color: var(--herb-deep); }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: var(--paper);
  background: var(--herb-deep);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 36, 28, 0.35) 0%, rgba(22, 36, 28, 0.15) 35%, rgba(22, 36, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(22, 36, 28, 0.72) 0%, rgba(22, 36, 28, 0.28) 55%, rgba(22, 36, 28, 0) 100%);
}
.hero__inner { position: relative; padding-block: clamp(5rem, 16vh, 9rem) clamp(3.5rem, 9vh, 6rem); min-height: min(88vh, 760px); display: flex; align-items: flex-end; }
.hero__content { max-width: 40rem; }
.hero h1 {
  font-size: clamp(2.6rem, 1.6rem + 5.2vw, 5rem);
  font-weight: 480;
  font-variation-settings: "opsz" 144;
  margin-bottom: 0.35em;
  text-wrap: balance;
}
.disco { color: var(--sprout); font-style: italic; font-weight: 520; }
.hero__lead { font-size: clamp(1.1rem, 1rem + 0.7vw, 1.4rem); color: #eef3e6; max-width: 48ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }

/* inline notify form in hero */
.hero__notify { max-width: 34rem; }
.hero__notify-row { display: flex; gap: 0.6rem; }
.hero__notify input[type="email"] {
  flex: 1; min-width: 0; font: inherit; color: var(--ink);
  background: rgba(255, 253, 247, 0.96);
  border: 1.5px solid rgba(245, 242, 232, 0.4); border-radius: 999px;
  padding: 0.85rem 1.3rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero__notify input[type="email"]:focus { outline: none; border-color: var(--sprout); box-shadow: 0 0 0 3px rgba(134, 196, 64, 0.35); }
.hero__notify .btn { flex: none; }
.hero__notify .form-note { color: #cdd3c4; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero__badge {
  position: absolute; top: clamp(5.5rem, 15vh, 8rem); right: var(--gutter);
  display: none;
}

/* rotating marquee-ish leaf strip under hero */
.growline {
  background: var(--sprout); color: var(--herb-deep);
  font-weight: 600; letter-spacing: 0.02em;
  padding-block: 0.7rem; overflow: hidden; white-space: nowrap;
  border-block: 2px solid var(--herb-deep);
}
.growline__track { display: inline-flex; gap: 2.5rem; padding-left: 2.5rem; animation: slide 32s linear infinite; }
.growline span { display: inline-flex; align-items: center; gap: 0.6rem; }
.growline .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--herb-deep); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .growline__track { animation: none; } }

/* ---------- story ---------- */
.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__figure { position: relative; }
.story__figure img { border-radius: var(--radius); object-fit: cover; aspect-ratio: 4 / 5; width: 100%; box-shadow: var(--shadow); object-position: 60% 30%; }
.story__figure .tag {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.7rem 1.1rem; box-shadow: var(--shadow-sm);
  font-family: var(--font-hand); font-size: 1.5rem; color: var(--herb); line-height: 1.1;
  transform: rotate(-3deg);
}
.story h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.story p + p { margin-top: 1rem; }
.story .signature { font-family: var(--font-hand); font-size: 2rem; color: var(--herb); margin-top: 1.2rem; }
.facts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.facts li {
  font-size: 0.9rem; font-weight: 500; color: var(--herb-deep);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 0.4rem 0.85rem; border-radius: 999px;
}

/* ---------- kräuter / product ---------- */
.kraeuter { background: var(--ink); color: var(--paper); position: relative; }
.kraeuter .eyebrow { color: var(--sprout); }
.kraeuter__head { max-width: 52ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.kraeuter__head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.kraeuter__head p { color: #d7dccf; }
.product { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.product__photo { position: relative; }
.product__photo img { border-radius: var(--radius); aspect-ratio: 3 / 4; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.product__photo .spin {
  position: absolute; top: -26px; right: -14px; width: 104px; height: 104px;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .product__photo .spin { animation: none; } }
.product__photo .spin text { font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; fill: var(--sprout); }

.label-card {
  background: var(--sand); color: var(--herb-deep);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(27, 61, 34, 0.15);
  box-shadow: inset 0 0 0 6px rgba(255, 253, 247, 0.35);
}
.label-card .kicker { font-family: var(--font-hand); font-size: 1.4rem; color: var(--herb); }
.label-card h3 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); color: var(--herb-deep); margin-bottom: 0.4rem; }
.label-card p { color: #40513f; margin: 0 0 1.4rem; }
.uses { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; text-align: center; }
.uses li { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; color: var(--herb-deep); }
.uses .ico {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1.5px solid rgba(27, 61, 34, 0.2);
}
.uses .ico__glyph {
  width: 24px; height: 24px; background-color: var(--herb);
  mask-repeat: no-repeat; mask-position: center; mask-size: contain;
  -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
}
.ico__glyph--moerser { mask-image: url(../icons/remedy.png); -webkit-mask-image: url(../icons/remedy.png); }
.ico__glyph--gewuerz { mask-image: url(../icons/salt-shaker.png); -webkit-mask-image: url(../icons/salt-shaker.png); }
.ico__glyph--tee { mask-image: url(../icons/tea-bag.png); -webkit-mask-image: url(../icons/tea-bag.png); }
.ico__glyph--vorrat { mask-image: url(../icons/marmeladenglas.png); -webkit-mask-image: url(../icons/marmeladenglas.png); }
.ico__glyph--oel { mask-image: url(../icons/bottle-with-glass.png); -webkit-mask-image: url(../icons/bottle-with-glass.png); }
.uses li.on .ico { background: var(--herb); border-color: var(--herb); }
.uses li.on .ico__glyph { background-color: var(--sprout); }
.uses li.on { color: var(--herb); }
.label-card__note { font-family: var(--font-hand); font-size: 1.25rem; color: var(--herb); border-top: 1px dashed rgba(27,61,34,0.3); padding-top: 0.9rem; }

/* ---------- jar gallery (all products) ---------- */
.jar-gallery { margin-top: clamp(3.5rem, 7vw, 5rem); padding-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px dashed rgba(245, 242, 232, 0.25); }
.jar-gallery__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.8rem; }
.jar-gallery__head h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); color: var(--paper); margin: 0 0 0.3rem; }
.jar-gallery__head p { color: #c8cfc3; margin: 0; max-width: 46ch; }

.jar-filter { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; margin: 0 0 2rem; padding: 0; }
.jar-filter button {
  font: inherit; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em;
  color: #d7dccf; background: rgba(245, 242, 232, 0.06); border: 1px solid rgba(245, 242, 232, 0.22);
  padding: 0.5rem 1rem; border-radius: 999px; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s;
}
.jar-filter button:hover { border-color: var(--sprout); color: var(--paper); }
.jar-filter button[aria-pressed="true"] { background: var(--sprout); border-color: var(--sprout); color: var(--herb-deep); }

.jar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: clamp(1.8rem, 3vw, 2.4rem) 1rem; list-style: none; margin: 0; padding: 0; }
.jar[hidden] { display: none; }
.jar img {
  display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.jar:hover img { transform: translateY(-5px); box-shadow: var(--shadow); }
.jar__tag {
  display: inline-block; position: relative; z-index: 2;
  margin: -14px 0 0 10px; max-width: calc(100% - 20px);
  font-family: var(--font-hand); font-size: 1.05rem; line-height: 1.15; color: var(--herb-deep);
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.28rem 0.7rem; box-shadow: var(--shadow-sm); transform: rotate(-2deg);
  overflow-wrap: break-word; word-break: break-word; hyphens: auto;
}
.jar:nth-child(2n) .jar__tag { transform: rotate(1.8deg); }
.jar:nth-child(3n) .jar__tag { transform: rotate(-0.8deg); }

.jar-gallery__note { margin-top: clamp(2.2rem, 4vw, 3rem); font-family: var(--font-hand); font-size: 1.2rem; color: var(--sprout); }
.jar-gallery__note a { color: var(--paper); text-decoration-color: var(--sprout); }

/* ---------- nachhaltigkeit ---------- */
.nach { background: var(--paper-2); }
.nach__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.nach__head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.nach__head .quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 1rem + 1vw, 1.65rem); color: var(--herb); line-height: 1.3; }
.grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pcard .num { font-family: var(--font-hand); font-size: 1.6rem; color: var(--sprout-deep); line-height: 1; }
.pcard h3 { font-size: 1.3rem; margin: 0.5rem 0 0.4rem; }
.pcard p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

/* ---------- marktplatz coming soon ---------- */
.markt { background: var(--herb-deep); color: var(--paper); position: relative; overflow: hidden; }
.markt::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(60% 90% at 85% 20%, rgba(110, 90, 154, 0.55), transparent 60%),
              radial-gradient(50% 80% at 10% 90%, rgba(134, 196, 64, 0.28), transparent 60%);
}
.markt .wrap { position: relative; }
.markt__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(239, 234, 246, 0.14); border: 1px solid rgba(239, 234, 246, 0.4);
  color: var(--berry-soft); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.pill .blink { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: blink 1.8s ease-in-out infinite; }
.pill--hero {
  background: rgba(134, 196, 64, 0.16); border-color: rgba(134, 196, 64, 0.55);
  color: #dff0c8; font-size: 0.88rem; padding: 0.45rem 1rem; margin-bottom: 1.3rem;
}
@keyframes blink { 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .pill .blink { animation: none; } }
.markt h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.2rem); }
.markt p { color: #e7e3d6; max-width: 46ch; }

.notify { background: rgba(245, 242, 232, 0.06); border: 1px solid rgba(245, 242, 232, 0.18); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }
.notify h3 { font-size: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 0.75rem 0.9rem;
  width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sprout); box-shadow: 0 0 0 3px rgba(134, 196, 64, 0.3); }
.notify .field input { background: rgba(255,253,247,0.95); }
.form-row { display: flex; gap: 0.6rem; }
.form-row .field { flex: 1; margin-bottom: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.82rem; color: #cdd3c4; margin: 0.8rem 0 0; }
.markt .form-status, .notify .form-status { color: var(--paper); }
.form-status { font-weight: 600; margin: 0.9rem 0 0; min-height: 1.2em; }
.form-status:empty { margin: 0; min-height: 0; }
.form-status.ok { color: var(--sprout); }
.form-status.err { color: #ffb3a7; }

/* ---------- kontakt ---------- */
.kontakt { background: var(--paper); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.kontakt h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.contact-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list .contact-line { display: flex; gap: 0.9rem; align-items: flex-start; text-decoration: none; }
.contact-list .ci {
  width: 42px; height: 42px; border-radius: 12px; background: var(--herb); color: var(--sprout);
  display: grid; place-items: center; flex: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list .k { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 600; }
.contact-list .v {
  font-size: 1.1rem; font-weight: 500; color: var(--herb);
  text-decoration: underline; text-decoration-color: var(--sprout); text-underline-offset: 3px;
  transition: color 0.25s, text-decoration-color 0.25s;
}
.contact-list .contact-line:hover .v { color: var(--herb-deep); text-decoration-color: var(--herb); }
.contact-list .contact-line:hover .ci { background: var(--herb-deep); transform: translateY(-2px); }
.card-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.card-form__title { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem); margin-bottom: 1.2rem; }
.card-form .field input, .card-form .field textarea { background: var(--paper); }
.card-form .form-row { margin-bottom: 1rem; }
.card-form .form-row .field { margin-bottom: 0; }
.card-form button { width: 100%; justify-content: center; margin-top: 0.4rem; }
.req { color: var(--sprout-deep); }
.form-hint { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 0.8rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c8cfc3; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer__brand .brand { color: var(--paper); }
.footer__brand .brand .mark { color: var(--sprout); }
.footer__brand .brand .word b { color: var(--sprout); }
.footer__brand p { max-width: 34ch; margin-top: 1rem; font-size: 0.95rem; }
.site-footer h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #8fa08c; margin: 0 0 0.9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { text-decoration: none; color: #c8cfc3; }
.site-footer a:hover { color: var(--sprout); }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(245, 242, 232, 0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.85rem; color: #8fa08c;
}
.footer__bottom a { color: #8fa08c; }

/* ---------- legal pages ---------- */
.legal { background: var(--paper); }
.legal__hero { background: var(--herb-deep); color: var(--paper); padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 3.5rem); }
.legal__hero h1 { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); }
.legal__hero p { color: #d7dccf; margin: 0; }
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a:not(.btn) { color: var(--herb); }
.prose address { font-style: normal; }
.prose ul { padding-left: 1.2rem; }
.prose .updated { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .story__grid, .product, .markt__grid, .kontakt__grid { grid-template-columns: 1fr; }
  .story__figure { max-width: 460px; }
  .product__photo { max-width: 380px; }
  .nach__head { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .product { direction: ltr; }
}

@media (max-width: 640px) {
  .nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 0.5rem var(--gutter) 1.2rem; transform: translateY(-140%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 0.9rem; justify-content: center; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .grid-cards { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 1rem; }
  .story__figure .tag { left: 0; }
  .hero__notify-row { flex-direction: column; }
  .hero__notify .btn, .hero__cta .btn { justify-content: center; }
  .hero__cta { display: grid; grid-template-columns: 1fr; }
}
