/* ================================================================
   OLIBÆ BOTANICALS — Editorial Stylesheet v2
   Philosophy: pacing, breath, restraint. Luxury lives in space.
   ================================================================ */

:root {
  --dark:      #181714;
  --cream:     #F5F3EF;
  --warm-grey: #EEECEA;
  --white:     #FAFAF8;
  --sage:      #7A8C76;
  --sage-mid:  #5A6E57;
  --sand:      #C2B4A2;
  --border:    #E4DED6;
  --text-dark: #1A1918;
  --text-mid:  #4C4742;
  --text-light:#8A8580;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 88px;
  --bar-h: 36px;
  --ease:  0.26s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Shared utilities ─────────────────────────────────────────── */
.label {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
}
.thin-rule {
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.22;
  margin: 22px 0 28px;
}
.arrow-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap var(--ease);
}
.arrow-link::after { content: '→'; font-size: 14px; }
.arrow-link:hover  { gap: 20px; }

.btn {
  display: inline-block;
  padding: 15px 42px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}
.btn-dark:hover { background: transparent; color: var(--dark); }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.05); }

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 52px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-left  { display: flex; align-items: center; gap: 40px; }
.nav-right { display: flex; align-items: center; gap: 32px; justify-content: flex-end; }

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--sage); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-logo { text-align: center; display: block; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  color: var(--text-dark);
  transition: color var(--ease);
}
.nav-logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  color: var(--text-mid);
}
.nav-logo:hover .nav-logo-name { color: var(--sage); }

.nav-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark); background: none; border: none;
  transition: color var(--ease);
}
.nav-icon:hover { color: var(--sage); }
.nav-icon svg { width: 17px; height: 17px; stroke-width: 1.5; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  background: none; border: none;
}
.hamburger span {
  display: block; height: 1px;
  background: var(--text-dark);
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav .nav-link {
  font-size: 13px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.14em;
}
.mobile-nav .nav-link:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════════
   HERO — full viewport, type-driven, asymmetric weight
════════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: calc(100vh - var(--nav-h) - var(--bar-h));
  background: var(--cream);
  overflow: hidden;
}
.hero-content {
  padding: 80px 56px 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-content .label { margin-bottom: 28px; }

.hero-h1 {
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.hero-h1 .proven { color: var(--text-light); }

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  max-width: 300px;
  margin-bottom: 52px;
}
.hero-img-wrap {
  overflow: hidden;
  background: #ECEAE4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   VALUES STRIP — no boxes, no icons, clean text rhythm
════════════════════════════════════════════════════════════════ */
.values-strip {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.value-item {
  flex: 1;
  padding: 56px 52px;
}
.value-item + .value-item {
  border-left: 1px solid var(--border);
}
.value-name {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS SPLIT — full height, lifestyle photo backgrounds
════════════════════════════════════════════════════════════════ */
.products-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.prod-panel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}
/* Background lifestyle photo layer */
.prod-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prod-panel-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
}
.prod-panel:hover .prod-panel-bg img { transform: scale(1.05); }

/* Text/content layer */
.prod-panel-inner {
  position: relative;
  z-index: 1;
  padding: 100px 72px;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
}
.prod-panel-light { background: #EEECEA; }
.prod-panel-dark  { background: var(--dark); }
/* Gradient overlays for text readability over background photos */
.prod-panel-light .prod-panel-inner {
  background: linear-gradient(160deg, rgba(238,236,234,0.82) 0%, rgba(238,236,234,0.35) 100%);
}
.prod-panel-dark .prod-panel-inner {
  background: linear-gradient(160deg, rgba(24,23,20,0.75) 0%, rgba(24,23,20,0.25) 100%);
  color: var(--white);
}
.prod-panel-dark .thin-rule  { background: rgba(255,255,255,0.4); }
.prod-panel-dark .arrow-link { color: rgba(255,255,255,0.8); }
.prod-panel-dark .prod-desc  { color: rgba(255,255,255,0.65); }

.prod-name {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block;
}
.prod-desc {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.82;
  max-width: 280px;
  margin-bottom: 36px;
  color: var(--text-mid);
}
.prod-img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 56px;
}
.prod-img-wrap img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.22));
  transition: transform 0.6s ease;
}
.prod-panel:hover .prod-img-wrap img { transform: translateY(-10px); }

/* ════════════════════════════════════════════════════════════════
   INGREDIENTS — full-bleed image, editorial text column
════════════════════════════════════════════════════════════════ */
.ingredients {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 640px;
}
.ingr-text {
  padding: 120px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.ingr-text .label { margin-bottom: 18px; }
.ingr-h2 {
  font-size: clamp(36px, 3.2vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.ingr-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 44px;
}
.ingr-photo {
  overflow: hidden;
  background: var(--cream);
}
.ingr-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════════════════
   RITUAL — reversed grid, image-led
════════════════════════════════════════════════════════════════ */
.ritual {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 580px;
  background: var(--cream);
}
.ritual-photo {
  overflow: hidden;
}
.ritual-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.ritual-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ritual-text .label { margin-bottom: 20px; }
.ritual-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: block;
  color: var(--text-dark);
}
.ritual-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 44px;
}

/* ════════════════════════════════════════════════════════════════
   PROOF — editorial: centred large quote, three huge stats
════════════════════════════════════════════════════════════════ */
.proof {
  background: var(--dark);
  color: var(--white);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Large centred testimonial */
.proof-testimonial {
  text-align: center;
  padding: 128px 0 88px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.proof-stars {
  font-size: 13px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 40px;
  opacity: 0.6;
}
.proof-quote-large {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 52px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.38;
  color: rgba(255,255,255,0.92);
  max-width: 800px;
  margin: 0 auto 36px;
}
.proof-author {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Three huge stats */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-stat-col {
  padding: 88px 60px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.proof-stat-col:last-child { border-right: none; }
.proof-stat-num {
  font-family: var(--serif);
  font-size: clamp(68px, 6.5vw, 100px);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}
.proof-stat-txt {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.proof-bakuchiol-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 56px;
}
.proof-bakuchiol-name {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

.proof-note {
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
  padding: 0 0 48px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 52px 72px;
  align-items: start;
}
.ft-col-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.ft-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 28px;
}
.email-form {
  display: flex;
  border-bottom: 1px solid var(--text-dark);
  max-width: 280px;
}
.email-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0;
  color: var(--text-dark);
}
.email-input::placeholder { color: var(--text-light); }
.email-submit {
  background: none; border: none; cursor: pointer;
  padding: 10px 0 10px 14px;
  font-size: 17px;
  color: var(--text-dark);
  transition: transform var(--ease);
}
.email-submit:hover { transform: translateX(5px); }

.footer-centre { text-align: center; }
.footer-logo-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: block;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.footer-social { display: flex; justify-content: center; gap: 12px; }
.soc-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.soc-icon:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.soc-icon svg { width: 13px; height: 13px; }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; justify-self: end; }
.ft-link-col ul li { margin-bottom: 14px; }
.ft-link-col ul li a {
  font-size: 14px; font-weight: 300; color: var(--text-mid);
  transition: color var(--ease);
}
.ft-link-col ul li a:hover { color: var(--text-dark); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.ft-copy {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 300;
}
.ft-legal { display: flex; gap: 28px; }
.ft-legal a {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 300; transition: color var(--ease);
}
.ft-legal a:hover { color: var(--text-dark); }

/* ════════════════════════════════════════════════════════════════
   INNER PAGE HERO — generous space, background image support
════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 160px 80px 120px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
/* Optional full-bleed background image */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Directional veil — left column reads, right photo breathes */
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(24,23,20,0.52) 0%,
    rgba(24,23,20,0.28) 45%,
    rgba(24,23,20,0.0)  100%
  );
}
/* Keep text above background */
.page-hero > .label,
.page-hero-h1,
.page-hero-sub {
  position: relative;
  z-index: 1;
}
.page-hero .label {
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(245,243,239,0.70);
}
.page-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  max-width: 900px;
  margin-bottom: 32px;
  color: var(--cream);
}
.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,243,239,0.82);
  line-height: 1.78;
  max-width: 520px;
}

/* ── Inner page body — editorial, generous ───────────────────── */
.page-content {
  max-width: 720px;
  margin: 104px auto;
  padding: 0 52px;
}
.page-content h2 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 20px;
  margin-top: 80px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.88;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 620px;
}
.page-content p strong {
  font-weight: 600;
  color: var(--text-dark);
}
.page-content ul { margin-bottom: 12px; }
.page-content ul li {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  padding: 10px 0 10px 24px;
  position: relative;
}
.page-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}
.page-content .arrow-link { margin-top: 12px; }

/* Ritual CTA block */
.ritual-cta {
  text-align: center;
  padding: 88px 0 16px;
  border-top: 1px solid var(--border);
  margin-top: 88px;
}
.ritual-cta h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════
   SHOP PAGE — editorial alternating layout, no card boxing
════════════════════════════════════════════════════════════════ */
.shop-editorial {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 52px;
}
.shop-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  border-bottom: 1px solid var(--border);
}
.shop-entry:first-child { border-top: 1px solid var(--border); }

/* Alternating: second entry flips image to right */
.shop-entry:nth-child(even) .shop-entry-img  { order: 2; }
.shop-entry:nth-child(even) .shop-entry-text { order: 1; }

.shop-entry-img {
  overflow: hidden;
  background: var(--cream);
}
.shop-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s ease;
  display: block;
}
.shop-entry:hover .shop-entry-img img { transform: scale(1.05); }

.shop-entry-text {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-entry-text .label { margin-bottom: 18px; }
.shop-entry-name {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.shop-entry-desc {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 360px;
  margin-bottom: 44px;
}
.shop-entry-footer {
  display: flex;
  align-items: center;
  gap: 44px;
}
.shop-entry-price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.shop-note {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  padding: 52px 0 0;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════
   INGREDIENTS PAGE — editorial list, not a grid of boxes
════════════════════════════════════════════════════════════════ */
.ingr-editorial {
  max-width: 860px;
  margin: 88px auto;
  padding: 0 52px;
}
.ingr-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 48px;
  row-gap: 6px;
  align-items: baseline;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.ingr-entry:first-child { border-top: 1px solid var(--border); }
.ingr-entry-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ingr-entry-sci {
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 0.1em;
  font-style: italic;
  white-space: nowrap;
  align-self: baseline;
}
.ingr-entry-benefit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  grid-column: 1 / -1;
}
.ingr-entry-desc {
  grid-column: 1 / -1;
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 560px;
  margin-top: 4px;
}
/* ── Bakuchiol Clinical Study Block ─────────────────────────── */
.ingr-study-block {
  border-bottom: 1px solid var(--border);
  padding: 56px 0 64px;
  background: var(--warm-grey);
  margin: 0 -80px;
  padding-left: 80px;
  padding-right: 80px;
}
.ingr-study-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 28px;
}
.ingr-study-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-dark);
  border-left: 2px solid var(--sand);
  padding-left: 28px;
  margin-bottom: 48px;
  max-width: 700px;
}
.ingr-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.ingr-study-stat {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
  margin-right: 40px;
}
.ingr-study-stat:last-child {
  border-right: none;
  margin-right: 0;
}
.ingr-study-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ingr-study-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
.ingr-study-cite {
  font-size: 10.5px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .ingr-study-block { margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
  .ingr-study-stats { grid-template-columns: 1fr; }
  .ingr-study-stat  { border-right: none; border-bottom: 1px solid var(--border); margin-right: 0; padding-right: 0; }
  .ingr-study-stat:last-child { border-bottom: none; }
}

.ingr-footer-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 72px 0;
}

/* Product images are now transparent PNGs — no blend mode needed */

/* ════════════════════════════════════════════════════════════════
   ETSY REVIEWS CTA — dark, centred, single strong line
════════════════════════════════════════════════════════════════ */
.etsy-cta {
  background: var(--dark);
  color: var(--white);
}
.etsy-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 128px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}
.etsy-cta .label {
  color: rgba(255,255,255,0.32);
}
.etsy-cta-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 54px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.38;
  color: rgba(255,255,255,0.88);
}
.etsy-cta .arrow-link {
  color: rgba(255,255,255,0.55);
  transition: color var(--ease), gap var(--ease);
}
.etsy-cta .arrow-link:hover {
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-wrap   { padding: 0 28px; }
  .hero-content { padding: 60px 40px 100px 48px; }
  .prod-panel-inner, .ingr-text { padding: 80px 48px; }
  .ritual-text { padding: 80px 56px; }
  .footer-body { gap: 48px; padding: 80px 28px 60px; }
  .page-hero   { padding: 120px 48px 96px; }
  .page-content, .ingr-editorial, .shop-editorial { padding: 0 32px; }
  .proof-inner { padding: 0 48px; }
  .etsy-cta-inner { padding: 96px 48px; }
  .values-strip .value-item { padding: 48px 36px; }
}

@media (max-width: 900px) {
  /* Collapse all two-col grids to single column */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px 40px 88px; justify-content: flex-start; }
  .hero-img-wrap { min-height: 72vw; }
  /* On mobile show only the first hero image */
  .hero-img-wrap img:last-child { display: none; }
  .hero-img-wrap { grid-template-columns: 1fr; }

  .values-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .value-item + .value-item { border-left: none; }
  .value-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .value-item:nth-child(n+3)  { border-top: 1px solid var(--border); }
  .value-item { padding: 40px 32px; }

  .products-split { grid-template-columns: 1fr; }
  .prod-panel { min-height: 520px; }
  .prod-panel-inner { padding: 72px 40px; min-height: 520px; }

  .ingredients { grid-template-columns: 1fr; }
  .ingr-photo  { min-height: 56vw; order: -1; }
  .ingr-text   { padding: 72px 40px; }

  .ritual { grid-template-columns: 1fr; }
  .ritual-photo { min-height: 56vw; }
  .ritual-text  { padding: 72px 40px; }

  .proof-stats  { grid-template-columns: 1fr; }
  .proof-stat-col { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 64px 40px; }
  .proof-stat-col:last-child { border-bottom: none; }
  .proof-testimonial { padding: 88px 0 64px; }
  .proof-inner  { padding: 0 32px; }

  .footer-body  { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { justify-self: auto; }

  .shop-entry   { grid-template-columns: 1fr; min-height: auto; }
  .shop-entry:nth-child(even) .shop-entry-img,
  .shop-entry:nth-child(even) .shop-entry-text { order: unset; }
  .shop-entry-img   { min-height: 56vw; }
  .shop-entry-text  { padding: 64px 40px; }

  .ingr-entry   { grid-template-columns: 1fr; }
  .ingr-entry-sci { justify-self: start; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .nav-left, .nav-right .nav-link { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }
  .nav-wrap   { padding: 0 20px; }
  .nav-right  { gap: 16px; }

  .hero-content { padding: 60px 24px 80px; }
  .hero-h1 { font-size: 46px; line-height: 0.92; }

  .values-strip { grid-template-columns: 1fr; }
  .value-item:nth-child(odd) { border-right: none; }
  .value-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .value-item + .value-item  { border-top: 1px solid var(--border); }
  .value-item { padding: 36px 24px; }

  .prod-panel-inner, .ingr-text, .ritual-text { padding: 64px 24px; }

  .page-hero  { padding: 100px 24px 80px; }
  .page-content, .ingr-editorial, .shop-editorial { padding: 0 20px; margin: 72px auto; }
  .shop-entry-text  { padding: 56px 24px; }
  .shop-entry-footer { flex-direction: column; align-items: flex-start; gap: 22px; }

  .proof-testimonial { padding: 72px 0 52px; }
  .proof-quote-large { font-size: 24px; }
  .proof-stat-num    { font-size: 64px; }
  .proof-inner       { padding: 0 24px; }
  .etsy-cta-inner    { padding: 88px 24px; }
  .etsy-cta-quote    { font-size: 26px; }

  .footer-body    { padding: 72px 24px 56px; gap: 56px; }
  .footer-bottom  { flex-direction: column; gap: 14px; text-align: center; padding: 18px 24px; }
}
