:root {
  --ink: #201f1d;
  --ink-soft: #3a3633;
  --muted: #6f6a63;
  --orange: #e8902b;
  --orange-deep: #c9761c;
  --orange-tint: #fbead3;
  --cloud: #f2eee7;
  --paper: #faf7f2;
  --white: #fff;
  --line: rgba(32, 31, 29, 0.14);
  --shadow: 0 28px 80px rgba(32, 31, 29, 0.12);
  --radius: 22px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", Arial, sans-serif;
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.drawer-open { overflow: hidden; }
.brand-loader {
  position: fixed; z-index: 1000; inset: 0; display: grid; place-content: center; justify-items: center;
  background: var(--paper); color: var(--ink); transition: opacity .42s ease, visibility .42s ease;
}
.brand-loader::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(232,144,43,.2), transparent 28%);
}
.brand-loader.is-finished { opacity: 0; visibility: hidden; }
.brand-loader strong { position: relative; z-index: 1; margin-top: 18px; font-size: clamp(2.8rem, 8vw, 5.8rem); font-weight: 500; letter-spacing: -.07em; }
.brand-loader strong span { color: var(--orange); }
.brand-loader small { position: relative; z-index: 1; margin-top: 12px; color: var(--muted); font-size: 10px; letter-spacing: .2em; }
.brand-loader small::after {
  content: ""; display: block; width: 118px; height: 3px; margin: 14px auto 0; overflow: hidden;
  border-radius: 999px; background: rgba(32,31,29,.1);
  box-shadow: inset 44px 0 var(--orange);
  animation: loader-progress 1s ease-in-out infinite alternate;
}
.loader-dots {
  position: relative; z-index: 1; width: 130px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
}
.loader-dots i {
  width: 11px; aspect-ratio: 1; border-radius: 50%; background: var(--orange);
  opacity: 0; transform: scale(.2); animation: loader-dot .65s calc(var(--i) * 28ms) cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes loader-dot { 65% { opacity: 1; transform: scale(1.25); } 100% { opacity: 1; transform: scale(1); } }
@keyframes loader-progress {
  from { transform: scaleX(.45); opacity: .55; }
  to { transform: scaleX(1); opacity: 1; }
}
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 999;
  background: var(--ink); color: #fff; padding: .7rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section { padding: clamp(50px, 6vw, 96px) 0; }
.section-sm { padding: clamp(32px, 4vw, 64px) 0; }
.eyebrow {
  margin: 0 0 16px; color: var(--orange-deep); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
h1, h2, .display {
  margin: 0; font-family: var(--serif); font-weight: 500; line-height: .98;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.2rem, 7vw, 7.8rem); }
h2 { font-size: clamp(2.4rem, 5vw, 5.4rem); }
h3 { margin: 0; font-size: 1.3rem; line-height: 1.2; }
p { margin: 0 0 1.15em; }
.lead { color: var(--ink-soft); font-size: clamp(1.12rem, 1.55vw, 1.4rem); line-height: 1.55; }
.muted { color: var(--muted); }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 23px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink);
  color: #fff; font-weight: 600; cursor: pointer; transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); background: var(--orange-deep); border-color: var(--orange-deep); }
.button.orange { background: var(--orange); border-color: var(--orange); color: var(--white); }
.button.ghost { background: transparent; color: var(--ink); }
.button.ghost:hover { color: white; background: var(--ink); }
.text-link { display: inline-flex; gap: 9px; color: var(--orange-deep); font-weight: 600; border-bottom: 1px solid; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }

.announcement {
  min-height: 35px; display: grid; place-items: center; padding: 7px 48px;
  background: var(--orange); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-align: center;
}
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.88);
  border-bottom: 1px solid transparent; backdrop-filter: blur(16px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(32,31,29,.06); }
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  overflow: hidden; pointer-events: none;
}
.scroll-progress span {
  display: block; width: 100%; height: 100%; background: var(--orange);
  transform: scaleX(var(--page-progress, 0)); transform-origin: left center; will-change: transform;
}
.nav-shell {
  height: 78px; display: grid; grid-template-columns: 190px 1fr 190px; align-items: center;
  width: min(calc(100% - 48px), var(--max)); margin-inline: auto;
}
.logo { display: inline-flex; align-items: center; width: 122px; height: 62px; overflow: hidden; }
.logo img { width: 96px; height: 60px; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(19px, 2.2vw, 38px); }
.desktop-nav a, .nav-utility button, .nav-utility a {
  border: 0; background: none; padding: 8px 0; font-size: 14px; font-weight: 600; cursor: pointer;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 2px;
  background: var(--orange); transition: right .25s;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-utility { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.icon-button {
  width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%;
  background: transparent; cursor: pointer; position: relative;
}
.icon-button:hover { background: var(--orange-tint); }
.cart-count {
  position: absolute; top: 0; right: -3px; min-width: 18px; height: 18px; display: grid; place-items: center;
  padding: 0 4px; border-radius: 999px; background: var(--orange); font-size: 11px; font-weight: 600;
}
.menu-button { display: none; }
.home-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none;
  isolation: isolate;
  transition: transform .35s ease;
}
.home-header::before {
  content: ""; position: absolute; z-index: -1; inset: 0 0 auto; height: 102px;
  background:
    linear-gradient(180deg, rgba(250,247,242,.82) 0%, rgba(250,247,242,.58) 58%, rgba(250,247,242,0) 100%),
    radial-gradient(circle at 50% 0%, rgba(232,144,43,.14), transparent 44%);
  box-shadow: 0 18px 55px rgba(32,31,29,.08);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0; transform: translateY(-16px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.home-header.scrolled { border-color: transparent; box-shadow: none; }
.home-header.scrolled::before { opacity: 1; transform: translateY(0); }
.home-header .scroll-progress { display: none; }
.home-header .nav-shell {
  width: min(calc(100% - 48px), var(--max)); height: 88px; margin-inline: auto; padding: 14px 0;
  display: flex; align-items: center; gap: 18px;
}
.home-header .logo {
  position: absolute; z-index: 2; left: 50%; top: 7px; transform: translateX(-50%);
  flex: none; width: 112px; height: 78px; overflow: visible;
  filter: drop-shadow(0 3px 16px rgba(32,31,29,.18));
  transform-origin: top center;
  transition: transform .34s cubic-bezier(.2,.75,.2,1), top .34s cubic-bezier(.2,.75,.2,1), opacity .25s ease, filter .25s ease;
}
.home-header .logo img {
  width: 112px; height: 78px; filter: brightness(0) invert(1);
  transition: filter .25s ease;
}
.home-header .logo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("assets/metaoz-logo.webp") left center / 112px 78px no-repeat;
  clip-path: inset(0 0 51% 0);
  transition: opacity .25s ease;
}
.home-header.scrolled .logo {
  top: 12px; opacity: .96;
  transform: translateX(-50%) scale(.9);
  filter: drop-shadow(0 5px 18px rgba(32,31,29,.14));
}
.home-header.scrolled .logo img { filter: none; }
.home-header.scrolled .logo::after { opacity: 0; }
.home-header.inner-header::before { opacity: 1; transform: translateY(0); }
.home-header.inner-header .logo {
  background: transparent;
  filter: none;
}
.home-header.inner-header .logo img { filter: none; }
.home-header.inner-header .logo::after { opacity: 0; }
.page-product .home-header::before { opacity: 1; transform: translateY(0); }
.page-product .home-header .logo {
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
  filter: none;
}
.page-product .home-header .logo img { filter: none; }
.page-product .home-header .logo::after { opacity: 0; }
.home-header .desktop-nav {
  min-height: 56px; justify-content: flex-start; gap: 2px; padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(72,78,72,.42); color: var(--white); backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 12px 38px rgba(32,31,29,.08);
}
.home-header .desktop-nav a { padding: 10px 20px; font-size: 15px; font-weight: 500; }
.home-header .desktop-nav a::after { display: none; }
.home-header .desktop-nav a:hover { color: var(--orange-tint); }
.home-header.scrolled .desktop-nav,
.home-header.scrolled .home-actions {
  background: rgba(76,82,76,.58);
  border-color: rgba(255,255,255,.32);
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 16px 42px rgba(32,31,29,.12);
}
.home-actions {
  min-height: 56px; margin-left: auto; display: flex; align-items: center; gap: 2px; padding: 6px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(72,78,72,.42); color: var(--white); backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 12px 38px rgba(32,31,29,.08);
}
.home-actions a, .home-actions button {
  padding: 10px 18px; border-radius: 999px; font-size: 15px; font-weight: 500;
  border: 0; background: none; color: var(--white); cursor: pointer; display: inline-flex; align-items: center;
  font-family: var(--sans);
}
.home-actions .get-started { padding-inline: 22px; background: var(--paper); color: var(--ink); }
.home-actions .get-started:hover { background: var(--white); }
.home-actions .member-greeting { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-actions .header-cart-pill {
  min-height: 44px; gap: 9px; padding: 5px 6px 5px 16px;
  background: var(--paper); color: var(--ink); font-weight: 700;
}
.home-actions .header-cart-pill:hover { background: var(--white); transform: translateY(-1px); }
.header-cart-pill svg { width: 18px; height: 18px; }
.header-cart-count {
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: var(--white); font-size: 12px; font-style: normal; font-weight: 700;
}
.home-header .nav-utility { display: none; margin-left: auto; visibility: hidden; pointer-events: none; }
.page-home .hero { min-height: 100svh; }
.hero-cart {
  position: absolute; z-index: 4; right: 31px; bottom: 31px; width: 58px; height: 58px;
  display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--orange);
  color: var(--white); cursor: pointer; box-shadow: 0 14px 34px rgba(32,31,29,.18);
  transition: transform .28s ease, box-shadow .28s ease;
}
.hero-cart:hover { transform: translateY(-4px) rotate(-4deg); box-shadow: 0 18px 42px rgba(32,31,29,.24); }
.hero-cart .cart-count { background: var(--paper); color: var(--ink); right: -2px; top: -2px; }
.persistent-cart-button {
  position: fixed; z-index: 85; right: 22px; bottom: 22px; min-width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 16px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px;
  background: rgba(32,31,29,.92); color: var(--white); cursor: pointer;
  box-shadow: 0 18px 48px rgba(32,31,29,.24);
  backdrop-filter: blur(16px) saturate(1.15);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.persistent-cart-button:hover {
  transform: translateY(-3px); background: var(--orange);
  box-shadow: 0 22px 54px rgba(32,31,29,.3);
}
.persistent-cart-button svg { width: 21px; height: 21px; }
.persistent-cart-button span { font-size: 13px; font-weight: 800; }
.persistent-cart-button i {
  min-width: 22px; height: 22px; display: grid; place-items: center; padding: 0 5px;
  border-radius: 999px; background: var(--orange); color: var(--white);
  font-size: 11px; font-style: normal; font-weight: 800;
}
.persistent-cart-button:hover i { background: var(--white); color: var(--ink); }
.page-cart .persistent-cart-button { display: none; }

.hero {
  min-height: calc(100svh - 113px); display: grid; align-items: end; position: relative; overflow: hidden;
  background: var(--cloud);
}
.hero-media, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media { will-change: transform; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(32,31,29,.88) 0%, rgba(32,31,29,.63) 42%, rgba(32,31,29,.12) 76%),
    linear-gradient(0deg, rgba(32,31,29,.38), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; width: min(720px, 62%); padding: 8vw 0 9vw; color: var(--white);
  will-change: transform, opacity;
}
.hero h1 { max-width: 760px; font-size: clamp(2.9rem, 5.2vw, 5.7rem); }
.hero .lead { max-width: 610px; margin-top: 25px; color: rgba(255,255,255,.9); }
.hero .eyebrow { color: #ffd7a6; }
.hero .text-link { color: var(--white); }
.hero-actions { gap: 12px; }
.hero-primary-pill {
  display: inline-grid; grid-template-columns: auto auto; overflow: hidden;
  border: 1px solid rgba(255,255,255,.48); border-radius: 999px;
  background: rgba(42,40,36,.34); backdrop-filter: blur(14px);
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 14px 36px rgba(0,0,0,.12);
}
.hero-pill-segment {
  min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 25px; color: var(--white); font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.hero-pill-score { background: var(--orange); }
.hero-pill-science { border-left: 1px solid rgba(255,255,255,.28); }
.hero-pill-science span { transition: transform .3s ease; }
.hero-pill-segment:hover { background: var(--white); color: var(--ink); }
.hero-pill-science:hover span { transform: translateX(4px); }
.hero .score-button {
  border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); color: var(--white);
  backdrop-filter: blur(14px); white-space: nowrap;
}
.hero .score-button:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.hero-stat {
  position: absolute; z-index: 3; right: 4vw; bottom: 4vw; width: 190px; height: 190px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(250,247,242,.88);
  border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(12px); text-align: center;
  will-change: transform;
}
.hero-stat strong { display: block; font-family: var(--serif); font-size: 2.8rem; font-weight: 500; line-height: 1; }
.trust-strip { background: var(--ink); color: #fff; padding: 18px 0; overflow: hidden; }
.trust-row { display: flex; justify-content: space-between; gap: 24px; white-space: nowrap; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.trust-row span { display: flex; align-items: center; gap: 12px; }
.trust-row span::before { content: "✦"; color: var(--orange); }

.statement { display: grid; grid-template-columns: .8fr 2fr; gap: 7vw; align-items: start; }
.statement h2 { max-width: 1050px; }
.statement-copy { max-width: 600px; margin: 42px 0 0 auto; }
.statement-with-video {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cloud);
  border-radius: 9999px;
  padding: 0;
  gap: 0;
  max-width: clamp(1000px, 92vw, 1560px);
  margin: 0 auto;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.65), 0 20px 60px rgba(32,31,29,0.03);
  overflow: hidden;
}
.statement-with-video > div:first-child {
  padding: clamp(50px, 6vw, 90px) 8% clamp(50px, 6vw, 90px) clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statement-with-video .statement-copy { margin-left: 0; }
.statement-video-card {
  position: relative; margin: 0; min-height: auto;
  width: 100%; max-width: 100%; aspect-ratio: auto;
  overflow: hidden; border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  isolation: isolate;
  border: none;
  display: flex;
}
.statement-video-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(32,31,29,.28));
  pointer-events: none;
  border-radius: 0;
}
.statement-video-card video {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0;
}
.statement-video-card figcaption {
  position: absolute; z-index: 4; left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: inline-flex; width: max-content; max-width: calc(100% - 40px);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(250,247,242,.84); color: var(--ink);
  backdrop-filter: blur(14px); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; align-items: center; }
.product-card {
  position: relative; min-width: 0; overflow: hidden; border-radius: var(--radius); background: var(--cloud);
  border: 1px solid transparent; transform-style: preserve-3d;
  transition: transform .42s cubic-bezier(.2,.75,.2,1), box-shadow .3s, border .3s, background .3s;
}
.product-card:hover, .product-card:focus-within { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(232,144,43,.24); }
@keyframes highlight-glow {
  0%, 100% {
    box-shadow: 0 32px 86px rgba(32,31,29,.13), 0 0 0 0px rgba(232,144,43,0);
    border-color: rgba(232,144,43,.28);
  }
  50% {
    box-shadow: 0 32px 86px rgba(32,31,29,.22), 0 0 16px 2px rgba(232,144,43,0.38);
    border-color: rgba(232,144,43,.45);
  }
}
.product-card.is-highlight {
  min-height: 1px;
  transform: translateY(-18px) scale(1.035);
  animation: highlight-glow 3s ease-in-out infinite;
}
.product-card.is-highlight:hover, .product-card.is-highlight:focus-within { transform: translateY(-22px) scale(1.04); }
.product-card-media {
  position: relative; aspect-ratio: 1 / 1.16; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, var(--orange-tint) 100%);
}
.product-card-media, .product-card-body { transform: translateZ(0); transition: transform .35s ease; }
.product-card.is-tilting .product-card-media { transform: translateZ(18px) scale(.99); }
.product-card.is-tilting .product-card-body { transform: translateZ(10px); }
.product-card-media img {
  position: relative; z-index: 2; width: 88%; height: 82%; object-fit: contain;
  transition: transform .55s cubic-bezier(.2,.75,.2,1), opacity .3s;
}
.product-card:hover img, .product-card:focus-within img, .product-card.is-highlight img { transform: translateY(-18px) scale(.93); }
.product-card-video {
  position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.025); transition: opacity .35s ease, transform .65s cubic-bezier(.2,.75,.2,1);
  pointer-events: none;
}
.product-card:hover .product-card-video,
.product-card:focus-within .product-card-video,
.product-card.is-highlight .product-card-video,
.product-card.is-video-default .product-card-video {
  opacity: 1; transform: scale(1);
}
.product-card:has(.product-card-video):hover img,
.product-card:has(.product-card-video):focus-within img,
.product-card.is-highlight:has(.product-card-video) img,
.product-card.is-video-default:has(.product-card-video) img { opacity: 0; }
.pill {
  position: absolute; z-index: 4; top: 16px; left: 16px; padding: 7px 12px; background: rgba(250,247,242,.84);
  border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  box-shadow: inset 0 1px rgba(255,255,255,.65);
}
.shop-now {
  position: absolute; z-index: 5; left: 50%; bottom: 22px; transform: translate(-50%, 12px);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px;
  padding: 13px 26px; border-radius: 999px; background: var(--ink); color: var(--white);
  font-weight: 700; white-space: nowrap; opacity: 0;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.75,.2,1), background .25s ease, color .25s ease;
  box-shadow: 0 16px 34px rgba(32,31,29,.18);
}
.shop-now span { font-size: 1.15em; line-height: 1; }
.product-card:hover .shop-now,
.product-card:focus-within .shop-now,
.product-card.is-highlight .shop-now { opacity: 1; transform: translate(-50%, 0); }
.product-card.is-highlight .shop-now { background: var(--white); color: var(--ink); }
.product-card:hover .shop-now { background: var(--orange); color: var(--white); }
.quick-add {
  position: absolute; bottom: 14px; right: 14px; width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--orange); color: var(--white); font-size: 1.5rem; cursor: pointer; transition: transform .25s;
}
.quick-add:hover { transform: rotate(90deg); }
.product-card-body { padding: 21px; background: rgba(242,238,231,.82); }
.product-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; }
.product-card h3 { margin: 5px 0 14px; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.price del { color: var(--muted); margin-right: 7px; }
.price strong { color: var(--orange-deep); }
.section-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; }
.section-heading .lead { max-width: 550px; margin-bottom: 0; }

.video-feature {
  position: relative; min-height: 520px; overflow: hidden; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0; padding: 0; align-items: stretch;
  max-width: clamp(1000px, 92vw, 1560px); margin: 70px auto;
  border-radius: 9999px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.65), 0 20px 60px rgba(32,31,29,0.03);
  background: var(--cloud);
  transition: transform 1.15s cubic-bezier(.2,.75,.2,1);
}
.video-feature.cinematic-in { clip-path: none; transform: none; }
.video-feature-media {
  position: relative; width: 100%; height: 100%; overflow: hidden; display: flex;
}
.video-feature-media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.035); transition: transform 1.5s cubic-bezier(.2,.75,.2,1);
}
.video-feature:has(.video-copy.visible) .video-feature-media video { transform: scale(1); }
.video-feature-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(32,31,29,.2));
  pointer-events: none;
}
.video-copy {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(50px, 6vw, 90px) clamp(60px, 8vw, 120px) clamp(50px, 6vw, 90px) 8%;
  max-width: 100%; color: var(--ink);
}
.video-copy h2 { font-size: clamp(2.4rem, 4.2vw, 4.6rem); color: var(--ink); line-height: 1.05; }
.video-copy .eyebrow { color: var(--orange-deep); }
.video-copy .lead { color: var(--muted); margin-top: 22px; }
.process-quality-pill {
  min-height: clamp(680px, 60vw, 820px); grid-template-columns: 51% 49%; gap: 0;
  padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 68px;
  background:
    radial-gradient(circle at 88% 8%, rgba(232,144,43,.2), transparent 27%),
    #20231f;
  box-shadow: 0 34px 90px rgba(32,31,29,.2);
}
.process-quality-pill .video-feature-media {
  z-index: 1; margin: 0; border-radius: 52px 180px 52px 180px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 18px 0 44px rgba(0,0,0,.2);
}
.process-quality-pill .video-feature-media::after { background: linear-gradient(180deg, transparent 45%, rgba(14,16,13,.35)); }
.process-quality-copy {
  padding: clamp(48px, 5vw, 78px) clamp(44px, 5vw, 80px);
  color: var(--white);
}
.process-quality-copy > .eyebrow { color: #ffc77d; }
.process-quality-copy > h2 { color: var(--white); font-size: clamp(3rem, 4.5vw, 5.2rem); }
.process-quality-copy > .lead { max-width: 720px; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 1.25vw, 1.2rem); }
.process-capabilities {
  margin-top: clamp(28px, 3vw, 42px); padding-top: clamp(24px, 2.5vw, 34px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.process-capabilities .eyebrow { margin-bottom: 9px; color: #ffc77d; }
.process-capabilities h3 { color: var(--white); font-family: var(--serif); font-size: clamp(2rem, 2.8vw, 3rem); font-weight: 500; }
.process-capabilities .feature-list { display: grid; gap: 8px; margin-top: 18px; border: 0; }
.process-capabilities .feature-list li {
  grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.06);
}
.process-capabilities .feature-list .number {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: var(--orange); color: var(--white); font-size: 11px;
}
.process-capabilities .feature-list strong { color: var(--white); font-size: 14px; }
.process-capabilities .feature-list p { margin-top: 2px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.4; }

.science-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; padding: 0; align-items: stretch;
  max-width: clamp(1000px, 94vw, 1620px); margin: 60px auto;
  border-radius: 9999px; background: var(--cloud);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.65), 0 20px 60px rgba(32,31,29,0.08);
  overflow: hidden;
  transform: rotate(12deg);
  isolation: isolate;
  transition: transform 1s cubic-bezier(.2,.75,.2,1);
}
.science-grid.reveal.visible { transform: rotate(12deg); }
.science-visual {
  position: relative; overflow: hidden; min-height: auto;
  width: 100%; aspect-ratio: auto; border-radius: 0;
  background: transparent; transform: none !important;
  box-shadow: none; border: none;
  isolation: isolate; display: flex;
}
.science-visual video {
  width: 100%; height: 100%; position: absolute; object-fit: cover;
  transform: rotate(-12deg) scale(1.45) !important; transition: transform 1.35s cubic-bezier(.2,.75,.2,1);
  border-radius: 0;
}
.science-grid > :first-child:not(.science-visual) {
  background: var(--orange);
  color: var(--white);
  padding: clamp(45px, 6vw, 75px) 8% clamp(45px, 6vw, 75px) 10%;
  display: flex; flex-direction: column; justify-content: center;
  transform: rotate(-12deg) scale(0.92);
  transform-origin: center center;
}
.science-grid > :first-child:not(.science-visual) .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.science-grid > :first-child:not(.science-visual) h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem); line-height: 1.05;
}
.science-grid > :last-child {
  padding: clamp(35px, 4vw, 55px) 10% clamp(35px, 4vw, 55px) 6%;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--ink);
  transform: rotate(-12deg) scale(0.92);
  transform-origin: center center;
}
.science-grid > :last-child h2 {
  font-size: clamp(2.2rem, 3.8vw, 4.2rem); color: var(--ink); line-height: 1.05;
}
.feature-list { margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.feature-list .number { color: var(--orange-deep); font-size: 13px; font-weight: 600; }
.feature-list p { margin: 5px 0 0; color: var(--muted); font-size: 15px; }
.capability-section { background: var(--paper); }
.capability-pill {
  grid-template-columns: .95fr 1.05fr; min-height: clamp(520px, 39vw, 650px); gap: 0; overflow: hidden;
  border: 1px solid rgba(32,31,29,.07); border-radius: 999px; background: var(--cloud);
  box-shadow: 0 28px 80px rgba(32,31,29,.08);
  transform: none !important;
}
.capability-pill.reveal.visible { transform: none !important; }
.capability-intro {
  align-self: stretch; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(60px, 7vw, 105px); border-radius: 0;
  background: var(--orange); color: var(--white);
  transform: none !important;
}
.capability-intro .eyebrow { color: rgba(255,255,255,.8); }
.capability-intro h2 { max-width: 570px; font-size: clamp(3rem, 5vw, 5.5rem); }
.capability-pill .feature-list {
  align-self: center; width: auto; margin: 0 clamp(46px, 6vw, 90px);
  padding: 0; border-color: rgba(32,31,29,.12);
  transform: none !important;
}
.capability-pill .feature-list li { grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; }
.capability-pill .feature-list .number { font-size: 15px; }
.capability-pill .feature-list strong { font-size: clamp(1.12rem, 1.35vw, 1.35rem); }
.capability-pill .feature-list p { max-width: 620px; margin-top: 7px; font-size: clamp(1rem, 1.15vw, 1.12rem); line-height: 1.5; }

.quote-section {
  max-width: clamp(1000px, 92vw, var(--max));
  margin: 70px auto;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(32,31,29,0.12);
}
.quote-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #e7b763 0%, #ac5207 60%, #945219 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-banner-video {
  display: none;
}
.quote-banner-leaves {
  position: absolute;
  left: -2%;
  top: -2%;
  width: 45%;
  height: 104%;
  background-image: url(assets/nature-science-banner.webp);
  background-size: cover;
  background-position: left center;
  clip-path: polygon(0 0, 78% 0, 48% 100%, 0 100%);
  animation: sway 8s ease-in-out infinite;
  transform-origin: bottom left;
  pointer-events: none;
}
.quote-banner-pills {
  position: absolute;
  right: -2%;
  top: -2%;
  width: 45%;
  height: 104%;
  background-image: url(assets/nature-science-banner.webp);
  background-size: cover;
  background-position: right center;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 52% 100%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}
.quote-banner-text {
  position: relative;
  max-width: 650px;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 20px;
}
.quote-banner-text blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.quote-banner-text cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
@keyframes sway {
  0%, 100% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(0.8deg) scale(1.015) translate(3px, -2px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}
.research-quote { padding: clamp(70px, 10vw, 150px) 0; background: var(--orange); color: white; text-align: center; }
.research-quote blockquote { max-width: 1100px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 6rem); line-height: 1; }
.research-quote cite { display: block; margin-top: 25px; font-style: normal; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.combo-section {
  position: relative; height: 320vh; min-height: 2200px; padding: 0; overflow: visible;
  background: var(--white);
}
.combo-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 94px 0 20px; background: var(--white);
}
.combo-heading .section-heading {
  min-height: clamp(130px, 20vh, 220px); align-items: flex-start;
}
.combo-section .section-heading h2 {
  max-width: 730px; font-size: clamp(3rem, 4.8vw, 5.7rem); line-height: .96;
}
.combo-grid {
  display: flex; align-items: stretch; gap: clamp(14px, 1.25vw, 20px);
  height: min(56vh, 520px); flex: none;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  overflow-x: hidden; overscroll-behavior-inline: contain;
  scrollbar-width: none; will-change: scroll-position;
}
.combo-grid::-webkit-scrollbar { display: none; }
.combo-card {
  position: relative; flex: 0 0 clamp(310px, 27vw, 430px); min-height: 0;
  overflow: hidden; border: 1px solid rgba(32,31,29,.1); border-radius: 18px;
  background: var(--white); scroll-snap-align: start;
  transition: transform .55s cubic-bezier(.2,.75,.2,1), border-color .35s ease, box-shadow .45s ease;
}
.combo-card:hover, .combo-card:focus-within {
  transform: translateY(-6px); border-color: rgba(232,144,43,.42);
  box-shadow: 0 24px 60px rgba(32,31,29,.1);
}
.combo-media {
  position: absolute; inset: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden; padding: 22px; color: var(--ink); background: var(--white);
}
.combo-media::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 38%, rgba(232,144,43,.1), transparent 36%);
  opacity: .75; transition: opacity .4s ease;
}
.combo-card:hover .combo-media::before { opacity: 1; }
.combo-media .pill { position: absolute; z-index: 4; top: 20px; left: 20px; background: var(--paper); }
.combo-index {
  position: absolute; z-index: 3; top: 21px; right: 22px;
  color: var(--muted); font-size: 12px; letter-spacing: .12em;
}
.combo-art {
  position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: center; min-height: 0;
  padding: 10px 10px 0;
  height: 100%;
}
.combo-art img, .combo-video {
  width: 100%; height: auto; max-height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(32,31,29,.1));
  transition: opacity .35s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}
.combo-art img {
  transform: scale(1.18);
  transform-origin: bottom center;
}
.combo-card:hover .combo-art img, .combo-card:focus-within .combo-art img {
  transform: scale(1.25) translateY(-5px);
}
.combo-video { position: absolute; inset: 0; z-index: 2; object-fit: contain; opacity: 0; background: var(--white); }
.combo-card:hover .combo-video, .combo-card:focus-within .combo-video { opacity: 1; }
.combo-card:has(.combo-video):hover .combo-art img,
.combo-card:has(.combo-video):focus-within .combo-art img { opacity: 0; }
.combo-overlay {
  position: relative; z-index: 4; display: grid; gap: 5px;
  padding: 18px 4px 2px; border-top: 1px solid var(--line); color: var(--ink); text-align: left;
}
.combo-overlay small { color: var(--orange-deep); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.combo-overlay strong { font-family: var(--serif); font-size: clamp(1.75rem, 2.3vw, 2.7rem); font-weight: 500; line-height: 1; }
.combo-overlay > span:not(.combo-footer) { color: var(--muted); font-size: 13px; }
.combo-footer { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 7px; }
.combo-footer .price { display: flex; gap: 8px; font-size: 14px; }
.combo-footer b { color: var(--orange-deep); }
.combo-footer em {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px;
  border-radius: 999px; background: var(--ink); color: var(--white);
  font-size: 12px; font-style: normal; white-space: nowrap;
}
.combo-footer em i { color: #ffc77d; font-style: normal; }
.combo-progress {
  width: min(calc(100% - 48px), var(--max)); height: 2px; margin: 18px auto 0;
  overflow: hidden; background: rgba(32,31,29,.1);
}
.combo-progress span {
  display: block; width: 100%; height: 100%; background: var(--orange);
  transform: scaleX(var(--combo-progress, 0)); transform-origin: left;
}

.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 72svh, 820px); display: flex; align-items: flex-end;
  padding: clamp(150px, 16vw, 220px) 0 clamp(70px, 8vw, 110px); border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(232,144,43,.2), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--orange-tint));
}
.page-hero::before {
  content: ""; position: absolute; z-index: -1; inset: 0; opacity: .3;
  background-image: radial-gradient(circle, var(--orange) 1.1px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 35%, black);
}
.page-hero > video { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade {
  position: absolute; z-index: -2; inset: 0;
  background: linear-gradient(0deg, rgba(23,21,18,.84), rgba(23,21,18,.08) 72%);
}
.page-hero.has-video::before { opacity: .14; }
.page-hero-inner {
  width: min(calc(100% - 48px), var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; color: var(--white);
}
.page-hero h1 { max-width: 820px; font-size: clamp(2.9rem, 5.2vw, 5.7rem); }
.page-hero .eyebrow { color: #ffd39e; }
.page-hero .lead { max-width: 540px; margin-left: auto; color: rgba(255,255,255,.84); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 0; }
.filter {
  border: 1px solid var(--line); border-radius: 99px; padding: 9px 15px; background: transparent; cursor: pointer;
}
.filter.active, .filter:hover { background: var(--ink); color: white; }
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 44px; }
.shop-sidebar { position: sticky; top: 130px; align-self: start; }
.shop-sidebar h3 { margin-bottom: 15px; }
.shop-sidebar label { display: flex; gap: 10px; padding: 7px 0; color: var(--ink-soft); }
.shop-bundle-link { display: inline-flex; margin-top: 25px; color: var(--orange-deep); font-size: 14px; font-weight: 600; }
.shop-grid { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.shop-jump {
  position: relative; z-index: 4; display: flex; gap: 8px; width: max-content; max-width: calc(100% - 30px);
  margin-top: -31px; padding: 7px; border: 1px solid rgba(32,31,29,.08); border-radius: 999px;
  background: rgba(250,247,242,.92); backdrop-filter: blur(18px); box-shadow: 0 16px 40px rgba(32,31,29,.09);
}
.shop-jump a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.shop-jump a:first-child { background: var(--ink); color: var(--white); }
.shop-jump span { display: grid; place-items: center; min-width: 23px; height: 23px; border-radius: 50%; background: rgba(232,144,43,.16); color: var(--orange-deep); font-size: 11px; }
.shop-jump a:first-child span { background: rgba(255,255,255,.16); color: var(--white); }
.shop-section-title { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 38px; }
.shop-section-title h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.shop-section-title select { min-width: 185px; border: 1px solid var(--line); border-radius: 999px; padding: 12px 17px; background: var(--paper); }
.shop-section-title .muted { margin: 12px 0 0; }
.shop-bundles { scroll-margin-top: 90px; background: var(--cloud); }
.bundle-title .lead { max-width: 690px; margin-top: 20px; }
.bundle-count { align-self: flex-start; padding: 9px 14px; border-radius: 999px; background: var(--white); color: var(--muted); font-size: 13px; }
.bundle-shop-grid { grid-template-columns: repeat(3, 1fr); }
.bundle-shop-grid .product-card { background: var(--white); }

.product-hero { padding: 128px 0 100px; }
.product-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(35px, 7vw, 110px); }
.product-back-btn { display: none; }
.product-gallery {
  position: sticky; top: 130px; align-self: start; min-height: 680px; display: grid; place-items: center;
  overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg, white, var(--orange-tint));
  perspective: 1300px; cursor: pointer; isolation: isolate;
}
.product-story-section { padding: 0 0 clamp(72px, 9vw, 140px); background: var(--paper); }
.product-story-banner {
  min-height: clamp(520px, 63vw, 850px); display: grid; grid-template-columns: .9fr 1.1fr;
  align-items: center; overflow: hidden; border-radius: 34px;
  color: var(--white); background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #9d4b0d, var(--orange) 55%, #f3a43c);
  box-shadow: 0 36px 90px rgba(111,47,0,.2);
}
.product-story-copy { padding: clamp(36px, 6vw, 90px); }
.product-story-copy .eyebrow { color: #ffd6a2; }
.product-story-copy h2 { font-size: clamp(3rem, 6.2vw, 7rem); }
.product-story-copy .lead { max-width: 650px; margin-top: 25px; color: rgba(255,255,255,.82); }
.story-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.story-benefits span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: rgba(255,255,255,.9); font-size: 12px; }
.product-story-visual { position: relative; align-self: stretch; display: grid; place-items: center; }
.product-story-visual::before {
  content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,255,255,.18); filter: blur(34px);
  animation: radial-pulse 6s ease-in-out infinite;
}
@keyframes radial-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.55; }
  100% { transform: scale(1); opacity: 0.8; }
}
.product-story-visual img { position: relative; z-index: 2; width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 34px 40px rgba(66,27,0,.28)); }
.product-gallery.bundle { background: var(--white); }
.product-story-visual.bundle-visual img {
  background: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 66%;
  height: auto;
  padding: clamp(24px, 4.5vw, 56px);
  filter: none;
  box-shadow: 0 28px 64px rgba(32,31,29,0.14);
}
.product-story-visual.bundle-visual .story-orbit {
  width: 78%;
}
.story-watermark {
  position: absolute; z-index: 0; right: -2%; bottom: 2%; color: rgba(255,255,255,.1);
  font-family: var(--serif); font-size: clamp(5rem, 11vw, 12rem); line-height: .7; white-space: nowrap;
}
.product-story-ashwaoz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.16), transparent 24%), linear-gradient(135deg, #522417, #874225 55%, #bd6f36); }
.product-story-ginoz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.17), transparent 24%), linear-gradient(135deg, #8b651b, #c99a33 58%, #e2ba63); }
.product-story-curcuginoz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.18), transparent 24%), linear-gradient(135deg, #9c4306, #e47d15 56%, #f2a13c); }
.product-story-garloz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.14), transparent 24%), linear-gradient(135deg, #151515, #353331 58%, #645c53); }
.product-story-boswelloz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.16), transparent 24%), linear-gradient(135deg, #7a3a10, #b96821 58%, #d9944d); }
.product-story-boscuroz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.16), transparent 24%), linear-gradient(135deg, #713018, #a75028 58%, #d27d3d); }
.product-story-shilloz { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.16), transparent 24%), linear-gradient(135deg, #32134f, #66328a 58%, #9a63b8); }
.product-story-cardio { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #541515, #913023 58%, #c45e36); }
.product-story-sleep { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #17234b, #314d86 58%, #6d86b8); }
.product-story-joint { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #6a2119, #a7432e 58%, #d27848); }
.product-story-liver { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #563018, #8b5429 58%, #bb8049); }
.product-story-mood { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #2c174d, #604086 58%, #9070ae); }
.product-story-metabolic { background: radial-gradient(circle at 78% 20%, rgba(255,255,255,.15), transparent 24%), linear-gradient(135deg, #38541f, #6d873c 58%, #9eb45e); }
.story-orbit { position: absolute; width: 72%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; animation: story-orbit 16s linear infinite; }
.story-orbit::before, .story-orbit::after { content: ""; position: absolute; width: 14px; aspect-ratio: 1; border-radius: 50%; background: var(--white); box-shadow: 0 0 28px white; }
.story-orbit::before { left: 8%; top: 15%; }.story-orbit::after { right: 5%; bottom: 18%; }
@keyframes story-orbit { to { transform: rotate(360deg); } }
.product-deep-dive { background: var(--cloud); }
.product-section-pills {
  position: sticky; z-index: 5; top: 95px; display: flex; justify-content: center; gap: 7px;
  width: max-content; max-width: 100%; margin: 0 auto 42px; padding: 7px;
  border: 1px solid rgba(32,31,29,.08); border-radius: 999px; background: rgba(250,247,242,.86);
  backdrop-filter: blur(18px); box-shadow: 0 14px 40px rgba(32,31,29,.08);
}
.product-section-pills a { padding: 10px 17px; border-radius: 999px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.product-section-pills a:hover { background: var(--orange); color: var(--white); }
.product-detail-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product-detail-panel { min-height: 330px; padding: clamp(26px, 4vw, 52px); border-radius: 40px; background: var(--paper); }
.product-detail-panel:nth-child(2), .product-detail-panel:nth-child(3) { background: var(--orange-tint); }
.product-detail-panel > span { display: block; margin-bottom: 55px; color: var(--orange-deep); font-size: 13px; }
.product-detail-panel h3 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 500; }
.product-detail-panel p, .product-detail-panel li { color: var(--ink-soft); line-height: 1.65; }
.product-detail-panel ul { padding-left: 19px; }
.product-detail-panel small { color: var(--muted); line-height: 1.5; }
.mobile-buy-bar { display: none; }
.product-gallery::before {
  content: ""; position: absolute; width: 55%; height: 10%; left: 22.5%; bottom: 12%;
  border-radius: 50%; background: rgba(32,31,29,.18); filter: blur(20px); transform: scaleX(.8);
}
.bottle-rotor {
  width: 82%; height: 82%; display: grid; place-items: center; position: relative;
  transform-style: preserve-3d; will-change: transform, filter;
}
.bottle-rotor img {
  width: 100%; height: 100%; object-fit: contain;
  transform: translateZ(2px); backface-visibility: visible;
}
.rotation-video {
  position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .35s ease, transform .6s ease;
}
.product-gallery.has-rotation-video.is-video-playing .rotation-video {
  opacity: 1; visibility: visible; transform: scale(1);
}
.product-gallery.has-rotation-video.is-video-playing .bottle-rotor { opacity: 0; }
.product-gallery.has-rotation-video.is-video-playing .spin-hint { opacity: 0; transform: translate(-50%, 8px); }
.bottle-rotor::after {
  content: ""; position: absolute; inset: 11% 30% 14%; border-radius: 38% 38% 25% 25%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65) 46%, transparent 57%);
  opacity: .45; mix-blend-mode: screen; pointer-events: none; transform: translateZ(12px);
}
.product-gallery.is-spinning .bottle-rotor { animation: bottle-turn 1.55s cubic-bezier(.22,.8,.2,1); }
.product-gallery.is-spinning::before { animation: shadow-turn 1.55s cubic-bezier(.22,.8,.2,1); }
@keyframes bottle-turn {
  0% { transform: rotateY(0deg) scale(1); filter: brightness(1); }
  24% { transform: rotateY(78deg) scale(.96); filter: brightness(.82); }
  50% { transform: rotateY(180deg) scale(.94); filter: brightness(.72); }
  76% { transform: rotateY(282deg) scale(.97); filter: brightness(.9); }
  100% { transform: rotateY(360deg) scale(1); filter: brightness(1); }
}
@keyframes shadow-turn {
  0%, 100% { transform: scaleX(.8); opacity: .55; }
  25%, 75% { transform: scaleX(.35); opacity: .35; }
  50% { transform: scaleX(.75); opacity: .5; }
}
.spin-hint {
  position: absolute; z-index: 3; left: 50%; bottom: 23px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; border: 1px solid rgba(32,31,29,.12);
  border-radius: 999px; padding: 9px 14px; background: rgba(250,247,242,.88); backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}
.spin-hint span { color: var(--orange-deep); font-size: 18px; }
.product-info { padding: 30px 0; }
.product-info h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
.product-info .price { margin: 26px 0; font-size: 1.3rem; }
.benefit-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.benefit-chips span { padding: 8px 12px; border-radius: 99px; background: var(--orange-tint); font-size: 14px; }
.purchase-box { padding: 22px; margin-top: 30px; border-radius: 16px; background: var(--cloud); }
.quantity-row { display: flex; align-items: center; gap: 14px; }
.quantity {
  display: flex; border: 1px solid var(--line); border-radius: 99px; overflow: hidden; background: var(--paper);
  align-items: stretch; min-height: 46px;
}
.quantity button { border: 0; background: none; width: 46px; cursor: pointer; display: grid; place-items: center; font-size: 16px; }
.quantity input { flex: 1; width: 40px; min-width: 40px; border: 0; text-align: center; background: transparent; font-size: 15px; font-weight: 600; }
.purchase-box .button { flex: 1; min-height: 46px; }
.accordion { margin-top: 40px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.accordion summary { cursor: pointer; font-weight: 600; }
.accordion p { padding-top: 15px; color: var(--muted); }

.split-story { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; }
.story-copy { max-width: 650px; }
.story-copy h2 { margin-bottom: 28px; }
.company-story-section { background: linear-gradient(180deg, var(--paper), var(--white)); }
.company-story-panel {
  padding: clamp(42px, 7vw, 90px); border: 1px solid rgba(32,31,29,.08); border-radius: 64px;
  background:
    radial-gradient(circle at 8% 12%, rgba(232,144,43,.12), transparent 23%),
    var(--white);
  box-shadow: 0 26px 75px rgba(32,31,29,.07);
}
.company-story-panel .story-copy:last-child {
  padding: clamp(26px, 4vw, 50px); border-radius: 42px; background: var(--cloud);
}
.company-mission-section { padding-inline: 24px; background: var(--paper); }
.company-mission-panel {
  position: relative; overflow: hidden; padding: clamp(50px, 8vw, 110px); border-radius: 70px;
  background:
    radial-gradient(circle at 92% 15%, rgba(232,144,43,.3), transparent 28%),
    var(--ink);
  color: var(--white); box-shadow: 0 28px 80px rgba(32,31,29,.18);
}
.company-mission-panel::after {
  content: "M"; position: absolute; right: 4%; bottom: -22%; color: rgba(255,255,255,.04);
  font-family: var(--serif); font-size: clamp(14rem, 30vw, 34rem); line-height: 1;
}
.company-mission-panel .story-copy, .company-mission-panel > p { position: relative; z-index: 1; }
.company-mission-panel .eyebrow { color: #ffc77d; }
.values-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px; margin: 36px auto 0;
}
.value-card {
  min-width: 0; min-height: 132px; display: grid; grid-template-columns: 44% 56%; overflow: hidden;
  padding: 0; border: 1px solid rgba(32,31,29,.08); border-radius: 999px; background: var(--cloud);
  box-shadow: 0 16px 46px rgba(32,31,29,.055);
  transition: transform .4s cubic-bezier(.2,.75,.2,1), box-shadow .4s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(32,31,29,.1); }
.value-card:last-child { grid-column: auto; width: auto; justify-self: stretch; }
.value-pill-head {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 20px 16px 20px 22px; background: var(--orange); color: var(--white);
}
.value-card:nth-child(even) .value-pill-head { background: var(--ink-soft); }
.value-card .index {
  width: 30px; height: 30px; display: grid; place-items: center; margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: var(--white); font-size: 10px;
}
.value-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 1.3vw, 1.5rem); font-weight: 500; }
.value-pill-copy { display: flex; align-items: center; padding: 20px 18px; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: clamp(.72rem, .78vw, .84rem); line-height: 1.45; }
.timeline { max-width: 1180px; display: grid; gap: 14px; margin: 55px auto 0; }
.timeline-item {
  display: grid; grid-template-columns: 210px 1fr; gap: clamp(26px, 4vw, 64px); align-items: center;
  padding: 16px clamp(22px, 3vw, 42px) 16px 16px; border: 1px solid rgba(32,31,29,.09);
  border-radius: 999px; background: var(--white); box-shadow: 0 14px 42px rgba(32,31,29,.045);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.timeline-item:hover, .timeline-item:focus-within {
  transform: translateY(-4px); border-color: rgba(232,144,43,.35); box-shadow: 0 22px 55px rgba(32,31,29,.08);
}
.timeline-item .step {
  min-height: 62px; display: grid; grid-template-columns: 1fr 72px; overflow: hidden;
  border-radius: 999px; color: var(--white); text-transform: uppercase; letter-spacing: .11em;
  box-shadow: 0 12px 30px rgba(32,31,29,.12); transform-origin: center;
}
.timeline-item .step b, .timeline-item .step i { display: grid; place-items: center; font-size: 12px; font-style: normal; }
.timeline-item .step b { background: var(--orange); }
.timeline-item .step i { background: var(--ink-soft); font-size: 14px; font-weight: 700; }
.timeline-item:hover .step, .timeline-item:active .step { animation: step-pill-wiggle .48s ease-in-out; }
.timeline-item h3 { margin-bottom: 7px; font-family: var(--serif); font-size: clamp(1.65rem, 2.4vw, 2.5rem); font-weight: 500; }
.timeline-item strong { display: block; color: var(--orange-deep); font-size: 14px; }
.timeline-item p { max-width: 850px; margin: 6px 0 0; color: var(--muted); font-size: 15px; }
@keyframes step-pill-wiggle {
  0%, 100% { transform: rotate(0) translateX(0); }
  22% { transform: rotate(-1.4deg) translateX(-3px); }
  48% { transform: rotate(1.2deg) translateX(3px); }
  72% { transform: rotate(-.7deg) translateX(-1px); }
}
.research-priorities { background: linear-gradient(180deg, var(--paper), var(--white)); }
.research-intro-panel {
  padding: clamp(38px, 6vw, 72px); border: 1px solid rgba(32,31,29,.08); border-radius: 58px;
  background: var(--white); box-shadow: 0 22px 65px rgba(32,31,29,.06);
}
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.research-card {
  position: relative; min-height: 288px; overflow: hidden; padding: 36px 48px;
  border: 1px solid rgba(32,31,29,.08); border-radius: 999px;
  background: var(--cloud); display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 18px 50px rgba(32,31,29,.055);
  transition: transform .5s cubic-bezier(.2,.75,.2,1), box-shadow .5s ease, border-radius .5s ease;
}
.product-card, .research-card, .dashboard-card { contain: layout paint style; }
.research-card:nth-child(3n+2) { border-radius: 999px; background: var(--orange-tint); }
.research-card:nth-child(3n) { border-radius: 999px; background: var(--ink); color: var(--white); }
.research-card:hover {
  transform: translateY(-7px) rotate(-.25deg); border-radius: 999px;
  box-shadow: 0 30px 75px rgba(32,31,29,.13);
}
.research-card h3 {
  max-width: 390px; margin-top: 12px; font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2.05rem); font-weight: 500; line-height: 1.02;
}
.research-card p { max-width: 430px; margin: 6px 0 12px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.research-card:nth-child(3n) p { color: rgba(255,255,255,.66); }
.research-card .number {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--white); color: var(--orange-deep); font-size: 12px;
}
.research-card:nth-child(3n) .number { background: var(--orange); color: var(--white); }
.research-cta {
  width: max-content; display: inline-flex; align-items: center; gap: 12px;
  padding: 4px 5px 4px 15px; border-radius: 999px; background: var(--white); color: var(--ink);
  font-size: 11px; font-weight: 700; box-shadow: 0 10px 28px rgba(32,31,29,.08);
  flex-shrink: 0;
}
.research-cta span { white-space: nowrap; flex-shrink: 0; }
.research-cta i {
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: var(--white); font-style: normal;
  transition: transform .35s cubic-bezier(.2,.75,.2,1);
}
.research-cta:hover i { transform: translateX(3px) rotate(-12deg); }
.ingredient-focus-section { padding-inline: 24px; background: var(--white); }
.ingredient-focus-panel {
  max-width: clamp(1000px, 92vw, 1560px); margin: 70px auto;
  border-radius: 9999px; overflow: hidden;
  background: var(--orange) !important; color: var(--white) !important;
  box-shadow: 0 28px 80px rgba(134,65,4,.12);
}
.ingredient-focus-panel .video-copy {
  background:
    radial-gradient(circle at 8% 85%, rgba(255,255,255,.12), transparent 30%),
    var(--orange);
  color: var(--white);
}
.ingredient-focus-panel .video-copy h2 { color: var(--white); }
.ingredient-focus-panel .video-copy .eyebrow { color: rgba(255,255,255,.85); }
.ingredient-focus-panel .video-copy .lead { color: rgba(255,255,255,.95); }
.ingredient-focus-panel .button.ghost { border-color: var(--white); color: var(--white); }
.ingredient-focus-panel .button.ghost:hover { background: var(--white); color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.contact-cards { display: grid; gap: 12px; margin-top: 35px; }
.contact-card { padding: 22px; border-radius: 32px; background: var(--cloud); }
.form-card { padding: clamp(24px, 5vw, 55px); border-radius: 40px; background: var(--orange-tint); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 11px 2px; border-radius: 0;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-status { margin-top: 18px; color: var(--orange-deep); font-weight: 600; }
.contact-experience {
  gap: clamp(24px, 5vw, 70px); padding: clamp(22px, 4vw, 55px);
  border: 1px solid rgba(32,31,29,.07); border-radius: 68px; background: var(--cloud);
  box-shadow: 0 26px 75px rgba(32,31,29,.07);
}
.contact-intro { padding: clamp(20px, 3vw, 40px); }
.contact-experience .contact-card {
  display: grid; grid-template-columns: 48px 1fr; gap: 4px 15px; align-items: center;
  padding: 16px 20px 16px 16px; border: 1px solid rgba(32,31,29,.08);
  border-radius: 999px; background: var(--white);
}
.contact-experience .contact-card > span {
  grid-row: 1 / 4; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--orange); color: var(--white); font-size: 11px;
}
.contact-experience .contact-card p { margin: 2px 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.contact-experience .contact-card .text-link { width: max-content; font-size: 12px; }
.contact-form-card {
  position: relative; overflow: hidden; padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.12); background:
    radial-gradient(circle at 95% 3%, rgba(232,144,43,.3), transparent 26%),
    var(--ink);
  color: var(--white); box-shadow: 0 28px 75px rgba(32,31,29,.18);
}
.contact-form-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.contact-form-head h3 { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 500; }
.contact-form-head > span {
  flex: none; width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 50%; background: var(--orange); font-size: 20px;
}
.contact-form-card .eyebrow { color: #ffc77d; }
.contact-form-note { max-width: 540px; margin: 14px 0 30px; color: rgba(255,255,255,.62); }
.contact-form-card .field label { padding-left: 16px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-card .field input, .contact-form-card .field select, .contact-form-card .field textarea {
  min-height: 52px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; background: rgba(255,255,255,.08); color: var(--white);
}
.contact-form-card .field textarea { min-height: 130px; border-radius: 28px; }
.contact-form-card .field select option { color: var(--ink); }
.contact-form-card .field input:focus, .contact-form-card .field select:focus, .contact-form-card .field textarea:focus {
  outline: 0; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,144,43,.16);
}
.contact-submit { width: 100%; justify-content: space-between; padding-left: 22px; }
.contact-submit span { font-size: 1.25rem; }
.account-section {
  padding-inline: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(232,144,43,.12), transparent 24%),
    var(--paper);
}
.account-grid {
  display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(24px, 4vw, 58px);
  padding: clamp(18px, 3vw, 34px); border: 1px solid rgba(32,31,29,.08); border-radius: 58px;
  background: rgba(255,255,255,.72); box-shadow: 0 26px 75px rgba(32,31,29,.07);
}
.account-nav {
  position: sticky; top: 112px; display: flex; flex-direction: column; align-self: start; gap: 9px;
  padding: 10px; border-radius: 34px; background: var(--cloud);
}
.account-nav a, .account-logout {
  min-height: 54px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px;
  padding: 8px 15px 8px 10px; border: 0; border-radius: 999px; background: transparent;
  color: var(--ink); text-align: left; cursor: pointer; font-weight: 650;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}
.account-nav a span, .account-logout span {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: var(--white); color: var(--orange-deep); font-size: 10px;
}
.account-nav a.active, .account-nav a:hover, .account-logout:hover {
  background: var(--ink); color: var(--white); transform: translateX(3px);
}
.account-nav a.active span, .account-nav a:hover span, .account-logout:hover span {
  background: var(--orange); color: var(--white);
}
.account-main { min-width: 0; padding: 8px; }
.account-profile-pill {
  min-height: 138px; display: grid; grid-template-columns: 78px 1fr auto; gap: 22px; align-items: center;
  padding: 24px 34px; overflow: hidden; border-radius: 999px;
  background:
    radial-gradient(circle at 88% 20%, rgba(232,144,43,.35), transparent 28%),
    var(--ink);
  color: var(--white); box-shadow: 0 22px 58px rgba(32,31,29,.17);
}
.account-avatar {
  width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: var(--white); font-family: var(--serif); font-size: 1.9rem;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.12);
}
.account-profile-pill .eyebrow { margin-bottom: 7px; color: #ffc77d; }
.account-profile-pill h2 { font-size: clamp(1.85rem, 3vw, 3.35rem); }
.account-profile-pill p { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }
.account-profile-pill > strong {
  padding: 10px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  background: rgba(255,255,255,.1); font-size: 12px; white-space: nowrap;
}
.dashboard-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; overflow: hidden; margin-top: 14px;
  border: 1px solid rgba(32,31,29,.1); border-radius: 999px; background: var(--cloud);
  box-shadow: 0 16px 42px rgba(32,31,29,.055);
}
.dashboard-card {
  min-width: 0; min-height: 126px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center;
  padding: 18px 24px; border: 0; border-radius: 0; background: transparent;
  transition: background .3s ease, color .3s ease;
}
.dashboard-card + .dashboard-card { border-left: 1px solid rgba(32,31,29,.1); }
.dashboard-card:hover { background: var(--white); }
.dashboard-card > span {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: var(--white); font-size: 11px;
}
.dashboard-card .eyebrow { margin-bottom: 5px; }
.dashboard-card h3 { overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1rem, 1.35vw, 1.4rem); font-weight: 500; }
.dashboard-card p:last-child { margin: 5px 0 0; font-size: 12px; line-height: 1.4; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-orders {
  margin-top: clamp(45px, 6vw, 76px); padding: clamp(24px, 4vw, 48px);
  scroll-margin-top: 120px; border-radius: 48px; background: var(--cloud);
}
.account-section-title { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 28px; }
.account-section-title h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.orders-empty {
  min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 35px;
  padding: clamp(28px, 5vw, 55px); border: 1px solid var(--line); border-radius: 999px; background: var(--white);
}
.orders-empty > div { max-width: 600px; }
.order-history { display: grid; gap: 18px; }
.order-card { padding: clamp(22px, 3vw, 36px); border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; transition: box-shadow .24s ease; }
.order-card[open] { box-shadow: 0 12px 34px rgba(32,31,29,.055); }
.order-card summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; outline: none; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.order-card summary::-webkit-details-marker { display: none; }
.order-card:not([open]) summary { padding-bottom: 0; border-bottom-color: transparent; }
.order-card footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; }
.order-arrow { display: inline-block; margin-left: 8px; font-size: 13px; color: var(--muted); transition: transform .25s ease; }
.order-card[open] .order-arrow { transform: rotate(180deg); }
.order-total { display: grid; justify-items: end; gap: 5px; }
.order-total small { color: var(--muted); }
.order-total strong { font-size: 1.25rem; }
.order-products { display: flex; flex-wrap: wrap; gap: 14px; padding: 22px 0; }
.order-products span {
  min-width: 190px; display: grid; grid-template-columns: 58px 1fr; column-gap: 12px; align-items: center;
  padding: 10px 14px 10px 10px; border-radius: 14px; background: var(--cloud);
}
.order-products img { grid-row: 1 / 3; width: 58px; height: 58px; object-fit: contain; }
.order-products b { font-size: 14px; }
.order-products small { color: var(--muted); }
.order-address, .tracking-number { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.order-address b, .tracking-number b { color: var(--ink); }
.tracking-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 28px; }
.tracking-steps::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 15px; height: 2px; background: var(--line);
}
.tracking-steps span { position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; text-align: center; }
.tracking-steps i {
  width: 30px; height: 30px; display: grid; place-items: center; border: 2px solid var(--cloud);
  border-radius: 50%; background: var(--cloud); color: var(--muted); font-size: 11px; font-style: normal;
}
.tracking-steps .complete i { border-color: var(--orange); background: var(--orange); color: var(--white); }
.tracking-steps small { color: var(--muted); font-size: 10px; }
.tracking-steps .complete small { color: var(--ink); font-weight: 600; }

/* Address maintenance during checkout */
.address-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.address-select-card {
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: border-color .24s ease, box-shadow .24s ease;
}
.address-select-card:hover {
  border-color: rgba(232, 144, 43, 0.4);
}
.address-select-card.active {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232,144,43,.08);
}
.address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.address-card-header strong {
  font-size: 14px;
  color: var(--ink);
}
.address-select-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.card-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.address-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.btn-text {
  border: 0;
  background: none;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s ease;
}
.btn-text:hover {
  color: var(--orange-deep);
}
.btn-text.delete-addr-btn:hover {
  color: var(--orange);
}
@media (max-width: 768px) {
  .address-cards-grid { grid-template-columns: 1fr; gap: 12px; }
}

.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 45px; }
.cart-list { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 105px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 105px; aspect-ratio: 1; object-fit: contain; border-radius: 12px; background: var(--cloud); }
.cart-item button { border: 0; background: none; text-decoration: underline; cursor: pointer; color: var(--muted); }

/* Drawer Cart & Mobile Cart Layout Optimization */
.drawer .cart-list {
  border-top: none;
}
.drawer .cart-item {
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
}
.drawer .cart-item img {
  grid-row: 1 / 3;
  width: 80px;
  height: 80px;
}
.drawer .cart-item > div:last-child {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 12px;
}
.drawer .cart-quantity {
  margin-top: 0;
}

@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: start;
  }
  .cart-item img {
    grid-row: 1 / 3;
    width: 80px;
    height: 80px;
  }
  .cart-item > div:last-child {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 12px;
  }
  .cart-quantity {
    margin-top: 0;
  }
}
.cart-quantity { display: inline-flex; align-items: center; gap: 10px; margin-top: 9px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.cart-quantity button { width: 25px; height: 25px; text-decoration: none; border-radius: 50%; }
.coupon-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 20px 0 8px; }
.coupon-form input { min-width: 0; border: 1px solid var(--line); border-radius: 999px; padding: 11px 15px; background: var(--paper); }
.coupon-form button { border: 0; border-radius: 999px; padding: 10px 15px; background: var(--ink); color: var(--white); cursor: pointer; }
.coupon-status { min-height: 22px; font-size: 13px; }
.checkout-trust { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.checkout-trust span { padding: 6px 9px; border-radius: 999px; background: var(--cloud); color: var(--muted); font-size: 11px; }
.success-card { max-width: 850px; padding: clamp(40px, 8vw, 100px); border-radius: 32px; background: var(--orange-tint); text-align: center; }
.success-card > span { display: grid; place-items: center; width: 70px; aspect-ratio: 1; margin: 0 auto 28px; border-radius: 50%; background: var(--orange); color: white; font-size: 2rem; }
.success-actions-pill {
  width: max-content; max-width: 100%; display: inline-grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; margin-top: 28px; border: 1px solid var(--ink); border-radius: 999px;
  background: var(--white); box-shadow: 0 16px 38px rgba(32,31,29,.09);
}
.success-actions-pill a {
  min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 28px; font-weight: 700; white-space: nowrap;
  transition: background .28s ease, color .28s ease;
}
.success-actions-pill a:first-child { background: var(--orange); color: var(--white); }
.success-actions-pill a + a { border-left: 1px solid var(--ink); }
.success-actions-pill a:hover { background: var(--ink); color: var(--white); }
.success-actions-pill a span { transition: transform .28s ease; }
.success-actions-pill a:hover span { transform: translateX(4px); }
.summary-card { position: sticky; top: 130px; align-self: start; padding: 28px; border-radius: 18px; background: var(--cloud); }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-total { font-size: 1.3rem; font-weight: 600; }
.summary-card .button { width: 100%; margin-top: 20px; }
.empty-state { padding: 65px 20px; border-radius: var(--radius); background: var(--cloud); text-align: center; }
.checkout-section { padding: 28px; border-radius: 18px; background: var(--cloud); margin-bottom: 16px; }
.checkout-section h3 { margin-bottom: 20px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.payment-option { display: flex; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.checkout-progress {
  position: relative; z-index: 4; width: max-content; max-width: calc(100% - 40px); display: flex; gap: 6px;
  margin-top: -31px; padding: 7px; overflow-x: auto; border: 1px solid rgba(32,31,29,.08); border-radius: 999px;
  background: rgba(250,247,242,.94); backdrop-filter: blur(18px); box-shadow: 0 16px 42px rgba(32,31,29,.09);
  scrollbar-width: none;
}
.checkout-progress::-webkit-scrollbar { display: none; }
.checkout-progress span { display: flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.checkout-progress i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--cloud); font-size: 11px; font-style: normal; }
.checkout-progress .active { background: var(--ink); color: var(--white); }
.checkout-progress .active i { background: var(--orange); color: var(--white); }
.checkout-body { background: linear-gradient(180deg, var(--paper), var(--white)); }
.checkout-heading { max-width: 760px; margin-bottom: 38px; }
.checkout-heading h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.checkout-section { position: relative; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(32,31,29,.07); background: var(--white); box-shadow: 0 18px 55px rgba(32,31,29,.045); }
.checkout-number { position: absolute; right: 28px; top: 28px; color: var(--orange-deep); font-size: 12px; letter-spacing: .12em; }
.checkout-section .form-grid { gap: 15px; }
.checkout-section .field { gap: 6px; }
.checkout-section .field label { padding-left: 15px; color: var(--muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.checkout-section .field input {
  min-height: 50px; padding: 10px 17px; border: 1px solid rgba(32,31,29,.12);
  border-radius: 999px; background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.checkout-section .field input:focus {
  outline: 0; border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,144,43,.12);
}
.checkout-payment .payment-option {
  padding: 15px; border: 1px solid var(--line); border-radius: 14px; margin-top: 10px; background: var(--paper);
}
.checkout-payment .payment-option:has(input:checked) { border-color: var(--orange); background: var(--orange-tint); }
.checkout-payment .payment-option span { display: grid; }
.checkout-payment .payment-option small { color: var(--muted); }
.checkout-payment.is-locked .payment-option { opacity: .45; pointer-events: none; }
.checkout-lock-note {
  margin: 0 0 16px; padding: 12px 14px; border-radius: 8px;
  background: var(--orange-tint); color: var(--orange-deep);
}
.checkout-summary button:disabled {
  opacity: .45; cursor: not-allowed; transform: none;
}
.checkout-auth-gate { align-items: start; }
.checkout-summary {
  overflow: hidden; border: 1px solid rgba(32,31,29,.08); background: var(--white);
  box-shadow: 0 24px 70px rgba(32,31,29,.08);
}
.checkout-summary::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, var(--orange), #ffc77d);
}
.checkout-summary > h3 { margin-bottom: 20px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }

.newsletter { padding: 70px 0; background: var(--orange); color: var(--white); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.newsletter h2 { font-size: clamp(2.5rem, 4vw, 4.6rem); }
.newsletter .eyebrow { color: var(--white); opacity: .78; }
.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,.8); }
.newsletter-form input { flex: 1; border: 0; background: transparent; color: var(--white); padding: 14px 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.75); }
.newsletter-form button { border: 0; background: transparent; color: var(--white); font-weight: 600; cursor: pointer; }
.site-footer { padding: 65px 0 26px; background: var(--ink); color: white; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 150px; filter: invert(1) grayscale(1) brightness(3); }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.65); margin-top: 22px; }
.footer-col h3 { margin-bottom: 17px; color: #f0ae60; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col address { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-style: normal; font-size: 15px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 45px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: 13px; }

.overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(32,31,29,.22);
  backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transition: .25s;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; z-index: 101; right: 16px; top: 16px; bottom: 16px; width: min(480px, calc(100% - 32px));
  padding: 28px; background: var(--paper); transform: translateX(calc(100% + 32px)); transition: transform .35s ease;
  overflow-y: auto; border-radius: 28px;
  box-shadow: 0 25px 70px rgba(32,31,29,0.18); border: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-close { border: 0; background: none; font-size: 1.8rem; cursor: pointer; }
#menu-drawer {
  left: 0; right: auto; top: 0; bottom: 0; width: min(340px, 86vw);
  padding: 0; border-radius: 0 28px 28px 0;
  transform: translateX(calc(-100% - 24px));
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(250,247,242,.95)),
    radial-gradient(circle at 0 0, rgba(232,144,43,.18), transparent 34%);
}
#menu-drawer.open { transform: translateX(0); }
#menu-drawer .drawer-head {
  padding: 7px 8px 22px; border-bottom: 0;
}
#menu-drawer .drawer-head strong { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
#menu-drawer .drawer-close { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: white; }
.menu-drawer-profile {
  position: sticky; top: 0; z-index: 2; display: grid; grid-template-columns: 1fr 38px;
  align-items: center; gap: 12px; padding: 18px 18px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,244,228,.92));
  border-bottom: 1px solid rgba(32,31,29,.08);
  box-shadow: 0 10px 26px rgba(32,31,29,.05);
}
.menu-drawer-profile img { width: 92px; height: 56px; object-fit: contain; }
.menu-drawer-profile .drawer-close {
  width: 36px; height: 36px; font-size: 1.15rem;
  background: rgba(32,31,29,.08); color: var(--ink);
}
.menu-drawer-actions {
  margin: 4px 12px 18px; padding-top: 12px; border-top: 1px solid rgba(32,31,29,.08);
}
.menu-drawer-actions button {
  width: 100%; min-height: 44px; border: 0; border-radius: 14px;
  background: rgba(32,31,29,.08); color: var(--ink); font-weight: 800;
}
.mobile-nav { display: none; }
.mobile-app-dock { display: none; }
.toast {
  position: fixed; z-index: 120; left: 50%; bottom: 28px; transform: translate(-50%, 30px);
  padding: 12px 19px; border-radius: 99px; background: var(--ink); color: white; opacity: 0;
  pointer-events: none; transition: .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .62s ease, transform .68s cubic-bezier(.22,.75,.2,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; will-change: auto; }
.research-card.reveal { transform: translateY(46px) rotate(.8deg); }
.research-card.reveal:nth-child(even) { transform: translateY(46px) rotate(-.8deg); }
.research-card.reveal.visible { transform: none; }
.company-story-panel.reveal,
.company-mission-panel.reveal,
.ingredient-focus-panel.reveal,
.contact-form-card.reveal {
  transform: translateY(40px) scale(.985);
}
.company-story-panel.reveal.visible,
.company-mission-panel.reveal.visible,
.ingredient-focus-panel.reveal.visible,
.contact-form-card.reveal.visible { transform: none; }
.word-mask { display: inline-block; overflow: hidden; vertical-align: -.13em; padding-bottom: .13em; }
.word-mask + .word-mask { margin-left: .22em; }
.word-mask .word {
  display: inline-block; transform: translateY(115%) rotate(2deg); opacity: 0;
  transition: transform .82s cubic-bezier(.2,.75,.2,1), opacity .55s ease;
  transition-delay: calc(var(--word-index, 0) * 42ms);
}
.word-revealed .word-mask .word { transform: translateY(0) rotate(0); opacity: 1; }
.product-grid .reveal:nth-child(2), .values-grid .reveal:nth-child(2), .research-grid .reveal:nth-child(2) { transition-delay: .08s; }
.product-grid .reveal:nth-child(3), .values-grid .reveal:nth-child(3), .research-grid .reveal:nth-child(3) { transition-delay: .16s; }
.product-grid .reveal:nth-child(4), .values-grid .reveal:nth-child(4), .research-grid .reveal:nth-child(4) { transition-delay: .24s; }
.research-grid .reveal:nth-child(5) { transition-delay: .32s; }
.research-grid .reveal:nth-child(6) { transition-delay: .4s; }
.hero-media { animation: hero-media-in 1.6s cubic-bezier(.2,.75,.2,1) both; }
.hero-content .eyebrow { animation: hero-copy-in .75s .18s both; }
.hero-content h1 { animation: hero-copy-in .9s .28s both; }
.hero-content .lead { animation: hero-copy-in .9s .4s both; }
.hero-content .actions { animation: hero-copy-in .9s .52s both; }
.page-hero .eyebrow { animation: hero-copy-in .65s .05s both; }
.page-hero h1 { animation: hero-copy-in .85s .14s both; }
.page-hero .lead { animation: hero-copy-in .85s .25s both; }
@keyframes hero-media-in { from { transform: scale(1.08); opacity: .55; } to { transform: scale(1); opacity: 1; } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(28px); filter: blur(7px); } to { opacity: 1; transform: none; filter: none; } }

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: 150px 1fr 150px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 13px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .research-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .research-card { padding: 32px 38px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .container, .nav-shell { width: min(calc(100% - 40px), var(--max)); }
  .page-hero-inner { width: min(calc(100% - 40px), var(--max)); }
  .nav-shell { height: 68px; grid-template-columns: 1fr auto; }
  .desktop-nav, .home-actions { display: none !important; }
  .desktop-nav, .nav-utility .account-link, .nav-utility .search-button { display: none; }
  .nav-utility { gap: 4px; }
  .menu-button { display: grid; }
  .logo { height: 55px; }
  .hero { min-height: 82svh; }
  .hero-media::after { background: linear-gradient(0deg, rgba(32,31,29,.92), rgba(32,31,29,.14) 82%); }
  .hero-content { width: 100%; padding: 90px 0 55px; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .hero-stat { display: none; }
  .home-header .nav-shell { width: 100%; height: 80px; padding: 10px 20px; display: flex; }
  .home-header .logo {
    flex-basis: auto; width: 96px; height: 67px; top: 12px;
  }
  .home-header .logo img { width: 96px; height: 67px; }
  .home-header .logo::after { background-size: 96px 67px; }
  .home-header .desktop-nav { display: none; }
  .home-actions { display: none; }
  .home-header .nav-utility {
    position: absolute; inset: 0; display: block; visibility: visible; pointer-events: none;
    margin: 0; padding: 0; border: 0; background: none; color: var(--white); backdrop-filter: none;
  }
  .home-header .nav-utility .icon-button {
    position: absolute; top: 16px; width: 48px; height: 48px; pointer-events: auto;
    border: 1px solid rgba(255,255,255,.22); background: rgba(58,62,58,.42);
    backdrop-filter: blur(16px) saturate(1.2);
  }
  .home-header .nav-utility .menu-button { display: grid; left: 20px; }
  .home-header .nav-utility button[data-open="cart"] { right: 20px; }
  .trust-row { animation: ticker 18s linear infinite; width: max-content; }
  @keyframes ticker { to { transform: translateX(-50%); } }
  .statement, .section-heading, .page-hero-inner, .science-grid, .split-story,
  .contact-grid, .newsletter-inner, .cart-layout, .checkout-layout, .product-detail {
    grid-template-columns: 1fr;
  }
  .product-story-banner { grid-template-columns: 1fr; }
  .product-story-visual { min-height: 470px; order: -1; }
  .product-detail-panels { grid-template-columns: 1fr; }
  .statement-with-video {
    grid-template-columns: 1fr;
    gap: 34px;
    border-radius: 40px;
    padding: 40px 24px;
    max-width: 100%;
    margin: 0;
  }
  .statement-with-video > div:first-child {
    padding: 0;
  }
  .statement-video-card {
    min-height: auto;
    aspect-ratio: 1.5 / 1;
    max-width: 100%;
    border-radius: 24px;
  }
  .statement-video-card video {
    border-radius: 24px;
  }
  .statement-copy, .page-hero .lead { margin-left: 0; }
  .section-heading { align-items: start; }
  .science-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    border-radius: 40px;
    padding: 40px 24px;
    max-width: 100%;
    margin: 0;
    background: var(--cloud);
    transform: none !important;
  }
  .science-grid.reveal.visible {
    transform: none !important;
  }
  .science-visual {
    min-height: auto;
    aspect-ratio: 1.5 / 1;
    max-width: 100%;
    border-radius: 24px;
    width: 100%;
    transform: none !important;
    margin: 0;
  }
  .science-visual video {
    transform: none !important;
    border-radius: 24px;
  }
  .science-grid > :first-child:not(.science-visual) {
    padding: 24px;
    transform: none !important;
    border-radius: 24px;
  }
  .science-grid > :last-child {
    padding: 0;
    transform: none !important;
  }
  .science-visual-badge {
    transform: rotate(-8deg);
    bottom: 8%;
    left: 8%;
  }
  .video-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    border-radius: 40px;
    padding: 40px 24px;
    max-width: 100%;
    margin: 40px 0;
    min-height: auto;
    clip-path: none;
    background: var(--cloud);
  }
  .video-feature.cinematic-in {
    clip-path: none;
    transform: none;
  }
  .video-feature-media {
    min-height: auto;
    aspect-ratio: 1.5 / 1;
    max-width: 100%;
    border-radius: 24px;
  }
  .video-feature-media video {
    border-radius: 24px;
  }
  .video-copy {
    padding: 0;
  }
  .process-quality-pill {
    min-height: 0; gap: 0; padding: 14px; overflow: hidden; border-radius: 40px;
    background:
      radial-gradient(circle at 88% 8%, rgba(232,144,43,.2), transparent 27%),
      #20231f;
  }
  .process-quality-pill .video-feature-media {
    margin: 0; aspect-ratio: 1.35 / 1; border-radius: 30px 110px 30px 110px; box-shadow: none;
  }
  .process-quality-pill .video-feature-media video { border-radius: inherit; }
  .process-quality-copy { padding: 42px 30px 50px; }
  .process-capabilities .feature-list li { border-radius: 28px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .product-gallery { position: static; min-height: 480px; }
  .product-detail { position: relative; }
  .product-back-btn {
    position: absolute; top: 16px; left: 16px; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.88); color: var(--ink);
    border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 14px rgba(32,31,29,0.07);
    backdrop-filter: blur(8px); transition: transform .2s ease, opacity .2s ease;
  }
  .product-back-btn:hover { opacity: .75; transform: scale(1.05); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .research-grid { grid-template-columns: 1fr; }
  .company-story-panel,
  .company-mission-panel,
  .contact-experience {
    padding: 36px 24px;
    border-radius: 38px;
  }
  .company-story-panel .story-copy:last-child { padding: 26px; border-radius: 28px; }
  .contact-intro { padding: 8px; }
  .contact-form-card { padding: 32px 22px; border-radius: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .account-nav {
    position: static; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px; border-radius: 999px;
  }
  .account-nav a, .account-logout { grid-template-columns: 28px 1fr; padding: 7px 10px 7px 7px; font-size: 12px; }
  .account-nav a span, .account-logout span { width: 28px; height: 28px; }
  .account-nav a.active, .account-nav a:hover, .account-logout:hover { transform: none; }
  .account-profile-pill { grid-template-columns: 72px 1fr; border-radius: 46px; }
  .account-profile-pill > strong { grid-column: 2; width: max-content; }
  .account-avatar { width: 72px; height: 72px; font-size: 1.75rem; }
  .dashboard-cards { grid-template-columns: 1fr; border-radius: 42px; }
  .dashboard-card + .dashboard-card { border-top: 1px solid rgba(32,31,29,.1); border-left: 0; }
  .summary-card { position: static; }
  .page-hero h1 { max-width: 100%; font-size: clamp(3.2rem, 12vw, 5.2rem); overflow-wrap: anywhere; }
  .checkout-layout { gap: 28px; }
  .mobile-nav {
    display: grid; grid-template-columns: 1fr; gap: 6px; align-content: start;
    padding: 14px 12px 22px; border: 0; border-radius: 0;
    background: transparent; box-shadow: none;
  }
  .mobile-nav a {
    min-height: 48px; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 11px;
    padding: 0 12px; border: 0; border-radius: 14px;
    background: transparent; color: var(--ink); font-family: var(--sans); font-size: 14px; font-weight: 700;
    box-shadow: none; transition: background .18s ease, color .18s ease, transform .18s ease;
    white-space: nowrap;
  }
  .mobile-nav a + a { border-top: 0; }
  .mobile-nav a:hover { background: rgba(232,144,43,.1); transform: translateX(2px); }
  .mobile-nav a.active { background: rgba(32,31,29,.08); color: var(--ink); }
  .mobile-nav-icon {
    width: 32px; height: 32px; display: grid; place-items: center; border-radius: 11px;
    color: var(--muted); background: rgba(32,31,29,.045);
  }
  .mobile-nav-icon svg {
    width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.75;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .mobile-nav a.active .mobile-nav-icon { background: var(--orange); color: var(--white); }
  .capability-pill { grid-template-columns: 1fr; min-height: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .capability-intro {
    min-height: 420px; padding: 55px 42px; border-radius: 999px;
  }
  .capability-pill .feature-list {
    width: 100%; margin-top: 18px; padding: 28px 34px; border: 1px solid var(--line); border-radius: 36px; background: var(--cloud);
  }
  .combo-section { height: auto !important; min-height: 0; padding: 90px 0 70px; }
  .combo-sticky {
    position: relative; top: auto; height: auto; overflow: visible; padding: 0;
  }
  .combo-heading .section-heading { min-height: 280px; }
  .combo-grid {
    height: 560px; padding-inline: 15px; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-padding-inline: 15px;
  }
  .combo-progress { display: none; }
  .drawer {
    right: 12px; top: 12px; bottom: 12px; width: calc(100% - 24px);
    border-radius: 20px; transform: translateX(calc(100% + 24px));
    padding: 22px;
  }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .page-hero-inner { width: min(calc(100% - 30px), var(--max)); }
  .announcement { padding-inline: 20px; font-size: 11px; }
  .home-header .nav-shell { position: relative; height: 88px; padding: 8px 14px; }
  .home-header .logo {
    width: 112px; height: 74px; top: 7px; padding: 3px 9px;
    border: 1px solid rgba(255,255,255,.22); border-radius: 22px;
    background: rgba(58,62,58,.3); backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: inset 0 1px rgba(255,255,255,.15), 0 12px 32px rgba(32,31,29,.12);
  }
  .home-header .logo img { width: 94px; height: 68px; }
  .home-header .logo::after { inset: 3px 9px; background-size: 94px 68px; }
  .home-header.scrolled .logo {
    top: 8px; transform: translateX(-50%) scale(.94);
    background: transparent; border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .home-header .desktop-nav { display: none; }
  .home-header .nav-utility {
    position: absolute; inset: 0; display: block; visibility: visible; pointer-events: none;
    margin: 0; padding: 0; border: 0; background: none; color: var(--white); backdrop-filter: none;
  }
  .home-header .nav-utility .icon-button {
    position: absolute; top: 20px; width: 48px; height: 48px; pointer-events: auto;
    border: 1px solid rgba(255,255,255,.22); background: rgba(58,62,58,.42);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: inset 0 1px rgba(255,255,255,.14), 0 10px 28px rgba(32,31,29,.1);
  }
  .home-header .nav-utility .menu-button { display: grid; left: 14px; }
  .home-header .nav-utility button[data-open="cart"] { right: 14px; }
  .home-header.scrolled .nav-utility .icon-button { background: rgba(76,82,76,.68); }
  .home-header .icon-button:hover { background: rgba(255,255,255,.16); }
  .page-home .hero-cart { display: none; }
  .hero-primary-pill { width: 100%; grid-template-columns: 1fr 1fr; }
  .hero-pill-segment {
    min-width: 0; min-height: 54px; padding: 10px 12px;
    font-size: 12px; line-height: 1.2; text-align: center; white-space: normal;
  }
  .hero .score-button { width: 100%; }
  .values-grid, .form-grid, .auth-grid { grid-template-columns: 1fr; }
  .research-card,
  .research-card:nth-child(3n+2),
  .research-card:nth-child(3n) {
    min-height: 280px; padding: 28px; border-radius: 64px;
  }
  .research-card:hover { border-radius: 64px; }
  .value-card, .value-card:last-child { width: 100%; grid-column: auto; min-height: 185px; grid-template-columns: 42% 58%; }
  .value-pill-head, .value-pill-copy { padding: 25px; }
  .value-card h3 { font-size: clamp(1.55rem, 8vw, 2.25rem); }
  .shop-jump { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .shop-jump::-webkit-scrollbar { display: none; }
  .shop-jump a { padding: 10px 14px; }
  .shop-section-title { align-items: flex-start; flex-direction: column; }
  .shop-section-title select { width: 100%; }
  .product-grid, .shop-grid, .bundle-shop-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .combo-heading .section-heading { min-height: 330px; flex-direction: column; justify-content: flex-start; gap: 24px; }
  .combo-heading .section-heading .text-link { align-self: flex-start; }
  .combo-section .section-heading h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .combo-grid { align-items: stretch; height: 540px; gap: 12px; }
  .combo-card { flex-basis: min(84vw, 340px); width: auto; height: 100%; }
  .combo-card:hover, .combo-card:focus-within { transform: translateY(-5px); }
  .combo-media { padding: 18px; }
  .combo-overlay strong { font-size: clamp(2rem, 10vw, 3rem); }
  .product-story-section { padding-bottom: 70px; }
  .product-story-banner { width: calc(100% - 24px); min-height: 680px; border-radius: 28px; }
  .product-story-visual { min-height: 380px; }
  .product-story-copy { padding: 30px 24px 42px; }
  .product-story-copy h2 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .product-section-pills {
    top: 82px; justify-content: flex-start; width: 100%; overflow-x: auto;
    border-radius: 20px; scrollbar-width: none;
  }
  .product-detail-panel { min-height: 290px; }
  .mobile-buy-bar {
    position: fixed; z-index: 45; left: 10px; right: 10px; bottom: 10px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 10px 10px 17px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px;
    background: rgba(32,31,29,.88); color: white; backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(32,31,29,.24);
  }
  .mobile-buy-bar > div { display: grid; }
  .mobile-buy-bar span { color: #ffc77d; font-size: 13px; }
  .mobile-buy-bar .button { min-height: 46px; padding: 9px 17px; }
  .statement-video-card { min-height: 360px; border-radius: 24px; }
  .statement-video-card figcaption { left: 16px; right: 16px; bottom: 16px; max-width: calc(100% - 32px); transform: none; width: auto; justify-content: center; }
  .product-card-media { aspect-ratio: 1.12; }
  .video-feature { min-height: 70svh; }
  .timeline-item {
    grid-template-columns: 1fr; gap: 20px; padding: 14px 14px 28px;
    border-radius: 34px;
  }
  .timeline-item .step { width: 100%; min-height: 58px; grid-template-columns: 1fr 74px; }
  .timeline-item > div { padding-inline: 8px; }
  .contact-grid { gap: 45px; }
  .field.full { grid-column: auto; }
  .checkout-section { padding: 24px 18px; border-radius: 28px; }
  .checkout-number { right: 20px; top: 22px; }
  .checkout-section .field input { min-height: 48px; padding-inline: 15px; }
  .checkout-payment .payment-option { border-radius: 999px; padding: 12px 15px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 12px; }
  .account-nav {
    position: sticky;
    top: 72px;
    z-index: 45;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(250,247,242,.95);
    backdrop-filter: blur(12px);
    padding: 8px 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    margin: 0 -12px 24px -12px;
    gap: 8px;
  }
  .account-nav::-webkit-scrollbar {
    display: none;
  }
  .account-nav a, .account-logout {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    min-height: 38px;
    border-radius: 999px;
    background: var(--cloud);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
  }
  .account-nav a span, .account-logout span {
    display: none;
  }
  .account-nav a.active, .account-nav a:hover, .account-logout:hover {
    background: var(--ink) !important;
    color: var(--white) !important;
  }
  .account-section { padding-inline: 10px; }
  .account-grid { padding: 12px; border-radius: 34px; }
  .account-main { padding: 0; }
  .account-profile-pill {
    min-height: 0; grid-template-columns: 70px 1fr; gap: 16px;
    padding: 20px 17px; border-radius: 28px;
  }
  .account-avatar { width: 70px; height: 70px; font-size: 1.65rem; }
  .account-profile-pill h2 { font-size: 1.85rem; overflow-wrap: anywhere; }
  .account-profile-pill p { font-size: 12px; overflow-wrap: anywhere; }
  .account-profile-pill > strong { grid-column: 1 / -1; justify-self: start; }
  .dashboard-cards {
    display: grid; grid-template-columns: 1fr; gap: 12px;
    background: transparent; border: 0; box-shadow: none; overflow: visible; margin-top: 20px;
  }
  .dashboard-card {
    min-height: 100px; padding: 20px 24px; border: 1px solid rgba(32,31,29,.08) !important;
    border-radius: 20px !important; background: var(--white) !important;
    box-shadow: 0 8px 24px rgba(32,31,29,.03);
  }
  .dashboard-card h3 { font-size: 1.15rem; }
  .account-orders { padding: 28px 18px; border-radius: 28px; }
  .orders-empty { border-radius: 28px; }
  .account-section-title, .orders-empty, .order-card summary, .order-card > footer {
    align-items: flex-start; flex-direction: column;
  }
  .orders-empty .button { width: 100%; }
  .success-actions-pill { width: 100%; }
  .success-actions-pill a { min-width: 0; padding: 11px 14px; font-size: 13px; white-space: normal; }
  .order-total { justify-items: start; }
  .tracking-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .tracking-steps::before { left: 15px; right: auto; top: 15px; bottom: 15px; width: 2px; height: auto; }
  .tracking-steps span { grid-template-columns: 30px 1fr; justify-items: start; align-items: center; text-align: left; }
  .tracking-steps small { font-size: 12px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item img { width: 80px; }
  .cart-item > :last-child { grid-column: 2; }
  .quantity-row { align-items: stretch; flex-direction: column; }

  /* Mobile app shell */
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    font-size: 14.5px; line-height: 1.5;
  }
  .section { padding: 42px 0; }
  .section-sm { padding: 30px 0; }
  h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.95rem, 9vw, 2.5rem); line-height: 1.02; }
  h3 { font-size: 1.08rem; }
  .lead { font-size: .98rem; line-height: 1.5; }
  .eyebrow { margin-bottom: 10px; font-size: 10px; letter-spacing: .12em; }
  .button { min-height: 46px; padding: 10px 17px; font-size: 13px; }

  .announcement { min-height: 29px; padding: 5px 12px; font-size: 9px; }
  .home-header .nav-shell { height: 72px; padding: 7px 12px; }
  .home-header .logo {
    width: 90px; height: 58px; top: 7px; padding: 2px 7px; border-radius: 18px;
  }
  .home-header .logo img { width: 76px; height: 54px; }
  .home-header .logo::after { inset: 2px 7px; background-size: 76px 54px; }
  .home-header.scrolled .logo { top: 7px; transform: translateX(-50%) scale(.96); }
  .home-header .nav-utility .icon-button {
    top: 15px; width: 42px; height: 42px; backdrop-filter: blur(12px) saturate(1.1);
  }
  .home-header .nav-utility .menu-button { left: 12px; }
  .home-header .nav-utility button[data-open="cart"] { right: 12px; }

  .hero { min-height: 76svh; }
  .hero-content { padding: 104px 0 38px; }
  .page-home .hero-content { padding-bottom: 118px; }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 2.75rem); }
  .hero .lead { margin-top: 16px; font-size: .95rem; line-height: 1.48; }
  .hero-content .actions { margin-top: 20px; }
  .hero-pill-segment { min-height: 48px; padding: 9px 10px; font-size: 11px; }

  .page-hero {
    min-height: max(430px, 54svh);
    padding: 118px 0 40px;
  }
  .page-hero-inner { gap: 14px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3rem); line-height: .98; }
  .page-hero .lead { max-width: 31rem; font-size: .92rem; line-height: 1.45; }

  .section-heading { gap: 16px; }
  .section-heading h2,
  .shop-section-title h2,
  .combo-section .section-heading h2,
  .checkout-heading h2 { font-size: clamp(1.95rem, 9vw, 2.5rem); }
  .product-grid, .shop-grid { gap: 14px; margin-top: 26px; }
  .product-card, .product-card.is-highlight {
    border-radius: 28px; transform: none; animation: none;
  }
  .product-card:hover, .product-card:focus-within,
  .product-card.is-highlight:hover, .product-card.is-highlight:focus-within { transform: none; }
  .product-card-body { padding: 12px; }
  .product-card h3 { margin: 4px 0 8px; font-size: 1.15rem; }
  .product-meta { font-size: 11px; }
  .quick-add { width: 38px; height: 38px; }
  .shop-now { min-height: 46px; padding: 10px 19px; font-size: 12px; }
  .shop-jump { margin-top: -20px; padding: 4px; gap: 4px; }
  .shop-jump a { padding: 6px 12px; font-size: 11px; gap: 6px; }
  .shop-jump span { min-width: 18px; height: 18px; font-size: 9px; }
  .shop-section-title { gap: 15px; margin-bottom: 24px; }
  .shop-section-title select { min-height: 46px; padding: 9px 14px; font-size: 14px; }

  .statement-with-video, .science-grid {
    gap: 22px; padding: 24px 18px; border-radius: 30px;
  }
  .statement-video-card, .science-visual { border-radius: 22px; }
  .statement-video-card { min-height: 250px; }
  .video-feature {
    width: calc(100% - 24px); min-height: 0; gap: 22px;
    margin: 30px 12px; padding: 16px; border-radius: 30px;
  }
  .video-copy { padding: 8px 4px 12px; }
  .process-quality-copy { padding: 28px 18px 34px; }
  .process-quality-pill { border-radius: 30px; }
  .process-quality-pill .video-feature-media { border-radius: 24px 62px 24px 62px; }

  .combo-section { padding: 50px 0 42px; }
  .combo-heading .section-heading { min-height: 190px; gap: 14px; }
  .combo-grid { height: 430px; gap: 10px; }
  .combo-card { flex-basis: min(82vw, 310px); border-radius: 26px; }
  .combo-overlay { padding: 21px; }
  .combo-overlay strong { font-size: clamp(1.75rem, 8vw, 2.35rem); }

  .product-hero { padding: 100px 0 56px; }
  .product-gallery { min-height: 350px; border-radius: 28px; }
  .product-info h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  .purchase-box { padding: 18px; border-radius: 26px; }
  .product-story-banner { min-height: 0; border-radius: 28px; }
  .product-story-visual { min-height: 280px; }
  .product-story-copy { padding: 25px 20px 32px; }
  .product-story-copy h2 { font-size: clamp(2.1rem, 10vw, 2.75rem); }
  .product-detail-panel { min-height: 220px; padding: 24px; border-radius: 28px; }

  .research-card,
  .research-card:nth-child(3n+2),
  .research-card:nth-child(3n) {
    min-height: 220px; padding: 24px; border-radius: 44px;
  }
  .research-card:hover { border-radius: 44px; }
  .research-card h3 { font-size: 1.55rem; }
  .research-intro-panel,
  .company-story-panel,
  .company-mission-panel,
  .ingredient-focus-panel,
  .contact-experience { padding: 26px 20px; border-radius: 30px; }
  .value-card, .value-card:last-child { min-height: 142px; }
  .value-pill-head, .value-pill-copy { padding: 19px; }
  .value-card h3 { font-size: 1.45rem; }
  .timeline-item { padding: 12px 12px 22px; border-radius: 28px; }

  .contact-form-card { padding: 26px 18px; border-radius: 28px; }
  .contact-form-head h3 { font-size: 2rem; }
  .contact-form-head > span { width: 44px; height: 44px; }
  .field input, .field textarea, .field select { font-size: 16px; }
  .auth-grid .form-card { padding: 24px 19px; border-radius: 28px; }
  .auth-grid .form-card h2 { font-size: 2.15rem !important; }
  .auth-grid .field { gap: 6px; }
  .auth-grid .field input {
    min-height: 48px; padding: 10px 15px !important;
    border: 1px solid rgba(32,31,29,.13) !important; border-radius: 999px !important;
    background: rgba(255,255,255,.72) !important;
  }
  .contact-experience .contact-card { border-radius: 28px; }

  /* Account styles optimized and handled above */

  .checkout-progress { max-width: calc(100% - 24px); padding: 5px; }
  .checkout-progress span { padding: 7px 10px; font-size: 11px; }
  .checkout-section { padding: 21px 16px; border-radius: 24px; }
  .summary-card { padding: 21px; border-radius: 26px; }
  .cart-item { gap: 13px; padding: 15px 0; }

  .newsletter { padding: 42px 0; }
  .newsletter-inner { gap: 24px; }
  .newsletter h2 { font-size: 2.15rem; }
  .newsletter-form input { min-width: 0; font-size: 16px; }
  .site-footer {
    padding: 44px 0 calc(100px + env(safe-area-inset-bottom));
  }
  .footer-top { gap: 30px; }
  .footer-brand img { width: 110px; }
  .footer-brand p, .footer-col a, .footer-col address { font-size: 13px; }
  .footer-bottom { padding-top: 25px; margin-top: 28px; font-size: 11px; }

  .mobile-app-dock {
    position: fixed; z-index: 80; left: 12px; right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
    padding: 6px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px;
    background: rgba(32,31,29,.9); color: rgba(255,255,255,.68);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 18px 50px rgba(32,31,29,.28);
  }
  .mobile-app-dock a, .mobile-app-dock button {
    position: relative; min-width: 0; display: grid; place-items: center; align-content: center; gap: 2px;
    padding: 5px; border: 0; border-radius: 999px; background: transparent;
    color: inherit; font-family: var(--sans); font-size: 9px; cursor: pointer;
  }
  .mobile-app-dock svg { width: 19px; height: 19px; }
  .mobile-app-dock .active { background: var(--orange); color: var(--white); }
  .mobile-app-dock i {
    position: absolute; top: 3px; right: 15%; min-width: 16px; height: 16px; display: grid; place-items: center;
    padding: 0 3px; border-radius: 999px; background: var(--orange); color: var(--white);
    font-size: 9px; font-style: normal; font-weight: 700;
  }
  .mobile-app-dock .active i { background: var(--white); color: var(--ink); }
  .page-product .mobile-app-dock { display: none !important; }
  body:not(.page-product) .mobile-app-dock { display: grid !important; }
  .persistent-cart-button {
    right: 18px; bottom: calc(86px + env(safe-area-inset-bottom));
    min-width: 52px; width: 52px; height: 52px; padding: 0;
  }
  .persistent-cart-button span { display: none; }
  .persistent-cart-button i {
    position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px;
    border: 2px solid rgba(32,31,29,.92);
  }
  .page-product .persistent-cart-button {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .page-cart .persistent-cart-button { display: none; }
  .mobile-buy-bar { bottom: calc(10px + env(safe-area-inset-bottom)); }
  .toast { bottom: calc(88px + env(safe-area-inset-bottom)); font-size: 12px; }
  .drawer { padding: 18px; border-radius: 26px; }

  .quote-section {
    max-width: calc(100% - 24px);
    margin: 36px 12px;
    border-radius: 28px;
    box-shadow: 0 12px 36px rgba(32,31,29,0.1);
  }
  .quote-banner {
    height: 340px;
    background: linear-gradient(135deg, #ac5207 0%, #7c3a03 100%);
  }
  .quote-banner-leaves,
  .quote-banner-pills {
    display: none;
  }
  .quote-banner-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.32;
  }
  .quote-banner-text {
    max-width: 90%;
    padding: 24px;
    z-index: 2;
  }
  .quote-banner-text blockquote {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    line-height: 1.35;
  }
  .quote-banner-text cite {
    margin-top: 14px;
    font-size: 10px;
  }

  /* Native-app refinement */
  body { font-size: 13.5px; line-height: 1.46; }
  h1 { font-size: clamp(1.95rem, 9vw, 2.3rem); }
  h2 { font-size: clamp(1.65rem, 7.6vw, 2rem); }
  h3 { font-size: 1rem; }
  .lead { font-size: .9rem; line-height: 1.46; }
  .eyebrow { font-size: 9px; }
  .section { padding: 36px 0; }
  .section-sm { padding: 26px 0; }

  .home-header .logo,
  .home-header.inner-header .logo,
  .page-product .home-header .logo {
    width: 82px; height: 50px; top: 10px; padding: 0;
    border: 0; border-radius: 0;
    background: transparent;
    filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }
  .home-header .logo img,
  .home-header.inner-header .logo img,
  .page-product .home-header .logo img {
    width: 68px; height: 42px; object-fit: contain;
  }
  .home-header .logo::after { display: none; }
  .home-header.scrolled .logo { top: 10px; transform: translateX(-50%); }
  .home-header::before { height: 72px; }

  .hero h1 { font-size: clamp(2.05rem, 9.2vw, 2.35rem); }
  .hero .lead { font-size: .86rem; }
  .page-hero h1 { font-size: clamp(1.95rem, 8.8vw, 2.2rem); }
  .page-hero .lead { font-size: .84rem; }
  .section-heading h2,
  .shop-section-title h2,
  .combo-section .section-heading h2,
  .checkout-heading h2 { font-size: clamp(1.65rem, 7.6vw, 2rem); }
  .product-info h1 { font-size: clamp(1.95rem, 8.8vw, 2.2rem); }
  .product-story-copy h2 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .research-card h3 { font-size: 1.35rem; }
  .contact-form-head h3 { font-size: 1.7rem; }
  .account-profile-pill h2 { font-size: 1.55rem; }
  .combo-overlay strong { font-size: clamp(1.55rem, 7vw, 2rem); }

  .newsletter { display: none; }

  .drawer {
    left: 10px; right: 10px; top: 78px;
    bottom: calc(86px + env(safe-area-inset-bottom)); width: auto;
    padding: 15px; border-radius: 28px;
    background: rgba(250,247,242,.97);
    box-shadow: 0 24px 70px rgba(32,31,29,.24);
  }
  #menu-drawer {
    left: 0; right: auto; top: 0; bottom: 0; width: min(326px, 86vw); max-height: none;
    padding: 0; border-radius: 0 26px 26px 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98), rgba(250,247,242,.95)),
      radial-gradient(circle at 0 0, rgba(232,144,43,.17), transparent 25%),
      rgba(250,247,242,.98);
    transform: translateX(calc(-100% - 20px));
  }
  #menu-drawer.open { transform: translateX(0); }
  .menu-drawer-profile {
    grid-template-columns: 1fr 34px; gap: 10px;
    padding: 14px 14px 12px;
  }
  .menu-drawer-profile img { width: 82px; height: 50px; }
  #menu-drawer .drawer-close,
  .drawer-close {
    width: 38px; height: 38px; display: grid; place-items: center;
    border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.3rem;
  }
  .menu-drawer-profile .drawer-close { width: 34px; height: 34px; background: rgba(32,31,29,.08); color: var(--ink); }
  .mobile-nav { gap: 4px; padding: 12px 10px 18px; border-radius: 0; }
  .mobile-nav a {
    min-height: 44px; padding: 0 10px; border-radius: 13px;
    font-size: 13px; line-height: 1.15;
  }
  .mobile-nav-icon { width: 30px; height: 30px; border-radius: 10px; }
  .menu-drawer-actions { margin: 2px 10px 14px; padding-top: 10px; }
  .menu-drawer-actions button { min-height: 42px; border-radius: 13px; font-size: 13px; }
  .drawer .field label { font-size: 10px; }
  .drawer .field input {
    min-height: 46px; padding: 10px 14px !important;
    border: 1px solid rgba(32,31,29,.12) !important; border-radius: 999px !important;
    background: var(--white) !important; font-size: 16px;
  }
  .drawer .cart-item { font-size: 12px; }
  .mobile-app-dock { min-height: 60px; }
  .mobile-app-dock a, .mobile-app-dock button { font-size: 8px; }
  .mobile-app-dock svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .word-mask .word { opacity: 1; transform: none; }
  .video-feature { clip-path: none; transform: none; }
}

.intelligence-shell,
.admin-shell { background: var(--cloud); }
.intelligence-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: stretch;
}
.intelligence-panel > div:first-child,
.intelligence-score-card,
.admin-editor,
.admin-table-card {
  border: 1px solid rgba(32,31,29,.1); border-radius: 8px; background: rgba(255,255,255,.76);
  box-shadow: 0 16px 38px rgba(32,31,29,.07);
}
.intelligence-panel > div:first-child { padding: clamp(28px, 5vw, 54px); }
.intelligence-score-card {
  display: grid; align-content: center; gap: 10px; padding: 34px; color: var(--white);
  background: linear-gradient(135deg, #20201d, #6d4b2b 58%, #e8902b);
}
.intelligence-score-card span,
.intelligence-score-card small { color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; }
.intelligence-score-card strong { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 500; line-height: .9; }
.admin-grid { display: grid; grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr); gap: 22px; align-items: start; }
.admin-editor,
.admin-table-card { padding: clamp(20px, 3vw, 30px); }
.admin-section-head { display: flex; justify-content: space-between; align-items: start; gap: 18px; margin-bottom: 22px; }
.admin-section-head h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.admin-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.admin-actions .form-status { margin: 0; color: var(--orange-deep); font-weight: 600; }
.admin-tables { display: grid; gap: 22px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table-card table { width: 100%; border-collapse: collapse; min-width: 650px; }
.admin-table-card th,
.admin-table-card td { padding: 14px 12px; border-bottom: 1px solid rgba(32,31,29,.09); text-align: left; vertical-align: middle; }
.admin-table-card th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.admin-table-card td strong,
.admin-table-card td small { display: block; }
.admin-table-card td small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.admin-table-card select {
  min-height: 38px; border: 1px solid rgba(32,31,29,.14); border-radius: 999px; padding: 7px 12px;
  background: var(--paper); font: inherit;
}
.admin-mini-input {
  width: 150px; min-height: 38px; border: 1px solid rgba(32,31,29,.14); border-radius: 999px;
  padding: 7px 12px; background: var(--paper); font: inherit;
}
.btn-text {
  border: 0; background: transparent; color: var(--orange-deep); font: inherit; font-weight: 700;
  cursor: pointer; padding: 6px 8px;
}
.btn-text.danger { color: #a13b2a; }

@media (max-width: 980px) {
  .intelligence-panel,
  .admin-grid { grid-template-columns: 1fr; }
}
