/** Shopify CDN: Minification failed

Line 1258:0 Unexpected "}"

**/
/* ==========================================================================
   SORTED. — Theme Stylesheet
   ========================================================================== */

:root {
  --ink:      #0B0B09;
  --paper:    #F3EEE3;
  --paper-2:  #EBE4D5;
  --bone:     #DDD3BE;
  --cobalt:   #1F4DB8;
  --cobalt-d: #163987;
  --moss:     #4A5D3A;
  --clay:     #9B5A3D;
  --sand:     #C4B89C;
  --hairline:   rgba(11,11,9,0.12);
  --hairline-d: rgba(243,238,227,0.14);
  --nav-h: 60px;
  --announce-h: 36px;
  --top-offset: 96px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--paper); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  padding-top: var(--top-offset);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ====== ANNOUNCEMENT ====== */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--ink); color: var(--paper);
  height: var(--announce-h); display: flex; align-items: center;
  overflow: hidden; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
}
.announce-track {
  display: flex; gap: 3rem; animation: marquee 50s linear infinite;
  white-space: nowrap; width: max-content;
}
.announce-track > span { opacity: 0.72; }
.announce-track .dot { opacity: 0.35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== NAV ====== */
.nav {
  position: fixed; top: var(--announce-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h); padding: 0 40px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(243,238,227,0.96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav-left, .nav-right { display: flex; gap: 28px; align-items: center; }
.nav-right { justify-content: flex-end; gap: 20px; }
.nav-center { text-align: center; }
.nav-logo {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em; color: var(--ink); font-variation-settings: 'opsz' 144;
}
.nav-logo .dot { color: var(--cobalt); }
.nav-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink); opacity: 0.72;
  transition: opacity 0.2s; padding: 4px 0; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--ink); transition: width 0.3s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }
.nav-cart {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  opacity: 0.72; transition: opacity 0.2s;
}
.nav-cart:hover { opacity: 1; }

/* ====== REVEAL ====== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.2, 0.6, 0.2, 1), transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

.split-reveal .word {
  display: inline-block; opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.split-reveal.visible .word { opacity: 1; transform: translateY(0); }
.split-reveal.visible .word:nth-child(1)  { transition-delay: 0s; }
.split-reveal.visible .word:nth-child(2)  { transition-delay: 0.07s; }
.split-reveal.visible .word:nth-child(3)  { transition-delay: 0.14s; }
.split-reveal.visible .word:nth-child(4)  { transition-delay: 0.21s; }
.split-reveal.visible .word:nth-child(5)  { transition-delay: 0.28s; }
.split-reveal.visible .word:nth-child(6)  { transition-delay: 0.35s; }
.split-reveal.visible .word:nth-child(7)  { transition-delay: 0.42s; }
.split-reveal.visible .word:nth-child(8)  { transition-delay: 0.49s; }
.split-reveal.visible .word:nth-child(9)  { transition-delay: 0.56s; }
.split-reveal.visible .word:nth-child(10) { transition-delay: 0.63s; }

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: var(--paper);
  padding: 16px 28px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.25s, transform 0.25s; border-radius: 2px;
}
.btn-primary:hover { background: var(--cobalt); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-text {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; padding-bottom: 2px; border-bottom: 1px solid var(--ink);
  opacity: 0.72; transition: opacity 0.2s;
}
.btn-text:hover { opacity: 1; }

.btn-large {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--paper); color: var(--ink);
  padding: 22px 40px; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: transform 0.25s, background 0.25s, color 0.25s;
  border-radius: 2px;
}
.btn-large:hover { background: var(--cobalt); color: var(--paper); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; border: 1px solid var(--ink);
  padding: 18px 36px; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.2s, color 0.2s; border-radius: 2px;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ====== HOME: HERO ====== */
.hero {
  position: relative; min-height: calc(100vh - var(--top-offset));
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--paper); overflow: hidden;
}
.hero-content {
  padding: 72px 56px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; z-index: 2;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500;
}
.hero-meta .line { width: 36px; height: 1px; background: var(--ink); opacity: 0.4; }
.hero-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(54px, 8.5vw, 140px);
  line-height: 0.92; letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144;
  color: var(--ink); margin-top: 40px;
}
.hero-headline em { font-style: italic; font-weight: 400; color: var(--cobalt); }
.hero-headline .block { display: block; }
.hero-rule { height: 1px; background: var(--ink); opacity: 0.25; margin: 48px 0 24px; width: 60px; }
.hero-body { font-size: 16px; line-height: 1.55; max-width: 420px; font-weight: 400; color: var(--ink); opacity: 0.82; }
.hero-body em { font-style: italic; font-family: var(--serif); }
.hero-actions { display: flex; gap: 20px; align-items: center; margin-top: 40px; }
.hero-image { position: relative; overflow: hidden; background: var(--paper-2); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-side-meta {
  position: absolute; bottom: 48px; right: 56px; z-index: 3;
  text-align: right; color: var(--paper); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  line-height: 1.8; text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-side-meta .num {
  font-family: var(--serif); font-size: 48px; line-height: 1;
  font-weight: 300; letter-spacing: -0.02em;
  display: block; margin-bottom: 8px; text-transform: none; color: var(--paper);
}
.hero-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 40px; border-top: 1px solid var(--hairline);
}
.hero-footer .stat-num {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  line-height: 1; letter-spacing: -0.02em;
}
.hero-footer .stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.55; margin-top: 6px; font-weight: 500;
}

/* ====== EDITORIAL ====== */
.editorial {
  padding: 160px 56px; background: var(--paper);
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 80px; align-items: start;
}
.editorial .small {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; opacity: 0.55;
}
.editorial-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.editorial-lead em { font-style: italic; color: var(--cobalt); }
.editorial-caption { font-size: 14px; line-height: 1.7; opacity: 0.7; max-width: 240px; }
.editorial-caption .divider {
  width: 36px; height: 1px; background: var(--ink); opacity: 0.4; margin-bottom: 18px;
}

/* ====== SYSTEM ====== */
.system { background: var(--ink); color: var(--paper); padding: 140px 0 0; overflow: hidden; }
.system-header {
  padding: 0 56px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.system-kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 24px; font-weight: 500;
}
.system-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 7vw, 120px); line-height: 0.92;
  letter-spacing: -0.035em; font-variation-settings: 'opsz' 144;
}
.system-title em { font-style: italic; color: var(--cobalt); }
.system-description {
  font-size: 17px; line-height: 1.6; opacity: 0.75;
  max-width: 420px; font-weight: 300;
}
.system-description em { font-style: italic; font-family: var(--serif); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline-d); }
.step {
  position: relative; border-right: 1px solid var(--hairline-d);
  display: flex; flex-direction: column; min-height: 560px;
}
.step:last-child { border-right: none; }
.step-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink); }
.step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.2, 0.6, 0.2, 1); }
.step:hover .step-img img { transform: scale(1.04); }
.step-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,9,0.7), transparent 60%);
}
.step-content { padding: 40px 40px 48px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.step-num-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500;
}
.step-num {
  font-family: var(--serif); font-size: 48px; line-height: 1;
  font-weight: 300; letter-spacing: -0.02em; opacity: 0.85;
}
.step-name {
  font-family: var(--serif); font-size: 40px; line-height: 1;
  letter-spacing: -0.025em; font-weight: 300; margin-top: 4px;
}
.step-name em { font-style: italic; }
.step-copy { font-size: 14px; line-height: 1.6; opacity: 0.7; font-weight: 300; max-width: 320px; }
.step-meta {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--hairline-d);
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500;
}

/* ====== MANIFESTO ====== */
.manifesto { background: var(--paper); padding: 160px 56px; text-align: center; }
.manifesto-quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.2vw, 72px); line-height: 1.1;
  letter-spacing: -0.025em; max-width: 1100px; margin: 0 auto;
  font-variation-settings: 'opsz' 144;
}
.manifesto-quote em { font-style: italic; color: var(--cobalt); }
.manifesto-quote .punct { color: var(--cobalt); font-style: normal; }
.manifesto-attr {
  margin-top: 60px; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.55; font-weight: 500;
}
.manifesto-attr .divider { width: 36px; height: 1px; background: var(--ink); opacity: 0.3; margin: 0 auto 18px; }

/* ====== RITUAL SPLITS ====== */
.ritual { background: var(--paper-2); }
.ritual-item { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; border-bottom: 1px solid var(--hairline); }
.ritual-item:last-child { border-bottom: none; }
.ritual-item.reverse { direction: rtl; }
.ritual-item.reverse > * { direction: ltr; }
.ritual-text {
  padding: 120px 80px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 32px; position: relative;
}
.ritual-number {
  font-family: var(--serif); font-size: 160px; font-weight: 300;
  line-height: 0.8; letter-spacing: -0.04em; color: var(--cobalt); opacity: 0.14;
  position: absolute; top: 60px; left: 80px;
  font-variation-settings: 'opsz' 144; pointer-events: none;
}
.ritual-item.reverse .ritual-number { left: auto; right: 80px; }
.ritual-kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; opacity: 0.5;
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 2;
}
.ritual-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cobalt); }
.ritual-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 80px); line-height: 1;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
  position: relative; z-index: 2;
}
.ritual-title em { font-style: italic; }
.ritual-body { font-size: 16px; line-height: 1.7; max-width: 440px; opacity: 0.78; position: relative; z-index: 2; }
.ritual-body em { font-style: italic; font-family: var(--serif); }
.ritual-stats {
  display: flex; gap: 48px; padding-top: 32px;
  border-top: 1px solid var(--hairline);
  max-width: 480px; position: relative; z-index: 2;
}
.ritual-stat-num {
  font-family: var(--serif); font-size: 40px; line-height: 1;
  font-weight: 300; letter-spacing: -0.025em;
}
.ritual-stat-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.55; margin-top: 8px; font-weight: 500;
}
.ritual-img { overflow: hidden; background: var(--ink); position: relative; }
.ritual-img img { width: 100%; height: 100%; object-fit: cover; }

/* ====== INGREDIENTS ====== */
.ingredients {
  background: var(--ink); color: var(--paper); padding: 160px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.ingredients-img { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); }
.ingredients-img img { width: 100%; height: 100%; object-fit: cover; }
.ingredients-kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.ingredients-kicker .line { width: 36px; height: 1px; background: var(--paper); opacity: 0.4; }
.ingredients-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 80px); line-height: 0.95;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
  margin-bottom: 32px;
}
.ingredients-title em { font-style: italic; color: var(--cobalt); }
.ing-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.ing-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px;
  padding: 24px 0; border-top: 1px solid var(--hairline-d); align-items: center;
}
.ing-item:last-child { border-bottom: 1px solid var(--hairline-d); }
.ing-symbol {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  opacity: 0.55; font-style: italic; width: 32px; text-align: center;
}
.ing-body .name {
  font-family: var(--serif); font-size: 22px; letter-spacing: -0.015em;
  font-weight: 400; margin-bottom: 2px;
}
.ing-body .desc { font-size: 13px; opacity: 0.6; line-height: 1.5; font-weight: 300; }
.ing-source {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.45; font-weight: 500;
}

/* ====== VOICES ====== */
.voices { background: var(--paper); padding: 160px 56px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.voices-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 100px; align-items: end; }
.voices-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 88px); line-height: 0.96;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
}
.voices-title em { font-style: italic; color: var(--cobalt); }
.voices-meta { font-size: 14px; line-height: 1.7; opacity: 0.7; text-align: right; }
.voices-meta .stars {
  font-family: var(--serif); font-size: 44px; line-height: 1;
  letter-spacing: -0.02em; color: var(--cobalt); margin-bottom: 8px; font-weight: 300;
}
.voices-meta .rating { font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.voice {
  border-top: 1px solid var(--ink); padding-top: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.voice-stars { letter-spacing: 4px; font-size: 14px; color: var(--cobalt); }
.voice-quote {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  line-height: 1.35; letter-spacing: -0.015em; font-variation-settings: 'opsz' 24;
}
.voice-quote em { font-style: italic; }
.voice-author {
  margin-top: auto; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.6; font-weight: 500;
}
.voice-author .name { opacity: 0.85; }
.voice-author .loc { opacity: 0.5; margin-left: 12px; }

/* ====== GIFT BOX ====== */
.giftbox { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; background: var(--paper-2); }
.giftbox-img { overflow: hidden; }
.giftbox-img img { width: 100%; height: 100%; object-fit: cover; }
.giftbox-content {
  padding: 140px 80px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.giftbox-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.55; font-weight: 500; }
.giftbox-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5.2vw, 84px); line-height: 0.96;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
}
.giftbox-title em { font-style: italic; color: var(--cobalt); }
.giftbox-body { font-size: 16px; line-height: 1.65; max-width: 480px; opacity: 0.78; }
.giftbox-body em { font-style: italic; font-family: var(--serif); }
.giftbox-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 24px; padding-top: 32px; border-top: 1px solid var(--hairline);
}
.giftbox-detail-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 6px; font-weight: 500;
}
.giftbox-detail-value { font-size: 14px; font-weight: 500; }

/* ====== JOURNAL TEASER ====== */
.journal-teaser { padding: 140px 56px; background: var(--paper); border-top: 1px solid var(--hairline); }
.journal-teaser-head {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
  margin-bottom: 64px; padding-bottom: 32px; border-bottom: 1px solid var(--hairline);
}
.journal-teaser-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 80px); line-height: 0.96;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
}
.journal-teaser-title em { font-style: italic; color: var(--cobalt); }
.journal-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.journal-card { display: flex; flex-direction: column; cursor: pointer; }
.journal-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); margin-bottom: 24px; }
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }
.journal-card-cat {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--cobalt); margin-bottom: 12px;
}
.journal-card-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  line-height: 1.25; letter-spacing: -0.015em; margin-bottom: 12px;
}
.journal-card-title em { font-style: italic; }
.journal-card-excerpt { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 16px; }
.journal-card-meta {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hairline);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500;
  display: flex; justify-content: space-between;
}

/* ====== FINAL CTA ====== */
.final-cta {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 56px; overflow: hidden; text-align: center;
  background: var(--ink); color: var(--paper);
}
.final-cta-bg { position: absolute; inset: 0; opacity: 0.4; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-content { position: relative; z-index: 2; max-width: 900px; }
.final-cta-kicker {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.6; font-weight: 500; margin-bottom: 32px;
}
.final-cta-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 9vw, 160px); line-height: 0.9;
  letter-spacing: -0.04em; font-variation-settings: 'opsz' 144; margin-bottom: 32px;
}
.final-cta-title em { font-style: italic; color: var(--cobalt); }
.final-cta-body { font-size: 17px; max-width: 500px; margin: 0 auto 48px; opacity: 0.75; line-height: 1.6; font-weight: 300; }
.final-cta-body em { font-style: italic; font-family: var(--serif); }

/* ====== FOOTER ====== */
.footer { background: var(--paper); padding: 100px 56px 40px; border-top: 1px solid var(--hairline); }
.footer-mark {
  font-family: var(--serif); font-size: clamp(120px, 22vw, 300px);
  font-weight: 300; line-height: 0.8; letter-spacing: -0.05em;
  color: var(--ink); opacity: 0.92; font-variation-settings: 'opsz' 144;
  margin-bottom: 80px; white-space: nowrap; overflow: hidden;
}
.footer-mark em { font-style: italic; color: var(--cobalt); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-top: 60px; border-top: 1px solid var(--hairline);
}
.footer-col h5 {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500; margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--ink); opacity: 0.75;
  margin-bottom: 12px; transition: opacity 0.2s; cursor: pointer;
}
.footer-col a:hover { opacity: 1; }
.footer-newsletter p { font-size: 14px; opacity: 0.75; line-height: 1.6; margin-bottom: 24px; max-width: 320px; }
.newsletter-form { display: flex; border-bottom: 1px solid var(--ink); max-width: 360px; }
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 12px 0; font-family: var(--sans); font-size: 14px; color: var(--ink);
}
.newsletter-form input::placeholder { opacity: 0.45; }
.newsletter-form button {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; padding: 12px 0 12px 16px;
}
.newsletter-form button:hover { color: var(--cobalt); }
.footer-bottom {
  margin-top: 80px; padding-top: 32px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; font-size: 12px;
  opacity: 0.5; letter-spacing: 0.04em;
}

/* ====== PRODUCT PAGE ====== */
.pp { background: var(--paper); }
.pp-wrap { display: grid; grid-template-columns: 1.15fr 1fr; min-height: calc(100vh - var(--top-offset)); }
.pp-gallery {
  position: sticky; top: var(--top-offset);
  height: calc(100vh - var(--top-offset));
  display: grid; grid-template-rows: 1fr 88px; gap: 8px; padding: 8px;
  background: var(--paper);
}
.pp-main { overflow: hidden; background: var(--paper-2); position: relative; }
.pp-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.pp-main-pager {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--serif); font-size: 14px; letter-spacing: -0.01em;
  font-weight: 400; background: rgba(11,11,9,0.75); color: var(--paper);
  padding: 6px 12px; border-radius: 2px; backdrop-filter: blur(8px);
}
.pp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pp-thumb {
  overflow: hidden; background: var(--paper-2); cursor: pointer;
  opacity: 0.55; transition: opacity 0.25s; border: 1px solid transparent;
}
.pp-thumb.active { opacity: 1; border-color: var(--ink); }
.pp-thumb:hover { opacity: 0.85; }
.pp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pp-info { padding: 64px 72px; display: flex; flex-direction: column; gap: 36px; }
.pp-crumb {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500;
  display: flex; gap: 12px; align-items: center;
}
.pp-crumb .sep { opacity: 0.3; }
.pp-header .kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.pp-header .kicker .dot { width: 6px; height: 6px; background: var(--cobalt); border-radius: 50%; }
.pp-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 5vw, 80px); line-height: 0.95;
  letter-spacing: -0.035em; font-variation-settings: 'opsz' 144;
  margin-bottom: 16px;
}
.pp-title em { font-style: italic; color: var(--cobalt); }
.pp-subtitle { font-size: 17px; line-height: 1.5; opacity: 0.75; max-width: 480px; font-weight: 400; }
.pp-subtitle em { font-style: italic; font-family: var(--serif); }
.pp-reviews-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.pp-reviews-stars { color: var(--cobalt); letter-spacing: 3px; }
.pp-reviews-count { font-size: 12px; letter-spacing: 0.1em; font-weight: 500; }
.pp-reviews-link {
  margin-left: auto; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6;
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}

.pp-purchase { background: var(--ink); color: var(--paper); border-radius: 4px; padding: 32px; }
.pp-purchase-title {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 20px;
}
.pp-opts { display: flex; flex-direction: column; gap: 10px; }
.pp-opt {
  border: 1px solid var(--hairline-d); border-radius: 4px;
  padding: 22px 24px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
}
.pp-opt.selected { border-color: var(--cobalt); background: rgba(31, 77, 184, 0.1); }
.pp-opt .radio {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(243,238,227,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pp-opt.selected .radio { border-color: var(--cobalt); }
.pp-opt .radio .dot {
  width: 8px; height: 8px; background: var(--cobalt); border-radius: 50%;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.pp-opt.selected .radio .dot { opacity: 1; transform: scale(1); }
.pp-opt-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; font-weight: 500; margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.pp-opt-label .badge {
  display: inline-block; padding: 2px 8px;
  background: var(--cobalt); color: var(--paper);
  font-size: 9px; letter-spacing: 0.18em; border-radius: 20px; opacity: 1;
}
.pp-opt-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: -0.015em; line-height: 1.2;
}
.pp-opt-name em { font-style: italic; }
.pp-opt-desc { font-size: 12px; opacity: 0.55; margin-top: 4px; font-weight: 300; }
.pp-opt-price {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  letter-spacing: -0.02em; text-align: right; line-height: 1;
}
.pp-opt-price-sub { font-size: 11px; opacity: 0.5; margin-top: 6px; text-align: right; letter-spacing: 0.04em; }
.pp-opt-price-old { font-size: 13px; opacity: 0.4; text-decoration: line-through; margin-right: 8px; font-weight: 300; }
.pp-savings {
  margin-top: 16px; padding: 12px 16px;
  background: rgba(31, 77, 184, 0.14); border-radius: 3px;
  font-size: 12px; color: rgba(243,238,227,0.85);
  display: flex; align-items: center; gap: 10px;
}
.pp-savings .icon { color: var(--cobalt); font-family: var(--serif); font-style: italic; }
.pp-cta-wrap { margin-top: 20px; }
.pp-add {
  width: 100%; background: var(--paper); color: var(--ink);
  padding: 18px 24px; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; border-radius: 3px;
  transition: background 0.25s, color 0.25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
}
.pp-add:hover { background: var(--cobalt); color: var(--paper); }
.pp-add .price { opacity: 0.6; margin-left: 8px; }
.pp-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--hairline-d);
  font-size: 11px; letter-spacing: 0.04em; opacity: 0.65;
}
.pp-trust-item { display: flex; align-items: center; gap: 8px; }
.pp-trust-item .dot { width: 6px; height: 6px; background: var(--cobalt); border-radius: 50%; flex-shrink: 0; }

.pp-includes-title {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.pp-includes-title .line { flex: 1; height: 1px; background: var(--ink); opacity: 0.15; }
.pp-include {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 20px;
  padding: 20px 0; border-top: 1px solid var(--hairline); align-items: center;
}
.pp-include:last-child { border-bottom: 1px solid var(--hairline); }
.pp-include-img { width: 64px; height: 64px; background: var(--paper-2); overflow: hidden; border-radius: 2px; }
.pp-include-img img { width: 100%; height: 100%; object-fit: cover; }
.pp-include-info .name { font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em; font-weight: 400; margin-bottom: 2px; }
.pp-include-info .desc { font-size: 12px; opacity: 0.6; font-weight: 400; }
.pp-include-price { font-size: 13px; opacity: 0.5; font-weight: 500; letter-spacing: 0.04em; }

.pp-acc-item { border-top: 1px solid var(--hairline); }
.pp-acc-item:last-child { border-bottom: 1px solid var(--hairline); }
.pp-acc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-size: 13px; letter-spacing: 0.06em; font-weight: 500; text-transform: uppercase;
}
.pp-acc-head:hover { opacity: 0.75; }
.pp-acc-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.pp-acc-icon::before, .pp-acc-icon::after {
  content: ''; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.pp-acc-icon::before { width: 12px; height: 1px; }
.pp-acc-icon::after { width: 1px; height: 12px; transition: transform 0.25s; }
.pp-acc-item.open .pp-acc-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.pp-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px; line-height: 1.75; opacity: 0.75;
}
.pp-acc-item.open .pp-acc-body { max-height: 800px; padding-bottom: 24px; }
.pp-acc-body em { font-style: italic; font-family: var(--serif); }
.pp-acc-body strong { font-weight: 500; opacity: 1; }

/* ====== PP REVIEWS ====== */
.pp-reviews { background: var(--paper); padding: 140px 56px; border-top: 1px solid var(--hairline); }
.pp-reviews-header {
  display: grid; grid-template-columns: 2fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
  padding-bottom: 40px; border-bottom: 1px solid var(--hairline);
}
.pp-reviews-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4vw, 64px); line-height: 0.96;
  letter-spacing: -0.03em; font-variation-settings: 'opsz' 144;
}
.pp-reviews-title em { font-style: italic; color: var(--cobalt); }
.pp-reviews-summary { text-align: right; }
.pp-reviews-score {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px;
}
.pp-reviews-score .of { opacity: 0.35; font-size: 32px; font-style: italic; }
.pp-reviews-total {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.6; font-weight: 500;
}
.pp-reviews-filters { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 16px; border: 1px solid var(--hairline);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; border-radius: 40px;
  cursor: pointer; transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ====== JOURNAL ====== */
.journal-page { background: var(--paper); padding: 80px 0 0; }
.journal-hero { padding: 60px 56px 80px; border-bottom: 1px solid var(--hairline); }
.journal-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.journal-hero-eyebrow .line { width: 36px; height: 1px; background: var(--ink); opacity: 0.4; }
.journal-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(60px, 9vw, 160px); line-height: 0.9;
  letter-spacing: -0.04em; font-variation-settings: 'opsz' 144; margin-bottom: 24px;
}
.journal-hero-title em { font-style: italic; color: var(--cobalt); }
.journal-hero-intro {
  font-size: 18px; max-width: 640px;
  opacity: 0.75; line-height: 1.55;
}
.journal-hero-intro em { font-style: italic; font-family: var(--serif); }

.journal-index { padding: 80px 56px 120px; }
.journal-section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: 40px; letter-spacing: -0.025em;
  margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--hairline);
}
.journal-section-title em { font-style: italic; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.journal-item { cursor: pointer; display: flex; flex-direction: column; }
.journal-item-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); margin-bottom: 20px; }
.journal-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.journal-item:hover .journal-item-img img { transform: scale(1.04); }
.journal-item .cat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--cobalt); margin-bottom: 10px;
}
.journal-item .title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  line-height: 1.25; letter-spacing: -0.015em; margin-bottom: 10px;
}
.journal-item .title em { font-style: italic; }
.journal-item .excerpt { font-size: 13px; line-height: 1.65; opacity: 0.7; margin-bottom: 14px; }
.journal-item .meta {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hairline);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500;
  display: flex; justify-content: space-between;
}

/* ====== BLOG POST ====== */
.post-page { background: var(--paper); }
.post-hero {
  padding: 60px 56px 40px; max-width: 860px; margin: 0 auto; text-align: center;
}
.post-cat {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 24px; color: var(--cobalt);
}
.post-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(42px, 6vw, 84px); line-height: 1.02;
  letter-spacing: -0.035em; font-variation-settings: 'opsz' 144; margin-bottom: 28px;
}
.post-title em { font-style: italic; color: var(--cobalt); }
.post-meta {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500;
  display: flex; gap: 24px; justify-content: center; margin-bottom: 48px;
}
.post-meta .dot { opacity: 0.3; }
.post-image { max-width: 1100px; margin: 0 auto 80px; aspect-ratio: 16/9; overflow: hidden; }
.post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 720px; margin: 0 auto; padding: 0 32px 120px; font-size: 18px; line-height: 1.75; color: var(--ink); }
.post-body .lead {
  font-family: var(--serif); font-size: 24px; line-height: 1.5;
  font-weight: 300; letter-spacing: -0.015em;
  margin-bottom: 48px; opacity: 0.85;
}
.post-body .lead em { font-style: italic; color: var(--cobalt); }
.post-body h2 {
  font-family: var(--serif); font-weight: 400; font-size: 36px;
  letter-spacing: -0.025em; line-height: 1.1; margin: 64px 0 20px;
}
.post-body h2 em { font-style: italic; color: var(--cobalt); }
.post-body h3 {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: -0.015em; line-height: 1.25; margin: 40px 0 14px;
}
.post-body p { margin-bottom: 24px; opacity: 0.9; }
.post-body em { font-style: italic; }
.post-body strong { font-weight: 500; }
.post-body ul, .post-body ol { margin: 0 0 24px 24px; }
.post-body li { margin-bottom: 12px; opacity: 0.9; }
.post-body a { color: var(--cobalt); border-bottom: 1px solid currentColor; }
.post-body blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; line-height: 1.4; letter-spacing: -0.01em;
  font-weight: 300;
  padding: 24px 0 24px 32px; border-left: 2px solid var(--cobalt);
  margin: 48px 0; opacity: 0.9;
}
.post-cta {
  max-width: 720px; margin: 48px auto 0;
  padding: 48px; background: var(--ink); color: var(--paper);
  border-radius: 4px; text-align: center;
}
.post-cta h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: 36px; letter-spacing: -0.02em; margin-bottom: 12px;
}
.post-cta h3 em { font-style: italic; color: var(--cobalt); }
.post-cta p { opacity: 0.7; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ====== ABOUT/INGREDIENTS/FAQ ====== */
.about-hero {
  padding: 60px 56px 120px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; min-height: 80vh;
}
.about-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.about-hero-eyebrow .line { width: 36px; height: 1px; background: var(--ink); opacity: 0.4; }
.about-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 6.5vw, 112px); line-height: 0.95;
  letter-spacing: -0.035em; font-variation-settings: 'opsz' 144; margin-bottom: 32px;
}
.about-hero-title em { font-style: italic; color: var(--cobalt); }
.about-hero-body { font-size: 17px; line-height: 1.65; opacity: 0.82; max-width: 500px; }
.about-hero-body em { font-style: italic; font-family: var(--serif); }
.about-hero-img { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body { padding: 120px 56px; max-width: 900px; margin: 0 auto; font-size: 18px; line-height: 1.75; }
.about-body p { margin-bottom: 28px; opacity: 0.9; }
.about-body em { font-style: italic; }
.about-body h2 {
  font-family: var(--serif); font-weight: 400; font-size: 42px;
  letter-spacing: -0.025em; line-height: 1.1; margin: 72px 0 24px;
}
.about-body h2 em { font-style: italic; color: var(--cobalt); }

.ing-page { padding: 60px 56px 120px; background: var(--paper); }
.ing-hero { padding: 40px 0 80px; border-bottom: 1px solid var(--hairline); margin-bottom: 80px; }
.ing-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 24px;
}
.ing-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(60px, 9vw, 160px); line-height: 0.9;
  letter-spacing: -0.04em; font-variation-settings: 'opsz' 144; margin-bottom: 24px;
}
.ing-hero-title em { font-style: italic; color: var(--cobalt); }
.ing-hero-intro { font-size: 18px; max-width: 640px; opacity: 0.75; line-height: 1.55; }
.ing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.ing-detail { padding: 48px 40px; border-top: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
.ing-detail:nth-child(2n) { border-right: none; }
.ing-detail-sym { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--cobalt); margin-bottom: 16px; }
.ing-detail-name { font-family: var(--serif); font-size: 32px; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 12px; }
.ing-detail-name em { font-style: italic; }
.ing-detail-meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.5; font-weight: 500; margin-bottom: 20px;
}
.ing-detail-desc { font-size: 15px; line-height: 1.7; opacity: 0.82; margin-bottom: 16px; }
.ing-detail-uses {
  font-size: 12px; opacity: 0.6;
  padding-top: 16px; border-top: 1px solid var(--hairline); letter-spacing: 0.04em;
}

.faq-page { padding: 60px 56px 120px; max-width: 900px; margin: 0 auto; }
.faq-hero { padding: 40px 0 60px; border-bottom: 1px solid var(--hairline); margin-bottom: 20px; }
.faq-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; font-weight: 500; margin-bottom: 24px;
}
.faq-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 8vw, 120px); line-height: 0.92;
  letter-spacing: -0.035em; font-variation-settings: 'opsz' 144; margin-bottom: 24px;
}
.faq-hero-title em { font-style: italic; color: var(--cobalt); }
.faq-hero-intro { font-size: 17px; opacity: 0.75; max-width: 600px; line-height: 1.6; }
.faq-group { padding: 40px 0 0; }
.faq-group h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
}
.faq-group h3 em { font-style: italic; }

/* ====== TOAST ====== */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: var(--paper);
  padding: 16px 28px; border-radius: 4px; z-index: 200;
  font-size: 13px; letter-spacing: 0.06em; font-weight: 500;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  :root { --top-offset: 88px; --nav-h: 56px; --announce-h: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 24px; min-height: 70vh; }
  .hero-image { min-height: 50vh; }
  .editorial { grid-template-columns: 1fr; gap: 32px; padding: 80px 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--hairline-d); }
  .ritual-item { grid-template-columns: 1fr; min-height: auto; }
  .ritual-item.reverse { direction: ltr; }
  .ritual-text { padding: 60px 24px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voices-header, .voices { padding: 80px 24px; }
  .voices-header { grid-template-columns: 1fr; }
  .ingredients { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .giftbox { grid-template-columns: 1fr; }
  .giftbox-content { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pp-wrap { grid-template-columns: 1fr; }
  .pp-gallery { position: relative; top: 0; height: auto; }
  .pp-main { aspect-ratio: 4/5; }
  .pp-info { padding: 40px 24px; }
  .pp-reviews-header { grid-template-columns: 1fr; }
  .pp-reviews { padding: 80px 24px; }
  .nav { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .nav-left > *:nth-child(n+3), .nav-right > *:nth-child(n+2):not(.nav-cart) { display: none; }
  .manifesto, .journal-teaser { padding: 80px 24px; }
  .journal-teaser-grid, .journal-grid { grid-template-columns: 1fr; }
  .journal-hero { padding: 40px 24px 60px; }
  .journal-index, .ing-page, .faq-page, .about-body { padding: 60px 24px; }
  .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; min-height: auto; }
  .ing-grid { grid-template-columns: 1fr; }
  .ing-detail { border-right: none; padding: 32px 0; }
  .post-body { padding: 0 24px 80px; font-size: 16px; }
  .post-hero { padding: 40px 24px 32px; }
  .footer { padding: 60px 24px 32px; }
}
/* ====================================
   MOBILE RESPONSIVE FIXES - PRODUCT PAGE
   ==================================== */

@media (max-width: 768px) {
  
  /* Stack the split layout */
  .pp-sorted-final > div:first-child {
    grid-template-columns: 1fr !important;
  }
  
  /* Gallery becomes scrollable, not sticky */
  .pp-sorted-final > div:first-child > div:first-child {
    position: relative !important;
    height: auto !important;
    padding: 24px !important;
    min-height: auto !important;
  }
  
  .pp-sorted-final .pp-main img {
    max-height: 500px;
    object-fit: contain;
  }
  
  /* Right column - reduce padding on mobile */
  .pp-sorted-final > div:first-child > div:last-child {
    padding: 32px 20px !important;
  }
  
  /* Headings smaller on mobile */
  .pp-sorted-final h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
  }
  
  .pp-sorted-final h2 {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  
  .pp-sorted-final h3 {
    font-size: 22px !important;
  }
  
  .pp-sorted-final h4 {
    font-size: 16px !important;
  }
  
  /* Subscription box - reduce padding */
  .pp-sorted-final form > div:first-child {
    padding: 24px 18px !important;
  }
  
  /* Subscription price - smaller on mobile */
  .pp-sorted-final form .pp-info div[style*="font-size: 48px"] {
    font-size: 36px !important;
  }
  
  /* Full-width content - reduce padding */
  .pp-sorted-final > div:last-child {
    padding: 48px 0 !important;
  }
  
  .pp-sorted-final > div:last-child > div {
    padding: 0 20px !important;
  }
  
  /* Social proof stats - stack on mobile */
  .pp-sorted-final > div:last-child > div > div:first-child {
    padding: 32px 20px !important;
  }
  
  .pp-sorted-final > div:last-child > div > div:first-child > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  /* ====================================
     SORTED VS OTHERS - MOBILE CARDS
     ==================================== */
  
  /* Hide the desktop comparison table on mobile */
  .pp-sorted-final > div:last-child div[style*="background: white; border-radius: 16px; overflow: hidden"] {
    display: none !important;
  }
  
  /* Show mobile comparison cards instead */
  .mobile-comparison {
    display: block !important;
  }
  
  /* ====================================
     OTHER GRID FIXES
     ==================================== */
  
  /* "How it works" - stack 3 columns to 1 */
  .pp-sorted-final h2:nth-of-type(2) ~ div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  /* Active ingredients - 1 column on mobile */
  .pp-sorted-final div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Reviews grid - 1 column on mobile */
  #reviews-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Review cards - smaller padding */
  #reviews-section div[style*="background: #f8f8f8"] {
    padding: 24px !important;
  }
  
  /* CTA buttons - full width on mobile */
  .pp-sorted-final button {
    padding: 18px 24px !important;
    font-size: 13px !important;
  }
  
  /* Mid-page CTA buttons full width */
  .pp-sorted-final > div:last-child > div > div[style*="text-align: center"] button {
    width: 100%;
    padding: 20px 24px !important;
  }
  
  /* Final CTA section padding */
  .pp-sorted-final > div:last-child > div > div[style*="background: linear-gradient(135deg, var(--cobalt)"] {
    padding: 40px 24px !important;
  }
  
  /* Trust badges - keep 3 columns but smaller */
  .pp-sorted-final div[style*="grid-template-columns: repeat(3, 1fr)"][style*="background: #f8f8f8"] {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 20px !important;
    gap: 12px !important;
  }
  
  /* Trust badge icons smaller */
  .pp-sorted-final div[style*="background: #f8f8f8"] div[style*="width: 52px"] {
    width: 44px !important;
    height: 44px !important;
  }
  
  /* Trust badge text smaller */
  .pp-sorted-final div[style*="background: #f8f8f8"] div[style*="font-size: 12px; font-weight: 700"] {
    font-size: 11px !important;
  }
  
  /* What's included items - smaller */
  .pp-sorted-final div[style*="grid-template-columns: 72px 1fr"] {
    grid-template-columns: 60px 1fr !important;
    gap: 16px !important;
  }
  
  .pp-sorted-final div[style*="grid-template-columns: 72px 1fr"] > div:first-child {
    width: 60px !important;
    height: 60px !important;
  }
  
  /* FAQ items - smaller */
  .faq-item h4 {
    font-size: 15px !important;
  }
  
  /* Reviews header - smaller */
  #reviews-section > div:first-child > div[style*="font-size: 64px"] {
    font-size: 48px !important;
  }
  
  /* Write a review form - mobile friendly */
  #writeReviewForm {
    padding: 24px 20px !important;
  }
  
  /* Final CTA heading */
  .pp-sorted-final > div:last-child > div > div[style*="background: linear-gradient"] h2 {
    font-size: 32px !important;
  }
  
}

/* Show mobile comparison only on mobile, hide on desktop */
.mobile-comparison {
  display: none;
}

/* Extra small phones */
@media (max-width: 480px) {
  
  .pp-sorted-final h1 {
    font-size: 30px !important;
  }
  
  .pp-sorted-final h2 {
    font-size: 24px !important;
  }
  
  /* Subscription savings row */
  .pp-sorted-final div[style*="background: #f0f4ff"] {
    padding: 10px 14px !important;
  }
  
  .pp-sorted-final div[style*="background: #f0f4ff"] div[style*="font-size: 15px; font-weight: 800"] {
    font-size: 13px !important;
  }
  
  /* Countdown timer - smaller */
  #shippingCountdown {
    padding: 12px 14px !important;
  }
  
  #shippingCountdown div[style*="font-size: 18px"] {
    font-size: 15px !important;
  }
  
  /* "Shipped Next Day" row - wrap better */
  #shippingRow {
    flex-wrap: wrap !important;
  }
  
}
  
}