@font-face {
  font-family: "Fraunces Soft";
  src: url("fonts/FrauncesSoft-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Fraunces Soft";
  src: url("fonts/FrauncesSoft-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

:root {
  --ink: #251f1d;
  --muted: #6f625c;
  --line: #ddd6d0;
  --cream: #f7f4ef;
  --stone: #ece8e1;
  --clay: #b58d73;
  --moss: #8c9b82;
  --blue: #2f4768;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 62px;
  padding: 11px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(221, 214, 208, 0.72);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 128px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  min-width: 58px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 600 0.82rem/1 "Plus Jakarta Sans", Arial, sans-serif;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font: 600 0.88rem/1 "Plus Jakarta Sans", Arial, sans-serif;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.muted {
  border-color: var(--line);
  background: var(--cream);
  color: var(--ink);
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 4vw, 56px);
}

.section.compact {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces Soft", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 6.4vw, 6.8rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 4.5vw, 4.55rem);
}

h3 {
  font-size: clamp(1.28rem, 1.85vw, 1.95rem);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.hero {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(48px, 6vw, 84px) clamp(20px, 4vw, 56px) 0;
  background: var(--cream);
}

.hero-copy {
  align-self: center;
  padding-bottom: 56px;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-product {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
}

.hero-product img {
  width: min(520px, 100%);
  max-height: calc(100vh - 110px);
  object-fit: contain;
  object-position: bottom center;
}

.hero-product-scene {
  min-height: 560px;
  background: #f7efe5;
}

.hero-product-scene img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.product-hero-bg {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - 62px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px) clamp(44px, 7vw, 82px);
  overflow: hidden;
  background: #f7efe5;
}

.product-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 68%, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.82) 22%, rgba(247, 244, 239, 0.38) 44%, rgba(247, 244, 239, 0) 68%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.56) 0%, rgba(247, 244, 239, 0.24) 32%, rgba(247, 244, 239, 0.05) 72%, rgba(247, 244, 239, 0) 100%);
}

.product-hero-bg .hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  padding-bottom: clamp(8px, 2vw, 18px);
}

.product-hero-bg .lead {
  max-width: 520px;
  margin-top: 22px;
  color: #4d423d;
}

.product-hero-bg .small-copy {
  max-width: 520px;
}

.lions-mane-hero .product-hero-media {
  background: #f3eadc;
}

.lions-mane-hero .product-hero-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.lions-mane-hero .product-hero-media::after {
  background:
    radial-gradient(ellipse at 22% 64%, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.82) 24%, rgba(247, 244, 239, 0.38) 46%, rgba(247, 244, 239, 0) 70%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.72) 0%, rgba(247, 244, 239, 0.34) 34%, rgba(247, 244, 239, 0.04) 68%, rgba(247, 244, 239, 0) 100%);
}

.lions-mane-hero .hero-copy {
  text-shadow: 0 1px 18px rgba(255, 253, 249, 0.68);
}

.cordyceps-powder-hero .product-hero-media {
  background: #f8ecde;
}

.cordyceps-powder-hero .product-hero-media img {
  object-position: center;
}

.cordyceps-powder-hero .product-hero-media::after {
  background:
    radial-gradient(ellipse at 22% 62%, rgba(247, 244, 239, 0.97) 0%, rgba(247, 244, 239, 0.84) 25%, rgba(247, 244, 239, 0.38) 47%, rgba(247, 244, 239, 0) 72%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.7) 0%, rgba(247, 244, 239, 0.34) 35%, rgba(247, 244, 239, 0.04) 72%, rgba(247, 244, 239, 0) 100%);
}

.hero-product-cutout {
  position: relative;
  overflow: visible;
}

.hero-product-cutout::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(360px, 70%);
  height: 34px;
  transform: translateX(-50%);
  background: rgba(37, 31, 29, 0.16);
  border-radius: 50%;
  filter: blur(12px);
}

.hero-product-cutout img {
  position: relative;
  z-index: 1;
  width: min(430px, 86%);
  filter: drop-shadow(0 28px 30px rgba(37, 31, 29, 0.18));
}

.brand-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - 136px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px) clamp(44px, 7vw, 82px);
  overflow: hidden;
  background: var(--cream);
}

.brand-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.brand-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04) brightness(1.04);
}

.brand-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 68%, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.82) 22%, rgba(247, 244, 239, 0.38) 44%, rgba(247, 244, 239, 0) 68%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.56) 0%, rgba(247, 244, 239, 0.24) 32%, rgba(247, 244, 239, 0.05) 72%, rgba(247, 244, 239, 0) 100%);
}

.brand-hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  padding-bottom: clamp(8px, 2vw, 18px);
  animation: heroCopyIn 760ms ease-out both;
}

.brand-hero h1 {
  max-width: none;
  font-size: clamp(4.2rem, 11vw, 10.5rem);
  line-height: 0.9;
}

.brand-hero .lead {
  max-width: 520px;
  margin-top: 22px;
  color: #4d423d;
}

.brand-hero .hero-actions {
  margin-top: 30px;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero-copy {
    animation: none;
  }

  .about-video-media video {
    animation: none;
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof {
  min-height: 130px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof:last-child {
  border-right: 0;
}

.proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.split.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.media-panel {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-panel.contain img {
  width: 78%;
  height: auto;
  min-height: auto;
  object-fit: contain;
}

.infographic-section {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background: #fff;
}

.product-facts-section {
  background: #fff;
}

.real-benefits-section {
  padding-top: clamp(42px, 5vw, 66px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.formula-separator {
  position: relative;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  padding: clamp(28px, 4vw, 42px) 0;
  text-align: center;
}

.formula-separator::before,
.formula-separator::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(280px, 48vw);
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
}

.formula-separator::before {
  top: 0;
}

.formula-separator::after {
  bottom: 0;
}

.formula-separator p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.formula-separator span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-infographic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.benefit-grid,
.product-grid,
.info-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid,
.info-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.benefit,
.product-card,
.info-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.benefit::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 42px;
  border: 6px double var(--moss);
  border-radius: 50%;
}

.benefit p,
.product-card p,
.info-card p,
.small-copy {
  color: var(--muted);
}

.tone-band {
  background: var(--ink);
  color: var(--white);
}

.tone-band .lead,
.tone-band .small-copy,
.tone-band .eyebrow {
  color: #d7ccc3;
}

.tone-band .spec-list li {
  color: var(--ink);
}

.testing-band .spec-list {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.testing-band .spec-list li {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.testing-band .spec-list span {
  color: #d7ccc3;
}

.testing-band[id] {
  scroll-margin-top: 74px;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.report-copy .lead {
  max-width: 620px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.testing-band .report-actions .button.secondary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.testing-band .split-actions .button.secondary {
  border-color: var(--white);
  color: var(--white);
}

.report-note,
.report-detail-copy {
  color: #d7ccc3;
}

.report-note {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.report-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.report-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.report-card-top span,
.report-kicker,
.report-results span {
  color: #d7ccc3;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-card-top strong {
  font-size: 0.92rem;
}

.report-status {
  margin: 24px 0;
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: clamp(1.4rem, 2.1vw, 2.2rem);
  line-height: 1.08;
}

.report-meta {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
}

.report-meta div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.report-meta dt {
  color: #d7ccc3;
  font-size: 0.78rem;
  font-weight: 600;
}

.report-meta dd {
  margin: 0;
  font-size: 0.86rem;
}

.report-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.report-results article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.report-results strong {
  display: block;
  margin-top: 42px;
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.report-results p {
  margin: 12px 0 0;
  color: #d7ccc3;
  font-size: 0.9rem;
}

.report-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  margin-top: clamp(42px, 6vw, 72px);
  align-items: start;
}

.report-detail-grid h3 {
  max-width: 500px;
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.report-detail-copy {
  max-width: 460px;
}

.report-checks {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.report-checks li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.report-checks span {
  color: #d7ccc3;
}

.report-info-section {
  background: #fff;
}

.report-light-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.report-light-card .report-kicker {
  color: var(--moss);
}

.report-light-meta {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
}

.report-light-meta div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 18px;
  background: var(--white);
}

.report-light-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.report-light-meta dd {
  margin: 0;
  font-size: 0.9rem;
}

.report-light-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(36px, 5vw, 64px);
  background: var(--line);
  border: 1px solid var(--line);
}

.report-light-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
}

.report-light-grid span {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-light-grid strong {
  display: block;
  margin-top: 42px;
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.report-light-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mushroom-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: stretch;
}

.mushroom-guide-copy {
  align-self: center;
}

.mushroom-guide-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mushroom-guide-tabs {
  display: grid;
  align-content: stretch;
  background: var(--cream);
  border-right: 1px solid var(--line);
}

.mushroom-guide-tabs button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: 600 0.78rem/1 "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
}

.mushroom-guide-tabs button:last-child {
  border-bottom: 0;
}

.mushroom-guide-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
}

.mushroom-guide-content {
  display: flex;
  align-items: stretch;
}

.mushroom-guide-content article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.mushroom-guide-content article[hidden] {
  display: none;
}

.mushroom-guide-content span {
  color: var(--moss);
  font: 600 0.78rem/1 "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0.12em;
}

.mushroom-guide-content h3 {
  max-width: 420px;
  margin-top: 42px;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
}

.mushroom-guide-content p {
  max-width: 480px;
  color: var(--muted);
}

.mushroom-3d-section {
  padding-left: 0;
  padding-right: 0;
  background: #f8f6f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mushroom-3d-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  padding: 0 clamp(20px, 4vw, 56px);
}

.mushroom-3d-intro h2 {
  max-width: 620px;
}

.mushroom-3d-stage {
  position: relative;
  min-height: clamp(560px, 72vh, 780px);
  margin-top: clamp(34px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 253, 249, 0.84), rgba(247, 244, 239, 0.32) 36%, rgba(37, 31, 29, 0.08) 68%, rgba(37, 31, 29, 0.12)),
    linear-gradient(180deg, #f8f6f1 0%, #eee8df 100%);
}

.mushroom-3d-canvas {
  display: block;
  width: 100%;
  height: clamp(560px, 72vh, 780px);
}

.mushroom-3d-status {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: 22px;
  z-index: 4;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.mushroom-3d-status.is-hidden {
  display: none;
}

.mushroom-labels,
.mushroom-connectors {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.mushroom-connectors {
  z-index: 2;
}

.mushroom-connectors line {
  stroke: rgba(37, 31, 29, 0.36);
  stroke-width: 0.16;
  vector-effect: non-scaling-stroke;
  opacity: 0;
}

.mushroom-connectors line.is-visible {
  opacity: 1;
}

.mushroom-hotspot {
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid var(--moss);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(140, 155, 130, 0.16), 0 12px 24px rgba(37, 31, 29, 0.12);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  cursor: pointer;
  pointer-events: auto;
}

.mushroom-hotspot.is-visible {
  opacity: 1;
}

.mushroom-hotspot:hover,
.mushroom-hotspot:focus-visible,
.mushroom-hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.18);
}

.mushroom-hotspot::after {
  content: attr(data-hotspot-title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 170px;
  padding: 7px 9px;
  border: 1px solid rgba(37, 31, 29, 0.14);
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(37, 31, 29, 0.1);
  font: 600 0.72rem/1 "Plus Jakarta Sans", Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.mushroom-hotspot:hover::after,
.mushroom-hotspot:focus-visible::after,
.mushroom-hotspot.is-label-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.mushroom-detail-rail {
  position: absolute;
  top: 50%;
  right: clamp(20px, 7vw, 120px);
  z-index: 4;
  width: min(330px, 28vw);
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.mushroom-detail-rail article {
  padding: 14px 16px;
  border: 1px solid rgba(37, 31, 29, 0.12);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 42px rgba(37, 31, 29, 0.08);
  transition: border-color 160ms ease, background 160ms ease;
}

.mushroom-detail-rail article.is-active {
  border-color: rgba(140, 155, 130, 0.72);
  background: rgba(255, 253, 249, 0.98);
}

.mushroom-detail-rail strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.mushroom-detail-rail span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

.mushroom-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mushroom-comparison article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
}

.mushroom-comparison span {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mushroom-comparison h3 {
  margin-top: 42px;
}

.mushroom-comparison p {
  color: var(--muted);
}

.selector-section {
  background: var(--cream);
  padding-top: clamp(42px, 5vw, 62px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.selector-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 20px;
}

.product-selector {
  color: var(--white);
}

.selector-frame {
  --selector-accent: #b8b4ad;
  --product-scale: 1;
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 10px solid color-mix(in srgb, var(--selector-accent) 42%, var(--cream));
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 253, 249, 0.16), transparent 30%),
    linear-gradient(135deg, #3e403d, #242724);
}

.selector-topline {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.selector-card {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(118px, 12vw, 164px);
  aspect-ratio: 1;
  padding: 18px 16px;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(184, 180, 173, 0.18), transparent 58%),
    #fffdf9;
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: left 360ms ease, right 360ms ease, top 360ms ease, transform 360ms ease, opacity 240ms ease, background 180ms ease;
}

.selector-card img {
  width: 68%;
  max-height: 66px;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.9;
  filter: contrast(0.9);
}

.selector-card span {
  margin-top: 0;
  font: 600 clamp(1rem, 1.45vw, 1.45rem)/1.05 "Fraunces Soft", Georgia, serif;
  text-align: center;
}

.selector-card em {
  margin-top: 5px;
  color: var(--ink);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
}

.selector-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.selector-card.pos-left {
  left: clamp(18px, 7vw, 104px);
  top: 196px;
  transform: rotate(-13deg);
}

.selector-card.pos-right {
  right: clamp(18px, 7vw, 104px);
  top: 196px;
  transform: rotate(13deg);
}

.selector-card.pos-low {
  left: 50%;
  top: 292px;
  transform: translateX(-50%) rotate(0deg) scale(0.9);
}

.selector-card:hover {
  background: #fffdf9;
  transform: translateY(-8px) rotate(0deg);
}

.selector-card.is-behind {
  left: 50%;
  right: auto;
  top: 74px;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50%) scale(0.76) rotate(0deg);
  pointer-events: none;
}

.selector-card.is-side {
  z-index: 3;
  opacity: 1;
}

.selector-frame.is-switching .selector-card.is-behind {
  opacity: 0;
  transform: translateX(-50%) translateY(64px) scale(0.62) rotate(0deg);
}

.selector-product-link {
  position: absolute;
  left: 50%;
  bottom: 154px;
  z-index: 2;
  transform: translateX(-50%);
  display: block;
}

.selector-product-image {
  width: min(300px, 26vw);
  height: 340px;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.34));
  transition: opacity 180ms ease, transform 220ms ease;
  transform: scale(var(--product-scale));
  transform-origin: center bottom;
}

.selector-product-link:hover .selector-product-image {
  transform: translateY(-8px) scale(var(--product-scale));
}

.selector-floor {
  position: absolute;
  left: 50%;
  bottom: 136px;
  width: min(300px, 42%);
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(18px);
  opacity: 0.7;
}

.selector-copy {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 4;
  width: min(820px, calc(100% - 48px));
  transform: translateX(-50%);
  text-align: center;
}

.selector-kicker {
  margin: 0 0 8px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selector-copy h3 {
  font-size: clamp(1.42rem, 2.35vw, 2.55rem);
  text-wrap: balance;
}

.selector-copy p:not(.selector-kicker) {
  max-width: 520px;
  margin: 10px auto 0;
  color: rgba(255, 253, 249, 0.8);
}

.selector-copy .button {
  margin-top: 12px;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.mushroom-story {
  background: #fefefe;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mushroom-story-inner {
  position: relative;
}

.mushroom-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
  margin-bottom: 52px;
}

.mushroom-story-copy .eyebrow::after {
  content: "";
  display: block;
  width: 210px;
  height: 1px;
  margin-top: 16px;
  background: var(--line);
}

.mushroom-story-copy h2 {
  max-width: 600px;
  margin-top: 40px;
}

.mushroom-story-copy .lead {
  max-width: 520px;
  color: #191716;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.mushroom-story-art {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mushroom-story-art img {
  width: min(500px, 100%);
  filter: contrast(1.02);
}

.mushroom-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #cfc8c1;
}

.mushroom-points article {
  min-height: 405px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid #cfc8c1;
  border-bottom: 1px solid #cfc8c1;
  background: #fefefe;
}

.mushroom-points article:nth-child(2n) {
  border-right: 0;
}

.mushroom-points article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mushroom-points span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.mushroom-points img {
  display: block;
  width: min(250px, 60%);
  height: 128px;
  margin: 10px auto 34px;
  object-fit: contain;
  filter: contrast(1.03);
}

.mushroom-points h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.mushroom-points p {
  max-width: 440px;
  margin: 12px 0 0;
  color: #191716;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.mushroom-standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px 14px 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.mushroom-standards div {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.mushroom-standards span {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.mushroom-standards strong {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f4ef 0%, #eee8e1 100%);
  border-top: 1px solid var(--line);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.process-intro h2 {
  max-width: 720px;
  scroll-margin-top: 92px;
}

.process-intro .lead {
  margin-top: 0;
  max-width: 520px;
}

.process-intro-side {
  display: grid;
  gap: 24px;
}

.process-illustrations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(37, 31, 29, 0.12);
  border: 1px solid rgba(37, 31, 29, 0.12);
}

.process-illustrations figure {
  min-height: 190px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  justify-items: center;
  margin: 0;
  padding: 20px 18px 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0) 66%),
    rgba(255, 253, 249, 0.72);
}

.process-illustrations img {
  width: min(150px, 82%);
  height: 132px;
  object-fit: contain;
  filter: contrast(1.05);
}

.process-illustrations figure:first-child img {
  width: min(132px, 76%);
}

.process-illustrations figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-flow {
  --process-grow: 0;
  position: relative;
  width: min(880px, 100%);
  margin: 0 auto;
}

.process-spine {
  position: absolute;
  top: 18px;
  bottom: 84px;
  left: 33px;
  width: 2px;
  overflow: hidden;
  background: rgba(37, 31, 29, 0.14);
}

.process-spine::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleY(var(--process-grow));
  transform-origin: top;
  background: linear-gradient(180deg, var(--clay), #d89a47 62%, var(--moss));
  transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  padding-bottom: clamp(36px, 5vw, 58px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(37, 31, 29, 0.16);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(37, 31, 29, 0.06);
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.process-step.is-visible .process-node {
  border-color: rgba(181, 141, 115, 0.68);
  box-shadow: 0 0 0 7px rgba(181, 141, 115, 0.1), 0 18px 36px rgba(37, 31, 29, 0.08);
}

.process-step-featured.is-visible .process-node {
  border-color: #d89a47;
  background: #fff8ed;
  box-shadow: 0 0 0 8px rgba(216, 154, 71, 0.13), 0 22px 42px rgba(37, 31, 29, 0.1);
}

.process-node svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 260ms ease;
}

.process-node circle,
.process-node path:last-child {
  fill: none;
}

.process-node circle {
  fill: currentColor;
  stroke: none;
}

.process-step.is-visible .process-node svg {
  stroke: var(--clay);
}

.process-step-featured.is-visible .process-node svg {
  stroke: #d08a2f;
}

.process-copy {
  max-width: 640px;
  padding: 6px 0 0;
}

.process-copy span {
  color: var(--moss);
  font: 600 0.76rem/1 "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0.14em;
}

.process-copy h3 {
  margin-top: 8px;
}

.process-copy p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.process-standards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 84px);
  background: var(--line);
  border: 1px solid var(--line);
}

.process-standards article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 253, 249, 0.76);
}

.process-standards article::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 36px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--moss) 0 3px, transparent 4px);
}

.process-standards strong {
  display: block;
  font-size: 0.96rem;
}

.process-standards p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-close {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(36px, 5vw, 62px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(37, 31, 29, 0.14);
}

.process-close p {
  max-width: 620px;
  margin: 0;
  font-family: "Fraunces Soft", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.14;
}

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

  .process-spine::after,
  .process-step,
  .process-node,
  .process-node svg {
    transition: none;
  }

  .process-flow {
    --process-grow: 1;
  }

  .process-step {
    opacity: 1;
    transform: none;
  }
}

.pattern-band {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background: #000;
}

.pattern-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/indus-pattern.png");
  background-repeat: repeat-x;
  background-size: auto 170px;
  filter: invert(1) grayscale(1) contrast(1.25);
  opacity: 0.82;
}

.page-hero {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 4vw, 56px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.55rem, 5.5vw, 5.8rem);
}

.about-video-hero {
  position: relative;
  min-height: clamp(560px, 78svh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(84px, 11vw, 140px) clamp(20px, 4vw, 56px) clamp(54px, 7vw, 88px);
  overflow: hidden;
  background: #eee8df;
  border-bottom: 1px solid var(--line);
}

.about-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-video-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.98) brightness(1.04);
}

.about-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 66%, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.86) 28%, rgba(247, 244, 239, 0.46) 52%, rgba(247, 244, 239, 0) 78%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.74) 0%, rgba(247, 244, 239, 0.34) 38%, rgba(247, 244, 239, 0.08) 76%, rgba(247, 244, 239, 0) 100%);
}

.about-video-copy {
  position: relative;
  z-index: 1;
}

.about-video-copy h1 {
  font-size: clamp(2.55rem, 5.5vw, 5.8rem);
}

.about-video-copy .lead {
  max-width: 640px;
  color: #463b36;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-card .button {
  margin-top: auto;
}

.product-visual {
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card:not(.featured) .product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-visual-tight {
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  padding: 0;
}

.product-card:not(.featured) .product-visual-tight img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-grid .product-visual img {
  filter: saturate(0.58) contrast(0.92) brightness(1.04);
  opacity: 0.84;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.product-grid .product-card:hover .product-visual img,
.product-grid .product-card:focus-within .product-visual img {
  filter: grayscale(0) saturate(0.94) contrast(1) brightness(1);
  opacity: 1;
  transform: scale(1.015);
}

.placeholder-pack {
  width: 170px;
  height: 250px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--stone), var(--stone)) 0 52% / 100% 1px no-repeat,
    linear-gradient(160deg, rgba(181, 141, 115, 0.22), transparent 48%),
    var(--white);
}

.placeholder-pack.powder {
  width: 210px;
  height: 220px;
  border-radius: 8px 8px 28px 28px;
}

.spec-list,
.faq-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.spec-list li,
.faq-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px;
  background: var(--white);
}

.spec-list strong,
.faq-item strong {
  font-weight: 600;
}

.packaging-note {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 36px;
  padding: 32px;
  background: var(--cream);
}

.packaging-note img {
  width: 100%;
}

.footer {
  padding: 52px clamp(20px, 4vw, 56px);
  background: #000;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer img {
  width: 136px;
  filter: invert(1);
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 13px 0;
  }

  .hero,
  .split,
  .split.reverse,
  .process-intro,
  .report-layout,
  .report-detail-grid,
  .mushroom-guide,
  .mushroom-3d-intro,
  .mushroom-story-hero,
  .selector-intro,
  .packaging-note,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--cream);
  }

  .brand-hero {
    min-height: calc(100svh - 104px);
    align-items: flex-end;
    padding-top: 82px;
  }

  .about-video-hero {
    min-height: 620px;
    padding-top: 82px;
  }

  .about-video-media video {
    object-position: 56% center;
  }

  .product-hero-bg {
    min-height: calc(100svh - 104px);
    align-items: flex-end;
    padding-top: 82px;
  }

  .brand-hero-media video {
    object-position: center;
  }

  .product-hero-media img {
    object-position: center;
  }

  .lions-mane-hero .product-hero-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-position: 68% center;
    opacity: 1;
  }

  .cordyceps-powder-hero .product-hero-media img {
    object-position: 68% center;
  }

  .brand-hero-media::after {
    background:
      radial-gradient(ellipse at 38% 72%, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.82) 28%, rgba(247, 244, 239, 0.36) 54%, rgba(247, 244, 239, 0) 76%),
      linear-gradient(0deg, rgba(247, 244, 239, 0.62) 0%, rgba(247, 244, 239, 0.08) 54%);
  }

  .about-video-media::after {
    background:
      radial-gradient(ellipse at 38% 70%, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.88) 34%, rgba(247, 244, 239, 0.48) 62%, rgba(247, 244, 239, 0.08) 84%),
      linear-gradient(0deg, rgba(247, 244, 239, 0.66) 0%, rgba(247, 244, 239, 0.12) 62%);
  }

  .product-hero-media::after {
    background:
      radial-gradient(ellipse at 38% 72%, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.82) 28%, rgba(247, 244, 239, 0.36) 54%, rgba(247, 244, 239, 0) 76%),
      linear-gradient(0deg, rgba(247, 244, 239, 0.62) 0%, rgba(247, 244, 239, 0.08) 54%);
  }

  .lions-mane-hero .product-hero-media::after {
    background:
      radial-gradient(ellipse at 34% 60%, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.9) 34%, rgba(247, 244, 239, 0.48) 60%, rgba(247, 244, 239, 0.08) 82%),
      linear-gradient(0deg, rgba(247, 244, 239, 0.64) 0%, rgba(247, 244, 239, 0.08) 60%);
  }

  .cordyceps-powder-hero .product-hero-media::after {
    background:
      radial-gradient(ellipse at 34% 64%, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.9) 34%, rgba(247, 244, 239, 0.46) 62%, rgba(247, 244, 239, 0.08) 84%),
      linear-gradient(0deg, rgba(247, 244, 239, 0.64) 0%, rgba(247, 244, 239, 0.08) 60%);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-product {
    min-height: 430px;
  }

  .hero-product-scene {
    min-height: 460px;
  }

  .selector-frame {
    min-height: 560px;
  }

  .selector-product-image {
    width: min(265px, 44vw);
    height: 315px;
    max-height: 315px;
  }

  .selector-card.pos-left {
    left: 20px;
    top: 178px;
  }

  .selector-card.pos-right {
    right: 20px;
    top: 178px;
  }

  .hero-product-cutout {
    overflow: hidden;
  }

  .proof-strip,
  .benefit-grid,
  .info-grid,
  .process-standards,
  .report-results,
  .report-light-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mushroom-comparison {
    grid-template-columns: 1fr;
  }

  .mushroom-detail-rail {
    width: min(300px, 30vw);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mushroom-story-art {
    min-height: 420px;
    order: -1;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 122px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-hero {
    min-height: calc(100svh - 90px);
    padding: 74px 18px 42px;
  }

  .about-video-hero {
    min-height: 590px;
    padding: 74px 18px 42px;
  }

  .about-video-copy .lead {
    max-width: 94%;
  }

  .product-hero-bg {
    min-height: calc(100svh - 90px);
    padding: 74px 18px 42px;
  }

  .brand-hero h1 {
    font-size: clamp(3.8rem, 21vw, 6.8rem);
  }

  .hero-product {
    min-height: 360px;
  }

  .selector-frame {
    min-height: 660px;
    border-width: 8px;
    border-radius: 24px;
  }

  .selector-topline {
    left: 20px;
    right: 20px;
  }

  .selector-card {
    width: 116px;
    padding: 14px 10px;
  }

  .selector-card img {
    width: 64%;
    max-height: 44px;
    margin-bottom: 10px;
  }

  .selector-card em {
    font-size: 0.68rem;
  }

  .selector-card small {
    font-size: 0.66rem;
  }

  .selector-card.pos-left,
  .selector-card.pos-right {
    top: 138px;
  }

  .selector-product-link {
    bottom: 258px;
  }

  .selector-product-image {
    width: min(190px, 54vw);
    height: 232px;
    max-height: 232px;
  }

  .selector-floor {
    bottom: 246px;
    width: min(210px, 52%);
  }

  .selector-copy {
    bottom: 18px;
  }


  .proof-strip,
  .benefit-grid,
  .product-grid,
  .mushroom-points,
  .info-grid,
  .process-standards,
  .report-results,
  .report-light-grid {
    grid-template-columns: 1fr;
  }

  .process-intro .lead {
    margin-top: 0;
  }

  .process-illustrations {
    grid-template-columns: 1fr 1fr;
  }

  .process-illustrations figure {
    min-height: 150px;
    padding: 18px 12px 14px;
  }

  .process-illustrations img {
    height: 104px;
  }

  .process-flow {
    width: 100%;
  }

  .process-spine {
    left: 27px;
    bottom: 66px;
  }

  .process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }

  .process-node {
    width: 56px;
    height: 56px;
  }

  .process-node svg {
    width: 30px;
    height: 30px;
  }

  .process-standards article {
    min-height: auto;
    padding: 24px;
  }

  .process-standards article::before {
    margin-bottom: 24px;
  }

  .report-card {
    padding: 22px;
  }

  .report-card-top,
  .report-meta div,
  .report-light-meta div,
  .report-checks li {
    grid-template-columns: 1fr;
  }

  .report-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-results article {
    min-height: auto;
  }

  .report-light-grid article {
    min-height: auto;
  }

  .report-results strong {
    margin-top: 28px;
  }

  .report-light-grid strong {
    margin-top: 28px;
  }

  .mushroom-3d-stage {
    min-height: 560px;
  }

  .mushroom-3d-canvas {
    height: 560px;
  }

  .mushroom-hotspot {
    width: 14px;
    height: 14px;
  }

  .mushroom-guide-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mushroom-guide-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mushroom-guide-tabs button {
    min-height: 50px;
    padding: 14px;
    border-right: 1px solid var(--line);
  }

  .mushroom-guide-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .mushroom-guide-content article {
    min-height: 250px;
    padding: 24px;
  }

  .mushroom-guide-content h3 {
    margin-top: 28px;
  }

  .mushroom-connectors {
    display: none;
  }

  .mushroom-detail-rail {
    position: static;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
    background: #eee8df;
  }

  .mushroom-detail-rail article {
    box-shadow: none;
  }

  .mushroom-detail-rail strong {
    font-size: 0.88rem;
  }

  .mushroom-detail-rail span {
    font-size: 0.76rem;
  }

  .mushroom-comparison {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mushroom-comparison article {
    min-height: auto;
    padding: 24px;
  }

  .mushroom-comparison h3 {
    margin-top: 28px;
  }

  .mushroom-standards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .media-panel {
    min-height: 380px;
  }

  .mushroom-points article {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid #cfc8c1;
  }

  .mushroom-points article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #cfc8c1;
  }

  .mushroom-points article:last-child {
    border-bottom: 0;
  }

  .mushroom-points span {
    margin-bottom: 20px;
  }

  .mushroom-story-art {
    min-height: 320px;
  }

  .mushroom-story-art img {
    width: min(340px, 100%);
  }

  .spec-list li,
  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lions-mane-page .product-infographic {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lions-mane-page .product-infographic img {
    width: 680px;
    max-width: none;
  }
}
