/* ============================================================
   NUDO MATCHA — styles.css
   Palette und Typografie sind aus den Produkt-Renderings abgeleitet:
   Flaschengrün, Verpackungs-Creme, Matcha-Grün — sonnige, helle
   Bildwelt (Salbeiwand, Blattschatten, Stein).
   ============================================================ */

/* Schriften — lokal gehostet (kein Google-CDN, DSGVO-sauber) */
@font-face {
  font-family: 'Instrument Serif'; font-style: normal; font-weight: 400;
  src: url('../fonts/instrument-serif.woff2') format('woff2'); font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif'; font-style: italic; font-weight: 400;
  src: url('../fonts/instrument-serif-italic.woff2') format('woff2'); font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans'; font-style: normal; font-weight: 400 500;
  src: url('../fonts/instrument-sans.woff2') format('woff2'); font-display: swap;
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 400 600;
  src: url('../fonts/jost.woff2') format('woff2'); font-display: swap;
}
:root {
  --forest:       #24382B;   /* Verpackungsgrün */
  --forest-deep:  #16241B;   /* Footer / Schatten */
  --matcha:       #7FA04C;   /* Flüssigkeit */
  --matcha-soft:  #BCD289;   /* helle Matcha-Note auf Dunkelgrün */
  --matcha-deep:  #5C7A38;   /* dunkle Matcha-Note auf hellem Grund */
  --cream:        #F1EBDC;   /* Verpackungs-Creme */
  --cream-deep:   #E7E0CD;
  --ink:          #131F17;
  --line:         rgba(19, 31, 23, 0.14);
  --line-cream:   rgba(241, 235, 220, 0.18);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-label:   'Jost', 'Futura', sans-serif;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --pad:  clamp(96px, 13vw, 170px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--matcha); color: var(--cream); }
img { display: block; max-width: 100%; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Papierkorn — passend zum Etikettenpapier */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: soft-light;
}

.skip {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--forest); color: var(--cream); padding: 12px 18px;
}
.skip:focus { left: 0; }

/* Eyebrow — überall gleich, wie eine Etikettenzeile */
.sec-eyebrow, .hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}

/* ------------------------------------------------------------
   NAV — Logo als physisches Produktetikett
   ------------------------------------------------------------ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; color: var(--forest);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
}
nav.solid {
  background: rgba(241, 235, 220, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  padding: 12px 32px;
  box-shadow: 0 1px 0 var(--line);
  color: var(--forest);
}

/* Der Etiketten-Chip: exakt wie auf den Renderings —
   cremefarbenes Label, NUDO MATCHA zweizeilig, kleine 2 darunter */
.logo-label {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--cream); color: var(--forest);
  padding: 9px 16px 7px; border-radius: 1px;
  text-decoration: none; text-align: center;
  box-shadow: 0 0 0 1px var(--line), 0 2px 10px rgba(19, 31, 23, 0.12);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.logo-label:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--line), 0 6px 18px rgba(19, 31, 23, 0.18); }
nav.solid .logo-label { box-shadow: 0 0 0 1px var(--line), 0 2px 8px rgba(19, 31, 23, 0.08); }
.logo-word {
  font-family: var(--font-label);
  font-size: 0.72rem; font-weight: 600; line-height: 1.3;
  letter-spacing: 0.18em; text-transform: uppercase;
  /* optischer Ausgleich fürs Letterspacing am Zeilenende */
  margin-right: -0.18em;
}
.logo-two {
  font-family: var(--font-label);
  font-size: 0.62rem; font-weight: 500; margin-top: 4px;
}

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  color: inherit; text-decoration: none;
  font-family: var(--font-label);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  nav.solid { padding: 10px 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.72rem; }
  .nav-links a[href="#kontakt"] { display: none; } /* Newsletter steht im Footer */
}

/* ------------------------------------------------------------
   HERO — sonniges Vollbild-Produktfoto, Ticker als Band unten
   ------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--cream-deep); color: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% center;
}
/* Desktop: Bild verkleinert und nach rechts unten gerückt, damit der
   Text nicht mit der Bag-in-Box kollidiert; Kanten laufen weich in
   den Creme-Hintergrund aus */
@media (min-width: 861px) {
  .hero-bg {
    inset: auto 0 0 auto;
    width: 76%; height: auto; max-height: 112%;
    object-fit: contain; object-position: right bottom;
    /* Linke + obere Bildkante laufen garantiert auf 0 aus
       (zwei Verläufe, geschnitten) — kein sichtbarer Bildrand */
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 30%),
      linear-gradient(to bottom, transparent 0, #000 28%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 30%),
      linear-gradient(to bottom, transparent 0, #000 28%);
    mask-composite: intersect;
  }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(241, 235, 220, 0.72) 0%, rgba(241, 235, 220, 0) 16%),
    linear-gradient(100deg, rgba(241, 235, 220, 0.96) 0%, rgba(241, 235, 220, 0.86) 32%, rgba(241, 235, 220, 0.55) 56%, rgba(241, 235, 220, 0.12) 80%, rgba(241, 235, 220, 0) 100%),
    linear-gradient(to top, rgba(241, 235, 220, 0.35) 0%, rgba(241, 235, 220, 0) 22%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 110px; padding-bottom: 110px; }
@media (max-width: 640px) {
  .hero-scrim {
    background:
      linear-gradient(to bottom, rgba(241, 235, 220, 0.82) 0%, rgba(241, 235, 220, 0.68) 100%),
      linear-gradient(100deg, rgba(241, 235, 220, 0.5) 0%, rgba(241, 235, 220, 0) 100%);
  }
  .hero-content { padding-top: 130px; padding-bottom: 96px; }
}
.hero-eyebrow {
  color: var(--matcha-deep);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--matcha-deep); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.98; letter-spacing: -0.01em;
  max-width: 11ch; color: var(--forest);
}
.hero h1 em { font-style: normal; color: var(--matcha-deep); }
.hero-sub {
  margin-top: 26px; max-width: 44ch;
  font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.6;
  color: rgba(19, 31, 23, 0.78);
}

/* Kernpunkte als Etiketten-Spezifikation */
.hero-facts {
  margin-top: 48px; max-width: 540px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero-facts > div { border-top: 1px solid rgba(19, 31, 23, 0.22); padding-top: 14px; }
.hero-facts dt {
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--matcha-deep); margin-bottom: 7px;
}
.hero-facts dd { font-size: 0.96rem; line-height: 1.45; color: rgba(19, 31, 23, 0.88); }
@media (max-width: 640px) {
  .hero-facts { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .hero-facts > div { padding-top: 12px; }
}

/* Ticker — dunkles Markenband, sichtbar beim Öffnen der Seite */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: var(--forest); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex; will-change: transform;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-family: var(--font-label);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0 26px;
  display: inline-flex; align-items: center;
}
.ticker-track span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--matcha-soft); margin-right: 52px; flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   ZUTATEN — Vollbild-Split: Matcha links, Wasser rechts
   ------------------------------------------------------------ */
.ingredients { padding: var(--pad) 0 0; background: var(--cream); }
.ing-head { text-align: center; margin-bottom: 64px; }
.ing-head .sec-eyebrow { color: var(--matcha-deep); margin-bottom: 16px; }
.ing-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--forest);
}
.ing-split {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
}
.ing-panel {
  position: relative; overflow: hidden;
  min-height: clamp(380px, 62vh, 640px);
  display: flex; align-items: center; justify-content: center;
}
.ing-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
/* Hover: ruhiger, langsamer Zoom */
.ing-panel:hover img { transform: scale(1.045); }
/* weiche Aufhellung/Abdunklung hinter dem Text für Lesbarkeit */
.ing-panel::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.ing-panel--matcha::before {
  background: radial-gradient(58% 52% at 50% 50%, rgba(19, 31, 23, 0.38), transparent 72%);
}
.ing-panel--wasser::before {
  background: radial-gradient(58% 52% at 50% 50%, rgba(241, 235, 220, 0.62), transparent 72%);
}
.ing-copy { position: relative; z-index: 2; text-align: center; padding: 40px 32px; }
.ing-copy h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 10px;
}
.ing-copy p { font-size: 1rem; line-height: 1.6; max-width: 34ch; margin: 0 auto; }
.ing-panel--matcha .ing-copy { color: var(--cream); text-shadow: 0 1px 14px rgba(19, 31, 23, 0.4); }
.ing-panel--wasser .ing-copy { color: var(--forest); }
.ing-panel--wasser .ing-copy p { color: rgba(19, 31, 23, 0.78); }
/* das Plus am Übergang der beiden Hälften */
.ing-plus {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--cream); color: var(--matcha-deep);
  display: grid; place-items: center;
  font-family: var(--font-label); font-weight: 400;
  font-size: 2.1rem; line-height: 1;
  box-shadow: 0 10px 30px rgba(19, 31, 23, 0.22);
  user-select: none;
}
@media (max-width: 720px) {
  .ing-head { margin-bottom: 48px; }
  .ing-split { grid-template-columns: 1fr; }
  .ing-panel { min-height: 46vh; }
  .ing-plus { width: 60px; height: 60px; font-size: 1.8rem; }
}

/* ------------------------------------------------------------
   STORY — Creme, editorial, mit Wasserzeichen-2
   ------------------------------------------------------------ */
.story { position: relative; padding: var(--pad) 0; background: var(--cream); overflow: hidden; }
.story-two {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-style: italic;
  font-size: min(46vw, 640px); line-height: 0.7;
  color: var(--forest); opacity: 0.05;
  pointer-events: none; user-select: none;
}
.story-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story .sec-eyebrow { color: var(--matcha); margin-bottom: 20px; }
.story h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.06; letter-spacing: -0.01em;
  color: var(--forest);
}
.story-body p {
  font-size: clamp(1.02rem, 1.4vw, 1.14rem); line-height: 1.75;
  color: rgba(19, 31, 23, 0.82);
  margin-bottom: 26px; max-width: 58ch;
}
.story-body p em { font-style: italic; font-family: var(--font-display); font-size: 1.08em; }

/* ------------------------------------------------------------
   GRÜNDERFOTOS — zwei Abzüge als eingeklebte Collage
   ------------------------------------------------------------ */
.founders { margin: 56px 0 0; max-width: 440px; position: relative; }
.print {
  position: relative;
  background: #FBF8F0;                       /* Fotopapier */
  padding: 10px 10px 12px;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(19, 31, 23, 0.2), 0 2px 6px rgba(19, 31, 23, 0.1);
  transition: transform 0.5s var(--ease), z-index 0s;
}
.print--gesa { width: 64%; transform: rotate(-3deg); z-index: 1; }
.print--max  { width: 62%; margin: -24% 4% 0 auto; transform: rotate(2.5deg); z-index: 2; }
.print--gesa:hover { transform: rotate(-1.5deg) translateY(-4px); z-index: 3; }
.print--max:hover  { transform: rotate(1deg) translateY(-4px); }
/* Klebestreifen oben */
.print::before {
  content: ""; position: absolute; top: -13px; left: 50%; z-index: 2;
  width: 84px; height: 28px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(241, 235, 220, 0.55);
  border-left: 1px dashed rgba(19, 31, 23, 0.08);
  border-right: 1px dashed rgba(19, 31, 23, 0.08);
  box-shadow: 0 1px 3px rgba(19, 31, 23, 0.12);
}
.print--max::before { transform: translateX(-50%) rotate(4deg); }
.founders-frame { position: relative; }
.print img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.print--max img { object-position: 50% 30%; }  /* 2:3-Foto: Ausschnitt Richtung Gesicht */
/* Namen auf den Abzügen — --x/--y in % der Fotofläche (0/0 = oben links) */
.founders-name {
  --x: 10%; --y: 80%;
  position: absolute; left: var(--x); top: var(--y);
  font-family: var(--font-label);
  font-size: 0.82rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #FBF8F0;
  text-shadow: 0 1px 2px rgba(19, 31, 23, 0.5), 0 4px 14px rgba(19, 31, 23, 0.35);
  pointer-events: none; user-select: none;
}
.founders-name--gesa { --x: 9%; --y: 82%; }
.founders-name--max  { --x: 68%; --y: 84%; }
@media (max-width: 860px) {
  .founders { margin: 44px auto 8px; }
}

/* ------------------------------------------------------------
   FORMATE — drei Produktbilder auf Flaschengrün
   ------------------------------------------------------------ */
.formats { padding: var(--pad) 0; background: var(--forest); color: var(--cream); }
.formats .sec-eyebrow { color: var(--matcha-soft); margin-bottom: 20px; }
.formats h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 56px;
}
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .formats-grid { grid-template-columns: 1fr; gap: 48px; } }
.formats figure { margin: 0; }
.format-img {
  aspect-ratio: 1 / 1; overflow: hidden; border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.format-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.formats figure:hover .format-img img { transform: scale(1.05); }
.formats figcaption { margin-top: 18px; }
/* Format-Name als kleines Etikett — dasselbe Motiv wie das Logo */
.format-label {
  display: inline-block;
  background: var(--cream); color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 1px;
}
.formats figcaption p {
  margin-top: 12px; font-size: 0.96rem; line-height: 1.55;
  color: rgba(241, 235, 220, 0.78); max-width: 34ch;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer { background: var(--forest-deep); color: rgba(241, 235, 220, 0.72); padding: 80px 0 42px; }
.foot-top {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-cream);
}
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr; gap: 40px; } }
.logo-label--foot { box-shadow: none; margin-bottom: 20px; }
.foot-brand p { max-width: 36ch; font-size: 0.94rem; line-height: 1.65; margin-bottom: 24px; }
.newsletter { display: flex; gap: 8px; max-width: 380px; }
.newsletter input {
  flex: 1; min-width: 0;
  background: rgba(241, 235, 220, 0.07);
  border: 1px solid rgba(241, 235, 220, 0.22);
  border-radius: 2px; padding: 13px 16px;
  color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
}
.newsletter input::placeholder { color: rgba(241, 235, 220, 0.45); }
.newsletter input:focus { outline: none; border-color: var(--matcha-soft); }
.newsletter button {
  background: var(--cream); color: var(--forest);
  border: 0; border-radius: 2px; padding: 0 22px;
  font-family: var(--font-label); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, color 0.25s;
}
.newsletter button:hover { background: var(--matcha-soft); }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 720px) { .foot-cols { justify-content: flex-start; } }
.foot-col h5 {
  font-family: var(--font-label); color: var(--cream);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col a {
  display: block; color: rgba(241, 235, 220, 0.62);
  text-decoration: none; font-size: 0.92rem;
  margin-bottom: 10px; transition: color 0.25s;
}
.foot-col a:hover { color: var(--matcha-soft); }
.foot-soon {
  display: block; color: rgba(241, 235, 220, 0.45);
  font-size: 0.92rem; margin-bottom: 10px; cursor: default;
}
.foot-soon em { font-style: italic; font-size: 0.82rem; color: rgba(241, 235, 220, 0.35); }
.foot-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(241, 235, 220, 0.42);
}
.foot-bottom span:last-child { font-family: var(--font-display); font-style: italic; font-size: 0.9rem; }

/* ------------------------------------------------------------
   RECHTSSEITEN — Impressum, Datenschutz, AGB
   ------------------------------------------------------------ */
.legal { background: var(--cream); padding: 170px 0 110px; min-height: 70vh; }
.legal .wrap { max-width: 780px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.05;
  color: var(--forest); margin-bottom: 10px;
}
.legal .stand {
  font-family: var(--font-label); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--matcha-deep); margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); line-height: 1.2;
  color: var(--forest); margin: 44px 0 14px;
}
.legal h3 {
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--matcha-deep); margin: 28px 0 10px;
}
.legal p, .legal li { font-size: 1rem; line-height: 1.75; color: rgba(19, 31, 23, 0.82); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--matcha-deep); text-underline-offset: 3px; }
.legal a:hover { color: var(--forest); }
.legal address { font-style: normal; line-height: 1.75; color: rgba(19, 31, 23, 0.82); margin-bottom: 14px; }
.legal .todo {
  background: var(--cream-deep); border: 1px dashed rgba(19, 31, 23, 0.25);
  border-radius: 2px; padding: 3px 8px; white-space: nowrap;
}

/* ------------------------------------------------------------
   MOTION
   ------------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .js .hero-eyebrow, .js .hero h1, .js .hero-sub, .js .hero-facts {
    opacity: 0; animation: fadeUp 0.95s var(--ease) forwards;
  }
  .js .hero-eyebrow { animation-delay: 0.15s; }
  .js .hero h1 { animation-delay: 0.3s; }
  .js .hero-sub { animation-delay: 0.5s; }
  .js .hero-facts { animation-delay: 0.68s; }
  .js .hero-bg { animation: heroZoom 2.4s var(--ease) forwards; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .ticker-track { animation: none !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--matcha-soft); outline-offset: 3px;
}

/* Screenshot-Helfer: ?allvisible neutralisiert 100svh für Full-Page-Captures */
.shot .hero { min-height: 760px; }
