/* ============================================================
   vegetarianhulk · /newsletter · v31 Cinematic-Funnel
   Vanilla CSS · mobile-first (375 base, desktop ≥1024)
   Cold-traffic conversion lander · Insta-bio endpoint
   ============================================================ */

@import url('/fonts.css?v=1e2010e0');

:root {
  /* Forest-Family v31 Hybrid — Single source of truth */
  --forest-anchor:  #122d1c;
  --forest-primary: #045927;
  --forest-accent:  #1a7340;
  --forest-mid:     #14663a;  /* V32: Illustrations-Linework auf hellen Glossy-Surfaces */
  --forest-wash:    rgba(4, 89, 39, 0.08);
  --forest-line:    rgba(18, 45, 28, 0.12);

  /* Surfaces */
  --vanilla:  #f7efde;
  --vanilla-2: #efe5cf;   /* card surface (parity to index .beige-1) */
  --earth:    #cfbf9d;    /* hairline */
  --earth-2:  #a89372;    /* stronger divider */

  /* Ink */
  --ink:   #1a1410;
  --ink-2: #4a3f33;
  --ink-3: #807260;
  --ink-4: #b3a385;

  /* State */
  --danger: #b3361f;
  --ok:     #045927;

  /* Type — Font-Families (renamed v31.9 from --font-* to --ff-* damit
     --font-* für Size-Tokens frei wird — Konvention konsistent zu style.css) */
  --ff-body:    'Inter', -apple-system, system-ui, sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

  /* ============================================================
     Type-Scale-System v31.9 — Fluid Typography
     (mirrored from style.css :root — Newsletter-Page nutzt eigenes Stylesheet)
     ============================================================ */

  /* Headlines · Playfair fluid scale */
  --font-h1: clamp(2rem,      5vw + 0.5rem, 3.5rem);
  --font-h2: clamp(1.625rem,  4vw,          2.5rem);
  --font-h3: clamp(1.25rem,   2.5vw,        1.625rem);
  --font-h4: clamp(1rem,      1.5vw,        1.25rem);

  /* Body · Inter */
  --font-body-lg: clamp(1.0625rem, 1.5vw,  1.1875rem);
  --font-body:    clamp(0.9375rem, 1.25vw, 1rem);
  --font-body-sm: 0.875rem;
  --font-eyebrow: 0.6875rem;
  --font-label:   0.8125rem;
  --font-micro:   0.625rem;

  /* Line-Heights */
  --leading-tight:   1.1;
  --leading-snug:    1.3;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* Letter-Spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.1em;
  --tracking-wider:  0.16em;

  /* Font-Weights */
  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;
  --weight-extrabold: 800;
  --weight-black:     900;

  /* Motion */
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 220ms;
  --t-med:  420ms;

  /* Layout */
  --container: 1200px;
  --container-narrow: 720px;
  --pad: 20px;
  --safe-bottom: max(env(safe-area-inset-bottom), 12px);

  /* ============================================================
     Motion-System v31.10 — Mirror from style.css :root
     (Newsletter-Page nutzt eigenes Stylesheet)
     ============================================================ */
  --ease-out-quart:   cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-spring:      cubic-bezier(0.5, 1.5, 0.6, 1);
  --motion-instant:   100ms;
  --motion-fast:      200ms;
  --motion-base:      400ms;
  --motion-slow:      600ms;
  --motion-page:      300ms;
  --motion-distance-sm: 8px;
  --motion-distance-md: 20px;
  --motion-distance-lg: 28px;
  --motion-stagger:   80ms;

  /* Hover-System v31.10 — Mirror */
  --hover-lift:       -2px;
  --hover-press:      0;
  --hover-tint:       rgba(4, 89, 39, 0.04);
  --hover-transition: var(--motion-fast) var(--ease-out-quart);
}

@media (min-width: 1024px) {
  :root { --pad: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--vanilla);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--forest-primary); color: var(--vanilla); }

img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; }

/* ── Reveal animation (IntersectionObserver-driven) ─ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease-apple), transform 700ms var(--ease-apple);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Glass topbar — matches Index v29 Glass-Topbar
   ============================================================ */
/* V32: Anker-Sprünge landen unterhalb der Sticky-Topbar (Token-Parität zu style.css) */
:root { --topbar-h: 58px; }
html { scroll-padding-top: calc(var(--topbar-h) + 12px); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 239, 222, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--earth);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Wordmark — VEGETARIANHULK Caps · matches Index v31 Topbar-Standard */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  flex: 1;
}
.brand .accent { color: var(--forest-primary); }
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest-primary);
  transform: translateY(-2px);
}
.topbar-back {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--earth);
  border-radius: 999px;
  transition: all var(--t-fast) var(--ease-apple);
}
.topbar-back:hover { border-color: var(--forest-primary); color: var(--forest-primary); }

/* ============================================================
   SECTION 1 — Hero · Identity + Form above-the-fold
   ============================================================ */
.hero {
  padding: 28px var(--pad) 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 60%;
  background:
    radial-gradient(60% 80% at 20% 0%, rgba(26, 115, 64, 0.10), transparent 60%),
    radial-gradient(50% 70% at 90% 20%, rgba(4, 89, 39, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-portrait {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--forest-accent), var(--forest-anchor) 75%);
  border: 1px solid var(--forest-line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -14px rgba(18, 45, 28, 0.45);
  transition: transform var(--hover-transition), box-shadow var(--hover-transition);
  will-change: transform;
}
.hero-portrait:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: 0 18px 40px -14px rgba(18, 45, 28, 0.55);
}
.hero-portrait:active {
  transform: scale(0.985);
  transition: transform 80ms var(--ease-out-quart);
}
@media (prefers-reduced-motion: reduce) {
  .hero-portrait { transition: none; }
  .hero-portrait:hover,
  .hero-portrait:active { transform: none; }
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--vanilla-2);
  border: 1px solid var(--earth);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-meta .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--forest-primary);
  box-shadow: 0 0 0 3px rgba(4, 89, 39, 0.18);
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: var(--weight-bold);
  font-size: var(--font-h1);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--forest-anchor);
  margin: 0;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest-primary);
}
.hero .sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 440px;
  text-wrap: pretty;
}

/* Newsletter-Form-Komponente (/newsletter-form.js) — Platz reservieren bis
   das Custom-Element upgraded, sonst CLS beim Reinpoppen. display:block,
   weil min-height an Inline-Elementen ignoriert wird. */
vh-newsletter-form { display: block; margin-top: 6px; }
vh-newsletter-form:not(:defined) { min-height: 250px; }
@media (min-width: 520px) {
  vh-newsletter-form:not(:defined) { min-height: 180px; }
}

/* ── Form (mobile-first, ≥44px touch) ─ */
.form-card {
  margin-top: 6px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 520px) {
  .form-row { flex-direction: row; }
  .form-row .input { flex: 1; }
}
.input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: var(--vanilla);
  border: 1.5px solid var(--earth);
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 52px;
  font-family: var(--ff-body);
  font-size: 16px; /* ≥16px to prevent iOS auto-zoom */
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast) var(--ease-apple),
              box-shadow var(--t-fast) var(--ease-apple);
}
.input::placeholder { color: var(--ink-4); font-weight: 400; }
.input:focus,
.input.is-focused {
  border-color: var(--forest-primary);
  box-shadow: 0 0 0 4px rgba(4, 89, 39, 0.14);
}
.submit {
  position: relative;
  background: var(--forest-primary);
  color: var(--vanilla);
  border: none;
  border-radius: 14px;
  padding: 16px 22px;
  min-height: 52px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 28px -10px rgba(4, 89, 39, 0.45);
  transition: background var(--t-fast) var(--ease-apple),
              transform var(--t-fast) var(--ease-apple),
              box-shadow var(--t-fast) var(--ease-apple);
}
.submit:hover:not(:disabled) {
  background: var(--forest-anchor);
  transform: translateY(var(--hover-lift));
  box-shadow: 0 14px 32px -10px rgba(4, 89, 39, 0.55);
}
.submit:disabled { opacity: 0.7; cursor: wait; }
.submit .arrow { display: inline-block; transition: transform var(--t-fast) var(--ease-apple); }
.submit:hover:not(:disabled) .arrow { transform: translateX(3px); }
.submit .spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(247, 239, 222, 0.35);
  border-top-color: var(--vanilla);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-trust {
  font-family: var(--ff-mono);
  font-size: var(--font-eyebrow);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 2px 0 0;
}

/* Form messages */
.form-msg {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  font-weight: 500;
}
.form-msg.is-visible { display: block; }
.form-msg--success {
  background: var(--forest-wash);
  border: 1px solid rgba(4, 89, 39, 0.3);
  color: var(--forest-anchor);
}
.form-msg--info {
  background: var(--vanilla-2);
  border: 1px solid var(--earth);
  color: var(--ink);
}
.form-msg--error {
  background: rgba(179, 54, 31, 0.06);
  border: 1px solid rgba(179, 54, 31, 0.3);
  color: var(--danger);
}
.form-msg strong { font-weight: 700; }

/* Hide form fields when in success-state */
.form-card.is-done .form-row,
.form-card.is-done .submit,
.form-card.is-done .form-trust { display: none; }

/* ============================================================
   SECTION 2 — Habit visualizations (scrollytelling)
   ============================================================ */
.habits {
  padding: 56px var(--pad) 24px;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: var(--font-eyebrow);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--forest-primary);
  margin: 0 auto 14px;
}
.section-eyebrow .line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--forest-primary);
}
.section-h {
  font-family: var(--ff-display);
  font-weight: var(--weight-bold);
  font-size: var(--font-h2);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--forest-anchor);
  margin: 0 0 8px;
  text-wrap: balance;
  max-width: 640px;
}
.section-h em { font-style: italic; font-weight: var(--weight-regular); color: var(--forest-primary); }
.section-lede {
  font-size: var(--font-body);
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 520px;
  text-wrap: pretty;
}
.habits-head {
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
}
.habits-head .section-eyebrow { margin-left: 0; margin-right: 0; }

.habit-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) {
  .habit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* V32: Karte ist seit dem Glossy-Rollout hell (.glossy-card überschreibt das
   alte forest-anchor-Dunkel) — Inhalte sind jetzt für die helle Surface
   getintet. Vorher: Vanilla-Text/-Strokes auf Vanilla = unsichtbar. */
.habit {
  background: var(--vanilla-2); /* Fallback ohne .glossy-card */
  color: var(--ink);
  border-radius: 22px;
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--forest-line);
}
@media (min-width: 900px) {
  .habit { min-height: 460px; padding: 32px 28px; }
}
.habit-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.habit-tag .num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.4px;
  text-transform: none;
  color: var(--forest-primary);
}
.habit-tag .line {
  width: 28px; height: 1px;
  background: var(--earth);
}
.habit-art {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 12px 0;
}
.habit-art svg {
  width: 100%;
  height: 100%;
  max-height: 220px;
  color: var(--forest-mid); /* V32: Linework kräftig auf heller Glossy-Surface */
}
.habit-h {
  font-family: var(--ff-display);
  font-weight: var(--weight-bold);
  font-size: var(--font-h3);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--forest-anchor);
  margin: 0;
  text-wrap: balance;
}
.habit-h em { font-style: italic; font-weight: var(--weight-regular); color: var(--forest-accent); }
.habit-hook {
  font-size: var(--font-body-sm);
  line-height: var(--leading-normal);
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   SECTION 3 — Anti-Hype (statement-style, not card grid)
   ============================================================ */
.anti {
  padding: 80px var(--pad);
  background: var(--vanilla);
  border-top: 1px solid var(--earth);
  border-bottom: 1px solid var(--earth);
  position: relative;
}
.anti-inner {
  max-width: 880px;
  margin: 0 auto;
}
.anti-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.anti-eyebrow .line { width: 32px; height: 1px; background: var(--ink-3); }

.statements {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 720px) {
  .statements { gap: 56px; }
}
.statement {
  font-family: var(--ff-display);
  font-weight: var(--weight-bold);
  font-size: var(--font-h1);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--forest-anchor);
  margin: 0;
  text-wrap: balance;
  position: relative;
  padding-left: 38px;
}
.statement::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--ink-3);
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .statement { padding-left: 56px; }
  .statement::before { top: 14px; }
}
.statement .strike {
  position: relative;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.statement .strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 3px;
  background: var(--danger);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.statement .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--forest-primary);
}

.anti-foot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--earth);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.anti-foot .sig {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--forest-primary);
  letter-spacing: -0.2px;
  text-transform: none;
}

/* ============================================================
   SECTION 4 — Form repeat + footer
   ============================================================ */
.repeat {
  padding: 64px var(--pad) 56px;
  position: relative;
  text-align: center;
}
.repeat-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.repeat .verse {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 4px;
  text-wrap: balance;
}
.repeat .verse-attr {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--forest-primary);
  margin: 0 0 10px;
}
/* v31.5: "Mein Anker."-Sign-off · matches Index .bibel-anchor-signature Pattern */
.repeat .verse-signature {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.3px;
  margin: 0 0 24px;
}
.repeat h2 {
  font-family: var(--ff-display);
  font-weight: var(--weight-bold);
  font-size: var(--font-h2);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--forest-anchor);
  margin: 0;
  text-wrap: balance;
}
.repeat h2 em { font-style: italic; font-weight: 400; color: var(--forest-primary); }

/* Footer */
.foot {
  padding: 32px var(--pad) calc(32px + var(--safe-bottom));
  border-top: 1px solid var(--earth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 720px) {
  .foot { flex-direction: row; justify-content: space-between; text-align: left; }
}
.foot .brand { font-size: 13px; flex: 0 0 auto; }
.foot-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.foot-links a {
  color: var(--ink-2); /* v31.5: WCAG-AA für small-text (war --ink-3 = decorative) */
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-apple);
}
.foot-links a:hover { color: var(--forest-primary); }

/* ============================================================
   Sticky-CTA Mobile (matches Index pattern)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 40;
  background: var(--forest-anchor);
  color: var(--vanilla);
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 40px -12px rgba(18, 45, 28, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--t-med) var(--ease-apple),
              transform var(--t-med) var(--ease-apple);
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sticky-cta .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sticky-cta .label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #8cc7a0;
  box-shadow: 0 0 0 3px rgba(140, 199, 160, 0.22);
}
.sticky-cta .arrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.2px;
  text-transform: none;
  opacity: 0.7;
}
@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

/* ============================================================
   Variant toggle — Style A (hand-drawn) vs Style B (geometric)
   Both sets are in the DOM. Body class shows one.
   ============================================================ */
.art-hand, .art-geo { display: none; }
body.variant-hand .art-hand { display: block; }
body.variant-geo .art-geo { display: block; }

/* Hand-drawn illustrations — wobble + crosshatching feel.
   V32: Forest-Mid-Linework + dickere Strokes (lesbar auf heller Surface,
   war: Vanilla-Strokes + blasses #8cc7a0 = fast unsichtbar). */
.art-hand {
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.art-hand .fill-vanilla { fill: var(--forest-anchor); stroke: none; } /* Detail-Dots (Name legacy) */
.art-hand .stroke-thick { stroke-width: 2.8; }
.art-hand .stroke-thin { stroke-width: 1.4; opacity: 0.65; }
.art-hand .accent { stroke: var(--forest-accent); }

/* Geometric — clean, precise, Apple-product */
.art-geo {
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.art-geo .fill-vanilla { fill: var(--forest-anchor); stroke: none; }
.art-geo .accent { stroke: var(--forest-accent); }
.art-geo .accent-fill { fill: var(--forest-accent); stroke: none; }
.art-geo .thin { opacity: 0.55; }


/* ============================================================
   Footer-Editorial System v31.11 — A2 Asymmetric Editorial
   (Mirror from style.css — Newsletter nutzt nur eigenes
   Stylesheet, daher hier dupliziert. Bei zukünftigen Updates
   beide Files synchron halten.)
   ============================================================ */

  /* ── Footer Component — shared base ──────────────────────────────── */
  .vh-footer {
    background: var(--vanilla);
    color: var(--ink-2);
    font-family: var(--ff-body);
    /* v31.11 adjust: forest-wash statt earth — Brand-Anchor zur Topbar */
    border-top: 1px solid var(--forest-wash);
    box-sizing: border-box;
  }
  .vh-footer *, .vh-footer *::before, .vh-footer *::after { box-sizing: border-box; }
  .vh-footer a {
    color: var(--ink-2);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-apple);
  }
  /* v31.11 adjust: forest-accent statt forest-1 — hover-pop */
  .vh-footer a:hover { color: var(--forest-accent); }

  .vh-wordmark {
    font-family: var(--ff-body);
    font-weight: 800;
    /* v31.11 final: Mixed-Treatment matched Topbar — "VEGETARIAN" --ink default,
       "HULK"-Span (.accent) --forest-primary — Topbar-Pattern 1:1 */
    color: var(--ink);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
  }
  .vh-wordmark .accent { color: var(--forest-primary); }
  .vh-tagline {
    font-family: var(--ff-body);
    font-size: var(--font-body-sm);
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
  .vh-tagline em {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 500;
    color: var(--ink-2);
  }
  .vh-link {
    font-size: var(--font-label);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .vh-link[aria-current="page"] { color: var(--forest-1); }
  .vh-link.is-current { color: var(--forest-1); }
  .vh-meta {
    font-family: var(--ff-mono);
    font-size: var(--font-eyebrow);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    text-transform: uppercase;
  }
  .vh-copyright {
    font-family: var(--ff-mono);
    font-size: var(--font-eyebrow);
    letter-spacing: 0.04em;
    color: var(--ink-2);
  }
  .vh-hairline {
    height: 1px;
    background: var(--earth);
    opacity: 0.6;
    border: 0;
    margin: 0;
  }
  .vh-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--ink-4);
    display: inline-block;
    flex-shrink: 0;
  }
  .vh-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .vh-ig svg { width: 14px; height: 14px; display: block; }
  .vh-address {
    font-family: var(--ff-mono);
    font-size: var(--font-eyebrow);
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--ink-2);
    text-transform: none;
  }
  .vh-address strong {
    font-weight: 600;
    color: var(--ink-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    font-size: var(--font-micro);
    margin-bottom: 4px;
  }

  /* v31.11.1: A1 Centered Stack entfernt — Single-Layout-Approach (alle Pages auf A2) */

  /* ── A2 · ASYMMETRIC EDITORIAL (Single-Layout Cross-Page) ────────── */
  .footer-a2 { padding: 64px 56px 32px; }
  .footer-a2 .grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .footer-a2 .col-brand .wordmark { font-size: var(--font-h4); }
  .footer-a2 .col-brand .tagline { margin-top: 16px; max-width: 320px; }
  .footer-a2 .col-brand .ig { margin-top: 28px; }
  /* v31.11: <h4> ersetzt durch <p class="vh-col-label"> wegen heading-order a11y */
  .footer-a2 .col .vh-col-label {
    font-family: var(--ff-body);
    font-size: var(--font-micro);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--forest-1);
    margin: 0 0 16px;
  }
  .footer-a2 .col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .footer-a2 hr.vh-hairline { margin-top: 56px; }
  .footer-a2 .bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  /* v31.11.1: A3 Single-Line Compact entfernt — Single-Layout-Approach */

  /* ── Address slot for Kooperationen ───────────────────────────────── */
  .vh-address-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(168, 147, 114, 0.5);
  }
  .footer-a2 .col-brand .vh-address-block { margin-top: 28px; padding-top: 24px; }
  @media (max-width: 640px) {
    /* A2 — Mobile */
    .footer-a2 { padding: 48px 24px 28px; }
    .footer-a2 .grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-a2 .col-brand .tagline { margin-left: auto; margin-right: auto; }
    .footer-a2 .col-brand .ig { justify-content: center; }
    .footer-a2 .col ul { align-items: center; }
    .footer-a2 .bottom { flex-direction: column; gap: 12px; text-align: center; }
  }


/* ============================================================
   Motion-Reveal-System v31.10 — Mirror from style.css
   Overrides existing .reveal (Sprint v31.3) — supports both
   .is-in (legacy form.js toggle) AND .reveal-active (new JS).
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(var(--motion-distance-md));
  transition: opacity var(--motion-base) var(--ease-out-quart),
              transform var(--motion-base) var(--ease-out-quart);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-active,
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero {
  transform: translateY(var(--motion-distance-lg));
  transition-duration: var(--motion-slow);
}
.reveal-subtle { transform: translateY(var(--motion-distance-sm)); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero, .reveal-subtle {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   Motion Layer 3 v31.10 — Page-Transitions (Mirror from style.css)
   ============================================================ */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: vh-page-fade-out var(--motion-page) var(--ease-out-quart) forwards;
}
::view-transition-new(root) {
  animation: vh-page-fade-in var(--motion-page) var(--ease-out-quart) forwards;
}
@keyframes vh-page-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes vh-page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Step 9 REMOVED (v31.10 FCP-Fix): body-fade-Animation entfernt — blockierte
   Lighthouse First-Contentful-Paint (opacity 0 mit backwards-fill → NO_FCP). */

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ============================================================
   Glossy/Depth-System v31.14 — Mirror aus style.css (PASS 3).
   Newsletter nutzt eigenes Stylesheet → Tokens + Utilities hier dupliziert.
   Naming an Newsletter angepasst: --vanilla-2 (= --beige-1 Parity), --vanilla.
   ============================================================ */
:root {
  --radius-panel: 24px;
  --radius-card:  18px;
  --radius-tile:  16px;

  --surface-glossy-panel: linear-gradient(180deg, rgba(255,255,255,.60), rgba(247,239,222,.40));
  --surface-glossy-card:  linear-gradient(180deg, rgba(255,255,255,.55), rgba(247,239,222,.40));
  --surface-glossy-tile:  linear-gradient(160deg, rgba(255,255,255,.62), rgba(247,239,222,.40));

  --glass-border-warm: 1px solid rgba(207,191,157,.55);

  --shadow-glossy-panel: inset 0 1px 0 rgba(255,255,255,.55), 0 18px 48px -26px rgba(4,89,39,.30), 0 4px 14px -10px rgba(0,0,0,.10);
  --shadow-glossy-card:  inset 0 1px 0 rgba(255,255,255,.55), 0 10px 26px -18px rgba(4,89,39,.30), 0 3px 10px -8px rgba(0,0,0,.10);
  --shadow-glossy-tile:  inset 0 1px 0 rgba(255,255,255,.60), 0 10px 26px -18px rgba(4,89,39,.32), 0 3px 10px -8px rgba(0,0,0,.10);
  --shadow-glossy-hover: 0 14px 30px -12px rgba(4,89,39,.26);
}

.glossy-panel {
  background: var(--surface-glossy-panel);
  border: var(--glass-border-warm);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-glossy-panel);
}
.glossy-card {
  background: var(--surface-glossy-card);
  border: var(--glass-border-warm);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glossy-card);
}
.glossy-tile {
  background: var(--surface-glossy-tile);
  border: var(--glass-border-warm);
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-glossy-tile);
}
.glossy-h2::after {
  content: ""; display: block; width: 44px; height: 3px; margin-top: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-primary), rgba(4,89,39,0));
}

@media (hover: hover) {
  .glossy-card, .glossy-tile {
    transition: transform .2s cubic-bezier(.165,.84,.44,1), box-shadow .2s ease;
  }
  .glossy-card:hover, .glossy-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glossy-hover);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glossy-panel, .glossy-card { background: var(--vanilla-2); }
  .glossy-tile { background: var(--vanilla); }
}
@supports not (backdrop-filter: blur(1px)) {
  .glossy-panel, .glossy-card, .glossy-tile { background-color: rgba(247,239,222,.96); }
}
@media (prefers-reduced-motion: reduce) {
  .glossy-card:hover, .glossy-tile:hover { transform: none; }
}
