:root {
  --ink: #080806;
  --ink-2: #11100c;
  --ivory: #f6efe1;
  --ivory-2: #e7dcc9;
  --muted: #a59b87;
  --gold: #e0a12f;
  --gold-2: #ffd867;
  --green: #3d6d52;
  --green-2: #9eb58b;
  --clay: #a95238;
  --line-dark: rgba(246, 239, 225, 0.14);
  --line-light: rgba(8, 8, 6, 0.16);
  --font-display: 'Clash Display', 'Cabinet Grotesk', sans-serif;
  --font-sans: 'Cabinet Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --orbit-angle: 0deg;
  --story-progress: 0;
  --harvest-progress: 0;
  --active-hue: 38deg;
}

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

html {
  background: var(--ink);
  color: var(--ivory);
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(224, 161, 47, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 22%, rgba(61, 109, 82, 0.18), transparent 28rem),
    var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 5px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--gold-2);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s;
}

.cursor.hover-active {
  width: 56px;
  height: 56px;
  opacity: 0.7;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  color: var(--ivory);
  transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.site-nav.scrolled {
  background: rgba(8, 8, 6, 0.72);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-mark,
.nav-links a,
.nav-action {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.brand-mark {
  justify-self: start;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.nav-links a,
.nav-action {
  color: rgba(246, 239, 225, 0.82);
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.nav-links a:hover,
.nav-action:hover {
  color: var(--gold-2);
}

.nav-action {
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: end start;
  overflow: hidden;
  padding: clamp(5.6rem, 9svh, 7.5rem) 5vw clamp(1.5rem, 3svh, 2.5rem);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: clamp(5.8rem, 10svh, 7rem) 4vw clamp(1.2rem, 3svh, 3rem) auto;
  z-index: -2;
  width: min(72vw, 1150px);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0.9;
  transform: translateZ(0);
}

.hero-media::before,
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.95) 0%, rgba(8, 8, 6, 0.62) 23%, rgba(8, 8, 6, 0.08) 56%),
    radial-gradient(circle at 62% 42%, rgba(255, 216, 103, 0.18), transparent 35%);
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.1), rgba(8, 8, 6, 0.72));
}

.hero-media img {
  width: 100%;
  height: calc(100svh - clamp(7.2rem, 13svh, 10rem));
  object-fit: cover;
  filter: saturate(1.14) contrast(1.05);
}

.hero-grid {
  display: grid;
  max-width: 900px;
  gap: clamp(0.72rem, 1.8svh, 1.45rem);
}

.hero-kicker,
.section-eyebrow,
.product-index {
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid h1 {
  max-width: 11.5ch;
  color: #fff9eb;
  font-family: var(--font-display);
  font-size: clamp(4rem, min(8.8vw, 16.5svh), 10.4rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-grid p {
  max-width: 690px;
  color: rgba(246, 239, 225, 0.76);
  font-size: clamp(1.02rem, 1.28vw, 1.24rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(0.2rem, 1svh, 0.65rem);
}

.button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 1.35rem;
  color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  background: var(--ivory);
  color: var(--ink);
}

.button.ghost {
  background: rgba(8, 8, 6, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-ledger {
  position: absolute;
  right: 5vw;
  bottom: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(7rem, 1fr));
  width: min(42rem, 48vw);
  border-top: 1px solid var(--line-dark);
}

.hero-ledger div {
  padding: clamp(0.5rem, 1.5svh, 1rem) 1rem 0 0;
}

.hero-ledger span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.hero-ledger small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gravity-story {
  position: relative;
  min-height: 520vh;
  background:
    linear-gradient(180deg, var(--ink) 0%, #0b0c08 42%, #14120d 100%);
}

.story-pin {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(24rem, 1.2fr) minmax(19rem, 0.9fr);
  align-items: center;
  min-height: 100svh;
  gap: 3vw;
  overflow: hidden;
  padding: clamp(5.6rem, 9svh, 7rem) 5vw clamp(1.8rem, 4svh, 4rem);
}

.story-pin::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(224, 161, 47, 0.1));
}

.story-copy {
  position: relative;
  z-index: 5;
}

.story-copy h2,
.harvest-heading h2,
.collection-top h2,
.source-copy h2 {
  max-width: 10ch;
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, min(6.2vw, 12svh), 6.6rem);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: 0;
}

.story-intro {
  max-width: 25rem;
  margin-top: clamp(0.8rem, 1.7svh, 1.35rem);
  color: rgba(246, 239, 225, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.orbit-stage {
  position: relative;
  z-index: 3;
  width: min(48vw, 640px, 72svh);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  transform: translateZ(0);
}

.orbit-stage::before,
.orbit-stage::after {
  content: '';
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-stage::before {
  z-index: 0;
  border: 1px solid rgba(255, 216, 103, 0.18);
  box-shadow: 0 0 90px rgba(224, 161, 47, 0.16), inset 0 0 90px rgba(61, 109, 82, 0.12);
}

.orbit-stage::after {
  inset: 23%;
  z-index: 1;
  background:
    radial-gradient(circle, rgba(255, 216, 103, 0.16), transparent 48%),
    radial-gradient(circle at 40% 38%, rgba(255, 255, 255, 0.12), transparent 18%);
  filter: blur(2px);
}

.orbit-ring {
  position: absolute;
  inset: -4%;
  z-index: 4;
  border-radius: 50%;
  transform: rotate(var(--orbit-angle));
  will-change: transform;
  backface-visibility: hidden;
}

.orbit-image {
  position: absolute;
  width: 28%;
  height: 28%;
  z-index: 2;
  border: 1px solid rgba(246, 239, 225, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  filter: saturate(1.06) contrast(1.04);
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--orbit-angle)));
  scale: 1;
  transition: opacity 0.35s var(--ease-out), filter 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), scale 0.35s var(--ease-out);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.orbit-image.is-active {
  z-index: 8;
  scale: 1.14;
  border-color: rgba(255, 216, 103, 0.54);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52), 0 0 48px rgba(255, 216, 103, 0.18);
}

.image-one {
  top: 6%;
  left: 50%;
}

.image-two {
  top: 50%;
  left: 94%;
}

.image-three {
  top: 94%;
  left: 50%;
}

.image-four {
  top: 50%;
  left: 6%;
}

.bean-core {
  position: absolute;
  inset: 31%;
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 248, 225, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(224, 161, 47, 0.18), rgba(61, 109, 82, 0.12)),
    rgba(8, 8, 6, 0.62);
  border: 1px solid rgba(255, 216, 103, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bean-core span {
  width: 28%;
  height: 70%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 216, 103, 0.5), transparent 15%),
    linear-gradient(155deg, #0d0805, #3b1c0f 42%, #110906);
  box-shadow: 0 0 40px rgba(224, 161, 47, 0.28);
  rotate: 28deg;
}

.progress-orbit {
  position: absolute;
  inset: 13%;
  z-index: 3;
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 67%, #000 68%);
  -webkit-mask: radial-gradient(circle, transparent 67%, #000 68%);
  background: conic-gradient(from -90deg, var(--gold-2) calc(var(--story-progress) * 1turn), rgba(246, 239, 225, 0.08) 0);
  opacity: 0.9;
}

.chapter-window {
  position: relative;
  z-index: 5;
  min-height: 28rem;
}

.chapter {
  position: absolute;
  inset: 50% 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-40%) translateX(24px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.chapter.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.chapter span {
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter h3 {
  max-width: 10ch;
  margin-top: 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, min(4.6vw, 9.4svh), 5.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
}

.chapter p {
  max-width: 28rem;
  margin-top: 1.2rem;
  color: rgba(246, 239, 225, 0.7);
  font-size: 1.06rem;
  line-height: 1.72;
}

.harvest-band {
  position: relative;
  min-height: 360svh;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  overflow: clip;
}

.harvest-pin {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(30rem, 1.22fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 4vw, 5rem);
  min-height: 100svh;
  padding: clamp(5.5rem, 10svh, 8rem) 5vw clamp(1.8rem, 4svh, 3rem);
  overflow: hidden;
}

.harvest-pin::before {
  content: '';
  position: absolute;
  inset: auto -10% -38%;
  height: 62%;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(var(--harvest-progress) * 100%) 44%, rgba(169, 82, 56, 0.22), transparent 20rem),
    radial-gradient(circle at 70% 62%, rgba(61, 109, 82, 0.18), transparent 24rem);
}

.harvest-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: end;
}

.harvest-heading .section-eyebrow,
.collection-top .section-eyebrow,
.source-copy .section-eyebrow,
.product-index {
  color: #875922;
}

.harvest-heading h2,
.collection-top h2,
.source-copy h2 {
  max-width: 12ch;
}

.harvest-heading h2 {
  grid-column: 2;
}

.harvest-flywheel {
  position: relative;
  grid-column: 1 / -1;
  min-height: min(43svh, 28rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  perspective: 1200px;
}

.harvest-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(30rem, 39vw);
  min-height: min(31svh, 20rem);
  padding: clamp(1.3rem, 2vw, 2rem);
  border: 1px solid var(--line-light);
  background: rgba(246, 239, 225, 0.72);
  box-shadow: 0 32px 80px rgba(45, 29, 13, 0.08);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.harvest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.34), transparent 36%, rgba(169, 82, 56, 0.08));
  opacity: 0.72;
}

.harvest-card span {
  color: #755332;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.harvest-card strong {
  display: block;
  max-width: 11ch;
  margin-top: clamp(2.8rem, 6svh, 5rem);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, min(3.6vw, 7svh), 4.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.harvest-card p {
  max-width: 22rem;
  margin-top: 1.2rem;
  color: rgba(8, 8, 6, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.harvest-track {
  grid-column: 1 / -1;
  align-self: end;
  height: 2px;
  background: rgba(8, 8, 6, 0.12);
}

.harvest-track span {
  display: block;
  width: calc(var(--harvest-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, #875922, var(--clay), var(--green));
}

.collection-lab {
  position: relative;
  padding: 8rem 0 10rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(169, 82, 56, 0.2), transparent 22rem),
    linear-gradient(180deg, #f8f1e5, #efe2ce);
  color: var(--ink);
  overflow: hidden;
}

.collection-lab::before {
  content: '';
  position: sticky;
  top: 8rem;
  display: block;
  width: min(42vw, 34rem);
  height: min(42vw, 34rem);
  margin: 0 5vw -34rem auto;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 38%, rgba(224, 161, 47, 0.28), transparent 18%),
    conic-gradient(from 120deg, rgba(61, 109, 82, 0.16), transparent, rgba(169, 82, 56, 0.22), transparent);
  filter: blur(0.2px);
  opacity: 0.75;
}

.collection-top {
  display: grid;
  grid-template-columns: minmax(1rem, 0.4fr) minmax(20rem, 1fr) minmax(1rem, 0.4fr);
  padding: 0 5vw 6rem;
}

.collection-top .section-eyebrow {
  grid-column: 2;
}

.collection-top h2 {
  grid-column: 2;
  margin-top: 1rem;
}

.product-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1.28fr);
  align-items: center;
  min-height: 100svh;
  gap: 5vw;
  padding: 4rem 5vw;
  border-top: 1px solid var(--line-light);
}

.product-row::before {
  content: attr(data-label);
  position: absolute;
  right: 5vw;
  top: 3rem;
  color: rgba(8, 8, 6, 0.07);
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 16rem);
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.product-row:nth-of-type(even) {
  grid-template-columns: minmax(24rem, 1.28fr) minmax(18rem, 0.72fr);
}

.product-row:nth-of-type(even) .product-copy {
  order: 2;
}

.product-row:nth-of-type(even) .product-media {
  order: 1;
}

.product-copy {
  position: sticky;
  top: 8rem;
}

.product-copy h3 {
  max-width: 11ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6vw, 7.4rem);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: 0;
}

.product-copy p {
  max-width: 32rem;
  margin-top: 1.25rem;
  color: rgba(8, 8, 6, 0.68);
  font-size: 1.06rem;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: 1.8rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: '';
  width: 4.5rem;
  height: 1px;
  margin: 0.62rem 0 0 0.8rem;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.text-link:hover::after {
  width: 7rem;
}

.product-media {
  position: relative;
  height: min(78svh, 880px);
  overflow: hidden;
  border-radius: 2px;
  background: #d7c6aa;
  box-shadow: 0 42px 110px rgba(45, 29, 13, 0.18);
}

.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 8, 6, 0.18));
}

.product-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  will-change: transform;
}

.source-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(20rem, 0.9fr);
  align-items: center;
  min-height: 100svh;
  gap: 5vw;
  overflow: hidden;
  padding: 8rem 5vw;
  background: var(--ink);
}

.source-section::before {
  content: '';
  position: absolute;
  inset: 12% -12% auto auto;
  width: min(52vw, 48rem);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 216, 103, 0.13) 49%, transparent 50%),
    radial-gradient(circle, transparent 63%, rgba(61, 109, 82, 0.16) 64%, transparent 65%);
  transform: rotate(calc(var(--story-progress) * 180deg));
}

.source-visual {
  min-height: 74svh;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.2), rgba(8, 8, 6, 0.75)),
    url('../images/vanilla_footer_bg.png') center / cover no-repeat;
  filter: saturate(1.12) contrast(1.06);
}

.source-copy {
  position: relative;
  z-index: 2;
}

.source-copy h2 {
  color: var(--ivory);
}

.source-copy p {
  max-width: 36rem;
  margin: 1.4rem 0 2rem;
  color: rgba(246, 239, 225, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
  padding: 3rem 5vw;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: rgba(246, 239, 225, 0.72);
}

.site-footer div {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 8rem);
  font-weight: 650;
  line-height: 0.8;
  letter-spacing: 0;
}

.site-footer p,
.back-to-top {
  max-width: 34rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory);
  padding: 0.9rem 1.1rem;
}

.no-motion-runtime .chapter {
  position: static;
  opacity: 1;
  transform: none;
  margin-bottom: 2rem;
}

@media (pointer: fine) {
  *,
  a,
  button {
    cursor: none;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (max-width: 1180px) {
  .story-pin {
    grid-template-columns: 0.9fr 1.2fr;
  }

  .story-copy {
    grid-column: 1;
  }

  .orbit-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(58vw, 660px);
  }

  .chapter-window {
    grid-column: 1;
    min-height: 20rem;
  }
}

@media (max-width: 860px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    padding: 1rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    font-size: 0.82rem;
    letter-spacing: 0.26em;
  }

  .nav-action {
    padding: 0.7rem 1rem;
    font-size: 0.68rem;
  }

  .hero-shell {
    min-height: 100svh;
    padding: 6.7rem 1.25rem 2rem;
  }

  .hero-media {
    inset: 4rem 0 0 0;
    width: 100%;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 6, 0.2), rgba(8, 8, 6, 0.2) 45%, rgba(8, 8, 6, 0.9) 86%),
      linear-gradient(90deg, rgba(8, 8, 6, 0.42), transparent 70%);
  }

  .hero-media img {
    height: 100svh;
  }

  .hero-grid {
    align-self: end;
    gap: 1rem;
  }

  .hero-grid h1 {
    max-width: 8ch;
    font-size: clamp(4.2rem, 19vw, 6.8rem);
  }

  .hero-grid p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .button {
    min-height: 3.2rem;
    padding: 0 1rem;
    font-size: 0.68rem;
  }

  .hero-ledger {
    position: static;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
  }

  .hero-ledger div {
    padding-right: 0.6rem;
  }

  .hero-ledger span {
    font-size: 1.65rem;
  }

  .hero-ledger small {
    font-size: 0.58rem;
  }

  .gravity-story {
    min-height: 430svh;
  }

  .story-pin {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-rows: min-content 1fr minmax(10.5rem, 24svh);
    min-height: 100svh;
    height: 100svh;
    gap: clamp(0.45rem, 1.2svh, 0.8rem);
    padding: clamp(4.9rem, 10svh, 5.4rem) 1.25rem clamp(0.85rem, 1.8svh, 1.1rem);
  }

  .story-copy h2,
  .harvest-heading h2,
  .collection-top h2,
  .source-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .story-copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    width: 100%;
  }

  .story-copy h2 {
    max-width: 18ch;
    margin-top: 0.28rem;
    font-size: clamp(1.08rem, 4.7vw, 1.45rem);
    line-height: 0.94;
  }

  .story-intro {
    display: none;
  }

  .orbit-stage {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    top: auto;
    align-self: center;
    width: min(78vw, 38svh, 340px);
    margin: 0 auto;
  }

  .orbit-ring {
    inset: -2%;
  }

  .orbit-image {
    width: 27%;
    height: 27%;
  }

  .orbit-image.is-active {
    scale: 1.12;
  }

  .bean-core {
    inset: 32%;
  }

  .chapter-window {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    width: 100%;
    height: min(24svh, 12.25rem);
    min-height: 10.5rem;
    margin-top: 0;
    overflow: hidden;
    align-self: end;
  }

  .chapter {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    margin-bottom: 0;
    padding: 0 0 0 0.9rem;
    width: 100%;
    border-left: 1px solid rgba(255, 216, 103, 0.38);
    transition: opacity 0.38s var(--ease-out), transform 0.38s var(--ease-out);
  }

  .chapter.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .chapter h3 {
    max-width: 16ch;
    margin-top: 0.38rem;
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
    line-height: 0.94;
  }

  .chapter p {
    max-width: 38ch;
    margin-top: 0.5rem;
    font-size: clamp(0.74rem, 3.1vw, 0.84rem);
    line-height: 1.34;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .chapter span {
    font-size: 0.65rem;
  }

  .harvest-band {
    min-height: auto;
    padding: 0;
  }

  .harvest-pin {
    position: relative;
    display: block;
    min-height: auto;
    padding: 6rem 1.25rem;
  }

  .harvest-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .harvest-heading h2 {
    margin-top: 1rem;
  }

  .harvest-flywheel {
    min-height: auto;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    perspective: none;
  }

  .harvest-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    padding: 2rem 0;
    border: none;
    border-bottom: 1px solid var(--line-light);
    background: transparent;
    box-shadow: none;
    transform: none !important;
    opacity: 1 !important;
  }

  .harvest-card:last-child {
    border-bottom: none;
  }

  .harvest-card strong {
    margin-top: 2.2rem;
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .harvest-track {
    display: none;
  }

  .collection-lab {
    padding: 5rem 0 6rem;
  }

  .collection-top {
    display: block;
    padding: 0 1.25rem 3rem;
  }

  .product-row,
  .product-row:nth-of-type(even) {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 2rem;
    padding: 4rem 1.25rem;
  }

  .product-row:nth-of-type(even) .product-copy,
  .product-row:nth-of-type(even) .product-media {
    order: initial;
  }

  .product-copy {
    position: static;
  }

  .product-copy h3 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .product-media {
    width: 100%;
    height: min(62svh, 520px);
  }

  .product-media img {
    height: 100%;
  }

  .source-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.25rem;
  }

  .source-visual {
    min-height: 56svh;
    order: 2;
  }

  .source-copy {
    order: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 2.5rem 1.25rem;
  }
}

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