@charset "UTF-8";
/* ============================================================
   VitaFresh Landing — Premium Dark Manufaktur · Design 4c
   «Sektions-Rhythmus» mit Motion-Layer (Motion via JS, nie CSS-hidden)
   Palette: Schiefer-Dunkel, warmes Creme, VitaFresh-Grün als Akzent.
   Typo: Fraunces (Display) · Hanken Grotesk (Body) · Spline Sans Mono (Labels)
   ============================================================ */

:root {
  --slate-950: #0f1519;
  --slate-900: #151d23;
  --slate-850: #1a242b;
  --hairline-dark: rgba(233, 228, 216, 0.12);
  --hairline-strong: rgba(233, 228, 216, 0.22);

  --cream: #f4efe4;
  --cream-2: #ece5d4;
  --hairline-light: rgba(28, 34, 39, 0.14);

  --green: #8dc63f;
  --green-bright: #a6dc55;
  --green-ink: #44661a;
  --green-deep: #2f4d13;

  --ink: #1a2126;
  --ink-soft: #4c545a;
  --bone: #ece7da;
  --bone-soft: #a9a294;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.19, 1, .22, 1);

  --w-max: 1200px;
  --pad-x: clamp(20px, 5vw, 56px);
  --sec-y: clamp(84px, 12vw, 160px);
  --radius: 18px;
  --radius-md: 22px;
  --radius-lg: 26px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--slate-950);
  color: var(--bone);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Grain overlay — statisch, nur Viewport-gross (performant) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 4;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--green); color: var(--slate-950); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Keyframes ---------- */
@keyframes vfMarquee { to { transform: translateX(-50%); } }
@keyframes vfSettle { from { transform: scale(1.12); } to { transform: scale(1.02); } }
@keyframes vfPulse {
  0% { box-shadow: 0 0 0 0 rgba(141,198,63,.4); }
  70% { box-shadow: 0 0 0 26px rgba(141,198,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(141,198,63,0); }
}
@keyframes vfRipple { 0% { transform: scale(.4); opacity: .8; } 55% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes vfNudge { 0%, 12%, 100% { transform: scale(1); } 6% { transform: scale(.7); } }
@keyframes vfSteam { 0% { transform: translateY(2.5px); opacity: 0; } 35% { opacity: .95; } 100% { transform: translateY(-3.5px); opacity: 0; } }
@keyframes vfSealPulse { 0% { transform: scale(.55); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Shell ---------- */
.wrap { max-width: var(--w-max); margin: 0 auto; padding-inline: var(--pad-x); }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--green); }
.kicker.center::after { content: ""; width: 26px; height: 1px; background: var(--green); }
.light .kicker { color: var(--green-ink); }
.light .kicker::before, .light .kicker.center::after { background: var(--green-ink); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 480; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h2 em, h1 em { font-style: italic; font-weight: 420; color: var(--green-bright); }
.light h2 em { color: var(--green-ink); }

.lede { font-size: clamp(17px, 1.35vw, 21px); color: var(--bone-soft); max-width: 56ch; }
.light .lede { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 16px 30px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.btn .arrow { display: inline-block; }
.btn-solid { background: var(--green); color: #15230a; box-shadow: 0 8px 30px rgba(141,198,63,.22); }
.btn-ghost { border-color: var(--hairline-strong); color: var(--bone); padding: 15px 28px; }
.light .btn-ghost { border-color: rgba(28,34,39,.3); color: var(--ink); }

/* ---------- Announce + Glass-Header ---------- */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  text-align: center;
  font-size: 13px; letter-spacing: .02em;
  background: var(--green); color: #15230a;
  padding: 8px 16px;
}
.announce b { font-weight: 700; }
.announce-spacer { height: 37px; }
@media (max-width: 760px) { .announce { font-size: 12px; padding: 7px 12px; } }

.site-head {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 60;
  padding: 22px clamp(12px, 3vw, 32px) 0;
}
.head-pill {
  max-width: 1320px; margin: 0 auto;
  padding-inline: clamp(16px, 2.5vw, 28px);
  padding-right: 7px; /* symmetrisch zum vertikalen Button-Abstand in der Kapsel */
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: rgba(21,29,35,.32);
  backdrop-filter: blur(32px) saturate(2);
  -webkit-backdrop-filter: blur(32px) saturate(2);
  border: 1px solid rgba(236,231,218,.2);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
  transition: background .4s;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; }
.brand-lockup { height: 30px; width: auto; display: block; }
.brand-word { font-weight: 800; letter-spacing: 0.04em; font-size: 19px; color: var(--bone); }
.brand-word b { color: var(--green); font-weight: 800; }
.head-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.head-nav a:not(.btn) { text-decoration: none; color: #c5bfae; transition: color .25s; }
.head-nav a:not(.btn):hover { color: var(--bone); }
.head-nav .btn { padding: 11px 22px; font-size: 15px; }
@media (max-width: 760px) {
  .head-nav a:not(.btn) { display: none; }
  .site-head { top: 54px; padding-top: 14px; } /* Announce-Bar ist mobil zweizeilig */
  .head-pill { height: 56px; padding-right: 5px; }
  .brand-word { font-size: 17px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-lockup { height: 26px; }
  .head-nav .btn { padding: 9px 16px; font-size: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: vfSettle 2.6s var(--ease) forwards;
  filter: brightness(0.62) saturate(1.05);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,21,25,.55) 0%, rgba(15,21,25,.15) 40%, rgba(15,21,25,.92) 88%),
    radial-gradient(90% 60% at 18% 78%, rgba(15,21,25,.85) 0%, transparent 60%);
}
.hero .wrap { padding-block: 150px clamp(24px, 4vh, 44px); width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone); background: rgba(15,21,25,.5);
  border: 1px solid var(--hairline-strong);
  padding: 9px 18px; border-radius: 999px; margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero .lede { color: rgba(236,231,218,.82); margin-bottom: 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 30px; }
.hero-note { font-size: 14px; color: var(--bone-soft); }
.hero-note b { color: var(--green-bright); font-weight: 600; }


/* ---------- Marquee (Sprachmarker) ---------- */
.marquee {
  border-block: 1px solid var(--hairline-dark);
  background: var(--slate-900);
  overflow: hidden; white-space: nowrap;
  padding-block: 18px;
  touch-action: pan-y; /* horizontal wischen scrubbt das Band, vertikal scrollt die Seite */
  cursor: grab;
  user-select: none; -webkit-user-select: none;
}
.marquee-track { display: inline-flex; width: max-content; animation: vfMarquee 96s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px); color: var(--bone-soft);
  padding-inline: 34px; position: relative;
}
.marquee span b { color: var(--green-bright); font-weight: 500; margin-right: .2em; }
.marquee span::after {
  content: "✳"; position: absolute; right: -9px; color: var(--green); font-style: normal; font-size: 14px;
}

/* ---------- Sections + Geister-Ziffern ---------- */
section { position: relative; }
section[id] { scroll-margin-top: 128px; }
.sec { padding-block: var(--sec-y); overflow: hidden; }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head.center { text-align: center; max-width: 820px; margin-inline: auto; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head .kicker { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head h2:last-child { margin-bottom: 0; }
.sec .wrap { position: relative; }

.dark { background: var(--slate-950); color: var(--bone); }
.dark-2 { background: var(--slate-900); color: var(--bone); }
.light { background: var(--cream); color: var(--ink); }
.light h2, .light h3 { color: var(--ink); }

.ghost {
  position: absolute; top: 24px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(160px, 24vw, 340px); line-height: 1;
  color: rgba(236,231,218,.045);
  pointer-events: none; user-select: none;
}
.ghost.left { left: 12px; }
.ghost.right { right: 12px; }
.light .ghost { color: rgba(26,33,38,.05); }

/* ---------- Problem / Ad-Continuation ---------- */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.problem-copy h2 { margin-block: 18px 26px; }
.problem-copy p + p { margin-top: 1.2em; }
.problem-copy .body { color: var(--bone-soft); line-height: 1.7; }
.problem-copy .turn {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.4;
  color: var(--bone); border-left: 2px solid var(--green);
  padding-left: 22px; margin-top: 1.6em;
}
.problem-media { position: relative; }
.problem-media > img { border-radius: var(--radius-lg); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; height: auto; }
.problem-media .chip {
  position: absolute; left: clamp(-18px, -1vw, 12px); bottom: 34px;
  background: rgba(15,21,25,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--hairline-strong); border-radius: 14px;
  padding: 14px 18px; font-size: 14px; line-height: 1.45;
}
.problem-media .chip b { color: var(--green-bright); font-family: var(--font-mono); font-weight: 500; }

/* ---------- VSL ---------- */
.vsl-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; max-width: 980px; margin: 0 auto;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
  cursor: pointer;
}
.vsl-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.vsl-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: clamp(14px, 2vw, 22px); text-align: center;
  padding: clamp(16px, 3vw, 24px);
  color: var(--bone); /* liegt immer auf abgedunkeltem Video-Standbild, unabhängig vom Sektions-Theme */
}
/* Overlay ist ein <button> (Tastatur-Abspielbarkeit) — Browser-Defaults neutralisieren */
button.vsl-overlay {
  width: 100%; background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--bone);
}
.vsl-play {
  width: clamp(60px, 7vw, 92px); height: clamp(60px, 7vw, 92px); flex: none; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  animation: vfPulse 2.6s infinite;
}
.vsl-play svg { margin-left: 5px; }
.vsl-hook { font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 30px); max-width: 26ch; line-height: 1.3; text-wrap: balance; }
.vsl-hook em { font-style: italic; font-weight: 420; color: var(--green-bright); }
.vsl-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--green-bright); }
/* Mobil: 16/9 ist zu flach für Play-Button + Hook + Sub — Overlay lief unten aus dem Frame */
@media (max-width: 760px) { .vsl-frame { aspect-ratio: 3/4; } }
.vsl-frame.is-playing { cursor: default; }
.vsl-frame.is-playing img { display: none; }
@media (max-width: 760px) { .vsl-frame.is-playing { aspect-ratio: 16/9; } }
.vsl-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }
.vsl-endcta {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 24px; text-align: center;
  background: color-mix(in srgb, var(--slate-950) 88%, transparent);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.vsl-endcta[hidden] { display: none; }
.vsl-endcta-line { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 32px); color: var(--cream); text-wrap: balance; }
.vsl-replay {
  background: none; border: none; cursor: pointer; padding: 6px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-bright); opacity: .85;
}
.vsl-replay:hover { opacity: 1; }

/* ---------- Drei-Schritte-Journey ---------- */
.journey { position: relative; max-width: 960px; margin: 0 auto; }
.j-line { position: absolute; left: 21px; top: 24px; width: 2px; background: rgba(28,34,39,.12); }
.j-fill { position: absolute; left: 21px; top: 24px; width: 2px; height: 0; background: var(--green); }
.j-steps { display: flex; flex-direction: column; gap: clamp(36px, 6vw, 60px); position: relative; }
.j-step { display: grid; grid-template-columns: 44px 1fr; gap: clamp(16px, 3vw, 30px); align-items: start; }
.j-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid rgba(28,34,39,.25);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--green-ink);
  position: relative; z-index: 1;
}
.j-dot.clip { overflow: hidden; }
.j-dot .ripple { position: absolute; inset: 5px; border-radius: 50%; border: 1.5px solid currentColor; opacity: 0; pointer-events: none; }
.j-card { background: #fff; border: 1px solid var(--hairline-light); border-radius: var(--radius-md); overflow: hidden; }
.j-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); align-items: stretch; }
.j-copy { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 12px; }
.j-copy .n { font-family: var(--font-mono); color: var(--green-ink); font-size: 13px; letter-spacing: .16em; }
.j-copy h3 { font-size: clamp(20px, 1.7vw, 24px); }
.j-copy p { color: var(--ink-soft); font-size: 15.5px; }
.j-photo { overflow: hidden; min-height: 220px; }
.j-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Mobil: Schritte kompakt halten, damit die Packages innert ~3 Screens erreichbar bleiben */
@media (max-width: 760px) { .j-photo { display: none; } }

.abo-honest {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 24px; align-items: start;
  background: var(--slate-950); color: var(--bone);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px);
}
.abo-honest .sig {
  font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 2.2vw, 30px);
  color: var(--green-bright);
}
.abo-honest p { color: var(--bone-soft); max-width: 62ch; }
.abo-honest b { color: var(--bone); font-weight: 600; }
.dark .abo-honest { background: var(--slate-900); border: 1px solid var(--hairline-strong); }

/* ---------- Qualität / Beweise ---------- */
.quality-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.q-card {
  border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; background: var(--slate-900);
}
.q-card.media { min-height: 420px; }
.q-card.text { padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; }
.q-card.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.q-card.media .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px clamp(22px, 3vw, 36px);
  background: linear-gradient(transparent, rgba(15,21,25,.9));
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.q-card.text h3 { font-size: clamp(22px, 2vw, 28px); }
.q-card.text p { color: var(--bone-soft); font-size: 15.5px; }
.q-card.text .kicker { margin-bottom: auto; }
@media (max-width: 900px) { .q-card.media { min-height: 320px; } }

/* Lieferanten-Logo-Band */
.supplier-head {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hairline-dark);
  padding-top: 34px;
}
.supplier-head .lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-soft); }
.logo-band { overflow: hidden; margin-top: 26px; white-space: nowrap; }
.logo-track { display: flex; align-items: center; gap: clamp(48px, 6vw, 88px); width: max-content; animation: vfMarquee 32s linear infinite; }
.logo-track img { height: 38px; width: auto; flex: none; filter: grayscale(1) brightness(1.6); opacity: .55; transition: filter .5s ease, opacity .5s ease; }
.logo-track img.tall { height: 44px; filter: invert(.8) grayscale(1); }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(36px, 6vw, 90px); align-items: center; }
/* Founder-Duo: freigestellte Gründer wachsen aus dem dunklen Panel (23.07.2026, Pattern wie Abo-Kasten) */
.founder-media { position: relative; padding-inline: 7%; }
.founder-media::before {
  content: ""; position: absolute; inset: 40% 0 0 0;
  background: linear-gradient(180deg, var(--slate-850), var(--slate-950));
  border-radius: var(--radius-lg);
}
.founder-media img { position: relative; display: block; width: 100%; height: auto; }
.founder-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 420;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35; color: var(--ink);
  margin-bottom: 26px; text-wrap: balance;
}
.founder-copy .kicker { margin-bottom: 18px; }
.founder-copy p { color: var(--ink-soft); }
.founder-copy .bio p + p { margin-top: 1.1em; }
.founder-sign { margin-top: 26px; }
.founder-sign b { display: block; font-weight: 700; color: var(--ink); }
.founder-sign span { font-size: 14px; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.review-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(16px, 2vw, 24px); }
.review {
  border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  display: flex; flex-direction: column; gap: 18px;
}
.review .stars { color: var(--green); letter-spacing: 3px; font-size: 15px; }
.review blockquote { font-size: 16px; line-height: 1.6; color: var(--bone); flex: 1; }
.review blockquote b { color: var(--green-bright); font-weight: 600; }
.review .who { font-size: 14px; color: var(--bone-soft); }
.review .who b { color: var(--bone); font-weight: 600; display: block; }
.review-note { margin-top: 28px; font-size: 14.5px; color: var(--bone-soft); max-width: 70ch; }
.review-note b { color: var(--bone); }

/* ---------- Packages ---------- */
.pack-hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2vw, 26px); align-items: stretch;
  margin-bottom: clamp(20px, 3vw, 34px);
}
.pack-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--hairline-light);
  background: #fff;
  display: flex; flex-direction: column;
}
.pack-card.spot { box-shadow: 0 30px 70px rgba(28,34,39,.16); }
.pack-card .media { position: relative; aspect-ratio: 4/2.9; overflow: hidden; }
.pack-card .media img { width: 100%; height: 100%; object-fit: cover; }
.pack-card .tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(15,21,25,.82); color: var(--green-bright);
  backdrop-filter: blur(6px);
  padding: 7px 14px; border-radius: 999px;
}
.pack-card .body { padding: clamp(22px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pack-card h3 { font-size: clamp(22px, 2vw, 27px); }
.pack-card .for { font-size: 15px; color: var(--ink-soft); flex: 1; line-height: 1.6; }
.pack-card .meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--green-ink); letter-spacing: .06em; }
.pack-card .btn { justify-content: center; margin-top: 6px; }
.pack-card .fine { font-size: 13px; color: var(--ink-soft); text-align: center; }

.pack-lead { margin-bottom: 14px; font-size: 15px; color: var(--ink-soft); text-align: center; }
.pack-more { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 12px; }
.pack-mini {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--hairline-light); border-radius: 14px;
  padding: 16px 18px; text-decoration: none; background: rgba(255,255,255,.5);
  font-weight: 600; font-size: 15px; color: var(--ink);
}
.pack-mini .arrow { color: var(--green-ink); }
.pack-foot { margin-top: 26px; font-size: 14.5px; color: var(--ink-soft); text-align: center; }
.pack-foot b { color: var(--green-ink); }
.pack-proof {
  max-width: 640px; margin: clamp(28px, 4vw, 44px) auto; text-align: center;
  display: flex; flex-direction: column; gap: 10px;
}
.pack-proof .stars { color: var(--green-ink); letter-spacing: 3px; font-size: 15px; }
.pack-proof blockquote { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--ink); }
.pack-proof figcaption { font-size: 14px; color: var(--ink-soft); }
.pack-proof figcaption b { color: var(--ink); font-weight: 600; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.price-copy h2 { margin-block: 18px 26px; }
.price-copy .body { color: var(--bone-soft); line-height: 1.7; display: flex; flex-direction: column; gap: 16px; }
.price-copy .body b { color: var(--bone); font-weight: 600; }
.price-copy .free-ship { color: var(--bone); font-weight: 600; }
.price-anchor { display: flex; flex-direction: column; border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg); overflow: hidden; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 22px clamp(22px, 3vw, 34px);
  background: var(--slate-900);
}
.price-row + .price-row { border-top: 1px solid var(--hairline-dark); }
.price-row .what { font-size: 15.5px; color: var(--bone-soft); }
.price-row .amount { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); white-space: nowrap; }
.price-row.hero-row { background: var(--slate-850); }
.price-row.hero-row .what { color: var(--bone); font-weight: 600; }
.price-row.hero-row .amount { color: var(--green-bright); }
.promo {
  margin-top: 26px; border: 1px dashed rgba(141,198,63,.55); border-radius: 16px;
  padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  background: rgba(141,198,63,.06);
}
.promo .code {
  font-family: var(--font-mono); font-size: 18px; letter-spacing: .12em;
  background: var(--green); color: #15230a; font-weight: 600;
  padding: 8px 16px; border-radius: 10px;
}
.promo p { font-size: 14.5px; color: var(--bone-soft); flex: 1; min-width: 200px; line-height: 1.55; }
.promo p b { color: var(--bone); }

/* ---------- Delivery ---------- */
.delivery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.delivery-copy h2 { margin-block: 18px 26px; }
.delivery-copy .body { color: var(--ink-soft); display: flex; flex-direction: column; gap: 14px; }
.delivery-copy a { color: var(--green-ink); font-weight: 600; }
.delivery-table { display: flex; flex-direction: column; border: 1px solid var(--hairline-light); border-radius: var(--radius-lg); overflow: hidden; }
.delivery-row { display: flex; flex-direction: column; gap: 6px; padding: 16px 22px; }
@media (min-width: 640px) {
  .delivery-row { flex-direction: row; justify-content: space-between; gap: 16px; padding: 18px 22px; }
}
.delivery-row.alt { background: rgba(255,255,255,.55); }
.delivery-row + .delivery-row { border-top: 1px solid var(--hairline-light); }
.delivery-row .day { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-ink); }
.delivery-row .where { font-weight: 600; }
.delivery-note { padding: 14px 22px; border-top: 1px solid var(--hairline-light); font-size: 13px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq { border-bottom: 1px solid var(--hairline-light); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-size: clamp(18px, 1.7vw, 23px); font-weight: 500;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green-ink); }
.faq summary .ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--hairline-light);
  display: grid; place-items: center; font-family: var(--font-body); font-size: 17px;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.faq[open] summary .ico { transform: rotate(45deg); background: var(--green-ink); color: var(--cream); border-color: var(--green-ink); }
.faq .a { padding: 0 4px 26px; color: var(--ink-soft); max-width: 68ch; }
.faq .a p + p { margin-top: .8em; }

/* ---------- Final CTA ---------- */
.final {
  position: relative; isolation: isolate; overflow: hidden;
  text-align: center; background: var(--slate-950);
}
.final-bg { position: absolute; inset: 0; z-index: -2; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.38) saturate(1.05); }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 90% at 50% 100%, rgba(15,21,25,.3), rgba(15,21,25,.88)); }
.final .wrap { padding-block: clamp(110px, 16vw, 190px); display: flex; flex-direction: column; align-items: center; gap: 26px; }
.final h2 { font-size: clamp(36px, 5.4vw, 68px); max-width: 18ch; text-wrap: balance; }
.final .lede { margin-inline: auto; }
.final .slogan { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--green-bright); }

/* ---------- Footer ---------- */
.site-foot { background: var(--slate-950); border-top: 1px solid var(--hairline-dark); }
.site-foot .wrap {
  padding-block: 56px 42px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(28px, 5vw, 64px);
}
.site-foot h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-soft); margin-bottom: 16px; font-weight: 500; }
.site-foot p, .site-foot a { font-size: 14.5px; color: var(--bone-soft); text-decoration: none; line-height: 2; }
.site-foot a:hover { color: var(--bone); }
.foot-brand p { max-width: 34ch; line-height: 1.7; }
.foot-legal {
  grid-column: 1 / -1; border-top: 1px solid var(--hairline-dark);
  padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: var(--bone-soft);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none;
  transform: translateY(130%); opacity: 0;
}
.sticky-cta .btn {
  width: 100%; justify-content: center; font-size: 15px;
  /* Glass-Variante des grünen CTA: transluzent + Blur, analog zur Header-Pill.
     Transluzenter Hintergrund nimmt ihn bewusst aus dem JS-Hover/Sheen-Layer (der nur auf Voll-Grün greift). */
  background: rgba(141,198,63,.68);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.3);
}
@media (max-width: 760px) { .sticky-cta { display: block; } }

/* ---------- Quiz + «Deine Woche» (ersetzt Packages, 16.07.2026) ---------- */
.quiz { max-width: 880px; margin: 0 auto clamp(28px, 4vw, 44px); }
.qz-card {
  background: #fff; border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px);
}
.qz-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.qz-step { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--green-ink); }
.qz-dots { display: flex; gap: 6px; }
.qz-dot { width: 22px; height: 3px; border-radius: 2px; background: rgba(28,34,39,.15); }
.qz-dot.on { background: var(--green-ink); }
.qz-q { font-family: var(--font-display); font-weight: 480; font-size: clamp(22px, 3vw, 32px); color: var(--ink); margin-bottom: 4px; }
.qz-hint { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.qz-opts { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) {
  .qz-opts { grid-template-columns: 1fr 1fr; }
  .qz-opts[data-count="3"] { grid-template-columns: 1fr 1fr 1fr; }
}
.qz-opt {
  text-align: left; cursor: pointer; font: inherit;
  background: var(--cream); border: 1.5px solid rgba(28,34,39,.16);
  border-radius: 16px; padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 13px;
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.qz-opt:hover { border-color: var(--green-ink); transform: translateY(-1px); }
.qz-opt:focus-visible { outline: 2px solid var(--green-ink); outline-offset: 2px; }
.qz-opt.on { border-color: var(--green-ink); background: #fff; box-shadow: 0 6px 22px rgba(47,77,19,.12); }
.qz-opt b { display: block; font-size: 16px; color: var(--ink); font-weight: 600; }
.qz-opt .qz-txt span { font-size: 13.5px; color: var(--ink-soft); }
.qz-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47,77,19,.08); color: var(--green-ink);
  transition: background .2s, color .2s;
}
.qz-opt.on .qz-ico { background: var(--green-ink); color: #fff; }
.qz-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; }
.qz-back { background: none; border: none; cursor: pointer; font: inherit; font-size: 14px; color: var(--ink-soft); text-decoration: underline; padding: 6px 0; }
.qz-back:disabled { visibility: hidden; }
.btn.qz-next { border: none; }
.btn.qz-next:disabled { opacity: .4; cursor: default; }

/* PLZ-Check (Schritt 0) + Warteliste */
.qz-plz { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.qz-input {
  flex: 1 1 200px; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(28,34,39,.2);
  border-radius: 999px; padding: 13px 20px; min-width: 0;
}
.qz-input:focus-visible { outline: 2px solid var(--green-ink); outline-offset: 1px; border-color: var(--green-ink); }
.qz-input::placeholder { color: var(--ink-soft); }
.qz-plz .btn { border: none; cursor: pointer; }
.qz-err { color: #a03325; font-size: 14px; margin-top: 12px; }
.qz-err a { color: inherit; }
.qz-okbar {
  max-width: 880px; margin: 0 auto 14px;
  background: rgba(47,77,19,.09); color: var(--green-ink);
  border: 1px solid rgba(47,77,19,.22); border-radius: 14px;
  padding: 12px 18px; font-size: 14.5px; font-weight: 600;
}

/* Deine Woche */
.wk-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.wk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wk-chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: #fff; border: 1px solid rgba(28,34,39,.16); border-radius: 999px;
  padding: 6px 12px; color: var(--ink-soft);
}
.wk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 14px; }
.wk-card {
  background: #fff; border: 1px solid var(--hairline-light); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.wk-card .ph { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.wk-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.wk-card .info { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.wk-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--ink); }
.wk-meta { font-family: var(--font-mono); font-size: 12px; color: var(--green-ink); }
.wk-stars { color: var(--green-ink); font-size: 12px; letter-spacing: 2px; }
.wk-price { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.wk-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.wk-act {
  flex: 1; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(28,34,39,.2); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 7px 8px; transition: border-color .2s;
}
.wk-act:hover { border-color: var(--green-ink); color: var(--green-ink); }
.wk-add {
  width: 100%; margin-top: 14px; cursor: pointer; font: inherit; font-weight: 600; font-size: 14.5px;
  border: 1.5px dashed rgba(28,34,39,.25); background: none; color: var(--ink-soft);
  border-radius: 14px; padding: 14px;
}
.wk-add:hover { border-color: var(--green-ink); color: var(--green-ink); }
.wk-bar {
  position: sticky; bottom: 14px; z-index: 5; margin-top: 18px;
  background: var(--slate-950); color: var(--bone);
  border-radius: 18px; padding: 14px clamp(16px, 3vw, 24px);
  display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; justify-content: space-between;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.wk-total { font-size: 15px; }
.wk-total b { font-size: 24px; color: #fff; }
.wk-old { display: block; font-size: 13.5px; color: var(--bone-soft); margin-bottom: 2px; }
.wk-old s { text-decoration: line-through; }
.wk-badge { color: var(--green-bright); font-weight: 600; font-size: 12.5px; white-space: nowrap; }
.wk-per { font-size: 13.5px; color: var(--bone); }
.wk-next { display: block; font-size: 12.5px; color: var(--bone-soft); }
.wk-ship { font-size: 12.5px; color: var(--bone-soft); display: block; }
.wk-mode { display: flex; gap: 6px; background: var(--slate-850); border-radius: 999px; padding: 4px; }
.wk-mode button {
  cursor: pointer; font: inherit; font-size: 13px; font-weight: 600;
  border: none; background: none; color: var(--bone-soft); border-radius: 999px; padding: 7px 14px;
}
.wk-mode button.on { background: var(--green); color: #15230a; }
.wk-abo-note { font-size: 12px; color: var(--bone-soft); flex-basis: 100%; margin-top: -4px; }
@media (max-width: 640px) { .wk-bar .btn { width: 100%; justify-content: center; } }

/* Quiz-Modal (Übergabe-Hinweis) */
.qz-modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px; }
.qz-modal .veil { position: absolute; inset: 0; background: rgba(15,21,25,.72); }
.qz-modal .box {
  position: relative; background: var(--cream); color: var(--ink);
  border-radius: var(--radius-md); padding: clamp(26px, 4vw, 40px); max-width: 460px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.qz-modal h3 { font-size: 22px; margin-bottom: 10px; }
.qz-modal p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.qz-modal .close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink-soft); }

/* ---------- Review-Rotator am Quiz (echte 5★-Bewertungen) ----------
   Editorial-Zitat wie das Founder-Zitat: Serifen-Kursive, grosses «, Hairline-Band statt Kachel. */
.proof-slider {
  position: relative; max-width: 760px; margin: clamp(32px, 5vw, 52px) auto;
  padding: clamp(26px, 3.5vw, 38px) 44px;
  border-block: 1px solid var(--hairline-light);
}
.proof-slider::before {
  content: "«"; position: absolute; top: 2px; left: 42px;
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(80px, 10vw, 120px); line-height: 1;
  color: var(--green); opacity: .18; pointer-events: none;
}
.proof-slider .pack-proof { margin: 0 auto; max-width: 560px; }
.proof-track { position: relative; }
.proof-track .pack-proof { transition: opacity .5s var(--ease); }
.proof-track blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 420;
  font-size: clamp(19px, 2.1vw, 24px); line-height: 1.5; color: var(--ink);
  text-wrap: pretty;
}
.proof-track figcaption { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.proof-track figcaption b { color: var(--green-ink); font-weight: 500; }
.proof-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(28,34,39,.22); background: none; color: var(--ink);
  font-size: 20px; line-height: 1; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.proof-nav:hover { border-color: var(--green-ink); color: var(--green-ink); }
.proof-nav.prev { left: 0; }
.proof-nav.next { right: 0; }
.proof-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.proof-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(28,34,39,.2); cursor: pointer; transition: background .2s, transform .2s;
}
.proof-dots button.on { background: var(--green-ink); transform: scale(1.25); }
@media (max-width: 560px) { .proof-slider { padding-inline: 34px; } .proof-slider::before { left: 30px; } .proof-nav { width: 30px; height: 30px; font-size: 17px; } }


/* ---------- Zeit-Rechner (ersetzt Preis-Anker-Tabelle, 16.07.2026) ---------- */
.time-calc {
  border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  background: var(--slate-900); padding: clamp(26px, 3.4vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
}
.tc-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.tc-label { font-size: 15.5px; color: var(--bone-soft); }
.tc-value { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px); color: var(--bone); }
.tc-value b { color: var(--green-bright); font-weight: 500; }
.time-calc input[type="range"] {
  width: 100%; accent-color: var(--green); height: 32px; cursor: pointer;
  background: transparent;
}
.tc-rows { border: 1px solid var(--hairline-dark); border-radius: 16px; overflow: hidden; margin-top: 4px; }
.tc-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 16px clamp(18px, 2.4vw, 26px); background: var(--slate-950);
}
.tc-row + .tc-row { border-top: 1px solid var(--hairline-dark); }
.tc-row span { font-size: 15px; color: var(--bone-soft); }
.tc-row b { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.9vw, 25px); white-space: nowrap; }
.tc-row.hero-row { background: var(--slate-850); }
.tc-row.hero-row span { color: var(--bone); font-weight: 600; }
.tc-row.hero-row b { color: var(--green-bright); }
.tc-note { font-size: 15px; color: var(--bone); }
.tc-basis { font-size: 12.5px; color: var(--bone-soft); line-height: 1.5; }
.tc-row.rate-row { background: var(--slate-850); }
.tc-row.rate-row span { color: var(--bone); }
.tc-row.rate-row b { color: var(--green-bright); }
.tc-row[hidden] { display: none; }
.tc-rate { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.tc-rate label { font-size: 14px; color: var(--bone-soft); }
.tc-rate label span { font-size: 12px; opacity: .7; }
.tc-rate-input {
  display: flex; align-items: center; gap: 7px;
  background: var(--slate-850); border: 1px solid var(--hairline-dark); border-radius: 12px;
  padding: 9px 14px; font-size: 13px; color: var(--bone-soft);
}
.tc-rate-input > span { font-family: var(--font-mono); font-size: 12px; color: var(--bone-soft); }
.tc-rate-input input {
  width: 78px; background: none; border: none; outline: none;
  color: var(--bone); font: inherit; font-size: 15.5px;
  -moz-appearance: textfield; appearance: textfield;
}
.tc-rate-input input::-webkit-outer-spin-button,
.tc-rate-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tc-rate-input:focus-within { border-color: var(--green-bright); }

/* ---------- Herkunfts-Karten-Deck (Qualität-Sektion, 16.07.2026) ----------
   Split-Karten: Foto oben (4:3, nie Text über Gesichtern), Panel unten — wie j-card/review. */
.origin-lead { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-soft); margin-bottom: 18px; }
.origin-deck {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(74%, 300px);
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.origin-deck::-webkit-scrollbar { display: none; }
.origin-card {
  scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  display: flex; flex-direction: column;
}
.origin-card > img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.origin-card .o-label {
  padding: 16px 18px 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-bright);
}
.origin-card p { padding: 8px 18px 18px; font-size: 14.5px; line-height: 1.5; color: var(--bone); flex: 1; }
@media (min-width: 900px) {
  .origin-deck { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: unset; overflow: visible; }
}

