:root {
  --bg: #f7f5ee;
  --bg-deep: #edf2e8;
  --surface: #fffdf8;
  --surface-soft: #f0f5ec;
  --text: #18231b;
  --muted: #657266;
  --line: rgba(31, 61, 43, 0.14);
  --brand: #2d7653;
  --brand-dark: #173f2b;
  --gold: #c49a4a;
  --gold-soft: #e8d39d;
  --cream: #fff8ea;
  --shadow: 0 30px 80px rgba(23, 63, 43, 0.14);
  --shadow-soft: 0 14px 34px rgba(23, 63, 43, 0.08);
  --radius: 8px;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 154, 74, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 8%, rgba(45, 118, 83, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg), #fbfaf6 46%, var(--bg-deep));
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(31, 61, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 61, 43, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 74%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(31, 61, 43, 0.1);
  background: rgba(247, 245, 238, 0.82);
  backdrop-filter: blur(14px);
  transition:
    background 360ms var(--ease),
    box-shadow 360ms var(--ease),
    border-color 360ms var(--ease);
}

.site-header.scrolled {
  border-color: rgba(31, 61, 43, 0.12);
  background: rgba(247, 245, 238, 0.94);
  box-shadow: 0 10px 30px rgba(23, 63, 43, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 8px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 850;
  transition: color 300ms var(--ease);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24), 0 12px 28px rgba(23, 63, 43, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 300ms var(--ease);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.68);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 104px 0 76px;
}

.catalog-hero,
.product-detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(196, 154, 74, 0.22), transparent 25rem),
    radial-gradient(circle at 8% 16%, rgba(45, 118, 83, 0.2), transparent 30rem),
    linear-gradient(135deg, #f8f6ef, #edf3e8 52%, #f7f5ee);
}

.catalog-hero::before,
.product-detail-hero::before {
  position: absolute;
  right: -180px;
  top: 50%;
  width: min(72vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(45, 118, 83, 0.16);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
  background:
    repeating-conic-gradient(from 0deg, rgba(45, 118, 83, 0.13) 0deg 1deg, transparent 1deg 8deg),
    radial-gradient(circle, transparent 0 48%, rgba(196, 154, 74, 0.12) 49% 50%, transparent 51%);
  opacity: 0.6;
  animation: slowSpin 80s linear infinite;
  pointer-events: none;
}

@keyframes slowSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(196, 154, 74, 0));
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 6vw, 5.85rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section .lead,
.info-block .lead {
  color: var(--muted);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease),
    border-color 260ms var(--ease);
}

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

.button.primary {
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 34px rgba(198, 161, 91, 0.22);
}

.button.primary:hover {
  box-shadow: 0 24px 44px rgba(198, 161, 91, 0.3);
}

.button.secondary {
  color: var(--brand-dark);
  border-color: rgba(31, 61, 43, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(23, 63, 43, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--brand-dark);
  font-weight: 900;
}


.text-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 34px;
}

.metric-row span {
  padding: 16px;
  border: 1px solid rgba(31, 61, 43, 0.12);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  backdrop-filter: blur(10px);
}

.metric-row strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-showcase,
.catalog-showcase {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-showcase::before,
.catalog-showcase::before {
  position: absolute;
  inset: 9% 2% 5% 9%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42% 58% 38% 62%;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(235, 244, 228, 0.78));
  box-shadow: var(--shadow);
}

.hero-showcase img,
.catalog-showcase img {
  position: absolute;
  inset: 6% 0 auto 11%;
  width: min(78%, 470px);
  aspect-ratio: 4 / 5;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(23, 63, 43, 0.22);
  transform: rotate(-2deg);
}

.curation-board {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.curation-board::before {
  position: absolute;
  inset: 7% 4% 4% 8%;
  z-index: -1;
  border: 1px solid rgba(227, 203, 152, 0.28);
  border-radius: 2px;
  content: "";
  background:
    linear-gradient(rgba(227, 203, 152, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 203, 152, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 241, 225, 0.76));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
}

.board-orbit {
  position: absolute;
  border: 1px solid rgba(196, 154, 74, 0.45);
  border-radius: 999px;
  animation: orbitFloat 9s ease-in-out infinite;
}

.orbit-one {
  right: 10%;
  top: 10%;
  width: 170px;
  height: 170px;
}

.orbit-two {
  left: 2%;
  bottom: 11%;
  width: 230px;
  height: 230px;
  animation-delay: -3s;
}

.board-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(227, 203, 152, 0.28);
  border-radius: 2px;
  background: rgba(250, 247, 241, 0.9);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.board-card span,
.board-card small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-card strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-dark);
  line-height: 1.1;
}

.board-card-large {
  left: 13%;
  top: 16%;
  width: min(290px, 70vw);
  padding: 28px;
}

.board-card-large strong {
  color: var(--gold);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-family: var(--font-display);
  font-weight: 500;
}

.board-card-small {
  width: min(240px, 58vw);
  padding: 17px 18px;
}

.board-card-small.top {
  right: 3%;
  top: 20%;
}

.board-card-small.middle {
  right: 12%;
  top: 50%;
}

.board-card-small.bottom {
  left: 3%;
  bottom: 14%;
}

.board-dots i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(196, 154, 74, 0.12);
}

.board-dots i:nth-child(1) {
  left: 42%;
  top: 12%;
}

.board-dots i:nth-child(2) {
  right: 22%;
  top: 42%;
}

.board-dots i:nth-child(3) {
  left: 20%;
  bottom: 34%;
}

.board-dots i:nth-child(4) {
  right: 8%;
  bottom: 21%;
}

.board-dots i:nth-child(5) {
  left: 52%;
  bottom: 11%;
}

.board-dots i:nth-child(6) {
  left: 8%;
  top: 36%;
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

.catalog-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(198, 161, 91, 0.28);
  border-bottom: 1px solid rgba(198, 161, 91, 0.28);
  background: var(--brand-dark);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.marquee-track span {
  padding: 18px 26px;
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.showcase-shell {
  position: relative;
  min-height: inherit;
}

.showcase-card {
  position: absolute;
  z-index: 2;
  width: min(250px, 62vw);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.showcase-card.top {
  right: 0;
  top: 16%;
}

.showcase-card.bottom {
  left: 0;
  bottom: 15%;
}

.showcase-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  right: 7%;
  top: 12%;
  width: 120px;
  height: 120px;
  background: rgba(196, 154, 74, 0.25);
}

.orb-two {
  left: 0;
  bottom: 11%;
  width: 170px;
  height: 170px;
  background: rgba(45, 118, 83, 0.14);
}

.floating-card,
.media-badge {
  position: absolute;
  z-index: 2;
  width: min(240px, 58vw);
  padding: 16px 18px;
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: 2px;
  background: rgba(250, 247, 241, 0.92);
  box-shadow: 0 24px 50px rgba(23, 63, 43, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.media-badge strong {
  display: block;
  color: var(--brand-dark);
}

.floating-card span,
.media-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-top {
  right: 0;
  top: 18%;
}

.card-bottom {
  left: 0;
  bottom: 15%;
}

.compact-section {
  padding-top: 10px;
}

.editorial-strip {
  padding-top: 56px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.editorial-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.editorial-points div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.editorial-points span {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--gold);
}

.editorial-points strong {
  color: var(--brand-dark);
}

.editorial-points p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 72px 0;
}

.trust-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid > div,
.feature-card,
.ingredient-card,
.info-block,
.product-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
}

.tilt-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(circle at var(--tilt-x, 50%) var(--tilt-y, 50%), rgba(196, 154, 74, 0.18), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.tilt-card:hover {
  border-color: rgba(196, 154, 74, 0.42);
  box-shadow: 0 26px 60px rgba(23, 63, 43, 0.16);
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg))
    translateY(-6px);
}

.tilt-card:hover::after {
  opacity: 1;
}

.trust-grid > div {
  padding: 24px;
}

.trust-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

.trust-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.trust-grid p,
.feature-card p,
.info-block p,
.cta-panel p,
.product-card p,
.section-heading p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 530px;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(160px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px;
}

.product-card-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-card-copy {
  max-width: 520px;
}

.product-meta {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card p {
  margin: 10px 0 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(31, 61, 43, 0.12);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(237, 246, 231, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.editorial-block {
  padding: clamp(28px, 5vw, 48px);
}

.editorial-block p:last-child {
  max-width: 760px;
  font-size: 1.08rem;
}

.disclosure {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.95rem;
}

.page-hero {
  padding: 54px 0 44px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb:hover {
  color: var(--brand-dark);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.product-media {
  position: sticky;
  top: 104px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(227, 203, 152, 0.24);
  border-radius: 2px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(243, 233, 211, 0.86));
  box-shadow: var(--shadow);
}

.product-glow {
  position: absolute;
  inset: auto -20% -20% 10%;
  z-index: -1;
  width: 70%;
  height: 42%;
  border-radius: 999px;
  background: rgba(196, 154, 74, 0.22);
  filter: blur(30px);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(23, 63, 43, 0.14);
}

.media-badge {
  left: 34px;
  right: 34px;
  bottom: 34px;
  width: auto;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.product-rail {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: flex;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(16px);
}

.product-rail a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-rail a:hover {
  color: var(--brand-dark);
  background: rgba(237, 246, 231, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.info-block {
  padding: clamp(24px, 4vw, 34px);
}

.info-block h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.check-list,
.note-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.note-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before,
.note-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 0.75rem;
  font-weight: 950;
}

.check-list li::before {
  content: "✓";
}

.note-list li::before {
  content: "!";
}

.product-deep-dive {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.36), rgba(237, 242, 232, 0.58));
}

.story-section {
  padding-top: 54px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card,
.research-card,
.mini-card,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-soft);
}

.story-card {
  padding: 28px;
}

.story-card span,
.offer-card span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.story-card h3 {
  margin-top: 28px;
  color: var(--brand-dark);
}

.story-card p {
  color: var(--muted);
}

.science-section {
  padding-top: 48px;
}

.science-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.science-copy {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    radial-gradient(circle at top left, rgba(196, 154, 74, 0.16), transparent 18rem),
    rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.science-copy p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-soft);
}

.compare-card.positive {
  background:
    linear-gradient(180deg, rgba(237, 246, 231, 0.88), rgba(255, 253, 248, 0.86));
}

.compare-card.warm {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.9), rgba(255, 253, 248, 0.86));
}

.compare-card h3 {
  font-size: 1.35rem;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--muted);
}

.research-section {
  padding-top: 42px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.research-card {
  min-height: 190px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.2), transparent 9rem),
    rgba(255, 253, 248, 0.84);
}

.research-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.research-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-card,
.ingredient-card {
  padding: 26px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.feature-card:hover,
.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card span,
.ingredient-index {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(196, 154, 74, 0.9), rgba(45, 118, 83, 0.9)),
    var(--brand);
}

.feature-card h3,
.ingredient-card h3 {
  color: var(--brand-dark);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.ingredient-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  appearance: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ingredient-card p {
  color: var(--muted);
}

.ingredient-card strong:last-child {
  margin-top: auto;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 950;
}

.ingredient-card.is-active {
  border-color: rgba(196, 154, 74, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.ingredient-spotlight {
  position: sticky;
  top: 148px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(196, 154, 74, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at right top, rgba(196, 154, 74, 0.24), transparent 13rem),
    linear-gradient(145deg, var(--brand-dark), #0e291c);
  box-shadow: var(--shadow);
}

.ingredient-spotlight span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-spotlight h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 1.8rem;
}

.ingredient-spotlight p {
  color: rgba(255, 255, 255, 0.76);
}

.additional-formula {
  padding-top: 44px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  padding: 26px;
}

.mini-card h3 {
  color: var(--brand-dark);
}

.mini-card p {
  color: var(--muted);
}

.routine-section {
  padding-top: 54px;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.routine-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.routine-card::after {
  position: absolute;
  right: -44px;
  top: -44px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  content: "";
  background: rgba(45, 118, 83, 0.1);
}

.routine-card span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 950;
}

.routine-card h3 {
  margin-top: 26px;
}

.routine-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.dark-block {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(196, 154, 74, 0.24), transparent 18rem),
    linear-gradient(145deg, var(--brand-dark), #0e291c);
}

.dark-block .eyebrow,
.dark-block h2 {
  color: #fff;
}

.dark-block .eyebrow::before {
  background: var(--gold);
}

.timeline-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.timeline-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.timeline-list strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.cta-panel {
  padding: clamp(30px, 6vw, 56px);
}

.product-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(198, 161, 91, 0.25), transparent 20rem),
    linear-gradient(135deg, #fffdf8, var(--cream));
}

.product-cta::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  content: "";
  background: rgba(45, 118, 83, 0.12);
}

.compact-notes {
  max-width: 780px;
}

.offer-section {
  padding-top: 44px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.offer-card {
  min-height: 180px;
  padding: 22px;
}

.offer-card p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.buy-button {
  position: relative;
  isolation: isolate;
  min-height: 64px;
  padding: 0 24px 0 36px;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--brand-dark);
  background:
    linear-gradient(135deg, #fff4c7 0%, var(--gold-soft) 28%, var(--gold) 58%, #a87622 100%) !important;
  box-shadow:
    0 22px 46px rgba(196, 154, 74, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buy-button::before {
  position: absolute;
  inset: -40% auto -40% -30%;
  z-index: -1;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(0) rotate(12deg);
  transition: transform 620ms var(--ease);
}

.buy-button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 30px 62px rgba(196, 154, 74, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.buy-button:hover::before {
  transform: translateX(360%) rotate(12deg);
}

.capsule-section {
  padding-top: 42px;
}

.capsule-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.capsule-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(23, 63, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 43, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(237, 246, 231, 0.78));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow-soft);
}

.capsule-shape {
  position: relative;
  width: 112px;
  height: 276px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--gold) 0 49%, var(--brand-dark) 49% 100%);
  box-shadow: 0 28px 60px rgba(23, 63, 43, 0.24);
  transform: rotate(16deg);
}

.capsule-shape::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.46);
  border-radius: inherit;
  content: "";
}

.capsule-tag {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.tag-one {
  right: 12%;
  top: 18%;
}

.tag-two {
  left: 10%;
  bottom: 22%;
}

.tag-three {
  right: 16%;
  bottom: 12%;
}

.faq-section {
  padding-top: 42px;
}

.faq-wrap {
  width: min(880px, calc(100% - 32px));
}

.faq-wrap h2 {
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
}

.final-notes {
  padding-top: 20px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(560px, calc(100% - 28px));
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 20px 50px rgba(23, 63, 43, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  color: var(--brand-dark);
  font-weight: 900;
}

.sticky-cta .button {
  min-height: 44px;
}

.has-scrolled .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-footer {
  margin-top: 42px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .footer-inner,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    align-items: center;
    min-height: auto;
    padding: 14px 0;
  }

  .hero-grid,
  .product-layout,
  .split-section,
  .editorial-grid,
  .science-grid,
  .capsule-layout,
  .ingredient-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .curation-board {
    display: grid;
    min-height: 0;
    gap: 12px;
    padding: 16px;
  }

  .curation-board::before {
    inset: 0;
    border-radius: 22px;
  }

  .board-card {
    position: relative;
  }

  .board-card-large,
  .board-card-small.top {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .board-card-small.middle,
  .board-card-small.bottom,
  .board-orbit,
  .board-dots {
    display: none;
  }

  .product-media {
    position: relative;
    top: auto;
  }

  .trust-grid,
  .feature-grid,
  .ingredient-grid,
  .routine-grid,
  .story-grid,
  .research-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .editorial-points,
  .compare-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-spotlight {
    position: relative;
    top: auto;
  }

  .product-rail {
    justify-content: flex-start;
    position: relative;
    top: auto;
    margin: 4px auto 0;
    border-top: 0;
    background: transparent;
    backdrop-filter: none;
    width: min(100%, 1160px);
  }

  .product-rail a {
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow-soft);
  }

  .product-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .product-card > .button {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    width: min(calc(100% - 24px), 1160px);
    flex-wrap: wrap;
    padding: max(12px, env(safe-area-inset-top)) 0 12px;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
    padding: 4px 0 2px;
    font-size: 0.84rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .hero {
    padding: 38px 0 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .hero-showcase,
  .catalog-showcase {
    min-height: 320px;
  }

  .hero-showcase img,
  .catalog-showcase img {
    left: 5%;
    width: 86%;
  }

  .floating-card,
  .showcase-card {
    display: none;
  }

  .board-card-large {
    padding: 22px;
  }

  .board-card-large strong {
    font-size: 4.2rem;
  }

  .board-card-small.top {
    display: block;
    padding: 16px;
  }

  .marquee-track {
    animation-duration: 18s;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .product-rail {
    margin-top: 12px;
    padding: 10px 12px 4px;
    border-bottom: 0;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
  }

  .product-rail::-webkit-scrollbar {
    display: none;
  }

  .product-rail a {
    padding: 10px 13px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .page-hero {
    padding: 34px 0 30px;
  }

  .breadcrumb {
    margin-bottom: 18px;
  }

  .product-media {
    padding: 12px;
  }

  .product-media img {
    aspect-ratio: 4 / 3;
  }

  .media-badge {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 12px 14px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .info-block,
  .story-card,
  .compare-card,
  .research-card,
  .mini-card,
  .offer-card,
  .ingredient-card {
    padding: 22px;
  }

  .ingredient-card {
    min-height: auto;
  }

  .capsule-visual {
    min-height: 320px;
  }

  .capsule-shape {
    width: 86px;
    height: 220px;
  }

  .capsule-tag {
    font-size: 0.72rem;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    aspect-ratio: 16 / 10;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 20px;
    gap: 10px;
  }
}
