/* ============================================================
   REINHART NATURAL — reinhartnatural.de
   Design-System: Porzellanweiß + vier Substanzfarben (Koralle,
   Ozean, Moos, Lavendel), Nachtblau für dunkle Bänder.
   Jost (Headlines/UI) + EB Garamond (Text) + Cormorant (Akzente).
   Fluide Mesh-Gradients, organische Zellstrukturen, Asymmetrie —
   das weiche Gegengewicht zum harten Namen.
   ============================================================ */

/* ---------- Schriften (selbst gehostet, DSGVO-konform) ---------- */

@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/ebgaramond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond";
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/ebgaramond-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Dawning of a New Day";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dawning-latin.woff2") format("woff2");
}

/* ---------- Token ---------- */

:root {
  --ink: #17191c;          /* Tintenschwarz, kühl */
  --coal: #34383d;         /* Anthrazit */
  --stone: #74787d;        /* kühles Steingrau */
  --porcelain: #fbfbf9;    /* Porzellanweiß — Seitengrund */
  --paper: #ffffff;        /* reines Weiß — Karten */
  --mist: #f0f1ee;         /* helle Wechselfläche */
  --nacht: #20242f;        /* Nachtblau — dunkle Bänder */
  --abyss: #14161d;        /* Tiefnacht — Footer */
  --gold: #b2a075;         /* Messing — nur für Details */

  --koralle: #c98a76;      /* DMSO — warmes Pfirsich/Koralle */
  --ozean: #517495;        /* Methylenblau — kühles Ozeanblau */
  --moos: #77906f;         /* Magnesiumöl — organisches Moosgrün */
  --lavendel: #9d97ad;     /* Zeolith — sanftes Lavendel-Grau */

  /* Alt-Namen bleiben gültig */
  --pine: var(--nacht);
  --rosa: var(--koralle);
  --blau: var(--ozean);
  --gruen: var(--moos);
  --violett: var(--lavendel);

  --hairline: rgba(23, 25, 28, 0.14);
  --hairline-soft: rgba(23, 25, 28, 0.07);
  --amber: #7a4f2c;        /* Braunglas-Ton für Illustrationen */

  /* Aliase für Bestandsregeln */
  --ivory: var(--porcelain);
  --parchment: var(--mist);

  --serif-display: "Cormorant Garamond", "EB Garamond", "Garamond", Georgia, serif;
  --serif: "EB Garamond", "Garamond", "Georgia", serif;
  --sans: "Jost", "Avenir Next", "Century Gothic", Arial, sans-serif;
  --hand: "Dawning of a New Day", cursive;

  --w-wide: 76rem;
  --w-text: 44rem;
}

/* ---------- Reset / Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--ivory);
  font-feature-settings: "kern";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Papierkorn — feinstes Rauschen */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Mesh-Gradient — vier Substanzfarben, extrem sanft, in langsamer Drift */
body::after {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(44rem 32rem at 12% 6%, rgba(201, 138, 118, 0.09), transparent 62%),
    radial-gradient(48rem 36rem at 90% 14%, rgba(81, 116, 149, 0.09), transparent 62%),
    radial-gradient(42rem 32rem at 84% 88%, rgba(119, 144, 111, 0.09), transparent 62%),
    radial-gradient(46rem 34rem at 6% 90%, rgba(157, 151, 173, 0.11), transparent 62%);
  animation: mesh-drift 90s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1) rotate(0.001deg); }
  to   { transform: translate3d(1.5%, 1.5%, 0) scale(1.07) rotate(0.001deg); }
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(81, 116, 149, 0.18);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p a,
li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline);
  transition: text-decoration-color 0.2s ease;
}

p a:hover,
li a:hover {
  text-decoration-color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-size: 0.8rem;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Typografie ---------- */

h1, h2,
.display {
  font-family: var(--sans);
  font-weight: 460;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.display {
  font-size: clamp(2.7rem, 6.2vw, 4.9rem);
  font-weight: 420;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 440;
}

/* Das Serif-Flüstern: ein kursives Akzentwort in der Grotesk-Headline */
h1 em, h2 em,
.display em {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  letter-spacing: 0;
  line-height: 0;
}

h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: var(--coal);
  font-feature-settings: "onum";
}

.prose p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--coal);
  font-feature-settings: "onum";
  max-width: var(--w-text);
}

.prose p + p {
  margin-top: 1.2em;
}

.prose em {
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

.eyebrow .dia {
  font-size: 0.55em;
  vertical-align: 0.22em;
  color: var(--gold);
}

.small {
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ---------- Layout ---------- */

.wrap {
  width: min(var(--w-wide), 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 1.1rem;
}

.section-head p {
  margin-top: 1.2rem;
}

.center {
  text-align: center;
}

.section-head.center {
  margin-inline: auto;
}

/* Hairline mit Diamant */
.rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.rule-diamond {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 0;
  margin: 0;
}

.rule-diamond::before,
.rule-diamond::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--hairline);
}

.rule-diamond span {
  font-size: 0.5rem;
  color: var(--ink);
  line-height: 1;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.btn:hover {
  background: var(--nacht);
  border-color: var(--nacht);
  color: #eef0f6;
}

.btn-solid {
  background: var(--nacht);
  border-color: var(--nacht);
  color: #eef0f6;
}

.btn-solid:hover {
  background: #2b3040;
  border-color: #2b3040;
  color: #eef0f6;
}

/* ---------- Ankündigung + Header ---------- */

.annonce {
  background: var(--nacht);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 240, 246, 0.88);
}

.annonce .dia {
  font-size: 0.55em;
  vertical-align: 0.22em;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-soft);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--hairline), 0 8px 24px rgba(14, 31, 27, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand svg,
.brand img {
  width: 2.35rem;
  height: 2.35rem;
  flex: none;
}

.brand-name {
  font-family: var(--serif-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name span {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  display: block;
  color: var(--stone);
  margin-top: -0.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.site-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coal);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--ink);
}

/* ---------- Hero — asymmetrisch, fluide ---------- */

.hero {
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-seal {
  width: clamp(5.5rem, 8vw, 7rem);
  height: auto;
  margin-bottom: 2.2rem;
}

.hero .eyebrow {
  display: block;
  margin-bottom: 1.6rem;
}

.hero .display {
  margin-bottom: 0;
}

.hero-claim {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.9vw, 1.32rem);
  color: var(--coal);
  max-width: 32em;
  margin-top: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

/* Zellstruktur — botanische Linienkunst, sehr langsam drehend */
.hero-cells {
  position: absolute;
  top: -8rem;
  right: -10rem;
  width: clamp(24rem, 42vw, 40rem);
  height: auto;
  z-index: 0;
  pointer-events: none;
  animation: cells-turn 180s linear infinite;
  transform-origin: center;
}

@keyframes cells-turn {
  to { transform: rotate(360deg); }
}

/* Flaschen-Quartett — gestaffelt statt aufgereiht */
.hero-shelf {
  position: relative;
}

.hero-shelf .bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.9rem, 2.2vw, 1.9rem);
  padding-bottom: 0;
}

.hero-shelf .bottles svg {
  height: clamp(11rem, 22vw, 18rem);
  width: auto;
}

.hero-shelf .bottles svg.h-sm { height: clamp(8rem, 16vw, 13rem); }
.hero-shelf .bottles svg.h-jar { height: clamp(7.5rem, 14.5vw, 12rem); }

.hero-shelf .bottles svg:nth-child(1) { margin-bottom: 0.4rem; }
.hero-shelf .bottles svg:nth-child(2) { margin-bottom: 1.6rem; }
.hero-shelf .bottles svg:nth-child(4) { margin-bottom: 1.1rem; }

.shelf-curve {
  display: block;
  width: 100%;
  height: 1.5rem;
  margin-top: -0.2rem;
  color: var(--ink);
  opacity: 0.4;
}

/* ---------- Kollektion ---------- */

.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--hairline-soft);
  border-radius: 0.9rem;
  padding: 2.6rem 1.8rem 2.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  border-color: var(--hairline);
  box-shadow: 0 18px 44px -22px rgba(32, 36, 47, 0.22);
}

/* Asymmetrischer Rhythmus im Regal */
@media (min-width: 64.01rem) {
  .grid-products:not(.cols-3) .product-card:nth-child(2) { margin-top: 1.6rem; }
  .grid-products:not(.cols-3) .product-card:nth-child(3) { margin-top: 0.5rem; }
  .grid-products:not(.cols-3) .product-card:nth-child(4) { margin-top: 2.2rem; }
}

.product-card .no {
  position: absolute;
  top: 1.1rem;
  left: 1.3rem;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--stone);
  font-feature-settings: "onum";
}

.product-card figure {
  height: 11.5rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.9rem;
  transition: transform 0.35s ease;
}

.product-card:hover figure {
  transform: translateY(-4px);
}

.product-card figure svg {
  height: 100%;
  width: auto;
}

.product-card figure svg.h-sm { height: 82%; }
.product-card figure svg.h-jar { height: 68%; }

.product-card .dia {
  font-size: 0.55rem;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.product-card h3 {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.product-card .chem {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--coal);
  margin-top: 0.25rem;
}

.product-card .spec {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.8rem;
}

.product-card .price {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.3rem;
}

.product-card .base-price {
  font-size: 0.7rem;
  color: var(--stone);
  margin-top: 0.15rem;
}

.product-card .card-link {
  margin-top: 1.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
}

/* Karte komplett klickbar */
.product-card .stretch::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* ---------- Prinzipien ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.principle .num {
  font-family: var(--serif-display);
  font-size: 2.8rem;
  font-weight: 450;
  color: var(--ink);
  font-feature-settings: "onum";
  line-height: 1;
}

.principle h3 {
  margin: 1.2rem 0 0.8rem;
  font-size: 0.92rem;
}

.principle p {
  font-size: 0.92rem;
  color: var(--coal);
  max-width: 30em;
}

.pullquote {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  max-width: 26em;
  margin: clamp(4rem, 8vw, 6.5rem) auto 0;
  line-height: 1.4;
}

/* ---------- Charge ---------- */

.charge {
  background:
    radial-gradient(56rem 38rem at 88% 0%, rgba(81, 116, 149, 0.32), transparent 62%),
    radial-gradient(48rem 34rem at 4% 100%, rgba(157, 151, 173, 0.2), transparent 60%),
    radial-gradient(40rem 30rem at 40% 110%, rgba(201, 138, 118, 0.1), transparent 55%),
    var(--nacht);
  color: rgba(236, 238, 244, 0.82);
}

.charge h2 {
  color: #f2f3f7;
}

.charge .eyebrow {
  color: rgba(236, 238, 244, 0.55);
}

.charge .lede {
  color: rgba(236, 238, 244, 0.75);
}

.charge .small {
  color: rgba(236, 238, 244, 0.55);
}

.charge .btn {
  border-color: rgba(236, 238, 244, 0.6);
  color: #eef0f6;
}

.charge .btn:hover {
  background: rgba(236, 238, 244, 0.12);
  border-color: #eef0f6;
}

.charge .btn-solid {
  background: #f2f3f7;
  border-color: #f2f3f7;
  color: var(--nacht);
}

.charge .btn-solid:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--nacht);
}

.charge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.lot-stamp {
  justify-self: center;
  border: 2px solid rgba(236, 238, 244, 0.9);
  outline: 1px solid rgba(236, 238, 244, 0.9);
  outline-offset: 4px;
  padding: 2.1rem 2.6rem;
  text-align: center;
  transform: rotate(-2.5deg);
  color: #eef0f6;
}

.lot-stamp .lot-no {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

.lot-stamp .lot-sub {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.charge-facts {
  list-style: none;
  margin-top: 1.8rem;
  max-width: var(--w-text);
}

.charge-facts li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(236, 238, 244, 0.16);
  font-size: 0.92rem;
  color: rgba(236, 238, 244, 0.78);
}

.charge-facts li:last-child {
  border-bottom: 1px solid rgba(236, 238, 244, 0.16);
}

.charge-facts .dia {
  flex: none;
  font-size: 0.5rem;
  line-height: 2.6;
  color: var(--gold);
}

/* ---------- Manufaktur ---------- */

.manufaktur-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.signature {
  font-family: var(--hand);
  font-size: 2.6rem;
  color: var(--ink);
  margin-top: 2.2rem;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.signature-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.2rem;
}

.material-list {
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.material-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.92rem;
}

.material-list dt,
.material-list .k {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 0.2rem;
}

.material-list .v {
  color: var(--coal);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 46rem;
  margin-inline: auto;
}

.faq details {
  border-top: 1px solid var(--hairline);
}

.faq details:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem 0.2rem;
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 480;
  letter-spacing: 0.01em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--stone);
  transition: transform 0.25s ease;
  flex: none;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq .faq-body {
  padding: 0 0.2rem 1.6rem;
}

.faq .faq-body p {
  font-size: 0.95rem;
  color: var(--coal);
  max-width: 40em;
}

.faq .faq-body p + p {
  margin-top: 0.8em;
}

/* ---------- Verteiler ---------- */

.verteiler {
  text-align: center;
}

.verteiler .btn {
  margin-top: 2.4rem;
}

.verteiler .small {
  margin-top: 1.4rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background:
    radial-gradient(50rem 30rem at 90% 0%, rgba(81, 116, 149, 0.16), transparent 60%),
    radial-gradient(44rem 28rem at 5% 100%, rgba(157, 151, 173, 0.12), transparent 60%),
    var(--abyss);
  color: rgba(233, 235, 242, 0.82);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  font-size: 0.85rem;
}

.site-footer a {
  color: rgba(233, 235, 242, 0.82);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

.footer-brand svg,
.footer-brand img {
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1.4rem;
}

.footer-brand .wordmark {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 24em;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(233, 235, 242, 0.6);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(233, 235, 242, 0.45);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-legal {
  border-top: 1px solid rgba(233, 235, 242, 0.14);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(233, 235, 242, 0.5);
}

.footer-disclaimer {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(233, 235, 242, 0.42);
  max-width: 60em;
}

/* ---------- Produktseite ---------- */

.breadcrumb {
  padding-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.breadcrumb a:hover {
  color: var(--ink);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
}

.product-stage {
  position: sticky;
  top: 6.5rem;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem) 1rem 0;
}

.product-stage svg {
  height: clamp(20rem, 38vw, 30rem);
  width: auto;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12% 22%;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--d, #9d97ad) 16%, transparent), transparent 72%);
  pointer-events: none;
}

.product-stage svg.h-sm {
  height: clamp(16rem, 30vw, 24rem);
}

.product-stage svg.h-jar {
  height: clamp(15rem, 28vw, 22rem);
}

.product-stage .stage-line {
  border: 0;
  border-top: 1px solid var(--ink);
  opacity: 0.55;
  width: 78%;
  margin: 0 auto;
}

.product-info .dia {
  font-size: 0.6rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 1rem;
}

.product-info h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-info .chem {
  font-family: var(--serif-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--coal);
  margin-top: 0.5rem;
}

.product-info .spec-line {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 1.1rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hairline);
}

.price-row .price {
  font-family: var(--serif-display);
  font-size: 2.1rem;
  font-weight: 600;
}

.price-row .price-meta {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.5;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--stone);
  max-width: 36em;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.6rem;
  font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.72rem 0.2rem;
  border-top: 1px solid var(--hairline-soft);
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 1px solid var(--hairline-soft);
}

.spec-table th {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  width: 11rem;
  padding-right: 1.5rem;
}

.spec-table td {
  color: var(--coal);
  font-feature-settings: "tnum";
}

.legal-box {
  margin-top: 2.4rem;
  border: 1px solid var(--hairline);
  border-radius: 0.9rem;
  padding: 1.4rem 1.6rem;
  font-size: 0.8rem;
  color: var(--coal);
  line-height: 1.65;
}

.legal-box strong {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.product-prose {
  border-top: 1px solid var(--hairline);
}

.product-prose .inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.product-prose h2 {
  font-size: 1.55rem;
  font-weight: 480;
}

.cross-sell {
  border-top: 1px solid var(--hairline);
}

.grid-products.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cross-sell .product-card figure {
  height: 9rem;
}

@media (max-width: 64rem) {
  .grid-products.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 46rem) {
  .grid-products.cols-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Rechtsseiten ---------- */

.legal-page {
  max-width: 46rem;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2.5rem 0 0.8rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--coal);
  margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.3rem;
}

.placeholder {
  background: rgba(178, 160, 117, 0.16);
  border: 1px dashed var(--gold);
  padding: 0.05rem 0.4rem;
}

.todo-banner {
  border: 1px dashed var(--gold);
  background: rgba(178, 160, 117, 0.1);
  padding: 1rem 1.3rem;
  font-size: 0.8rem;
  color: var(--coal);
  margin-bottom: 2.5rem;
}

/* ---------- Reveal-Animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body::after,
  .hero-cells {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .product-card figure,
  .btn {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 64rem) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-cells {
    right: -14rem;
    opacity: 0.65;
  }
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-hero {
    grid-template-columns: 1fr;
  }
  .product-stage {
    position: static;
    padding-top: 0;
  }
  .product-stage svg {
    height: clamp(16rem, 40vw, 22rem);
  }
  .product-prose .inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 46rem) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.2rem;
    display: none;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 0.8rem 0;
    width: 100%;
  }
  .nav-toggle {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .charge-grid,
  .manufaktur-grid {
    grid-template-columns: 1fr;
  }
  .lot-stamp {
    margin-block: 1rem;
  }
  .grid-products {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .material-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .spec-table th {
    width: 8.5rem;
    padding-right: 1rem;
  }
}
