/* ============================================
   Raw & Beautiful — Brand styles
   Palette: cream / forest green / camellia pink
   Type: Cormorant Garamond (display) + Lato (body)
   ============================================ */

:root {
  --cream: #f6f1e4;
  --cream-deep: #efe9d8;
  --paper: #fffdf8;
  --green: #233e2b;
  --green-soft: #3b5b41;
  --green-line: rgba(35, 62, 43, 0.20);
  --pink: #b73456;
  --pink-soft: #f7d9e0;
  --ink: #0e1610;
  --muted: #5d6b62;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.display, .display-md {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0;
}
.display { font-size: clamp(48px, 7vw, 96px); }
.display-md { font-size: clamp(32px, 4.4vw, 56px); }
.display em, .display-md em { font-style: italic; color: var(--pink); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--green-soft);
  margin: 0 0 22px;
}
.eyebrow.small { font-size: 10px; margin-bottom: 12px; }

.prose {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  margin: 0 0 18px;
  max-width: 56ch;
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--green-soft);
  margin: 24px 0 36px;
  max-width: 46ch;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 16px;
  font-weight: 400;
}
@media (max-width: 720px) {
  .announce { font-size: 10px; letter-spacing: 0.1em; padding: 9px 12px; }
  .brand-text { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .icon-btn { width: 38px; height: 38px; }
  .nav-actions { gap: 4px; }
  .nav-inner { padding: 14px var(--gutter); gap: 8px; grid-template-columns: auto 1fr auto; }
  .brand { gap: 8px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--green-line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-links { justify-self: end; }
.brand {
  display: flex;
  align-items: center;
  gap: 2px;
}
.brand-mark {
  width: 101px;
  height: 101px;
  object-fit: contain;
  display: block;
  transform: translateY(0);
  margin-bottom: -30px;
  margin-top: -30px;
}
.brand-text {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-2px);
}
.brand-text-lg {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 28px;
  margin: 12px 0 6px;
  letter-spacing: 0.03em;
}
.amp { color: var(--pink); font-style: italic; padding: 0 2px; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: center;
}
.icon-btn {
  background: transparent;
  border: none;
  color: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--cream-deep); }
.cart-count {
  position: absolute;
  top: 4px; right: 2px;
  background: var(--pink);
  color: #fff;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.hidden { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--cream);
}
.btn-full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 6vw, 88px) var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 540px;
}
.hero-text { padding: 20px 0; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-disc {
  width: 92%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 80px -30px rgba(45, 75, 55, 0.18),
    0 0 0 1px var(--green-line);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4%;
}
.hero-petal {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 1;
}
.hero-petal-1 {
  width: 260px; height: 260px;
  background: var(--pink-soft);
  top: -30px;
  right: -20px;
}
.hero-petal-2 {
  width: 200px; height: 200px;
  background: #e8e8d4;
  bottom: -20px;
  left: -10px;
}

/* Marquee */
.marquee {
  margin-top: clamp(60px, 8vw, 100px);
  overflow: hidden;
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-soft);
  font-style: italic;
}
.marquee-track span { padding: 0 8px; }
.marquee-track .dot { color: var(--pink); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Product ---------- */
.product {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: flex-start;
}
.product-gallery { position: sticky; top: 110px; }
.gallery-main {
  background: var(--paper);
  border: 1px solid var(--green-line);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.thumb {
  background: var(--paper);
  border: 1px solid var(--green-line);
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: border 0.2s ease;
}
.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.thumb.active, .thumb:hover {
  border-color: var(--green);
}

.product-info { padding-top: 12px; }
.stars {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 18px;
  color: var(--pink);
  font-size: 15px;
}
.stars small { color: var(--muted); font-size: 12px; }
.price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green);
  margin: 0 0 24px;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.dot-pink {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.qty-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin: 30px 0;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: var(--radius);
}
.qty button {
  width: 44px; height: 52px;
  background: transparent;
  border: none;
  color: var(--green);
  font-size: 20px;
  font-weight: 300;
}
.qty button:hover { color: var(--pink); }
.qty span {
  min-width: 36px;
  text-align: center;
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
}
.btn-add { flex: 1; }

/* Product-section buy buttons (one-time / subscription) */
.product-buys {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 22px;
}
.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  border-radius: 0;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.product-buy .buy-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.product-buy .buy-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-buy .buy-detail {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: none;
}
.product-buy .buy-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-buy .buy-unit {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.06em;
  margin-left: 2px;
  opacity: 0.85;
}
.product-buy:hover {
  background: #243d2d;
  border-color: #243d2d;
}
.product-buy-secondary {
  background: transparent;
  color: var(--green);
  border-color: rgba(45, 75, 55, 0.45);
}
.product-buy-secondary:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
  margin: 8px 0 28px;
}
.trust div {
  display: flex; flex-direction: column;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust strong {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}
.trust span { color: var(--muted); }

.accordion {
  border-bottom: 1px solid var(--green-line);
  padding: 18px 0;
}
.accordion:first-of-type { border-top: 1px solid var(--green-line); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--pink);
  transition: transform 0.2s ease;
}
.accordion[open] summary::after { content: '–'; }
.accordion p {
  margin: 14px 0 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Story ---------- */
.story {
  background: var(--cream-deep);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.story-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story-visual {
  position: relative;
}
.story-portrait {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  background: var(--cream-deep);
  box-shadow: 0 40px 90px -40px rgba(45, 75, 55, 0.45);
  margin: 0 auto;
  display: block;
}
.story-text > .display-md { margin-top: 8px; margin-bottom: 28px; }
.story-text .prose { max-width: 54ch; }
.first-letter::first-letter {
  font-family: var(--font-display);
  font-size: 3.6em;
  font-weight: 400;
  color: var(--pink);
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  font-style: italic;
}
.closer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--green);
  margin-top: 28px;
  margin-bottom: 28px;
  line-height: 1.4;
}

/* ---------- Splash landing (2- or 3-column) ---------- */
.splash {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: calc(100vh - 88px); /* under announce+nav */
  min-height: 560px;
  max-height: 920px;
  gap: 2px;
  background: var(--green);
}
.splash.splash-2col {
  grid-template-columns: 1fr 1fr;
}
.splash-col {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: flex-grow 600ms cubic-bezier(.2,.7,.2,1);
  background: var(--cream-deep);
}
.splash-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 800ms;
  z-index: 0;
}
.splash-col::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(20, 28, 22, 0.00) 0%,
      rgba(20, 28, 22, 0.10) 50%,
      rgba(20, 28, 22, 0.55) 100%);
  transition: background 600ms;
}
.splash-inner {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3.5vw, 48px);
  max-width: 460px;
}
.splash-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.28em;
}
.splash-h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(29px, 2.21vw, 35px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 14px 0 10px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.25);
}
.splash-h em {
  color: #fff;
  font-style: italic;
  font-weight: 300;
}
.splash-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.splash-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  transition: padding-right 400ms, border-color 400ms;
}
.splash-buys {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  max-width: 340px;
}
.splash-buy {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1f2a22;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.96);
  padding: 12px 18px;
  cursor: pointer;
  text-align: left;
  transition: background 250ms, color 250ms, border-color 250ms, transform 250ms;
}
.splash-buy .buy-label {
  flex: 1;
  line-height: 1.3;
}
.splash-buy .buy-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}
.splash-buy .buy-unit {
  font-size: 11px;
  font-style: normal;
  opacity: 0.6;
  margin-left: 1px;
}
.splash-buy:hover {
  background: var(--pink-soft);
  border-color: var(--pink-soft);
  transform: translateY(-1px);
}
.splash-buy-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.splash-buy-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  color: #1f2a22;
  border-color: rgba(255, 255, 255, 0.96);
}
.splash-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-decoration: none;
  color: transparent;
  font-size: 0;
}
.splash-study {
  position: relative;
  z-index: 4;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
  margin: 4px 0 0;
  transition: border-color 300ms, color 300ms;
}
.splash-study:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.splash-benefits .splash-inner,
.splash-product .splash-inner { position: relative; z-index: 3; }
.splash-benefits .splash-cta { position: relative; z-index: 3; }
.splash-col:hover .splash-bg { transform: scale(1.08); }
.splash-col:hover::before {
  background:
    linear-gradient(180deg,
      rgba(20, 28, 22, 0.00) 0%,
      rgba(20, 28, 22, 0.06) 45%,
      rgba(20, 28, 22, 0.42) 100%);
}
.splash-col:hover .splash-cta { padding-right: 8px; border-color: var(--pink-soft); }

/* The product column gets a slight portrait crop bias */
.splash-product .splash-bg { object-position: center 35%; }
.splash-story .splash-bg { object-position: center 18%; }
.splash-benefits .splash-bg { object-position: center 30%; }

/* Secondary hero section (just the marquee strip) */
.hero-secondary { padding: 0; min-height: 0; background: var(--cream-deep); }
.hero-secondary .marquee { margin-top: 0; }

/* Mobile / tablet fallback */
@media (max-width: 960px) {
  .splash {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .splash-col {
    min-height: 380px;
    aspect-ratio: auto;
    width: 100%;
  }
  .splash-inner {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
  }
  .splash-h {
    font-size: clamp(29px, 8.13vw, 39px);
  }
  .splash-sub {
    font-size: 14px;
  }
}

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--paper);
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}
.pullquote blockquote {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.pullquote blockquote::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 200px);
  color: var(--pink-soft);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
  z-index: 0;
}
.pullquote blockquote p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  color: var(--green);
  margin: 0 0 28px;
  font-weight: 400;
}
.pullquote blockquote p em {
  color: var(--pink);
  font-style: italic;
}
.pullquote blockquote footer {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.link-arrow {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--green);
  padding-bottom: 4px;
  margin-top: 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-arrow:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- Ingredients ---------- */
.ingredients {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}
.section-head .eyebrow { margin-bottom: 18px; }
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.ingredient {
  border-top: 1px solid var(--green);
  padding: 28px 0 0;
}
.ingredient-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--pink);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.ingredient h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--green);
  margin: 0 0 14px;
  line-height: 1.2;
}
.ingredient p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.ingredient p:last-child { margin-bottom: 0; }
.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ingredient-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.ingredient-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}
.ingredient-list strong {
  color: var(--green);
  font-weight: 600;
}
.ingredient-caveat {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-style: italic;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--green) !important;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 100px 6vw 80px;
  background: var(--cream, #f6efe5);
}
.faq .section-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 22px 4px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink, #1f2118);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '–';
  transform: rotate(0deg);
}
.faq-item summary:hover {
  color: var(--green);
}
.faq-item p {
  margin: 16px 0 4px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(31, 33, 24, 0.78);
  max-width: 720px;
}
.faq-item em {
  font-style: italic;
  color: var(--green);
}
@media (max-width: 720px) {
  .faq { padding: 70px 6vw 60px; }
  .faq-item summary { font-size: 19px; gap: 16px; }
  .faq-item p { font-size: 14.5px; }
}

/* ---------- Journal ---------- */
.journal {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.journal > .section-head, .journal > .journal-grid {
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.journal-card {
  display: block;
  color: inherit;
}
.journal-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}
.journal-card:hover .journal-img { transform: scale(1.02); }
.journal-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin: 0;
  line-height: 1.25;
  max-width: 24ch;
  transition: color 0.2s ease;
}
.journal-card:hover h3 { color: var(--pink); }

/* ---------- Reviews ---------- */
.reviews {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.review {
  margin: 0;
  background: var(--paper);
  padding: 32px 28px;
  border: 1px solid var(--green-line);
}
.stars-sm { color: var(--pink); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--green);
  margin: 0 0 18px;
  font-style: italic;
  font-weight: 400;
}
.review footer {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--green);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
}
.newsletter .display-md { color: var(--cream); margin-bottom: 16px; }
.newsletter .prose { color: rgba(250, 246, 239, 0.75); margin: 0 auto 36px; }
.news-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(250, 246, 239, 0.35);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  padding: 16px 4px;
  font-family: inherit;
  font-size: 15px;
}
.news-form input::placeholder { color: rgba(250, 246, 239, 0.5); }
.news-form button {
  background: transparent;
  color: var(--cream);
  border: none;
  border-bottom: 1px solid transparent;
  padding: 16px 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.news-form button:hover { color: var(--pink-soft); }
.news-thanks {
  margin-top: 20px;
  color: var(--pink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream-deep);
  padding: 80px var(--gutter) 30px;
  color: var(--green);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--green-line);
}
.footer-mark { width: 48px; height: 48px; }
.footer-tag {
  color: var(--muted);
  font-size: 14px;
  max-width: 30ch;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--green-soft);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 34, 0.55);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.cart-overlay.show { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 40px -20px rgba(0,0,0,0.15);
}
.cart-drawer.show { transform: translateX(0); }
.cart-head {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--green-line);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green);
  margin: 0;
  font-weight: 500;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 26px;
}
.cart-empty {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  margin: 60px 0;
  font-style: italic;
}
.cart-empty span {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 12px;
  letter-spacing: 0.04em;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--green-line);
  align-items: center;
}
.cart-item img {
  width: 80px; height: 80px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--green-line);
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--green);
  margin: 0 0 4px;
  font-weight: 500;
}
.cart-item-meta { font-size: 12px; color: var(--muted); }
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  border: 1px solid var(--green-line);
}
.cart-item-qty button {
  width: 26px; height: 26px;
  background: transparent;
  border: none;
  color: var(--green);
}
.cart-item-qty span { padding: 0 8px; font-size: 13px; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green);
}
.cart-item-remove {
  font-size: 11px;
  background: none;
  border: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  padding: 0;
}
.cart-item-remove:hover { color: var(--pink); }
.cart-foot {
  padding: 22px 26px;
  border-top: 1px solid var(--green-line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.cart-total span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
}
.cart-total strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green);
  font-weight: 500;
}
.cart-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav-links { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    min-height: 0;
  }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .product-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-gallery { position: static; }
  .story-grid { grid-template-columns: 1fr; }
  .story-portrait { max-width: 360px; aspect-ratio: 2 / 3; }
  .ingredient-grid, .journal-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-thumbs .thumb:nth-child(5) { display: none; }
  .trust { grid-template-columns: 1fr; }
  .qty-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Legal pages (privacy, terms) ===== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.legal-page .eyebrow {
  margin-bottom: 12px;
}
.legal-page h1.display-md {
  margin: 0 0 8px;
}
.legal-page .legal-updated {
  color: var(--ink-soft, #6b665e);
  font-size: 14px;
  margin: 0 0 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--ink, #1d2620);
}
.legal-page p,
.legal-page li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft, #3d4239);
}
.legal-page ul {
  padding-left: 22px;
  margin: 12px 0 16px;
}
.legal-page li {
  margin-bottom: 8px;
}
.legal-page a {
  color: var(--brand-green, #2d5841);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page .legal-back {
  margin-top: 56px;
  border-top: 1px solid #e8e5df;
  padding-top: 24px;
}
.legal-page .legal-back a {
  text-decoration: none;
}
.site-footer-mini {
  padding: 24px 32px;
  background: #f7f5f0;
  border-top: 1px solid #e8e5df;
}
.site-footer-mini .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft, #6b665e);
}
.site-footer-mini a {
  color: var(--ink-soft, #6b665e);
  text-decoration: none;
  margin: 0 4px;
}
.site-footer-mini a:hover {
  color: var(--brand-green, #2d5841);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .legal-page { padding: 40px 20px 64px; }
  .legal-page h2 { font-size: 22px; }
}

/* ============================================
   60-Day Living Skin Promise (1A)
   ============================================ */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--green-line);
  padding: 32px 36px;
  border-radius: 4px;
  margin: 22px 0 28px;
}
.guarantee-seal {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green);
  font-family: var(--font-display);
  padding: 8px;
  position: relative;
}
.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--green-line);
  border-radius: 50%;
}
.guarantee-seal .num {
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}
.guarantee-seal .day {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 4px;
  color: var(--green-soft);
}
.guarantee-seal .promise {
  font-style: italic;
  font-size: 13px;
  margin-top: 4px;
}
.guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green);
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.guarantee-text h3 em { color: var(--pink); font-style: italic; }
.guarantee-text p {
  margin: 0 0 6px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 56ch;
}
.guarantee-text p a {
  color: var(--green);
  border-bottom: 1px solid var(--green-line);
}
.guarantee-text .small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 640px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .guarantee-seal { margin: 0 auto; }
  .guarantee-text p { margin-left: auto; margin-right: auto; }
}

/* ============================================
   Why Subscribe? comparison (2A)
   ============================================ */
.why-subscribe {
  margin: 8px 0 28px;
}
.why-subscribe-head {
  margin-bottom: 22px;
}
.why-subscribe-head .eyebrow { margin-bottom: 8px; }
.why-subscribe-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-col {
  background: var(--paper);
  border: 1px solid var(--green-line);
  border-radius: 4px;
  padding: 24px 22px 24px;
  position: relative;
}
.compare-col.best {
  background: var(--cream);
  border: 1.5px solid var(--green);
}
.compare-col .pill {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--green);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.compare-col h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--green);
  margin: 0 0 4px;
  font-weight: 500;
}
.compare-col .price-line {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 4px;
}
.compare-col .price-line small {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 4px;
  font-weight: 400;
}
.compare-col .sub {
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px 0 14px;
  line-height: 1.45;
}
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--green-line);
}
.compare-col li:first-child { border-top: none; }
.compare-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 700;
}
.compare-col li.no::before { content: "—"; color: var(--muted); font-weight: 400; }
.compare-col li.no { color: var(--muted); }
@media (max-width: 640px) {
  .compare { grid-template-columns: 1fr; gap: 22px; }
}

/* Sourcing note (Why Subscribe footer band) */
.sourcing-note {
  margin-top: 18px;
  padding: 18px 22px;
  background: rgba(35, 62, 43, 0.06);
  border-left: 2px solid var(--green);
  border-radius: 2px;
}
.sourcing-note .eyebrow {
  color: var(--green);
  margin: 0 0 8px;
}
.sourcing-note p:not(.eyebrow) {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 70ch;
  font-style: italic;
}

/* ============================================
   Sticky mobile CTA (3A) — mobile only
   ============================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none; /* shown via media query + JS */
  align-items: stretch;
  background: rgba(35, 62, 43, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  padding: 0;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .text {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  min-width: 0;
}
.sticky-cta .text .label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.sticky-cta .text .label .top {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta .text .label .bot {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.sticky-cta .text .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
  margin-left: auto;
  padding-right: 4px;
}
.sticky-cta .buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 22px;
  font-weight: 600;
  flex-shrink: 0;
  border: none;
  transition: background 0.18s ease;
}
.sticky-cta:hover .buy-btn,
.sticky-cta:focus-visible .buy-btn { background: #c8395d; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  /* Prevent footer being hidden by sticky bar when shown */
  body.sticky-cta-active { padding-bottom: 64px; }
}

