/* ═══════════════════════════════════════════════════════════════════════════
   ★  SOFT LIGHT ALCHEMY  —  MASTER CUSTOM CSS  v3.0  ★
   ═══════════════════════════════════════════════════════════════════════════
   Built from all 11 prototype pages:
     01  Homepage             06  Soft Light (Home)
     02  About / Our Story    07  Product Detail Page
     03  Soft Root Alchemy    08  Journal index
     04  Soft Bloom Alchemy   09  Blog post detail
     05  Soft Earth Alchemy   10  Contact / FAQ
                              12  Policies
   ─────────────────────────────────────────────────────────────────────────
   INSTALL:  Zoho Commerce → Storefront → Settings → Code → Custom CSS
             Replace all existing CSS with this file.  Save + Publish.
   ─────────────────────────────────────────────────────────────────────────
   To find a section:  Ctrl+F and search for "── NN ──"  (e.g. "── 10 ──")
   To change colors or fonts:  edit the :root block below — values cascade
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   ── 00 ──  DESIGN TOKENS  (colors · fonts · motion)
            20 variables merged from all 11 pages
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --cream: #F9F6F1;
  --gold: #c8a96e;
  --gold-faint: rgba(200,169,110,0.12);
  --gold-border: rgba(200,169,110,0.3);
  --sage: #2C5F4A;
  --sage-dark: #1a3a2e;
  --sage-faint: rgba(44,95,74,0.07);
  --blush: #F4E8E4;
  --dark: #2D2D2D;
  --muted: #666;
  --subtle: #aaa;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --ease: all 0.28s ease;
  --cream-warm: #F5F1EC;
  --sage-deep: #1a3a2e;
  --sage-light: #B9C4B8;
  --gold-dark: #a8864e;
  --mid: #5a5a5a;
  --light: #8a8a8a;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ── 01 ──  GLOBAL RESET & TYPOGRAPHY
            10 rules
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: rgba(200,169,110,0.18);
  color: var(--sage);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--sage);
  text-decoration: none;
  transition: var(--ease);
}
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage);
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 02 ──  LAYOUT PRIMITIVES  (.container, .tag, .section-header, dividers)
            7 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.tag {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
}
hr.divider {
  border: none;
  border-top: 1px solid var(--gold-border);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: 44px;
  font-weight: 300;
  margin: 12px 0 14px;
}
.section-header p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 03 ──  BUTTON SYSTEM  (.btn-gold, .btn-sage, .btn-ghost, .btn-cart, .btn-wish)
            21 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  border: none;
  padding: 13px 34px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}
.btn-gold:hover {
  background: var(--sage);
  color: var(--cream);
}
.btn-sage {
  display: inline-block;
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 12px 32px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}
.btn-sage:hover {
  background: var(--sage);
  color: var(--cream);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(249,246,241,0.38);
  padding: 12px 32px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}
.btn-ghost:hover { background: rgba(249,246,241,0.12); }
.btn-cart {
  background: var(--gold);
  color: var(--cream);
  border: none;
  padding: 8px 16px;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: var(--ease);
}
.btn-cart:hover { background: var(--sage); }
.btn-wish {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--sage);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--ease);
}
.btn-wish:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-row {
  display: flex;
  gap: 7px;
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  padding: 13px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(249,246,241,.5);
  transition: all .25s;
  display: inline-block;
}
.btn-outline-cream:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  padding: 13px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--sage);
  transition: all .25s;
  display: inline-block;
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: var(--cream);
}
.btn-add {
  flex: 1;
  background: var(--sage);
  color: var(--cream);
  padding: 14px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
}
.btn-add:hover { background: var(--gold); }
.btn-wishlist {
  background: transparent;
  border: 1px solid rgba(200,169,110,.4);
  padding: 14px 20px;
  color: var(--sage);
  cursor: pointer;
  font-size: 18px;
  transition: all .25s;
}
.btn-wishlist:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-submit {
  background: var(--sage);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
  width: 100%;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 04 ──  ANNOUNCEMENT BAR  (top promo strip)
            7 rules
   ═══════════════════════════════════════════════════════════════════════════ */

#announcement {
  background: var(--sage);
  padding: 10px 0;
  text-align: center;
}
#announcement span {
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.82);
  font-family: var(--sans);
  font-weight: 300;
}
#announcement strong {
  color: var(--gold);
  font-weight: 500;
}
.announce {
  background: var(--sage);
  color: rgba(249,246,241,.9);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar {
  background: var(--sage);
  border-top: 1px solid rgba(200,169,110,.2);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 6px 20px;
  font-size: 11px;
  color: rgba(249,246,241,.8);
  letter-spacing: .06em;
}
.topbar a { color: rgba(249,246,241,.8); }
.topbar a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 05 ──  HEADER, NAVIGATION, LOGO, CART ICON
            23 rules
   ═══════════════════════════════════════════════════════════════════════════ */

header {
  background: rgba(249,246,241,0.97);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 18px rgba(44,95,74,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.brand-cartouche {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(200,169,110,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-cartouche svg {
  width: 28px;
  height: 28px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--sage);
  line-height: 1.1;
}
.brand-tagline {
  font-size: 9px;
  letter-spacing: .13em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
nav {
  display: flex;
  gap: 0;
  align-items: center;
}
nav a {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  padding: 8px 14px;
  position: relative;
  transition: var(--ease);
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
}
.header-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.header-icons button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sage);
  font-size: 17px;
  padding: 4px;
  transition: var(--ease);
}
.header-icons button:hover { color: var(--gold); }
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  width: 17px;
  height: 17px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--sans);
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-block img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.logo-text .brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: .04em;
}
.logo-text .tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
nav a.active, nav a:hover { color: var(--gold); }
.nav-cart {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cream);
  padding: 8px 18px;
  margin-left: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 06 ──  HERO  (homepage hero + inner-page hero)
            79 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: linear-gradient(155deg, #1a3a2e 0%, #2C5F4A 55%, #1e4535 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(200,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.65);
  margin-bottom: 22px;
  font-family: var(--sans);
}
.hero-quote {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(249,246,241,0.45);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 400px;
  border-left: 1px solid rgba(200,169,110,0.25);
  padding-left: 16px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 300;
  color: var(--cream);
  line-height: .9;
  letter-spacing: -.01em;
}
.hero h1 em {
  color: var(--gold);
  display: block;
  font-style: normal;
}
.hero-sub {
  font-size: 14px;
  color: rgba(249,246,241,0.68);
  line-height: 1.9;
  margin: 28px 0 36px;
  max-width: 440px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats { display: flex; }
.hero-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(200,169,110,0.18);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-products {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid rgba(200,169,110,0.1);
  background: rgba(200,169,110,0.04);
  position: relative;
  z-index: 2;
}
.hero-products-label {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.55);
  margin-bottom: 6px;
  font-family: var(--sans);
}
.hp-card {
  background: rgba(249,246,241,0.05);
  border: 1px solid rgba(200,169,110,0.18);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  transition: var(--ease);
}
.hp-card:hover {
  background: rgba(249,246,241,0.09);
  border-color: rgba(200,169,110,0.38);
}
.hp-icon {
  width: 54px;
  height: 54px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(200,169,110,0.55);
}
.hp-meta { flex: 1; }
.hp-sub {
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.65);
  font-family: var(--sans);
}
.hp-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  margin: 2px 0;
}
.hp-desc {
  font-size: 11px;
  color: rgba(249,246,241,0.5);
  line-height: 1.5;
  font-weight: 300;
}
.hp-price {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-products-footer {
  border-top: 1px solid rgba(200,169,110,0.14);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-code {
  font-size: 10px;
  color: rgba(249,246,241,0.35);
  font-style: italic;
}
.page-hero {
  background: linear-gradient(155deg, #1a3a2e 0%, #2C5F4A 60%, #1e4535 100%);
  padding: 84px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero .tag {
  color: rgba(200,169,110,0.7);
  text-align: center;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: 64px;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(249,246,241,0.62);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
  text-align: center;
}
.page-hero-breadcrumb {
  text-align: center;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.3);
  font-family: var(--sans);
}
.page-hero-breadcrumb a { color: rgba(249,246,241,0.38); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.hero-visual-label {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.5);
  font-family: var(--sans);
  margin-bottom: 4px;
  text-align: center;
}
.hero-jar-mockup {
  text-align: center;
  padding: 28px;
  background: rgba(249,246,241,0.04);
  border: 1px solid rgba(200,169,110,0.14);
  width: 100%;
  max-width: 280px;
}
.hero-jar-icon {
  font-family: var(--serif);
  font-size: 72px;
  color: rgba(200,169,110,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-jar-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 4px;
}
.hero-jar-sub {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  font-family: var(--sans);
  margin-bottom: 12px;
}
.hero-jar-herbs {
  font-size: 11px;
  color: rgba(249,246,241,0.45);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}
.hero-jar-price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.hero-jar-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.hero-jar-tag {
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(200,169,110,0.22);
  color: rgba(200,169,110,0.6);
  font-family: var(--sans);
}
.hero-feat-card {
  background: rgba(249,246,241,0.05);
  border: 1px solid rgba(200,169,110,0.18);
  padding: 24px;
  width: 100%;
  max-width: 280px;
  text-align: center;
}
.hero-feat-icon {
  font-family: var(--serif);
  font-size: 64px;
  color: rgba(200,169,110,0.18);
  line-height: 1;
  margin-bottom: 10px;
}
.hero-feat-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 3px;
}
.hero-feat-sub {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  font-family: var(--sans);
  margin-bottom: 10px;
}
.hero-feat-desc {
  font-size: 11px;
  color: rgba(249,246,241,0.48);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.hero-feat-price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.hero-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}
.hero-feat-tag {
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid rgba(200,169,110,0.22);
  color: rgba(200,169,110,0.6);
  font-family: var(--sans);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem,4vw,3.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(249,246,241,.8);
  max-width: 50ch;
  margin-bottom: 28px;
}
.hero-stat .num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}
.hero-stat .lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(249,246,241,.6);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-product {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(200,169,110,.25);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-product img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
}
.hero-product .prod-eye {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-product h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.hero-product p {
  font-size: 12px;
  color: rgba(249,246,241,.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hero-product .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-product .btn-add {
  background: var(--gold);
  color: var(--cream);
  padding: 12px 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .25s;
}
.hero-product .btn-add:hover { background: var(--sage-deep); }
.hero-manifesto {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sage);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,.2);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(44,95,74,.06);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
}
.hero-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}
.hero-stat-desc {
  font-size: 11px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 8px;
}
.hero-img-card {
  grid-column: span 2;
  overflow: hidden;
  aspect-ratio: 2/1;
  border: 1px solid rgba(200,169,110,.2);
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-product .prod-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-product .ingredients-list {
  background: #fff;
  border: 1px solid rgba(200,169,110,.2);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 24px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.hero-img {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 60px;
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
.hero-img img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-caption {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  padding: 10px 0;
  font-style: italic;
}
.page-hero .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 07 ──  TRUST BAR  (5-icon strip under hero)
            8 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.trust-bar {
  background: var(--sage);
  padding: 18px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
.trust-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(200,169,110,0.18);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 5px;
}
.trust-text {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.65);
  font-family: var(--sans);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(200,169,110,.2);
  border-bottom: 1px solid rgba(200,169,110,.2);
  margin-bottom: 24px;
}
.trust-item span { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 08 ──  PHILOSOPHY SECTION  (Soft · Light · Alchemy columns)
            21 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.philosophy {
  padding: 84px 0;
  background: var(--cream);
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  border: 1px solid var(--gold-border);
}
.phil-divider { background: rgba(200,169,110,0.2); }
.phil-col { padding: 48px 38px; }
.phil-col.dark { background: var(--sage); }
.phil-word {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.phil-col.dark .phil-word { color: var(--gold); }
.phil-col:not(.dark) .phil-word { color: var(--sage); }
.phil-role {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--sans);
}
.phil-col.dark .phil-role { color: rgba(200,169,110,0.65); }
.phil-col:not(.dark) .phil-role { color: var(--gold); }
.phil-body {
  font-size: 13px;
  line-height: 1.88;
  margin-bottom: 22px;
  font-style: italic;
}
.phil-col.dark .phil-body { color: rgba(249,246,241,0.7); }
.phil-col:not(.dark) .phil-body { color: var(--muted); }
.phil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.phil-tag {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid;
  font-family: var(--sans);
}
.phil-col.dark .phil-tag {
  border-color: rgba(200,169,110,0.28);
  color: var(--gold);
}
.phil-col:not(.dark) .phil-tag {
  border-color: rgba(44,95,74,0.22);
  color: var(--sage);
}
.phil-pull {
  border: 1px solid var(--gold-border);
  background: rgba(200,169,110,0.05);
  padding: 40px 56px;
  margin-top: 36px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.phil-pull blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.55;
  font-style: italic;
}
.phil-pull cite {
  display: block;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  font-style: normal;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 09 ──  COLLECTIONS GRID  (4 collection cards)
            39 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.collections { padding: 76px 0; }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--gold-border);
}
.coll-card {
  padding: 44px 26px;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}
.coll-card:last-child { border-right: none; }
.coll-card:nth-child(odd) { background: var(--cream); }
.coll-card:nth-child(even) { background: var(--blush); }
.coll-card:hover { background: var(--sage); }
.coll-card:hover .coll-name { color: var(--cream); }
.coll-card:hover .coll-sub { color: rgba(200,169,110,0.75); }
.coll-card:hover .coll-desc { color: rgba(249,246,241,0.65); }
.coll-card:hover .coll-cta {
  color: var(--gold);
  border-color: var(--gold);
}
.coll-icon {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold);
  margin-bottom: 12px;
}
.coll-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  margin-bottom: 4px;
  font-weight: 400;
  transition: var(--ease);
}
.coll-sub {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--sans);
  transition: var(--ease);
}
.coll-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
  transition: var(--ease);
}
.coll-count {
  font-size: 10px;
  color: var(--subtle);
  margin-bottom: 18px;
  transition: var(--ease);
}
.coll-cta {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  transition: var(--ease);
}
.coll-hero {
  min-height: 420px;
  background: linear-gradient(155deg,#0f2218 0%,#1a3a2e 45%,#2C5F4A 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.coll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%,rgba(200,169,110,0.08) 0%,transparent 65%);
  pointer-events: none;
}
.coll-hero-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.coll-hero-breadcrumb {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.3);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.coll-hero-breadcrumb a { color: rgba(249,246,241,0.35); }
.coll-hero-breadcrumb a:hover { color: var(--gold); }
.coll-hero .tag {
  color: rgba(200,169,110,0.65);
  margin-bottom: 16px;
}
.coll-hero h1 {
  font-size: 66px;
  font-weight: 300;
  color: var(--cream);
  line-height: .9;
  margin-bottom: 4px;
}
.coll-hero h1 em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.coll-hero-desc {
  font-size: 14px;
  color: rgba(249,246,241,0.65);
  line-height: 1.9;
  max-width: 460px;
  margin: 22px 0 32px;
  font-weight: 300;
}
.coll-hero-meta {
  display: flex;
  gap: 0;
}
.coll-meta-item {
  padding: 0 24px;
  border-right: 1px solid rgba(200,169,110,0.18);
  text-align: center;
}
.coll-meta-item:first-child { padding-left: 0; }
.coll-meta-item:last-child { border-right: none; }
.coll-meta-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.coll-meta-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.42);
  margin-top: 3px;
}
.coll-hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  border-left: 1px solid rgba(200,169,110,0.08);
  background: rgba(200,169,110,0.03);
  position: relative;
  z-index: 2;
  gap: 12px;
}
.coll-breadcrumb {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.3);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.coll-breadcrumb a { color: rgba(249,246,241,0.35); }
.coll-breadcrumb a:hover { color: var(--gold); }
.coll-meta {
  display: flex;
  gap: 0;
}
.collection-hero {
  background: linear-gradient(135deg,#1a3a2e 0%,#2C5F4A 50%,#3a7a60 100%);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 10 ──  PRODUCT CARDS  (featured grid, product cards, cart buttons)
            74 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.featured {
  padding: 76px 0;
  background: var(--cream);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.prod-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,0.16);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,95,74,0.1);
}
.prod-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage);
  color: var(--cream);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  font-family: var(--sans);
  font-weight: 500;
}
.prod-badge.new { background: var(--gold); }
.prod-body { padding: 18px; }
.prod-sub {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: var(--sans);
}
.prod-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 6px;
}
.prod-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}
.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--sage);
}
.prod-size {
  font-size: 10px;
  color: var(--subtle);
  margin-top: 2px;
}
.products-section { padding: 52px 0 80px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.pcard {
  background: #fff;
  border: 1px solid rgba(200,169,110,0.16);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(44,95,74,0.11);
}
.pcard-img {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
}
.pcard-icon {
  font-family: var(--serif);
  font-size: 56px;
  color: rgba(249,246,241,0.12);
  margin-bottom: 8px;
}
.pcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  font-family: var(--sans);
  font-weight: 500;
}
.pcard-badge.new {
  background: var(--gold);
  color: var(--cream);
}
.pcard-badge.seasonal {
  background: var(--sage);
  color: var(--cream);
}
.pcard-badge.bestseller {
  background: var(--dark);
  color: var(--cream);
}
.pcard-badge.caffeine {
  background: rgba(200,169,110,0.18);
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
}
.pcard-jar-label {
  text-align: center;
  background: rgba(249,246,241,0.06);
  border: 1px solid rgba(249,246,241,0.1);
  padding: 8px 16px;
  max-width: 180px;
}
.pcard-jar-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.1;
}
.pcard-jar-sub {
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  margin-top: 3px;
  font-family: var(--sans);
}
.pcard-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard-top { margin-bottom: auto; }
.pcard-collection {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: var(--sans);
}
.pcard-name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--dark);
  margin-bottom: 4px;
}
.pcard-herbs {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .03em;
  margin-bottom: 10px;
  font-style: italic;
}
.pcard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 16px;
  font-weight: 300;
}
.pcard-ritual {
  font-size: 11px;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.65;
  padding-left: 10px;
  border-left: 2px solid var(--gold-border);
}
.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.pcard-tag {
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--gold-border);
  color: var(--sage);
  font-family: var(--sans);
}
.pcard-footer {
  border-top: 1px solid var(--gold-border);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcard-price-wrap .pcard-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
}
.pcard-price-wrap .pcard-size {
  font-size: 9px;
  color: var(--subtle);
  margin-top: 2px;
}
.prod-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.prod-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
.prod-grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}
.pcard-badge.popular {
  background: var(--sage);
  color: var(--cream);
}
.pcard-badge.sensitive {
  background: var(--blush);
  color: var(--sage);
  border: 1px solid rgba(200,169,110,0.3);
}
.pcard-label {
  text-align: center;
  background: rgba(249,246,241,0.07);
  border: 1px solid rgba(249,246,241,0.1);
  padding: 7px 14px;
  max-width: 180px;
}
.pcard-label-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--cream);
  line-height: 1.1;
}
.pcard-label-sub {
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  margin-top: 2px;
  font-family: var(--sans);
}
.pcard-coll {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--sans);
}
.pcard-key {
  font-size: 10px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 9px;
  letter-spacing: .02em;
}
.pcard-price {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--sage);
}
.pcard-size {
  font-size: 9px;
  color: var(--subtle);
  margin-top: 2px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,.1);
  transition: transform .28s,box-shadow .28s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44,95,74,.12);
}
.product-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover img { transform: scale(1.05); }
.product-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--cream);
  padding: 4px 10px;
}
.product-card .badge-gold { background: var(--gold); }
.product-card .card-body { padding: 20px 22px 22px; }
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 60px;
  background: #fff;
}
.product-info { padding: 0 0 0 60px; }
.prod-collection {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.prod-collection a { color: var(--gold); }
.prod-title {
  font-family: var(--serif);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 400;
  color: var(--sage);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.prod-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 20px;
}
.prod-short-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 24px;
}
.product-tabs { margin-top: 32px; }
.product-details-full {
  padding: 60px;
  background: var(--cream-warm);
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.featured-img { overflow: hidden; }
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform .5s;
}
.featured-img:hover img { transform: scale(1.03); }
.featured-body { padding: 60px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 11 ──  MAGNUM OPUS / ALCHEMICAL STAGES
            14 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.magnum {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.magnum-left {
  background: var(--sage);
  padding: 76px 64px;
}
.magnum-right {
  background: var(--blush);
  padding: 76px 52px;
}
.magnum-left .tag {
  color: rgba(200,169,110,0.65);
  margin-bottom: 20px;
}
.magnum-left h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 22px;
}
.magnum-left p {
  font-size: 14px;
  color: rgba(249,246,241,0.68);
  line-height: 1.9;
  margin-bottom: 14px;
  font-weight: 300;
}
.stages {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.stage {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.stage-num {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 15px;
}
.stage-num.gold {
  background: var(--gold);
  color: var(--cream);
}
.stage-num.sage {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
}
.stage-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--sage);
  margin-bottom: 4px;
}
.stage-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
}
.magnum-right .tag { margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 12 ──  RITUAL BUNDLES
            16 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.bundles {
  background: var(--sage);
  padding: 76px 0;
}
.bundles .section-header h2 { color: var(--cream); }
.bundles .section-header p { color: rgba(249,246,241,0.58); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.bundle-card {
  background: rgba(249,246,241,0.05);
  border: 1px solid rgba(200,169,110,0.22);
  padding: 32px;
  position: relative;
}
.bundle-card.hero-bundle {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.42);
}
.bundle-label {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.7);
  margin-bottom: 10px;
  font-family: var(--sans);
}
.bundle-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 22px;
  font-weight: 300;
}
.bundle-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 4px 18px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
}
.bundle-items {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(200,169,110,0.14);
  padding-bottom: 18px;
}
.bundle-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 5px 0;
}
.bundle-item-name { color: rgba(249,246,241,0.68); }
.bundle-item-price { color: var(--gold); }
.bundle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bundle-was {
  font-size: 11px;
  color: rgba(249,246,241,0.36);
  text-decoration: line-through;
}
.bundle-price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 13 ──  HERBALIST CREDIBILITY SECTION
            9 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.herbalist {
  padding: 76px 0;
  background: var(--cream);
}
.herb-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 34px;
}
.herb-card {
  border-top: 3px solid var(--gold);
  padding-top: 22px;
}
.herb-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  margin-bottom: 5px;
}
.herb-latin {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
  font-family: var(--sans);
}
.herb-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 12px;
  font-weight: 300;
}
.herb-found {
  font-size: 11px;
  color: var(--sage);
  font-style: italic;
}
.herb-disclaimer {
  background: rgba(200,169,110,0.07);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin-top: 48px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}
.herb-disclaimer strong {
  color: var(--sage);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 14 ──  STEEPING GUIDE  (tea prep)
            18 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.steeping {
  background: var(--sage);
  padding: 68px 0;
}
.steeping .section-header h2 { color: var(--cream); }
.steeping .section-header p { color: rgba(249,246,241,0.55); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(200,169,110,0.18);
}
.step-card {
  padding: 34px 22px;
  text-align: center;
  border-right: 1px solid rgba(200,169,110,0.14);
}
.step-card:last-child { border-right: none; }
.step-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 12px;
  color: rgba(249,246,241,0.52);
  line-height: 1.78;
  font-weight: 300;
}
.steep-chart {
  background: var(--blush);
  padding: 64px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.steep-chart h2 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
}
.steep-chart .sub {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 44px;
}
.steep-guide {
  background: var(--cream-warm);
  padding: 16px 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(200,169,110,.2);
}
.steep-guide h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 8px;
}
.steep-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.steep-item { text-align: center; }
.steep-val {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage);
}
.steep-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 15 ──  PEACHES & BEACHES EVENT SECTION
            15 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.event {
  background: var(--blush);
  padding: 60px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.event-eyebrow { margin-bottom: 16px; }
.event-content h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 18px;
}
.event-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}
.event-meta {
  display: flex;
  gap: 34px;
  margin-bottom: 28px;
}
.event-meta-item .em-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
}
.event-meta-item .em-label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--sans);
}
.event-form-wrap {
  background: var(--sage);
  padding: 40px;
}
.event-form-wrap h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
}
.event-form-wrap .sub {
  font-size: 12px;
  color: rgba(249,246,241,0.55);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 300;
}
.form-field { margin-bottom: 12px; }
.form-field input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(249,246,241,0.09);
  border: 1px solid rgba(200,169,110,0.28);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  outline: none;
  transition: var(--ease);
}
.form-field input:focus {
  border-color: var(--gold);
  background: rgba(249,246,241,0.14);
}
.form-field input::placeholder { color: rgba(249,246,241,0.36); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 16 ──  JOURNAL / BLOG INDEX CARDS
            32 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.journal {
  padding: 76px 0;
  background: var(--cream);
}
.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.jcard {
  border: 1px solid var(--gold-border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
}
.jcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,95,74,0.09);
}
.jcard-img {
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.jcard.featured .jcard-img { height: 280px; }
.jcard:not(.featured) .jcard-img { height: 190px; }
.bg-forest { background: linear-gradient(135deg,#1a3a2e,#2C5F4A); }
.bg-crimson { background: linear-gradient(135deg,#3d1a1a,#6b2020); }
.bg-indigo { background: linear-gradient(135deg,#1a1a2a,#2a2a4a); }
.jcard-cat {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
}
.jcard-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.22;
  margin-top: 6px;
}
.jcard.featured .jcard-title { font-size: 26px; }
.jcard-body {
  padding: 20px;
  background: #fff;
}
.jcard-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 13px;
  font-weight: 300;
}
.jcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jcard-author {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--sans);
}
.jcard-read {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
}
.bg-scarlet { background: linear-gradient(155deg,#3d1a1a,#6b2020); }
.bg-golden { background: linear-gradient(155deg,#1a3a2e,#2C5F4A); }
.bg-spice { background: linear-gradient(155deg,#2a1f0a,#6b4a15); }
.bg-night { background: linear-gradient(155deg,#1a1a2a,#2a2a4a); }
.bg-ruby { background: linear-gradient(155deg,#2a0a1a,#6b1530); }
.bg-still { background: linear-gradient(155deg,#0a1a2a,#154060); }
.bg-deeproot { background: linear-gradient(155deg,#1a2a10,#3a5a20); }
.bg-opensky { background: linear-gradient(155deg,#2a1a0a,#5a3010); }
.bg-velvet { background: linear-gradient(155deg,#1a0a1a,#3a1a3a); }
.journal-hero {
  background: var(--sage-deep);
  padding: 80px 60px;
  text-align: center;
}
.journal-hero .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.journal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.journal-hero p {
  font-size: 14px;
  color: rgba(249,246,241,.75);
  max-width: 55ch;
  margin: 0 auto 32px;
  line-height: 1.9;
}
.journal-hero .quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(249,246,241,.6);
  max-width: 50ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 17 ──  BLOG POST DETAIL PAGE
            34 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.related-section {
  padding: 60px;
  background: var(--cream);
}
.related-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 40px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.related-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,.1);
  transition: transform .25s,box-shadow .25s;
  overflow: hidden;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(44,95,74,.1);
}
.related-card .img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.related-card:hover img { transform: scale(1.04); }
.related-card .rc-body { padding: 16px; }
.posts-section { padding: 60px; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.post-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,.1);
  overflow: hidden;
  transition: transform .25s,box-shadow .25s;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(44,95,74,.1);
}
.post-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-img img { transform: scale(1.04); }
.post-body { padding: 22px; }
.post-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.post-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-excerpt {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.post-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-read {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid rgba(200,169,110,.4);
  padding-bottom: 2px;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(200,169,110,.15);
}
.post-card.coming-soon {
  opacity: .6;
  pointer-events: none;
}
.post-hero {
  background: var(--sage-deep);
  padding: 80px 60px 50px;
}
.post-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,.4);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.post-sub {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(249,246,241,.7);
  margin-bottom: 32px;
  line-height: 1.5;
}
.author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(200,169,110,.2);
  margin-top: 44px;
}
.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.toc { list-style: none; }
.toc li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.toc a {
  font-size: 11px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.6;
}
.toc a:hover { color: var(--sage); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 18 ──  FOUNDER STORY + PHOTO BLOCK
            23 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.founder-story {
  background: var(--blush);
  padding: 76px 64px;
}
.founder-promises {
  background: var(--sage);
  padding: 76px 52px;
}
.founder-story .tag { margin-bottom: 20px; }
.founder-story h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 22px;
}
.founder-story p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 15px;
  font-weight: 300;
}
.founder-promises h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: rgba(200,169,110,0.75);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-photo-wrap { position: relative; }
.story-photo {
  background: linear-gradient(155deg, #2C5F4A, #1a3a2e);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-photo-mark {
  font-family: var(--serif);
  font-size: 96px;
  color: rgba(200,169,110,0.14);
  user-select: none;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,58,46,0.93);
  padding: 22px 28px;
  border-top: 1px solid rgba(200,169,110,0.2);
}
.photo-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 4px;
}
.photo-title {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--sans);
  line-height: 1.6;
}
.photo-pull {
  border: 1px solid var(--gold-border);
  background: rgba(200,169,110,0.05);
  padding: 24px 28px;
  margin-top: 24px;
}
.photo-pull blockquote {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--sage);
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
}
.photo-pull cite {
  display: block;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  font-style: normal;
  font-family: var(--sans);
}
.story-text .tag { margin-bottom: 18px; }
.story-text h2 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 28px;
}
.story-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 18px;
  font-weight: 300;
}
.story-text p strong {
  color: var(--dark);
  font-weight: 500;
}
.story-text p em {
  color: var(--sage);
  font-style: italic;
}
.story-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 19 ──  BRAND ETYMOLOGY / WORD ORIGINS
            21 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.etymology {
  background: var(--sage);
  padding: 76px 0;
}
.etymology .section-header h2 { color: var(--cream); }
.etymology .section-header p { color: rgba(249,246,241,0.55); }
.etym-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid rgba(200,169,110,0.18);
}
.etym-col {
  padding: 44px 36px;
  border-right: 1px solid rgba(200,169,110,0.14);
  position: relative;
}
.etym-col:last-child { border-right: none; }
.etym-num {
  font-family: var(--serif);
  font-size: 11px;
  color: rgba(200,169,110,0.4);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
}
.etym-word {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.etym-root {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.55);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.etym-body {
  font-size: 13px;
  color: rgba(249,246,241,0.65);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}
.etym-lineage {
  border-top: 1px solid rgba(200,169,110,0.15);
  padding-top: 18px;
}
.etym-lineage-title {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.5);
  margin-bottom: 10px;
  font-family: var(--sans);
}
.etym-step {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 7px;
  font-size: 12px;
}
.etym-step-lang {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.45);
  font-family: var(--sans);
  min-width: 72px;
  flex-shrink: 0;
}
.etym-step-word {
  color: rgba(249,246,241,0.7);
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
}
.etym-step-meaning {
  color: rgba(249,246,241,0.4);
  font-size: 11px;
}
.etym-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
}
.etym-table th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-bottom: 2px solid var(--gold);
  text-align: left;
  color: var(--sage);
}
.etym-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(200,169,110,.15);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.65;
  vertical-align: top;
}
.etym-table tr:last-child td { border-bottom: none; }
.etym-table td:first-child {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 20 ──  THREE VALUES CARDS
            10 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.values {
  padding: 80px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.value-card {
  padding: 40px 30px;
  border: 1px solid var(--gold-border);
  text-align: center;
  transition: var(--ease);
  cursor: default;
}
.value-card:hover { background: var(--sage); }
.value-card:hover .value-title { color: var(--cream); }
.value-card:hover .value-desc { color: rgba(249,246,241,0.65); }
.value-card:hover .value-icon { color: var(--gold); }
.value-icon {
  font-size: 32px;
  margin-bottom: 18px;
  transition: var(--ease);
}
.value-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  margin-bottom: 12px;
  transition: var(--ease);
}
.value-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.88;
  font-weight: 300;
  transition: var(--ease);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 21 ──  THE JOURNEY TIMELINE
            14 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.timeline-section {
  background: var(--sage);
  padding: 80px 0;
}
.timeline-section h2 {
  font-size: 44px;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  margin-bottom: 12px;
}
.timeline-section .sub {
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(249,246,241,0.38);
  font-style: italic;
  margin-bottom: 56px;
}
.timeline {
  max-width: 760px;
  margin: 0 auto;
}
.t-item {
  display: flex;
  gap: 36px;
}
.t-year-col {
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 4px;
}
.t-year {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.t-body-col {
  flex: 1;
  border-left: 1px solid rgba(200,169,110,0.25);
  padding-left: 36px;
  padding-bottom: 44px;
}
.t-item:last-child .t-body-col { padding-bottom: 0; }
.t-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: -40px;
  margin-top: 8px;
  float: left;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.2);
}
.t-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  padding-left: 16px;
}
.t-desc {
  font-size: 13px;
  color: rgba(249,246,241,0.62);
  line-height: 1.88;
  font-weight: 300;
  padding-left: 16px;
}
.t-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-left: 16px;
}
.t-tag {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(200,169,110,0.25);
  color: rgba(200,169,110,0.65);
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 22 ──  FOUR BRAND PROMISES  (roman numerals)
            17 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.promise-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200,169,110,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.promise-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}
.promise-desc {
  font-size: 12px;
  color: rgba(249,246,241,0.62);
  line-height: 1.78;
  font-weight: 300;
}
.promises {
  padding: 80px 0;
  background: var(--cream);
}
.promises-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.promise-card {
  border: 1px solid var(--gold-border);
  padding: 40px;
}
.promise-card.featured {
  background: var(--sage);
  border-color: rgba(200,169,110,0.3);
}
.promise-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.promise-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}
.promise-card.featured .promise-num { opacity: 0.6; }
.promise-keyword {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--sage);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.promise-card.featured .promise-keyword { color: var(--gold); }
.promise-subtitle {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
}
.promise-card.featured .promise-subtitle { color: rgba(200,169,110,0.65); }
.promise-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}
.promise-card.featured .promise-body { color: rgba(249,246,241,0.65); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 23 ──  SUB-BRAND OVERVIEW CARDS
            9 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.sub-brands {
  background: var(--blush);
  padding: 80px 0;
}
.sub-brands-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.sb-card {
  background: var(--cream);
  border: 1px solid var(--gold-border);
  padding: 32px 24px;
}
.sb-icon {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 14px;
}
.sb-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--sage);
  margin-bottom: 4px;
}
.sb-sub {
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--sans);
}
.sb-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.sb-count {
  font-size: 10px;
  color: var(--subtle);
  margin-bottom: 16px;
}
.sb-link {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  font-family: var(--sans);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 24 ──  CREDIBILITY STATS  (by the numbers)
            6 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.credibility {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.cred-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: center;
}
.cred-label {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
}
.cred-points {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.cred-point-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--sage);
  line-height: 1;
}
.cred-point-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 25 ──  EMAIL CAPTURE / NEWSLETTER
            16 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.email-wrap {
  background: var(--sage);
  padding: 84px 0;
  text-align: center;
}
.email-wrap h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
}
.email-wrap .sub {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(249,246,241,0.42);
  font-style: italic;
  margin-bottom: 30px;
}
.email-wrap p {
  font-size: 14px;
  color: rgba(249,246,241,0.62);
  max-width: 440px;
  margin: 0 auto 38px;
  line-height: 1.9;
  font-weight: 300;
}
.email-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(200,169,110,0.36);
}
.email-form input {
  flex: 1;
  padding: 15px 18px;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
  outline: none;
}
.email-form input::placeholder { color: rgba(249,246,241,0.36); }
.email-fine {
  font-size: 10px;
  color: rgba(249,246,241,0.28);
  margin-top: 12px;
  letter-spacing: .05em;
}
.email-wrap .esub {
  font-family: var(--serif);
  font-size: 19px;
  color: rgba(249,246,241,0.42);
  font-style: italic;
  margin-bottom: 28px;
}
.email-section {
  background: var(--sage-deep);
  padding: 70px 60px;
  text-align: center;
}
.email-section .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.email-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.email-section p {
  font-size: 14px;
  color: rgba(249,246,241,.7);
  margin-bottom: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.email-form button {
  background: var(--gold);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
}
.email-form button:hover { background: var(--gold-dark); }
.email-note {
  font-size: 10px;
  color: rgba(249,246,241,.35);
  margin-top: 14px;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 26 ──  OPENING QUOTE BAND
            3 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.opening-quote {
  background: var(--blush);
  padding: 52px 0;
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.opening-quote blockquote {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.5;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 16px;
}
.opening-quote cite {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 27 ──  FAQ ACCORDION
            18 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-mini {
  padding: 64px 0;
  background: var(--cream);
}
.faq-mini h2 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
}
.faq-mini .sub {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 44px;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.faq-item { border-bottom: 1px solid var(--gold-border); }
.faq-q {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--sage);
  font-weight: 400;
  line-height: 1.3;
}
.faq-toggle {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-a {
  padding: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}
.faq-section {
  padding: 64px 0;
  background: var(--cream);
}
.faq-section h2 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
}
.faq-section .sub {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 44px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-full {
  padding: 70px 60px;
  background: var(--cream-warm);
}
.faq-full h2 {
  font-family: var(--serif);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 14px;
}
.faq-full .sub {
  font-size: 13px;
  color: var(--mid);
  max-width: 55ch;
  line-height: 1.85;
  margin-bottom: 50px;
}
.faq-categories {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.faq-cat h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,169,110,.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 28 ──  CONTACT PAGE
            13 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,241,.6);
  line-height: 2.2;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.contact-form-col {
  padding: 60px;
  background: #fff;
}
.contact-form-col h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 24px;
}
.contact-info-col {
  padding: 60px;
  background: var(--sage);
}
.contact-info-col h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item p {
  font-size: 13px;
  color: rgba(249,246,241,.8);
  line-height: 1.75;
}
.contact-item a { color: rgba(249,246,241,.9); }
.contact-item a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 29 ──  PRODUCT DETAIL PAGE  (gallery, variants, specs, ingredients)
            25 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.ingredients {
  padding: 72px 0;
  background: var(--cream);
}
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.ingr-card {
  border-top: 3px solid var(--gold);
  padding-top: 22px;
}
.ingr-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  margin-bottom: 4px;
}
.ingr-latin {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
  font-family: var(--sans);
}
.ingr-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 12px;
  font-weight: 300;
}
.ingr-found {
  font-size: 11px;
  color: var(--sage);
  font-style: italic;
}
.ingr-disclaimer {
  background: rgba(200,169,110,0.07);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin-top: 44px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}
.ingr-disclaimer strong {
  color: var(--sage);
  font-style: normal;
}
.ingredients-section {
  padding: 70px 60px;
  background: #fff;
}
.ingredients-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 10px;
}
.ingredients-section .sub {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  max-width: 50ch;
  margin: 0 auto 50px;
  line-height: 1.85;
}
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.ingredient-card {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}
.ingredient-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.ingredient-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 4px;
}
.ingredient-latin {
  font-size: 10px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.ingredient-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}
.ingredient-products {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 10px;
}
.gallery {
  position: sticky;
  top: 90px;
}
.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-warm);
  margin-bottom: 12px;
  border: 1px solid rgba(200,169,110,.12);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
.ingredients-list {
  background: var(--cream-warm);
  padding: 16px 20px;
  margin: 12px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 30 ──  RITUAL GUIDE
            7 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.ritual-guide {
  background: var(--sage);
  padding: 72px 0;
}
.ritual-guide .section-header h2 { color: var(--cream); }
.ritual-guide .section-header p { color: rgba(249,246,241,0.55); }
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid rgba(200,169,110,0.18);
}
.ritual-guide h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 10px;
}
.ritual-guide .sub {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  max-width: 50ch;
  margin: 0 auto 50px;
  line-height: 1.85;
}
.ritual-step {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(200,169,110,.12);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 31 ──  POLICY PAGES  (Returns, Privacy, Terms, FDA Disclaimer)
            27 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.fda-band {
  background: rgba(200,169,110,0.08);
  border-bottom: 1px solid var(--gold-border);
  padding: 12px 0;
}
.fda-band p {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.fda-band strong {
  color: var(--sage);
  font-style: normal;
}
.fda-inline {
  background: rgba(200,169,110,0.07);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin-top: 6px;
  font-style: italic;
  font-size: 12px;
  line-height: 1.7;
}
.fda-notice {
  background: rgba(200,169,110,.08);
  border-left: 2px solid var(--gold);
  padding: 14px 24px;
  margin: 40px 60px 0;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .02em;
  line-height: 1.7;
}
.fda-mini {
  background: rgba(200,169,110,.08);
  border-left: 2px solid var(--gold);
  padding: 10px 16px;
  margin-bottom: 24px;
  font-size: 11px;
  color: var(--mid);
  line-height: 1.65;
}
.policy-nav {
  background: var(--cream-warm);
  padding: 20px 60px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.policy-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 7px 16px;
  border: 1px solid rgba(200,169,110,.3);
  transition: all .25s;
}
.policy-nav a.active, .policy-nav a:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.policy-page {
  display: none;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px;
}
.policy-page.active { display: block; }
.policy-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold);
}
.policy-header .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.policy-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 10px;
  line-height: 1.15;
}
.policy-header .updated {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .06em;
}
.policy-body h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sage);
  margin: 32px 0 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(200,169,110,.15);
}
.policy-body h2:first-child {
  margin-top: 0;
  border-top: none;
}
.policy-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 14px;
}
.policy-body ul {
  margin-left: 20px;
  margin-bottom: 14px;
}
.policy-body ul li {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.9;
  padding: 3px 0;
}
.policy-body a {
  color: var(--sage);
  border-bottom: 1px solid rgba(200,169,110,.3);
}
.policy-body a:hover { color: var(--gold); }
.policy-box {
  background: var(--cream-warm);
  border: 1px solid rgba(200,169,110,.3);
  padding: 20px 24px;
  margin: 20px 0;
}
.policy-box p {
  margin: 0;
  font-size: 12px;
  color: var(--mid);
}
.fda-box {
  background: rgba(200,169,110,.1);
  border: 2px solid var(--gold);
  padding: 24px;
  margin: 20px 0;
  text-align: center;
}
.fda-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 10px;
}
.fda-box p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 32 ──  COLLECTION FILTERS, SORTING, CATEGORIES
            9 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.filter-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
}
.filter-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.filter-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
  padding: 16px 24px;
  border-right: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.filter-scrollable {
  display: flex;
  gap: 0;
  overflow-x: auto;
  flex: 1;
}
.filter-btn {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 22px;
  border: none;
  border-right: 1px solid var(--gold-border);
  color: var(--sage);
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
  transition: var(--ease);
  white-space: nowrap;
  font-weight: 400;
}
.filter-btn:hover {
  background: var(--sage-faint);
  color: var(--sage);
}
.filter-btn.active {
  background: var(--sage);
  color: var(--cream);
}
.filter-count {
  font-size: 9px;
  color: var(--subtle);
  margin-left: 4px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 33 ──  TABLES  (steeping chart, spec tables)
            11 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.chart-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gold-border);
}
.chart-table th {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--sage);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
}
.chart-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gold-border);
  font-size: 13px;
  color: var(--dark);
  vertical-align: top;
  font-weight: 300;
  line-height: 1.6;
}
.chart-table tr:last-child td { border-bottom: none; }
.chart-table tr:nth-child(even) td { background: rgba(200,169,110,0.04); }
.chart-table tr:hover td { background: rgba(44,95,74,0.04); }
.td-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--sage);
  font-weight: 400;
}
.td-herbs {
  font-style: italic;
  color: var(--muted);
  font-size: 12px;
}
.td-temp { color: var(--dark); }
.td-time {
  color: var(--sage);
  font-weight: 500;
  font-family: var(--sans);
}
.td-note {
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 34 ──  FOOTER
            22 rules
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--sage-dark);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
}
.footer-about {
  font-size: 12px;
  color: rgba(249,246,241,0.42);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 18px;
  font-weight: 300;
}
.footer-contact {
  font-size: 11px;
  color: rgba(249,246,241,0.32);
  font-style: italic;
  line-height: 1.8;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-family: var(--sans);
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(249,246,241,0.46);
  font-weight: 300;
  transition: var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 10px;
  color: rgba(249,246,241,0.24);
  letter-spacing: .06em;
}
.footer-fda {
  font-size: 10px;
  color: rgba(249,246,241,0.22);
  font-style: italic;
  text-align: center;
  max-width: 500px;
  line-height: 1.6;
}
.footer-sym {
  font-size: 10px;
  color: rgba(249,246,241,0.24);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.footer-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,241,.65);
  line-height: 2.4;
  transition: color .25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .contact {
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,241,.6);
  line-height: 2.2;
}
.footer-tag-line {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tag-f {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── 99 ──  PAGE-SPECIFIC COMPONENTS  (fda bands, charts, whole-leaf, diff-grid, etc.)
            336 rules
   ═══════════════════════════════════════════════════════════════════════════ */

.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.45);
  margin-top: 4px;
}
.whole-leaf {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wl-left {
  background: var(--sage);
  padding: 72px 64px;
}
.wl-right {
  background: var(--cream);
  padding: 72px 52px;
}
.wl-left .tag {
  color: rgba(200,169,110,0.65);
  margin-bottom: 18px;
}
.wl-left h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 22px;
}
.wl-left p {
  font-size: 14px;
  color: rgba(249,246,241,0.68);
  line-height: 1.9;
  margin-bottom: 14px;
  font-weight: 300;
}
.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diff-col-header {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--sans);
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.diff-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.diff-mark {
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.diff-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.sage-faint { background: rgba(44,95,74,0.07); }
.cat-divider {
  padding: 40px 0 24px;
  border-top: 1px solid var(--gold-border);
  margin-top: 16px;
}
.cat-divider:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.cat-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}
.cat-icon {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
}
.cat-title {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--sage);
  font-weight: 300;
}
.cat-sub {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
}
.cat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 28px;
  font-weight: 300;
}
.bloom-oil-sweet { background: linear-gradient(155deg,#2d1a3a,#6a3060); }
.bloom-oil-blue { background: linear-gradient(155deg,#0d1a2a,#1a3a5a); }
.bloom-mist-lav { background: linear-gradient(155deg,#2a1a3a,#4a2a6a); }
.bloom-butter-lav { background: linear-gradient(155deg,#1e1428,#3a2050); }
.bloom-butter-sweet { background: linear-gradient(155deg,#2a0f1a,#5a2040); }
.bloom-butter-golden { background: linear-gradient(155deg,#2a1a0a,#6a4010); }
.bloom-butter-velvet { background: linear-gradient(155deg,#1a0a2a,#3a1a4a); }
.bloom-cream-oat { background: linear-gradient(155deg,#1a1a14,#3a3a28); }
.bloom-scrub { background: linear-gradient(155deg,#0a1a10,#1a3a20); }
.bloom-soap-foam { background: linear-gradient(155deg,#1a2a2a,#2a4a4a); }
.bloom-lip-pep { background: linear-gradient(155deg,#1a0a0a,#3a1010); }
.bloom-lip-honey { background: linear-gradient(155deg,#2a1a0a,#5a3a10); }
.bloom-muscle { background: linear-gradient(155deg,#0a1a10,#1e4030); }
.rstep {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(200,169,110,0.14);
}
.rstep:last-child { border-right: none; }
.rstep-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 8px;
}
.rstep-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 8px;
}
.rstep-product {
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.65);
  margin-bottom: 8px;
  font-family: var(--sans);
}
.rstep-desc {
  font-size: 11px;
  color: rgba(249,246,241,0.5);
  line-height: 1.72;
  font-weight: 300;
}
.carriers {
  padding: 72px 0;
  background: var(--cream);
}
.carriers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.carrier-card {
  border-top: 3px solid var(--gold);
  padding-top: 20px;
}
.carrier-name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--sage);
  margin-bottom: 4px;
}
.carrier-latin {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 11px;
  font-family: var(--sans);
}
.carrier-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 10px;
  font-weight: 300;
}
.carrier-found {
  font-size: 11px;
  color: var(--sage);
  font-style: italic;
}
.clean-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.clean-left {
  background: var(--blush);
  padding: 72px 60px;
}
.clean-right {
  background: var(--sage);
  padding: 72px 52px;
}
.clean-left h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 22px;
}
.clean-left p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
  font-weight: 300;
}
.clean-never { margin-top: 28px; }
.clean-never-title {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--sans);
}
.clean-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clean-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.clean-item-mark {
  color: var(--sage);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.clean-right h3 {
  font-family: var(--serif);
  font-size: 30px;
  color: rgba(200,169,110,0.8);
  font-weight: 300;
  margin-bottom: 24px;
}
.clean-always {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clean-always-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ca-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.ca-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 3px;
}
.ca-desc {
  font-size: 12px;
  color: rgba(249,246,241,0.58);
  line-height: 1.72;
  font-weight: 300;
}
.app-guide {
  padding: 72px 0;
  background: var(--cream);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.app-card {
  border: 1px solid var(--gold-border);
  padding: 36px;
}
.app-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--sage);
  margin-bottom: 8px;
}
.app-product {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--sans);
}
.app-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.app-step-num {
  min-width: 24px;
  height: 24px;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--sans);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}
.app-step-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}
.app-step-text strong {
  color: var(--dark);
  font-weight: 500;
}
.skin-guide {
  background: var(--blush);
  padding: 64px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.skin-guide h2 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
}
.skin-guide .sub {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 44px;
}
.skin-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gold-border);
}
.skin-table th {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--sage);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
}
.skin-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gold-border);
  font-size: 12px;
  color: var(--dark);
  vertical-align: top;
  font-weight: 300;
  line-height: 1.6;
}
.skin-table tr:last-child td { border-bottom: none; }
.skin-table tr:nth-child(even) td { background: rgba(200,169,110,0.04); }
.skin-type {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--sage);
  font-weight: 400;
}
.skin-rec { color: var(--dark); }
.skin-why {
  color: var(--muted);
  font-style: italic;
  font-size: 11px;
}
.breadcrumb {
  padding: 14px 60px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid rgba(200,169,110,.15);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span {
  margin: 0 8px;
  color: var(--gold);
}
.section { padding: 60px; }
.section-alt {
  background: #fff;
  padding: 60px;
}
.section-label {
  text-align: center;
  padding: 50px 60px 20px;
}
.section-label .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  letter-spacing: -.01em;
}
.section-label p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  max-width: 55ch;
  margin: 12px auto 0;
  line-height: 1.85;
}
.card-eye {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.card-ingredients {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--sage-light);
  margin-bottom: 6px;
}
.card-ritual {
  font-size: 11px;
  font-style: italic;
  color: var(--mid);
  padding-top: 10px;
  border-top: 1px solid rgba(200,169,110,.15);
  line-height: 1.7;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(200,169,110,.15);
}
.price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage);
}
.candle-section {
  background: var(--sage-deep);
  padding: 60px;
}
.candle-section .section-label .eyebrow { color: var(--gold); }
.candle-section .section-label h2 { color: var(--cream); }
.candle-section .section-label p { color: rgba(249,246,241,.7); }
.candle-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  margin-top: 40px;
}
.candle-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.2);
  transition: all .28s;
  cursor: pointer;
}
.candle-card:hover {
  background: rgba(255,255,255,.1);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.candle-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.candle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.95);
}
.candle-card:hover img { transform: scale(1.04); }
.candle-card .card-body { padding: 28px; }
.candle-card .card-eye { color: var(--gold); }
.candle-card .card-name {
  color: var(--cream);
  font-size: 1.5rem;
}
.candle-card .card-desc {
  color: rgba(249,246,241,.75);
  font-size: 13px;
}
.candle-card .card-ritual {
  color: rgba(249,246,241,.55);
  border-top-color: rgba(200,169,110,.2);
}
.candle-card .tag {
  color: rgba(249,246,241,.7);
  border-color: rgba(200,169,110,.3);
}
.candle-card .price {
  color: var(--gold);
  font-size: 1.5rem;
}
.candle-card .btn-cart {
  background: var(--gold);
  color: var(--cream);
}
.candle-card .btn-cart:hover {
  background: #fff;
  color: var(--sage-deep);
}
.candle-card .card-footer { border-top-color: rgba(200,169,110,.2); }
.comparison-section {
  padding: 70px 60px;
  background: var(--cream);
}
.comparison-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 40px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-bottom: 2px solid var(--gold);
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(200,169,110,.15);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child, .comparison-table th:first-child {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage);
}
.check {
  color: var(--sage);
  font-weight: 700;
}
.cross { color: rgba(180,60,60,.6); }
.care-section {
  background: var(--sage);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.care-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
}
.care-section p {
  font-size: 14px;
  color: rgba(249,246,241,.8);
  line-height: 1.9;
  margin-bottom: 16px;
}
.care-list { list-style: none; }
.care-list li {
  font-size: 13px;
  color: rgba(249,246,241,.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,169,110,.2);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.care-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}
.care-callout {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.3);
  padding: 36px;
}
.care-callout h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}
.care-callout p {
  font-size: 13px;
  color: rgba(249,246,241,.75);
  line-height: 1.85;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--cream);
  padding: 4px 10px;
}
.badge-gold { background: var(--gold); }
.card-body { padding: 20px 22px 22px; }
.card-usage {
  font-size: 11px;
  font-weight: 500;
  color: var(--sage);
  background: rgba(44,95,74,.06);
  padding: 8px 12px;
  margin-bottom: 10px;
}
.why-section {
  padding: 70px 60px;
  background: var(--sage);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
}
.why-section p {
  font-size: 14px;
  color: rgba(249,246,241,.8);
  line-height: 1.9;
  margin-bottom: 20px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comparison-card {
  padding: 24px;
  border: 1px solid rgba(200,169,110,.2);
}
.comparison-card.red-bg {
  background: rgba(180,60,60,.08);
  border-color: rgba(180,60,60,.3);
}
.comparison-card.green-bg {
  background: rgba(200,169,110,.08);
  border-color: rgba(200,169,110,.3);
}
.comparison-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.comparison-card.red-bg h4 { color: rgba(220,120,120,.9); }
.comparison-card.green-bg h4 { color: var(--gold); }
.comparison-card ul { list-style: none; }
.comparison-card ul li {
  font-size: 12px;
  color: rgba(249,246,241,.75);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.comparison-card ul li::before {
  position: absolute;
  left: 0;
  font-size: 10px;
}
.comparison-card.red-bg ul li::before {
  content: '✗';
  color: rgba(220,120,120,.7);
}
.comparison-card.green-bg ul li::before {
  content: '✓';
  color: var(--gold);
}
.scent-section {
  padding: 70px 60px;
  background: #fff;
}
.scent-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 10px;
}
.scent-section .sub {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  max-width: 50ch;
  margin: 0 auto 50px;
  line-height: 1.85;
}
.scent-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.scent-card {
  border-top: 3px solid var(--gold);
  padding: 24px 0 0;
  position: relative;
}
.scent-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.scent-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 6px;
}
.scent-notes {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.scent-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}
.scent-products {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 10px;
}
.recipe-section {
  padding: 70px 60px;
  background: var(--cream-warm);
}
.recipe-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 10px;
}
.recipe-section .sub {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  max-width: 50ch;
  margin: 0 auto 50px;
  line-height: 1.85;
}
.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.recipe-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,.2);
  padding: 32px;
}
.recipe-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 6px;
}
.recipe-card .room {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.recipe-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.recipe-steps {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.9;
}
.recipe-steps li {
  padding: 4px 0;
  list-style: decimal; /* fixed from source typo "list-style-decimal;" */
  margin-left: 16px;
}
.usage-section {
  padding: 70px 60px;
  background: var(--cream);
}
.usage-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  text-align: center;
  margin-bottom: 40px;
}
.usage-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 900px;
  margin: 0 auto;
}
.usage-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-bottom: 2px solid var(--gold);
  text-align: left;
}
.usage-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(200,169,110,.15);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}
.usage-table tr:last-child td { border-bottom: none; }
.usage-table td:first-child {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage);
}
.tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.2);
  cursor: pointer;
  transition: border-color .25s;
}
.thumb.active, .thumb:hover { border-color: var(--gold); }
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.rating-count {
  font-size: 11px;
  color: var(--mid);
}
.sku {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.price-size {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: .04em;
}
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(44,95,74,.25);
  padding: 5px 12px;
}
.quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.qty-control {
  display: flex;
  border: 1px solid rgba(200,169,110,.4);
}
.qty-btn {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  color: var(--sage);
  font-weight: 500;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(200,169,110,.1); }
.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(200,169,110,.3);
  border-right: 1px solid rgba(200,169,110,.3);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
}
.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.tab-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  margin-bottom: -1px;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--sage);
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
}
.tab-panel.active { display: block; }
.tab-panel h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage);
  margin: 16px 0 8px;
}
.tab-panel p { margin-bottom: 12px; }
.tab-panel ul { margin-left: 20px; }
.tab-panel ul li { padding: 4px 0; }
.warning-box {
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.3);
  padding: 16px 20px;
  margin: 12px 0;
  font-size: 12px;
}
.warning-box strong { color: var(--sage); }
.rc-eye {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.rc-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--sage);
}
.rc-btn {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
  padding: 7px 12px;
  cursor: pointer;
  transition: all .25s;
}
.rc-btn:hover {
  background: var(--sage);
  color: var(--cream);
}
.reviews-section {
  padding: 60px;
  background: #fff;
}
.reviews-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 10px;
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200,169,110,.2);
  margin-bottom: 32px;
}
.big-rating {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}
.rating-breakdown .stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.stars-row .label {
  font-size: 11px;
  color: var(--mid);
  width: 40px;
}
.stars-row .bar {
  flex: 1;
  height: 6px;
  background: rgba(200,169,110,.2);
}
.stars-row .fill {
  height: 100%;
  background: var(--gold);
}
.no-reviews {
  font-size: 13px;
  color: var(--mid);
  padding: 20px 0;
  text-align: center;
}
.cat-bar {
  background: var(--cream-warm);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.cat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-right: 6px;
}
.cat-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(200,169,110,.3);
  background: transparent;
  padding: 6px 14px;
  cursor: pointer;
  transition: all .25s;
}
.cat-btn.active, .cat-btn:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.feat-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,.4);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.feat-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--sage);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.feat-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.feat-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 28px;
}
.feat-read {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .25s;
}
.feat-read:hover { color: var(--gold); }
.coming-soon-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--sage-light);
  color: #fff;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 8px;
}
.fl {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.ft {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fa {
  font-size: 12px;
  color: rgba(249,246,241,.55);
  line-height: 1.85;
  max-width: 280px;
}
.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid rgba(200,169,110,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
}
.an {
  font-size: 12px;
  font-weight: 600;
  color: rgba(249,246,241,.9);
}
.at {
  font-size: 10px;
  color: rgba(249,246,241,.5);
}
.mdiv {
  width: 1px;
  height: 28px;
  background: rgba(200,169,110,.3);
}
.mi {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(249,246,241,.5);
}
.mi strong { color: var(--gold); }
.rl {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  max-width: 1040px;
  margin: 60px auto 0;
  padding: 0 60px 80px;
}
.pb .lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.pb p {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 24px;
}
.pb h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sage);
  margin: 48px 0 16px;
  letter-spacing: -.01em;
}
.pb h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage);
  margin: 32px 0 12px;
}
.pb blockquote {
  border-left: 2px solid var(--gold);
  padding: 18px 0 18px 24px;
  margin: 32px 0;
}
.pb blockquote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.55;
  margin: 0;
}
.pb blockquote cite {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.pb ol, .pb ul { margin: 14px 0 22px 22px; }
.pb li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  padding: 3px 0;
}
.pull-quote {
  background: var(--sage);
  padding: 36px;
  margin: 40px 0;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(200,169,110,.3);
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin: 0;
}
.pull-quote .cite {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  display: block;
}
.source-note {
  font-size: 11px;
  color: var(--light);
  border-top: 1px solid rgba(200,169,110,.12);
  padding-top: 6px;
  margin-top: -14px;
  margin-bottom: 20px;
  font-style: italic;
}
.sdiv {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0;
}
.sdiv span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.sdiv::after, .sdiv::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,169,110,.3);
}
.hbox {
  background: var(--cream-warm);
  border: 1px solid rgba(200,169,110,.25);
  padding: 24px;
  margin: 28px 0;
}
.hbox h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 8px;
}
.hbox p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin: 0;
}
.ptag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(44,95,74,.25);
  padding: 4px 10px;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
}
.sbtn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(200,169,110,.3);
  padding: 7px 14px;
  cursor: pointer;
  background: transparent;
  transition: all .25s;
}
.sbtn:hover {
  background: var(--sage);
  color: var(--cream);
}
.sb {
  position: sticky;
  top: 90px;
  align-self: start;
}
.ss {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.ss:last-child { border-bottom: none; }
.sl2 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.acard {
  text-align: center;
  padding: 16px;
}
.acard .aav {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid rgba(200,169,110,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 10px;
}
.acard h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 4px;
}
.acard .ar {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.acard p {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}
.rp {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,169,110,.15);
}
.rp:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.rp .rt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.rp h4 {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.3;
  margin-bottom: 4px;
}
.rp h4 a { color: var(--sage); }
.rp h4 a:hover { color: var(--gold); }
.rp .rm {
  font-size: 10px;
  color: var(--light);
}
.scall {
  background: var(--sage);
  padding: 18px;
  text-align: center;
}
.scall h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.scall p {
  font-size: 11px;
  color: rgba(249,246,241,.7);
  line-height: 1.7;
  margin-bottom: 12px;
}
.scall a {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cream);
  padding: 9px 16px;
}
.more {
  padding: 60px;
  background: var(--cream-warm);
}
.more h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 36px;
}
.mg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.mc {
  background: #fff;
  border: 1px solid rgba(200,169,110,.1);
  overflow: hidden;
  transition: transform .25s,box-shadow .25s;
}
.mc:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44,95,74,.1);
}
.mc .mi2 {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.mc .mi2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.mc:hover .mi2 img { transform: scale(1.04); }
.mc .mb { padding: 18px; }
.mc .ct {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.mc h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.3;
  margin-bottom: 7px;
}
.mc p {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.mc .rd {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid rgba(200,169,110,.4);
  padding-bottom: 2px;
}
.es {
  background: var(--sage-deep);
  padding: 60px;
  text-align: center;
}
.es .ey {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.es h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}
.es p {
  font-size: 14px;
  color: rgba(249,246,241,.7);
  margin-bottom: 26px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.ef {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.ef input {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 13px;
  border: 1px solid rgba(200,169,110,.4);
  background: rgba(249,246,241,.08);
  color: var(--cream);
  outline: none;
}
.ef input::placeholder { color: rgba(249,246,241,.4); }
.ef button {
  background: var(--gold);
  color: var(--cream);
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.fg {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 36px;
}
.flo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.fta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.fab {
  font-size: 12px;
  color: rgba(249,246,241,.55);
  line-height: 1.85;
  max-width: 280px;
}
.fc h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fc a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,241,.65);
  line-height: 2.4;
  transition: color .25s;
}
.fc a:hover { color: var(--gold); }
.fb {
  border-top: 1px solid rgba(249,246,241,.08);
  padding-top: 20px;
  font-size: 10px;
  color: rgba(249,246,241,.35);
  line-height: 1.8;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid rgba(200,169,110,.35);
  outline: none;
  transition: border-color .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.1);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C5F4A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-note {
  font-size: 11px;
  color: var(--mid);
  margin-top: 6px;
  line-height: 1.65;
}
.response-note {
  background: rgba(249,246,241,.08);
  border: 1px solid rgba(200,169,110,.25);
  padding: 20px;
  margin-top: 32px;
}
.response-note p {
  font-size: 12px;
  color: rgba(249,246,241,.75);
  line-height: 1.8;
}
.response-note strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   ── 35 ──  MEDIA QUERIES  (responsive breakpoints)
            7 unique blocks
   ═══════════════════════════════════════════════════════════════════════════ */

@media(max-width:900px){
    .collection-hero{grid-template-columns:1fr;padding:50px 24px}
    .product-grid{grid-template-columns:repeat(2,1fr);padding:0 24px 40px}
    .candle-grid{grid-template-columns:1fr;padding:0 24px}
    .ritual-steps{grid-template-columns:repeat(2,1fr)}
    .ingredient-grid{grid-template-columns:repeat(2,1fr)}
    .care-section{grid-template-columns:1fr;padding:50px 24px}
    .faq-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
    .section,.section-alt,.faq-section,.ingredients-section,.comparison-section,
    .ritual-guide,.email-section{padding:50px 24px}
    .filter-bar{padding:20px 24px}
    .breadcrumb{padding:12px 24px}
  }

@media(max-width:900px){
    .hero,.hero-product,.why-section{grid-template-columns:1fr;padding:40px 24px}
    .hero-visual{grid-template-columns:1fr 1fr}
    .product-grid{grid-template-columns:repeat(2,1fr);padding:0 24px 40px}
    .scent-grid{grid-template-columns:repeat(2,1fr)}
    .recipe-grid{grid-template-columns:1fr}
    .faq-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
    .filter-bar,.section-label,.scent-section,.recipe-section,.usage-section,.faq-section,.email-section{padding:40px 24px}
    .breadcrumb{padding:12px 24px}
  }

@media(max-width:900px){
    .product-main{grid-template-columns:1fr;padding:24px}
    .product-info{padding:32px 0 0}
    .gallery{position:static}
    .related-grid{grid-template-columns:repeat(2,1fr)}
    .reviews-section,.related-section,.email-section,.product-details-full{padding:40px 24px}
    .breadcrumb{padding:12px 24px}
    header{padding:14px 20px;flex-wrap:wrap;gap:12px}
  }

@media(max-width:900px){
  .featured-post,.posts-grid{grid-template-columns:1fr}
  .featured-img img{min-height:240px}
  .featured-body,.posts-section,.journal-hero,.cat-bar,.email-section{padding:40px 24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
}

@media(max-width:900px){
  .rl{grid-template-columns:1fr;padding:0 24px 60px}.sb{position:static}
  .post-hero,.hero-img{padding-left:24px;padding-right:24px}
  .mg{grid-template-columns:1fr}.more,.es{padding:40px 24px}
  .fg{grid-template-columns:1fr 1fr;gap:28px}
  .breadcrumb{padding:12px 24px}header{padding:14px 20px}
}

@media(max-width:900px){
  .contact-layout,.faq-categories{grid-template-columns:1fr}
  .contact-form-col,.contact-info-col,.faq-full,.page-hero{padding:40px 24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .breadcrumb{padding:12px 24px}
}

@media(max-width:900px){
  header{padding:14px 20px}
  .policy-page{padding:40px 24px}
  .policy-nav{padding:16px 24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
}


/* ═══════════════════════════════════════════════════════════════════════════
   ── 36 ──  TOP BAR PROMO OVERRIDE
            Hides Zoho's default contact info (email/phone/social/sign-in)
            in the top header bar and injects a single centered promo message.
            
            To change the promo text: edit the `content:` line below.
            To remove the override entirely: delete this entire section.
            To hide the top bar completely: uncomment the first rule.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Uncomment the next line to hide the top bar completely instead of restyling it:
.theme-header-topbar { display: none !important; }
*/

.theme-header-topbar {
  background-color: #2C5F4A !important;
  border-bottom: 1px solid rgba(200, 169, 110, 0.25) !important;
  padding: 0 !important;
  text-align: center !important;
  position: relative !important;
}

.theme-header-topbar .theme-topbar-info,
.theme-header-topbar .theme-topbar-info-item,
.theme-header-topbar .theme-topbar-links,
.theme-header-topbar .theme-topbar-social,
.theme-header-topbar a,
.theme-header-topbar span,
.theme-header-topbar svg,
.theme-header-topbar i {
  display: none !important;
}

.theme-header-topbar::after {
  content: "25% OFF FIRST ORDER WITH SOFTLAUNCH25 \00B7 FREE SHIPPING OVER $50";
  display: block !important;
  text-align: center !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #F9F6F1 !important;
  padding: 10px 20px !important;
  width: 100% !important;
  line-height: 1.4 !important;
}

@media (max-width: 600px) {
  .theme-header-topbar::after {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    padding: 8px 12px !important;
  }
}