/* ==========================================================
   Naturalume — dark bento storefront
   ========================================================== */
:root {
  --ink: #0d0b09;          /* frame / page ground */
  --espresso: #1b1511;     /* dark panels */
  --espresso-2: #241c16;
  --cream: #efe7d2;        /* label cream */
  --cream-2: #f7f1e3;
  --paper: #fbf8f0;
  --amber: #c26d2b;        /* label orange */
  --amber-hi: #d98439;
  --brown: #3a2818;
  --text-dark: #2a1f16;
  --muted-dark: #6b5a4a;
  --muted-light: rgba(239, 231, 210, .68);
  --line-light: rgba(239, 231, 210, .16);
  --line-dark: rgba(42, 31, 22, .14);

  --r: 26px;
  --r-sm: 18px;
  --gap: 12px;
  --pad: clamp(24px, 4vw, 56px);

  --f-display: "Forum", "Cormorant Garamond", Georgia, serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 12px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
[hidden] { display: none !important; }

.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--cream); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--amber-hi); outline-offset: 3px; }

/* ---------- frame + cards ---------- */
.frame {
  padding: var(--gap);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.card { position: relative; border-radius: var(--r); overflow: hidden; }
.card-cream { background: var(--cream); color: var(--text-dark); }
.card-dark { background: var(--espresso); }
.pad { padding: var(--pad); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }

/* ---------- type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .98;
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  margin: 0 0 .45em;
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--amber-hi); }
.display-dark { color: var(--text-dark); }
.display-xl { font-size: clamp(2.8rem, 7vw, 6.8rem); }
.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-light);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--amber); }
.lede { color: var(--muted-light); font-size: clamp(1rem, 1.25vw, 1.12rem); max-width: 34rem; margin: 0 0 1.8rem; }
.body-dark { color: var(--muted-dark); max-width: 36rem; }
.body-dark strong { color: var(--text-dark); font-weight: 600; }
.fine { font-size: .78rem; color: var(--muted-light); margin: 0; }
.small-caps { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-light); margin: 0 0 .8rem; }
.link { color: var(--cream); text-underline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; box-shadow: 0 10px 30px -10px rgba(239, 231, 210, .5); }
.btn-ghost { border-color: rgba(239, 231, 210, .45); color: var(--cream); background: rgba(13, 11, 9, .15); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(239, 231, 210, .1); }
.btn-dark { background: var(--text-dark); color: var(--cream); }
.btn-dark:hover { background: var(--ink); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-hi); box-shadow: 0 12px 30px -12px rgba(194, 109, 43, .8); }
.btn-block { width: 100%; }

/* ---------- notch (inverse-corner tab) ---------- */
.notch {
  --nb: var(--ink);
  --nr: 20px;
  position: absolute; right: 0; bottom: 0; z-index: 5;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px 12px 22px;
  background: var(--nb);
  border-top-left-radius: var(--nr);
  color: var(--cream);
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .04em;
  text-decoration: none;
}
.notch::before, .notch::after {
  content: ""; position: absolute; width: var(--nr); height: var(--nr);
  background: radial-gradient(circle at 0 0, transparent calc(var(--nr) - .5px), var(--nb) var(--nr));
}
.notch::before { right: 0; bottom: 100%; }
.notch::after { bottom: 0; right: 100%; }
.circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(239, 231, 210, .5);
  display: grid; place-items: center;
  transition: background-color .3s, border-color .3s, transform .4s var(--ease);
}
.circle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
a:hover .circle, .notch:hover .circle { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: rotate(-45deg); }
.notch-sm { padding: 8px 8px 8px 16px; font-size: .85rem; gap: 10px; --nr: 16px; }
.notch-sm .circle { width: 30px; height: 30px; }
.notch-sm .circle svg { width: 12px; height: 12px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 26vw, 380px);
  gap: var(--gap);
  height: calc(100svh - var(--gap) * 2);
  min-height: 640px;
  max-height: 980px;
}
.hero-main { background: var(--espresso); isolation: isolate; }
.slides, .slide { position: absolute; inset: 0; }
.slide {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s linear;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 11, 9, .55) 0%, rgba(13, 11, 9, 0) 22%),
    linear-gradient(90deg, rgba(13, 11, 9, .82) 0%, rgba(13, 11, 9, .45) 45%, rgba(13, 11, 9, 0) 75%),
    linear-gradient(0deg, rgba(13, 11, 9, .7) 0%, rgba(13, 11, 9, 0) 45%);
}

.nav {
  position: absolute; z-index: 6; top: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  padding: 26px clamp(24px, 3.4vw, 44px);
}
.logo {
  font-family: var(--f-display);
  font-size: 1.65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  line-height: 1;
}
.nav-links { display: flex; gap: clamp(16px, 2vw, 30px); }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: rgba(239, 231, 210, .85); white-space: nowrap;
  position: relative; padding: 4px 0;
}
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--cream); transition: right .35s var(--ease); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.menu-btn {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(239, 231, 210, .5); background: rgba(13, 11, 9, .2);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.menu-btn span { width: 18px; height: 1.5px; background: var(--cream); transition: transform .3s, opacity .3s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero-copy {
  position: absolute; z-index: 4;
  left: clamp(24px, 4vw, 60px); bottom: clamp(90px, 11vh, 120px);
  max-width: min(720px, 80%);
}
.hero-copy .display {
  font-size: clamp(2.9rem, 6.6vw, 6.6rem);
  line-height: .92;
  margin-bottom: .35em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.slide-dots {
  position: absolute; z-index: 4;
  left: clamp(24px, 4vw, 60px); bottom: 34px;
  display: flex; gap: 8px;
}
.dot { width: 44px; height: 20px; padding: 0; background: none; border: 0; cursor: pointer; display: grid; align-items: center; }
.dot i { display: block; height: 2px; background: rgba(239, 231, 210, .3); position: relative; overflow: hidden; }
.dot i::after { content: ""; position: absolute; inset: 0; background: var(--cream); transform: scaleX(0); transform-origin: left; }
.dot.is-active i::after { animation: fill 6s linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }

/* side cards */
.hero-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: var(--gap); min-height: 0; }
.side-card { display: block; text-decoration: none; color: var(--cream); background: var(--espresso); min-height: 0; }
.side-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.side-card:hover img { transform: scale(1.06); }
.side-shade { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13, 11, 9, .7) 0%, rgba(13, 11, 9, .15) 50%, rgba(13, 11, 9, .55) 100%); }
.side-title {
  position: absolute; top: 18px; left: 20px; margin: 0;
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.12rem; line-height: 1.05; letter-spacing: .03em;
}
.side-more {
  position: absolute; bottom: 16px; left: 20px; margin: 0;
  font-family: var(--f-display); text-transform: uppercase; font-size: .85rem; letter-spacing: .06em;
  display: flex; align-items: center; gap: 8px;
}
.side-more::after { content: ""; width: 18px; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.side-card:hover .side-more::after { width: 34px; }

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee { padding: 20px 0; display: flex; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee ul { display: flex; list-style: none; margin: 0; padding: 0; }
.marquee li {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); letter-spacing: .04em; white-space: nowrap;
  display: flex; align-items: center; padding-right: 2.2rem; gap: 2.2rem;
}
.marquee li::after { content: "✦"; color: var(--amber); font-size: .7em; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================
   WHY
   ========================================================== */
.why > .card-cream { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.ticks { list-style: none; padding: 0; margin: .6rem 0 2rem; display: grid; gap: .9rem; max-width: 34rem; }
.ticks li { position: relative; padding-left: 36px; color: var(--muted-dark); }
.ticks li strong { color: var(--text-dark); font-weight: 600; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--text-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23efe7d2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.photo-card { min-height: 520px; background: var(--espresso); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.photo-card img.pos-top { object-position: center 20%; }
.photo-label {
  position: absolute; left: 20px; top: 20px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(13, 11, 9, .55); backdrop-filter: blur(10px);
  border: 1px solid var(--line-light);
  padding: 12px 20px 12px 16px; border-radius: 999px;
  font-size: .82rem; line-height: 1.25; color: var(--cream);
}
.photo-label .stat { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; color: var(--amber-hi); }

/* ==========================================================
   SCAR CARE
   ========================================================== */
.scar {
  padding: var(--pad);
  background:
    radial-gradient(60% 55% at 50% 55%, rgba(194, 109, 43, .16), transparent 70%),
    var(--espresso);
}
.scar-head { text-align: center; max-width: 900px; margin: 0 auto; }
.scar-head .eyebrow { justify-content: center; }
.scar-head .eyebrow::before { display: none; }
.scar-head .lede { margin-inline: auto; }
.scar-body {
  display: grid; grid-template-columns: 1fr minmax(240px, 380px) 1fr;
  align-items: center; gap: clamp(16px, 3vw, 40px);
  margin: clamp(10px, 2vw, 30px) 0;
}
.scar-col { display: grid; gap: var(--gap); }
.ing-note {
  border: 1px solid var(--line-light);
  border-radius: var(--r-sm);
  padding: 26px 26px 24px;
  background: rgba(239, 231, 210, .03);
  transition: background-color .3s, border-color .3s;
}
.ing-note:hover { background: rgba(239, 231, 210, .07); border-color: rgba(239, 231, 210, .3); }
.ing-note h3 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .03em; margin: 0 0 .35rem; color: var(--cream); }
.ing-note p { margin: 0; color: var(--muted-light); font-size: .95rem; }
.scar-col:first-child .ing-note { text-align: right; }
.scar-jar { position: relative; display: grid; place-items: center; }
.scar-jar img, .final-jar img { position: relative; width: 100%; height: auto; filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .55)); animation: float 7s ease-in-out infinite; }
.glow { position: absolute; inset: 12% 8%; border-radius: 50%; background: radial-gradient(circle, rgba(217, 132, 57, .38), transparent 65%); filter: blur(20px); }
@keyframes float { 50% { transform: translateY(-12px); } }
.scar-foot { text-align: center; display: flex; flex-direction: column; align-items: center; }
.chips { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chips li { border: 1px solid var(--line-light); border-radius: 999px; padding: 8px 16px; font-size: .85rem; color: var(--cream); }
.scar-foot .fine { margin-top: 1rem; }

/* ==========================================================
   INGREDIENTS
   ========================================================== */
.ingredients { padding: clamp(40px, 6vw, 80px) 0 0; display: flex; flex-direction: column; gap: var(--gap); }
.section-head { padding: 0 clamp(8px, 2vw, 24px) clamp(12px, 2vw, 20px); }
.ing-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap); }
.ing { margin: 0; aspect-ratio: 3 / 4; background: var(--espresso); }
.ing img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ing:hover img { transform: scale(1.06); }
.ing figcaption {
  position: absolute; inset: auto 0 0 0; padding: 60px 18px 18px;
  background: linear-gradient(0deg, rgba(13, 11, 9, .95) 0%, rgba(13, 11, 9, .75) 55%, rgba(13, 11, 9, 0) 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.ing strong, .ing-text strong { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; line-height: 1.1; }
.ing figcaption span:not(.ing-num) { font-size: .8rem; color: var(--muted-light); line-height: 1.4; }
.ing-num { font-size: .68rem; letter-spacing: .18em; color: var(--amber-hi); font-weight: 600; margin-bottom: 4px; }
.ing-text { background: var(--cream); display: flex; flex-direction: column; justify-content: space-between; padding: 22px 18px; }
.ing-text p { margin: 0; display: flex; flex-direction: column; gap: 2px; }
.ing-text .ing-num { color: var(--amber); }
.ing-text p span:last-child { font-size: .8rem; color: var(--muted-dark); line-height: 1.4; }

.inci { background: var(--espresso); }
.inci summary, .q summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-weight: 600;
}
.inci summary::-webkit-details-marker, .q summary::-webkit-details-marker { display: none; }
.inci p, .q p { margin: 0; padding: 0 26px 24px; color: var(--muted-light); max-width: 60rem; }
.plus { position: relative; width: 28px; height: 28px; flex: none; border-radius: 50%; border: 1px solid var(--line-light); }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.plus::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .plus::after { transform: translate(-50%, -50%) rotate(0); }

/* ==========================================================
   SHOP
   ========================================================== */
.shop { padding: var(--pad); }
.section-head-dark { text-align: center; padding-bottom: clamp(24px, 3vw, 40px); }
.section-head-dark .eyebrow { justify-content: center; }
.section-head-dark .eyebrow::before { display: none; }
.section-head-dark .body-dark { margin: 0 auto; }
.products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); max-width: 1100px; margin: 0 auto; }
.product {
  position: relative;
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-dark);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(42, 31, 22, .35); }
.product-featured { border: 2px solid var(--amber); }
.badge {
  position: absolute; z-index: 2; top: 16px; left: 16px;
  background: var(--amber); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.product-img { aspect-ratio: 5 / 4; overflow: hidden; background: #e9dfca; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product:hover .product-img img { transform: scale(1.04); }
.product-info { padding: clamp(20px, 2.5vw, 32px); display: flex; flex-direction: column; flex: 1; }
.product-tag { margin: 0 0 .3rem; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.product h3 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1; margin: 0 0 .6rem; color: var(--text-dark); }
.product h3 span { color: var(--muted-dark); }
.product-desc { margin: 0 0 1.2rem; color: var(--muted-dark); font-size: .95rem; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin: auto 0 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.price { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; color: var(--text-dark); }
.per { font-size: .82rem; color: var(--muted-dark); }
.per strong { color: var(--amber); }
.assure { list-style: none; margin: clamp(24px, 3vw, 36px) auto 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; color: var(--muted-dark); font-size: .88rem; }
.assure li { display: flex; align-items: center; gap: 10px; }
.assure svg { width: 20px; height: 20px; fill: none; stroke: var(--text-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================
   RITUAL
   ========================================================== */
.ritual > .card-dark { display: flex; flex-direction: column; justify-content: center; }
.steps { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: 0; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.steps li:last-child { border-bottom: 1px solid var(--line-light); }
.steps span { font-family: var(--f-display); font-size: 1.8rem; line-height: 1; color: var(--amber-hi); }
.steps strong { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .03em; }
.steps p { margin: .2rem 0 0; color: var(--muted-light); }

/* ==========================================================
   STORY
   ========================================================== */
.story { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(24px, 4vw, 64px); padding: var(--gap); align-items: center; }
.story-img { border-radius: calc(var(--r) - 6px); overflow: hidden; height: 100%; min-height: 520px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: var(--pad) var(--pad) var(--pad) 0; }
.story blockquote {
  margin: 1.8rem 0 0; padding: 0 0 0 1.4rem; border-left: 2px solid var(--amber);
  font-family: var(--f-display); font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.15; color: var(--text-dark);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: clamp(40px, 6vw, 80px) clamp(8px, 2vw, 24px); align-items: start; }
.faq-head { position: sticky; top: 30px; }
.faq-list { display: grid; gap: 8px; }
.q { background: var(--espresso); border-radius: var(--r-sm); transition: background-color .3s; }
.q:hover, .q[open] { background: var(--espresso-2); }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: center;
  padding: var(--pad);
  background:
    radial-gradient(50% 70% at 78% 50%, rgba(194, 109, 43, .22), transparent 70%),
    var(--espresso);
  min-height: 560px;
}
.final-jar { position: relative; max-width: 420px; justify-self: center; }

/* ---------- footer ---------- */
.footer { padding: 32px clamp(8px, 2vw, 24px) 24px; display: grid; gap: 20px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer nav a { text-decoration: none; font-size: .85rem; color: var(--muted-light); }
.footer nav a:hover { color: var(--cream); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 12px; z-index: 50;
  background: rgba(13, 11, 9, .96); backdrop-filter: blur(12px);
  border-radius: var(--r);
  display: grid; place-items: center;
}
.mobile-menu nav { display: grid; gap: 10px; text-align: center; }
.mobile-menu a { font-family: var(--f-display); text-transform: uppercase; font-size: 2.2rem; text-decoration: none; letter-spacing: .04em; }

/* ---------- sticky buy bar ---------- */
.buybar {
  position: fixed; z-index: 40; left: 50%; bottom: 16px;
  transform: translate(-50%, 140%);
  display: flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 10px;
  background: rgba(27, 21, 17, .92); backdrop-filter: blur(14px);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8);
  transition: transform .5s var(--ease);
  width: max-content; max-width: calc(100% - 32px);
}
.buybar.is-visible { transform: translate(-50%, 0); }
.buybar img { width: 42px; height: 42px; object-fit: contain; }
.buybar-text { display: flex; flex-direction: column; line-height: 1.2; padding-right: 8px; }
.buybar-text strong { font-family: var(--f-display); text-transform: uppercase; font-weight: 400; font-size: 1.05rem; letter-spacing: .03em; }
.buybar-text span { font-size: .75rem; color: var(--muted-light); }
.buybar .btn { min-height: 44px; padding: 0 1.3rem; }

/* ==========================================================
   STORE UI — nav actions, basket, offer, needs, products,
   social proof, bottom nav, toast
   ========================================================== */
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn, .basket-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; min-width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(239, 231, 210, .4);
  background: rgba(13, 11, 9, .25); backdrop-filter: blur(8px);
  color: var(--cream); text-decoration: none;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background-color .25s, border-color .25s, color .25s;
}
.basket-btn { padding: 0 18px 0 14px; }
.icon-btn:hover, .basket-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.icon-btn svg, .basket-btn svg, .bottom-nav svg, .view-all svg, .toast svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.basket-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--amber); color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 20px; text-align: center; letter-spacing: 0;
  box-shadow: 0 0 0 2px var(--ink);
}
.basket-count.is-dot { min-width: 12px; width: 12px; height: 12px; padding: 0; top: -2px; right: -2px; }

/* Payhip's own floating launcher is replaced by our basket buttons */
#payhip-cart-launcher-icon-iframe, #payhip-cart-launcher-badge-iframe { display: none !important; }

.offer-pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 1rem; padding: 7px 14px 7px 10px;
  border-radius: 999px; background: var(--amber); color: #fff;
  font-size: .8rem; font-weight: 600; text-decoration: none;
}
.offer-pill::before { content: "✦"; font-size: .75em; }

/* shared row heading */
.row-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px;
  padding: clamp(28px, 4vw, 48px) clamp(8px, 2vw, 24px) 16px;
}
.h-row {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: .02em; line-height: 1; margin: 0;
}
.view-all {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--muted-light); text-decoration: none; font-size: .85rem; font-weight: 600;
}
.view-all:hover { color: var(--cream); }
.view-all svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.view-all:hover svg { transform: translateX(3px); }

/* shop by need */
.needs-row {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--gap);
}
.need { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--cream); }
.need-img { display: block; aspect-ratio: 1; background: var(--espresso); border-radius: var(--r-sm); }
.need-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .4s; filter: saturate(.9); }
.need:hover .need-img img { transform: scale(1.07); filter: saturate(1.05); }
.need-label {
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .03em; line-height: 1.1;
  padding: 0 4px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.need-label::after { content: "→"; font-family: var(--f-body); font-size: .9rem; color: var(--amber-hi); transition: transform .3s var(--ease); }
.need:hover .need-label::after { transform: translateX(4px); }

/* offer banner */
.offer {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center;
  gap: clamp(16px, 3vw, 36px); padding: clamp(22px, 3vw, 36px) clamp(22px, 4vw, 48px);
  border: 1px solid var(--amber);
}
.offer-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--text-dark); color: var(--cream); display: grid; place-items: center; }
.offer-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linejoin: round; }
.offer-eyebrow { margin: 0 0 4px; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.offer-title { margin: 0; font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1; color: var(--text-dark); }
.offer-detail { margin: 6px 0 0; color: var(--muted-dark); font-size: .92rem; }
.offer-code { margin: 10px 0 0; color: var(--muted-dark); font-size: .88rem; }
.code-chip {
  margin-left: 6px; padding: 4px 12px; border-radius: 8px; cursor: pointer;
  border: 1px dashed var(--text-dark); background: transparent; color: var(--text-dark);
  font-weight: 700; letter-spacing: .1em;
}
.code-chip:hover { background: var(--text-dark); color: var(--cream); }
.offer-side { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.countdown { display: flex; gap: 6px; justify-content: center; }
.countdown span { display: flex; flex-direction: column; align-items: center; min-width: 52px; padding: 8px 6px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line-dark); }
.countdown b { font-family: var(--f-display); font-weight: 400; font-size: 1.5rem; line-height: 1; color: var(--text-dark); font-variant-numeric: tabular-nums; }
.countdown i { font-style: normal; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); margin-top: 3px; }

/* product purchase controls */
.social-count { margin: 1rem auto 0; font-weight: 600; color: var(--text-dark); font-size: .9rem; }
.rating { margin: -.2rem 0 .6rem; display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted-dark); }
.rating a { color: inherit; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: .95rem; line-height: 1; }
.stars-off { color: rgba(42, 31, 22, .18); }
.buy-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-bottom: 10px; }
.qty {
  display: inline-grid; grid-template-columns: 44px 44px 44px; align-items: center;
  height: 52px; border-radius: 999px; border: 1px solid var(--line-dark); background: #fff;
}
.qty button {
  height: 100%; border: 0; background: none; cursor: pointer; color: var(--text-dark); font-size: 1.2rem; border-radius: 999px;
}
.qty button:hover:not(:disabled) { background: var(--cream); }
.qty button:disabled { color: rgba(42, 31, 22, .25); cursor: default; }
.qty input {
  width: 100%; height: 100%; border: 0; background: none; text-align: center;
  font: 600 1rem var(--f-body); color: var(--text-dark); -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn-outline { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn-outline:hover { background: var(--text-dark); color: var(--cream); }
.btn-outline.payhip-add-to-cart-button-clicked { opacity: .7; }
.summary { margin: 14px 0 0; display: grid; gap: 6px; font-size: .84rem; }
.summary div { display: flex; justify-content: space-between; gap: 12px; }
.summary dt { color: var(--muted-dark); }
.summary dd { margin: 0; color: var(--text-dark); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.summary .saving dd { color: var(--amber); }

.checkout-assure { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: clamp(24px, 3vw, 36px); }
.checkout-assure .assure { margin-top: 0; }
.pay-methods { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pay-methods li {
  padding: 6px 12px; border-radius: 8px; background: #fff; border: 1px solid var(--line-dark);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--text-dark);
}

/* social proof */
.proof { display: flex; flex-direction: column; }
.rating-summary { margin: 0; display: flex; align-items: center; gap: 8px; color: var(--muted-light); font-size: .9rem; }
.rating-summary strong { color: var(--cream); }
.proof .stars-off { color: rgba(239, 231, 210, .2); }
.trust { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); }
.trust-item { background: var(--espresso); padding: 26px 24px; display: flex; flex-direction: column; gap: 6px; border: 1px solid var(--line-light); }
.trust-item svg { width: 30px; height: 30px; fill: none; stroke: var(--amber-hi); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 10px; }
.trust-item strong { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .03em; line-height: 1.05; }
.trust-item span { color: var(--muted-light); font-size: .88rem; line-height: 1.45; }
.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); margin-top: var(--gap); }
.review { margin: 0; background: var(--cream); color: var(--text-dark); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.review-stars { margin: 0; }
.review .stars-off { color: rgba(42, 31, 22, .18); }
.review blockquote { margin: 0; font-size: 1rem; line-height: 1.55; flex: 1; }
.review figcaption { display: flex; flex-direction: column; font-size: .85rem; }
.review figcaption span { color: var(--muted-dark); }

/* bottom navigation (mobile) */
.bottom-nav { display: none; }

/* toast */
.toast {
  position: fixed; z-index: 60; left: 50%; top: 16px;
  transform: translate(-50%, -150%);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px 10px 16px; border-radius: 999px;
  background: var(--cream); color: var(--text-dark);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .7);
  font-size: .9rem; font-weight: 600; white-space: nowrap;
  transition: transform .45s var(--ease);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { color: var(--amber); stroke-width: 2.4; }
.toast-link { padding: 8px 14px; border-radius: 999px; background: var(--text-dark); color: var(--cream); text-decoration: none; font-size: .8rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .ing-grid { grid-template-columns: repeat(3, 1fr); }
  .scar-body { grid-template-columns: 1fr 300px 1fr; }
}

@media (max-width: 900px) {
  :root { --r: 22px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }

  .hero { grid-template-columns: 1fr; height: auto; max-height: none; min-height: 0; }
  .hero-main { height: min(calc(88svh - var(--gap)), 760px); min-height: 600px; }
  .hero-copy { max-width: none; right: 24px; bottom: 96px; }
  .hero-side {
    grid-template-rows: none; grid-auto-flow: column; grid-auto-columns: 72%;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  }
  .hero-side::-webkit-scrollbar { display: none; }
  .side-card { height: 200px; scroll-snap-align: start; }

  .grid-2 { grid-template-columns: 1fr; }
  .photo-card { min-height: 420px; }

  .scar-body { grid-template-columns: 1fr; }
  .scar-jar { order: -1; max-width: 300px; margin: 0 auto; }
  .scar-col:first-child .ing-note { text-align: left; }

  .story { grid-template-columns: 1fr; }
  .story-img { min-height: 380px; }
  .story-copy { padding: 8px clamp(12px, 4vw, 32px) clamp(24px, 5vw, 40px); }

  .faq-head { position: static; }

  .final { grid-template-columns: 1fr; text-align: left; }
  .final-jar { max-width: 280px; order: -1; }
}

@media (max-width: 640px) {
  :root { --gap: 8px; }
  .hero-main { min-height: 620px; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 11, 9, .6) 0%, rgba(13, 11, 9, 0) 25%),
      linear-gradient(0deg, rgba(13, 11, 9, .92) 0%, rgba(13, 11, 9, .6) 45%, rgba(13, 11, 9, 0) 75%);
  }
  .hero-copy { left: 20px; right: 20px; bottom: 92px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .nav { padding: 18px 20px; }
  .logo { font-size: 1.35rem; }
  .slide-dots { left: 20px; bottom: 30px; }
  .hero-main > .notch span:first-child { display: none; }
  .hero-main > .notch { padding-left: 12px; }

  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; }
  .product-featured { order: -1; }
  .ing-note { padding: 20px; }
  .btn { white-space: normal; text-align: center; }
  .assure { flex-direction: column; align-items: center; }
}

/* ---------- store UI responsive ---------- */
@media (max-width: 1100px) {
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { gap: 16px; }
  .nav-links a[href="#ingredients"] { display: none; }
  .basket-btn span { display: none; }
  .basket-btn { padding: 0; width: 44px; }
}

@media (max-width: 900px) {
  .nav-actions { display: none; }

  .needs-row {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 38%;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin: 0 calc(var(--gap) * -1); padding: 0 var(--gap);
  }
  .needs-row::-webkit-scrollbar { display: none; }
  .needs-row li { scroll-snap-align: start; }

  .offer { grid-template-columns: auto minmax(0, 1fr); }
  .offer-side { grid-column: 1 / -1; }

  /* bottom nav replaces the floating buy bar on touch-sized screens */
  .buybar { display: none; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .bottom-nav {
    position: fixed; z-index: 45; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid; grid-template-columns: repeat(5, 1fr);
    padding: 6px; border-radius: 22px;
    background: rgba(27, 21, 17, .94); backdrop-filter: blur(16px);
    border: 1px solid var(--line-light);
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .9);
  }
  .bottom-nav a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 52px; border-radius: 16px;
    color: var(--muted-light); text-decoration: none; font-size: .66rem; font-weight: 600; letter-spacing: .04em;
    transition: color .25s, background-color .25s;
  }
  .bottom-nav a.is-active, .bottom-nav a:hover { color: var(--cream); background: rgba(239, 231, 210, .08); }
  .bottom-nav a.is-active svg { stroke: var(--amber-hi); }
  .bn-icon { position: relative; display: inline-flex; }
  .bn-icon .basket-count { top: -6px; right: -10px; box-shadow: 0 0 0 2px var(--espresso); }
  .bn-icon .basket-count.is-dot { top: -3px; right: -4px; }

  .toast { top: auto; bottom: calc(96px + env(safe-area-inset-bottom)); transform: translate(-50%, 200%); }
  .toast.is-visible { transform: translate(-50%, 0); }
}

@media (max-width: 640px) {
  .needs-row { grid-auto-columns: 44%; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 16px; }
  .trust-item strong { font-size: 1.1rem; }
  .trust-item span { font-size: .8rem; }
  .buy-row { grid-template-columns: 1fr; }
  .qty { width: 100%; grid-template-columns: 1fr 1fr 1fr; }
  .offer { grid-template-columns: 1fr; text-align: left; }
  .offer-icon { width: 48px; height: 48px; }
  .countdown span { flex: 1; min-width: 0; }
  .toast { white-space: normal; width: calc(100% - 32px); justify-content: space-between; }
}

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