/* Theory of Beauty — shared stylesheet for every page.
   Design tokens and section styles were lifted verbatim from the former
   single-page homepage when the site was split into pages (Sept 2026);
   the shared-shell rules are appended at the end. */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --cream:      #F5F1E8;
  --surface:    #FAF7F1;
  --pale-gold:  #F1E9D6;
  --dark-sage:  #333D31;
  --sage:       #485949;
  --sage-light: #6E7C68;
  --gold:       #C4A75C;
  --gold-text:  #A8873E;
  --ink:        #2B2A26;
  --ink-mid:    #5A524E;
  --ink-soft:   #8B827C;
  --cream-line: #E4DACB;
  --gold-line:  #D9C9A8;
  --dark-line:  rgba(245,241,232,0.18);
  --cream-muted:#BFB49E;
  /* Type system — reconciled to the print files (banners, signs, labels).
     Cormorant Garamond carries display and emotional copy, sentence case, often
     italic. Poppins is the workhorse: eyebrows, labels, body, UI, prices.
     --font-script is kept as an alias onto the serif so older rules still work;
     the previous Montserrat + Parisienne pairing is retired. */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: var(--font-serif);
}

/* ── RESET ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── TYPE HELPERS ────────────────────────────────────────── */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-light {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.1rem, 7.4vw, 5.6rem); }
h2 { font-size: clamp(2.3rem, 5vw, 3.75rem); }
h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left:  clamp(1.25rem, 5vw, 3.5rem);
  padding-right: clamp(1.25rem, 5vw, 3.5rem);
}
.section-pad {
  padding-top:    clamp(4rem, 9vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 6rem);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-sage);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-gold:hover { background: #B8973A; text-decoration: none; color: #fff; }

.btn-outline-cream {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border: 1.5px solid rgba(245,241,232,0.45);
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-cream:hover { background: rgba(245,241,232,0.12); border-color: var(--cream); text-decoration: none; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announce {
  background: var(--dark-sage);
  border-bottom: 1px solid var(--dark-line);
  text-align: center;
  padding: 0.5rem 1rem;
}
.announce p {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.announce span { color: var(--gold); }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-sage);
  border-bottom: 1px solid var(--dark-line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.7);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--cream); text-decoration: none; }
.nav-links .nav-shop {
  color: var(--gold);
}
.nav-links .nav-shop:hover { color: #D4B76A; }
@media (max-width: 640px) {
  .nav-mid { display: none; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--dark-sage);
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 5vw, 3.5rem) clamp(5rem, 12vw, 8rem);
  border-bottom: 1px solid var(--dark-line);
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--cream);
  font-style: italic;
  max-width: 20ch;
  margin: 0 auto 1.25rem;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.35rem;
  font-weight: 500;
}
.hero-body {
  font-size: 0.975rem;
  color: rgba(245,241,232,0.72);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 2rem auto 0;
  opacity: 0.45;
}

/* ── WHAT MAKES IT DIFFERENT ─────────────────────────────── */
.different {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
}
.different h2 {
  font-style: italic;
  max-width: 28ch;
  margin-bottom: 0.85rem;
}
.different-intro {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 54ch;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1.5px solid var(--cream-line);
  border-left: 1.5px solid var(--cream-line);
}
@media (max-width: 680px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 2rem 2rem 2rem 1.75rem;
  border-right: 1.5px solid var(--cream-line);
  border-bottom: 1.5px solid var(--cream-line);
}
.pillar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── OUR STORY ───────────────────────────────────────────── */
.story {
  background: var(--pale-gold);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
@media (max-width: 700px) { .story-inner { grid-template-columns: 1fr; } }
.story-text h2 {
  font-style: italic;
  margin-bottom: 1.5rem;
}
.story-text p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 1.15rem;
  max-width: 58ch;
}
.story-text p:last-of-type { margin-bottom: 0; }
.story-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold-line);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}
.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}
.story-visual-sprig {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--sage-light);
  opacity: 0.25;
  user-select: none;
  line-height: 1;
}
.story-visual-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── PRODUCTS ────────────────────────────────────────────── */
.products {
  background: var(--surface);
  border-bottom: 1px solid var(--cream-line);
}
.products h2 { margin-bottom: 0.5rem; }
.products-sub {
  font-size: 0.88rem;
  color: var(--ink-mid);
  margin-bottom: 2.75rem;
  font-weight: 400;
}
.products-grid {
  display: grid;
  /* 200px produced 4 columns for the 5 products at common laptop widths,
     leaving the fifth card alone in an otherwise empty row. 180px fits all
     five on one line from ~1024px up. Below that the row still breaks; the
     two-column rule at 600px takes over for phones. */
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  border: 1.5px solid var(--cream-line);
  gap: 0;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.6rem 1.5rem;
  background: var(--surface);
  border-right: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  color: var(--ink);
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}
.product-card:last-child { border-right: none; }
/* Product image slot. 1:1, fills the card width, cream ground behind the
   placeholder and behind any photo while it loads. Real files go in
   /assets/products/ as {id}.webp, {id}@2x.webp, {id}.jpg, {id}@2x.jpg
   (600x600 and 1200x1200); until they exist the browser falls back to the
   inline cream SVG via productImgFallback(). */
.product-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card:hover { background: var(--cream); }
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card:nth-child(even) { border-right: none; }
}
.product-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  border: 1px solid var(--gold-text);
  padding: 0.2rem 0.5rem;
  align-self: flex-start;
}
.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
  color: var(--ink);
}
.product-desc {
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.45;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.product-was {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.product-save {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}
.product-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  transition: color 0.15s;
}
.product-arrow { transition: transform 0.15s; }
.product-card:hover .product-cta { color: var(--sage); }
.product-card:hover .product-arrow { transform: translateX(4px); }
.product-card.adding { background: var(--pale-gold) !important; }
.product-card.adding .product-cta { color: var(--sage); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews {
  background: var(--surface);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.reviews h2 { margin-bottom: 0.5rem; }
.reviews-count {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  border: 1.5px solid var(--cream-line);
  gap: 0;
}
.review-card {
  background: var(--cream);
  padding: 1.65rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-right: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.review-stars {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.review-text {
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.72;
  flex: 1;
}
.review-product {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid rgba(72,89,73,0.3);
  padding-bottom: 1px;
  transition: border-color 0.15s;
  align-self: flex-start;
}
.review-product:hover { border-color: var(--sage); text-decoration: none; }
.review-meta {
  font-size: 0.73rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.reviews-empty {
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding: 3rem;
  grid-column: 1 / -1;
  text-align: center;
}
.reviews-empty a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.reviews-empty a:hover { color: var(--gold-text); }

/* ── LEAVE A REVIEW ──────────────────────────────────────── */
.leave-review { background: var(--pale-gold); border-top: 1px solid var(--cream-line); }
.leave-review h2 { margin-bottom: 0.35rem; }
.lr-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.lrf {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 580px;
}
.lrf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 560px) { .lrf-row { grid-template-columns: 1fr; } }
.star-fieldset { border: none; padding: 0; margin: 0; }
.star-fieldset legend {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}
.stars-input input[type="radio"] { display: none; }
.stars-input label {
  font-size: 2.1rem;
  color: var(--cream-line);
  cursor: pointer;
  line-height: 1;
  transition: color 0.08s;
}
.stars-input input:checked + label,
.stars-input input:checked ~ input + label { color: var(--gold); }
.stars-input label:hover,
.stars-input label:hover ~ label { color: var(--gold); }
.lr-success {
  display: none;
  font-size: 0.88rem;
  color: var(--sage);
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: rgba(72,89,73,0.1);
  border-left: 3px solid var(--sage);
}
.lr-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: -0.75rem;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-us {
  background: var(--dark-sage);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.why-us .eyebrow-light { color: var(--gold); }
.why-us h2 {
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.why-us-intro {
  font-size: 1rem;
  color: rgba(245,241,232,0.68);
  max-width: 60ch;
  margin-bottom: 2.75rem;
  line-height: 1.72;
}
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  margin-bottom: 2.5rem;
}
@media (max-width: 620px) { .bullets { grid-template-columns: 1fr; } }
.bullet {
  padding: 1.75rem 1.75rem;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.bullet-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.bullet p {
  font-size: 0.88rem;
  color: rgba(245,241,232,0.65);
  line-height: 1.65;
}
.incidecoder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(196,167,92,0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.incidecoder-link:hover { border-color: var(--gold); text-decoration: none; }

/* ── INGREDIENTS ─────────────────────────────────────────── */
.ingredients {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
}
.ingredients h2 {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.ingredients-sub {
  font-size: 0.95rem;
  color: var(--ink-mid);
  max-width: 52ch;
  margin-bottom: 2.75rem;
  line-height: 1.68;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--cream-line);
  gap: 0;
}
@media (max-width: 580px) { .ingredients-grid { grid-template-columns: 1fr; } }
.ingredient {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  padding: 1.35rem 1.35rem;
  border-bottom: 1px solid var(--cream-line);
  align-items: start;
}
.ingredient:nth-child(odd) { border-right: 1px solid var(--cream-line); }
@media (max-width: 580px) {
  .ingredient:nth-child(odd) { border-right: none; }
}
.ing-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage);
  padding-top: 0.15rem;
  line-height: 1.35;
}
.ing-role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.ing-desc {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.55;
}
.full-list {
  margin-top: 1.35rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.full-list a {
  font-weight: 600;
  color: var(--sage);
  margin-left: 0.5rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--pale-gold);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.faq h2 {
  font-style: italic;
  margin-bottom: 2.5rem;
}
.faq-list { border-top: 1px solid var(--gold-line); }
.faq-item { border-bottom: 1px solid var(--gold-line); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-soft);
  transition: border-color 0.15s, color 0.15s, transform 0.2s;
  line-height: 1;
  user-select: none;
}
.faq-item.open .faq-icon {
  border-color: var(--gold-text);
  color: var(--gold-text);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner {
  padding-bottom: 1.5rem;
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 64ch;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  background: var(--pale-gold);
  border-top: 1px solid var(--gold-line);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
@media (max-width: 680px) { .contact-inner { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h2 {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.contact-info p {
  font-size: 0.93rem;
  color: var(--ink-mid);
  max-width: 36ch;
  line-height: 1.7;
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cf-row { display: flex; gap: 0.85rem; }
@media (max-width: 480px) { .cf-row { flex-direction: column; } }
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.cf-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.72rem 0.9rem;
  width: 100%;
  transition: border-color 0.15s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--gold-text);
}
.cf-field textarea { min-height: 110px; }
.cf-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cf-success {
  display: none;
  font-size: 0.85rem;
  color: var(--sage);
  padding: 0.85rem 1rem;
  border: 1px solid var(--sage-light);
  background: rgba(72,89,73,0.07);
}
/* Honeypot — off-screen rather than display:none, which some bots detect. */
.cf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cf-error {
  display: none;
  font-size: 0.85rem;
  color: #8C3B2E;
  padding: 0.85rem 1rem;
  border: 1px solid #C08476;
  background: rgba(140,59,46,0.06);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark-sage);
  border-top: 1px solid var(--dark-line);
}
.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
.footer-logo { margin-bottom: 0.85rem; }
.footer-logo img { height: 48px; width: auto; }
.footer-logo-text {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(245,241,232,0.55);
  line-height: 1.6;
  max-width: 40ch;
  margin-bottom: 0.35rem;
}
.footer-origin {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
.footer-nav .fn-legal:first-of-type {
  margin-top: 0.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--dark-line);
}
.footer-nav .fn-legal a { color: var(--cream-muted); font-size: 0.78rem; }
@media (max-width: 560px) { .footer-nav { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.5rem; } }
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245,241,232,0.6);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--cream); text-decoration: none; }
.footer-nav .fn-shop { color: var(--gold); opacity: 0.85; }
.footer-nav .fn-shop:hover { opacity: 1; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 5vw, 3.5rem);
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 0.7rem;
  color: rgba(245,241,232,0.4);
}

/* ── CART ─────────────────────────────────────────────────── */
.nav-cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
  flex-shrink: 0;
}
.nav-cart:hover { color: #D4B76A; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: 0;
  background: var(--gold);
  color: var(--dark-sage);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,42,38,0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--surface);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(43,42,38,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(196,167,92,0.2);
}
.cart-header h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.5;
  font-size: 1.5rem;
  line-height: 1;
  padding: 2px 6px;
  transition: opacity 0.15s;
}
.cart-close:hover { opacity: 1; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--ink);
  opacity: 0.45;
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196,167,92,0.12);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.cart-item-price {
  font-size: 0.8rem;
  color: var(--gold-text);
  font-weight: 600;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(196,167,92,0.4);
  background: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.cart-qty button:hover { border-color: var(--gold); background: var(--pale-gold); }
.cart-qty span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  min-width: 1.5rem;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.3;
  font-size: 1.3rem;
  padding: 0 2px;
  line-height: 1;
  transition: opacity 0.15s;
}
.cart-item-remove:hover { opacity: 0.8; }
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(196,167,92,0.2);
  background: var(--surface);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cart-subtotal-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.cart-subtotal-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--dark-sage);
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.cart-checkout-btn:hover:not(:disabled) { background: #D4B76A; transform: translateY(-1px); }
.cart-checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-msg {
  font-size: 0.72rem;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--ink);
  opacity: 0.5;
}
.cart-msg.error { color: #c0392b; opacity: 1; }

/* Fulfillment choice. Shipping is the default and, without a code, the only
   option. A valid code (UNIVAR) reveals the pickup option; the Worker enforces
   the same rule server-side. */
.cart-fulfil {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cart-fulfil legend {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0;
  margin-bottom: 0.15rem;
}
.fulfil-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--cream-line);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.fulfil-opt:hover { border-color: var(--gold-line); }
.fulfil-opt:has(input:checked) {
  border-color: var(--gold);
  background: var(--pale-gold);
}
.fulfil-opt input { margin-top: 0.25rem; accent-color: var(--sage); flex: none; }
.fulfil-opt[hidden] { display: none; }
/* Code field. Same input treatment as the contact form; sits under the fulfilment choice. */
.cart-promo { margin: 0 0 1rem; }
.cart-promo-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.cart-promo-row { display: flex; gap: 0.5rem; }
.cart-promo-row input {
  flex: 1;
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
}
.cart-promo-row input:focus { outline: none; border-color: var(--gold-text); }
.cart-promo-row button {
  background: none;
  border: 1px solid var(--gold-line);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}
.cart-promo-row button:hover:not(:disabled) { border-color: var(--gold); background: var(--pale-gold); }
.cart-promo-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-promo-msg { font-size: 0.7rem; line-height: 1.4; margin-top: 0.4rem; color: var(--sage); }
.cart-promo-msg.error { color: #8C3B2E; }
.cart-promo-msg[hidden] { display: none; }
.cart-promo-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gold);
  background: var(--pale-gold);
}
.cart-promo-applied strong { letter-spacing: 0.08em; }
.cart-promo-applied button {
  background: none; border: none; cursor: pointer;
  color: var(--ink); opacity: 0.6; font-size: 0.7rem; text-decoration: underline;
  font-family: var(--font-sans); padding: 0;
}
.cart-promo-applied button:hover { opacity: 1; }
.cart-promo-applied[hidden] { display: none; }
/* Discount and total rows reuse the subtotal row layout. */
.cart-subtotal[hidden] { display: none; }
.cart-subtotal.cart-discount .cart-subtotal-amount { color: var(--sage); font-size: 0.95rem; }
.cart-subtotal.cart-total { margin-top: -0.35rem; }
.fulfil-body { display: flex; flex-direction: column; gap: 0.1rem; }
.fulfil-name { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.fulfil-note { font-size: 0.7rem; color: var(--ink-mid); line-height: 1.4; }
/* Sales-tax caption under the subtotal. */
.cart-tax {
  font-size: 0.68rem;
  color: var(--ink);
  opacity: 0.5;
  text-align: right;
  margin: -0.65rem 0 1rem;
  line-height: 1.4;
}
/* Free-shipping nudge. Shown only when "Ship it" is selected; hidden for pickup.
   Thin gold-on-cream progress bar toward the $35 threshold (pre-tax subtotal). */
.cart-ship-nudge { margin: 0 0 1rem; }
.cart-ship-nudge[hidden] { display: none; }
.cart-ship-label {
  font-size: 0.7rem;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.cart-ship-bar {
  height: 3px;
  background: var(--cream-line);
  overflow: hidden;
}
.cart-ship-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.2s ease;
}

/* ── SHARED SHELL (added when the site was split into pages, Sept 2026) ─── */
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
.skip {
  position: absolute; left: -9999px;
  background: var(--gold); color: var(--dark-sage);
  padding: .75rem 1.25rem; font-weight: 700;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; z-index: 200;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap-narrow { max-width: 780px; }

/* Nav: active page + mobile menu */
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a[aria-current="page"]:not(.nav-shop) { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--dark-line); border-radius: 4px;
  color: var(--cream); cursor: pointer; padding: 6px 8px;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; left: 0; right: 0; top: 64px;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--dark-sage);
    border-bottom: 1px solid var(--dark-line);
    padding: 0.5rem clamp(1.25rem, 5vw, 3.5rem) 1rem;
    box-shadow: 0 12px 24px rgba(43,42,38,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--dark-line); font-size: 0.78rem; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-mid { display: block; }
  .nav-links a[aria-current="page"]:not(.nav-shop) { border-bottom: 1px solid var(--dark-line); color: var(--gold); padding-bottom: 0.8rem; }
}

/* Inner-page header */
.page-head {
  background: var(--surface);
  border-bottom: 1px solid var(--cream-line);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
}
.page-head h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-wrap: balance;
  color: var(--ink);
}
.page-head .lede {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 60ch;
  line-height: 1.7;
}
.updated { margin-top: 1rem; font-size: .8125rem; color: var(--ink-soft); }

/* Long-form pages (policies) */
.prose { padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem); }
.prose h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1.15; color: var(--ink);
  margin: 2.5rem 0 .85rem; padding-top: 1.75rem; border-top: 1px solid var(--cream-line);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin: 1.75rem 0 .5rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-mid); }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; color: var(--ink-mid); }
.prose li { margin-bottom: .5rem; padding-left: .25rem; }
.prose li::marker { color: var(--gold-text); }
.prose .lede { font-size: 1.0625rem; color: var(--ink); margin-bottom: 1.75rem; }
.panel { background: var(--pale-gold); border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; margin: 0 0 2rem; }
.panel p { color: var(--ink); margin-bottom: .5rem; }
.panel p:last-child { margin-bottom: 0; }
.panel-label { font-size: .625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: .6rem; }
.rates { width: 100%; border-collapse: collapse; margin: 0 0 1.75rem; font-size: .9375rem; }
.rates th, .rates td { text-align: left; padding: .7rem .75rem; border-bottom: 1px solid var(--cream-line); }
.rates thead th { font-size: .625rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); border-bottom: 1px solid var(--gold-line); }
.rates td { color: var(--ink-mid); }
.rates td:first-child { color: var(--ink); font-weight: 600; }
.rates td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.tablewrap { overflow-x: auto; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--sage);
  border: 1px solid var(--sage); font-family: var(--font-sans);
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .85rem 2.25rem; text-decoration: none; transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--sage); color: var(--cream); text-decoration: none; }
.notfound { text-align: center; padding: clamp(4rem, 12vw, 8rem) 0; }
.notfound .code { font-size: .6875rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1.25rem; }
.notfound h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 5.5vw, 3rem); line-height: 1.1; text-wrap: balance; margin-bottom: 1rem; }
.notfound p { color: var(--ink-mid); max-width: 44ch; margin: 0 auto 2rem; }
.notfound-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* Footer columns (shared footer) */
.sf-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.sf-col h2 { font-family: var(--font-sans); font-size: .625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.sf-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sf-col a { color: rgba(245,241,232,.72); font-size: .8125rem; text-decoration: none; transition: color .15s; }
.sf-col a:hover { color: var(--gold); }
@media (max-width: 560px) { .sf-cols { gap: 2rem; } }

/* Homepage teasers and the shop CTA band */
.section-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px; transition: color .15s, border-color .15s;
}
.section-link:hover { color: var(--gold-text); border-color: var(--gold); text-decoration: none; }
.why-us .section-link { color: var(--gold); border-color: rgba(196,167,92,0.4); }
.why-us .section-link:hover { color: #D4B76A; border-color: var(--gold); }
.story-facts {
  background: var(--surface);
  border: 1px solid var(--cream-line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  align-self: center;
}
.story-facts-label { font-size: .625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1rem; }
.story-facts ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.story-facts li { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.35; color: var(--ink); padding-left: 1.4rem; position: relative; }
.story-facts li::before { content: "\2726"; position: absolute; left: 0; top: 0.1em; color: var(--gold); font-size: 0.8rem; }
.cta-band { background: var(--dark-sage); text-align: center; }
.cta-band h2 { color: var(--cream); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(245,241,232,0.7); max-width: 52ch; margin: 0 auto 2rem; font-size: 0.95rem; }
.cta-band .eyebrow-light { display: block; }
.reviews-more { margin-top: 2rem; text-align: center; }
.shop-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
@media (max-width: 700px) { .shop-notes { grid-template-columns: 1fr; } }
.shop-notes .panel { margin: 0; }
.shop-notes .panel p { font-size: 0.9rem; line-height: 1.6; }
.shop-notes .panel a { color: var(--sage); }
.faq-page .faq-list { margin-top: 0; }
.faq-page .faq-outro { margin-top: 2.5rem; font-size: 0.95rem; color: var(--ink-mid); }
.contact-page .contact-inner { padding-top: 0; }


/* ── COMPARE PAGE (rebuilt as a native page, Sept 2026) ─────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.cmp-jump { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-top: 1.5rem; }
.cmp-jump a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--gold-line); padding-bottom: 2px; }
.cmp-jump a:hover { color: var(--gold-text); border-color: var(--gold); }
.cmp-why { background: var(--cream); }
.cmp-why .prose h2 { border-top: none; padding-top: 0; margin-top: 2rem; }
.cmp-why .prose h2:first-of-type { margin-top: 0; }
.cmp-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--ink-mid); margin-bottom: 1rem !important; }
.cmp-howto { list-style: none; margin: 0 0 1.5rem !important; padding: 0; }
.cmp-howto li { padding: 0.85rem 0 0.85rem 1.5rem; border-top: 1px solid var(--cream-line); position: relative; color: var(--ink-mid); font-size: 0.95rem; line-height: 1.65; }
.cmp-howto li::before { content: "\2726"; position: absolute; left: 0; top: 0.95rem; color: var(--gold); font-size: 0.75rem; }
.cmp-howto li:last-child { border-bottom: 1px solid var(--cream-line); }
.cmp-legend { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-mid); background: var(--surface); border: 1px solid var(--cream-line); padding: 1rem 1.25rem; }
.cmp-legend > span { display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: none; margin-top: 0.35em; margin-right: 0.5rem; vertical-align: middle; background: var(--ink-soft); }
.dot-green { background: var(--sage); }
.dot-amber { background: var(--gold); }
.dot-red { background: #B23A48; }
.dot-ink, .dot-white { display: none; }
.cmp-section:nth-of-type(odd) { background: var(--surface); }
.cmp-section h2 { margin-bottom: 0.75rem; }
.cmp-h2-sub { font-weight: 400; font-style: italic; color: var(--ink-mid); font-size: 0.7em; display: block; margin-top: 0.25rem; }
.cmp-intro { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.7; max-width: 70ch; margin-bottom: 1.75rem; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 0.82rem; background: var(--surface); border: 1px solid var(--cream-line); }
table.cmp th, table.cmp td { text-align: left; padding: 0.7rem 0.75rem; border-bottom: 1px solid var(--cream-line); vertical-align: top; line-height: 1.45; }
table.cmp thead th { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); background: var(--cream); border-bottom: 1px solid var(--gold-line); white-space: nowrap; }
table.cmp td.cmp-name { font-weight: 600; color: var(--ink); min-width: 12rem; }
table.cmp td.cmp-pick { color: var(--ink-soft); font-size: 0.75rem; min-width: 12rem; }
table.cmp td.cmp-what { min-width: 18rem; color: var(--ink-mid); }
table.cmp td.num, table.cmp th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.cmp tr.ours td { background: var(--pale-gold); color: var(--ink); }
table.cmp tr.ours td.cmp-name { border-left: 3px solid var(--gold); }
table.cmp tr.ours td.cmp-pick { color: var(--gold-text); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.65rem; padding-top: 0.85rem; }
table.cmp tr.ours td.cmp-what { color: var(--ink); }
table.cmp tbody tr:last-child td { border-bottom: none; }
.cmp-footnote { font-size: 0.72rem; color: var(--ink-soft); margin: 0.75rem 0 2rem; line-height: 1.5; }
.cmp-commentary { max-width: 70ch; border-left: 3px solid var(--gold); padding-left: 1.25rem; }
.cmp-commentary p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 0.85rem; }
.cmp-commentary p:last-child { margin-bottom: 0; }
.science { background: var(--dark-sage); }
.science .eyebrow { color: var(--gold); }
.science h2 { color: var(--cream); }
.science .cmp-intro { color: rgba(245,241,232,0.7); }
.sci-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.sci { background: rgba(245,241,232,0.04); border: 1px solid var(--dark-line); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.sci h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--cream); line-height: 1.2; margin: 0; }
.sci-inci { display: block; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.35rem; }
.sci-tag { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--gold); margin: 0; }
.sci p { font-size: 0.88rem; line-height: 1.65; color: rgba(245,241,232,0.78); margin: 0; }
.sci-research { font-size: 0.75rem !important; color: rgba(245,241,232,0.55) !important; border-top: 1px solid var(--dark-line); padding-top: 0.75rem; }
.sci-research strong, .sci-talk strong { color: var(--cream); font-weight: 600; }
.sci-talk { font-size: 0.82rem !important; color: rgba(245,241,232,0.7) !important; }
.inci caption { caption-side: top; text-align: left; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); padding: 0 0 0.6rem; }
.cmp-labels { background: var(--surface); }
