/* =========================================================================
   KOME RITUAL — Advertorial Landing Page (Komeglow)
   Brand identity pulled 1:1 from the live komeglow product page.
     Fonts:  Marcellus (serif, headings)  ·  Karla (sans, body)
     Palette: cream #FBF8F3 · ink #3A3833 · sage button #6B7A5E · tan border #E8DFCF · gold #DBC093
   Layout: catproductinsider.com editorial "test/ranking" advertorial. Mobile-first.
   ========================================================================= */

/* ---------- Brand tokens (verbatim from komeglow theme) ---------- */
:root {
  --cream:      #FBF8F3;   /* --color-background / section bg */
  --cream-deep: #F4EEE3;   /* slightly deeper band for alternating sections */
  --surface:    #FFFFFF;   /* --content-bg-color */
  --ink:        #3A3833;   /* --global-section-text-color */
  --ink-soft:   #5c574e;   /* softened body */
  --ink-faint:  #908779;   /* captions / meta */
  --line:       #E8DFCF;   /* --nav-btn-border-color (warm tan hairline) */
  --line-soft:  #f0e9dc;

  --sage:       #6B7A5E;   /* --global-button-bg-color */
  --sage-deep:  #56614C;   /* --global-button-hover-bg-color */
  --sage-tint:  #eef0e9;   /* washed sage surface */
  --sage-tint2: #e4e8dc;

  --gold:       #C8A24A;   /* stars */
  --tan:        #DBC093;   /* --color-background-contrast (warm accent) */
  --tan-tint:   #f3ead9;

  --alarm:      #b0553c;   /* the "burn"/villain, used sparingly */
  --alarm-tint: #f5e7e1;

  --grade-a:    #56614C;   /* A grade = brand sage */
  --grade-mid:  #b8933e;
  --grade-low:  #b0553c;

  --serif: "Marcellus", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 660px;
  --pad: 20px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(58,56,51,.05), 0 1px 3px rgba(58,56,51,.04);
  --shadow:    0 4px 18px rgba(58,56,51,.07);
  --shadow-lg: 0 12px 34px rgba(58,56,51,.12);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; letter-spacing: .002em; margin: 0 0 .5em; color: var(--ink); }
p { margin: 0 0 1.1em; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 48px 0; }
.section--tight { padding: 32px 0; }
.section--alt { background: var(--cream-deep); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0 auto; max-width: var(--wrap); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 14px;
}
.section-num { color: var(--tan); font-weight: 700; }

/* ---------- Buttons / CTA (brand: sage green, white text, softly squared) ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  background: var(--sage);
  color: #fff;
  font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  padding: 17px 24px;
  border-radius: 6px;
  border: 0;
  box-shadow: var(--shadow);
  transition: background .2s ease, transform .12s ease;
}
.cta:hover { background: var(--sage-deep); transform: translateY(-1px); }
.cta:active { transform: translateY(0); }
.cta svg { flex: 0 0 auto; }
.cta--ghost { background: transparent; color: var(--sage-deep); border: 1.5px solid var(--sage); box-shadow: none; }
.cta--ghost:hover { background: var(--sage); color: #fff; }
.cta-trust {
  display: block; text-align: center;
  font-size: 12px; letter-spacing: .02em; color: var(--ink-faint);
  margin-top: 11px; line-height: 1.5;
}
.cta-block { margin: 28px 0 4px; }

/* ---------- S1 Hero (editorial masthead) ---------- */
.masthead { border-bottom: 1px solid var(--line); background: var(--surface); }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brandmark { font-family: var(--serif); font-size: 21px; letter-spacing: .04em; color: var(--ink); text-decoration: none; }
.masthead .mast-tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

.hero { padding: 40px 0 40px; background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%); }
.hero .kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-deep); background: var(--sage-tint);
  border-radius: 4px; padding: 6px 12px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(30px, 8.5vw, 46px); line-height: 1.1; margin-bottom: 18px; }
.hero .subhead { font-size: 18.5px; color: var(--ink-soft); margin-bottom: 0; }

.hero-image { margin: 26px 0 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: auto; display: block; }
.hero-image figcaption { font-size: 12px; color: var(--ink-faint); padding: 10px 14px; background: var(--surface); border-top: 1px solid var(--line); }
.hero-image figcaption b { color: var(--ink-soft); }

/* Author byline row (editorial) */
.byline {
  display: flex; align-items: center; gap: 13px;
  padding: 18px 0; margin-top: 26px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.byline .avatar {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--tan-tint); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--sage-deep); overflow: hidden;
}
.byline .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.byline .a-name { font-weight: 700; font-size: 14.5px; letter-spacing: .01em; }
.byline .a-name b { color: var(--sage-deep); }
.byline .a-meta { font-size: 12.5px; color: var(--ink-faint); }

.disclose { font-size: 12px; line-height: 1.55; color: var(--ink-faint); margin: 18px 0 0; padding: 12px 14px; background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius); }
.disclose a { color: var(--sage-deep); font-weight: 700; text-decoration: none; white-space: nowrap; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  padding: 7px 11px;
}
.badge svg { color: var(--sage); }

/* ---------- Lead (S2) ---------- */
.lead p { font-size: 18.5px; }
.lead .line1 { font-family: var(--serif); font-size: 27px; line-height: 1.28; color: var(--ink); margin-bottom: 16px; }

/* ---------- Root cause (S3) ---------- */
.rootcause h2 { font-size: clamp(25px, 6.5vw, 33px); }
.rootcause blockquote {
  margin: 26px 0; padding: 18px 22px;
  border-left: 3px solid var(--sage); background: var(--sage-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--ink);
}
.rootcause blockquote em { color: var(--sage-deep); }
.loop-diagram {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
  background: var(--alarm-tint); border: 1px solid #e7d3c9; border-radius: var(--radius); padding: 20px 16px; margin: 26px 0;
}
.loop-node { font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--alarm); background: var(--surface); border: 1px solid #ead7cd; border-radius: 4px; padding: 7px 12px; }
.loop-arrow { color: var(--alarm); font-weight: 700; }
.shame-disarm { font-family: var(--serif); font-size: 23px; line-height: 1.35; text-align: center; color: var(--sage-deep); margin: 30px auto; max-width: 30ch; }

/* ---------- Methodology (S4) ---------- */
.criteria-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.criterion {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 17px; box-shadow: var(--shadow-sm);
}
.criterion .c-icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 8px; background: var(--sage-tint); display: grid; place-items: center; color: var(--sage-deep); }
.criterion .c-title { font-family: var(--serif); font-weight: 400; font-size: 17px; margin: 0 0 2px; }
.criterion .c-desc { font-size: 13.5px; color: var(--ink-faint); margin: 0; line-height: 1.5; }

/* ---------- Ranking (S5) ---------- */
.rank-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; margin: 20px 0; box-shadow: var(--shadow-sm); position: relative;
}
.rank-card--winner { border: 2px solid var(--sage); box-shadow: var(--shadow); }
.rank-ribbon {
  position: absolute; top: -12px; left: 22px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--sage); border-radius: 4px; padding: 5px 12px; box-shadow: var(--shadow-sm);
}

.rank-head { display: flex; align-items: center; gap: 15px; }
/* Circular letter-grade badge (catproductinsider style) */
.grade-badge {
  flex: 0 0 auto; width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  border: 2.5px solid var(--grade-a); color: var(--grade-a);
  background: var(--sage-tint);
}
.grade-badge .g-letter { font-family: var(--serif); font-size: 26px; line-height: 1; }
.grade-badge .g-word { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 1px; }
.grade-badge--mid { border-color: var(--grade-mid); color: var(--grade-mid); background: var(--tan-tint); }
.grade-badge--low { border-color: var(--grade-low); color: var(--grade-low); background: var(--alarm-tint); }

/* CPI-style clarity block: product image + grade/score box side by side */
.rank-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 16px 0; }
@media (min-width: 560px) { .rank-grid { grid-template-columns: 1.1fr 1fr; align-items: stretch; } }
.rank-grid .rank-media { margin: 0; }
.rank-grid .rank-media--sm { display: grid; }
.score-box { display: flex; align-items: center; justify-content: space-evenly; gap: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 20px 16px; }
.sb-cell { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.sb-label { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); }
.grade-sq { width: 64px; height: 64px; border-radius: 12px; background: var(--sage-deep); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 29px; box-shadow: var(--shadow-sm); }
.grade-sq--mid { background: var(--grade-mid); }
.grade-sq--low { background: var(--grade-low); }
.sb-score { font-family: var(--serif); font-size: 33px; color: var(--ink); line-height: 1; }
.sb-score small { font-size: 14px; color: var(--ink-faint); }
.score-box .stars { font-size: 15px; }
.sb-divider { width: 1px; align-self: stretch; background: var(--line); }

.rank-priceline { font-size: 14px; color: var(--ink-soft); padding: 12px 2px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.rank-priceline b { color: var(--ink); font-weight: 700; }
.rank-priceline .sep { color: var(--line); margin: 0 10px; }

table.spec { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 16px 0; font-size: 13.5px; }
table.spec tr { border-bottom: 1px solid var(--line-soft); }
table.spec tr:last-child { border-bottom: 0; }
table.spec tr:nth-child(odd) { background: var(--cream); }
table.spec th { text-align: left; font-family: var(--sans); font-weight: 700; color: var(--ink); padding: 11px 14px; width: 40%; vertical-align: top; }
table.spec td { padding: 11px 14px; color: var(--ink-soft); vertical-align: top; }

.rank-headmeta { flex: 1 1 auto; min-width: 0; }
.rank-pos { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.rank-name { font-family: var(--serif); font-size: 23px; margin: 2px 0 4px; line-height: 1.15; }
.rank-sub { font-size: 13px; color: var(--ink-faint); margin: 0; }
.score-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 6px 0 0; }
.stars { display: inline-flex; gap: 1px; color: var(--gold); font-size: 15px; }
.score-num { font-weight: 700; font-size: 13.5px; color: var(--ink-soft); }

/* Product image slots */
.rank-media { margin: 16px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
/* Winner: full designed brand graphic, shown edge-to-edge */
.rank-media > img { display: block; width: 100%; height: auto; }
/* Competitor cards: product shot centered on a soft tile */
.rank-media--sm { background: linear-gradient(150deg, var(--cream-deep), #efe6d6); }
.rank-media--sm .prod-shot { aspect-ratio: 3 / 2; display: grid; place-items: center; padding: 16px; }
.rank-media--sm .prod-shot img { max-height: 100%; max-width: 58%; width: auto; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(58,56,51,.16)); }
/* legacy placeholder tiles (still used nowhere critical) */
.rank-media .ph-img { aspect-ratio: 16/10; display: grid; place-items: center; color: var(--sage-deep); background: linear-gradient(150deg, var(--sage-tint), var(--tan-tint)); }
.rank-media .ph-img span { font-size: 11.5px; color: var(--ink-faint); margin-top: 10px; letter-spacing: .04em; }

.score-bars { display: grid; gap: 10px; margin: 18px 0; }
.score-bar { display: grid; grid-template-columns: 104px 1fr 32px; align-items: center; gap: 10px; font-size: 12.5px; }
.score-bar > span:first-child { color: var(--ink-soft); }
.score-bar .bar-track { height: 7px; background: var(--cream-deep); border-radius: 999px; overflow: hidden; }
.score-bar .bar-fill { height: 100%; background: var(--sage); border-radius: 999px; }
.score-bar--low .bar-fill { background: var(--tan); }
.score-bar .bar-val { text-align: right; color: var(--ink-faint); font-weight: 700; }

.take { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin: 16px 0; font-size: 15px; }
.take h4 { margin: 0 0 8px; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.take p { margin: 0; }

.pros-cons { display: grid; gap: 14px; margin: 16px 0; }
.pc-col h5 { font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 9px; }
.pc-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.pc-col li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.pc-col--pro h5 { color: var(--sage-deep); }
.pc-col--con h5 { color: var(--grade-mid); }
.pc-col .ic { flex: 0 0 auto; margin-top: 3px; }
.pc-col--pro .ic { color: var(--sage); }
.pc-col--con .ic { color: var(--grade-mid); }

.fatal-flaw {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--alarm-tint); border: 1px solid #eed9cf; border-radius: var(--radius); padding: 13px 15px; margin: 14px 0 0;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.fatal-flaw .ic { color: var(--alarm); flex: 0 0 auto; margin-top: 2px; }
.fatal-flaw b { color: var(--alarm); }

/* ---------- How it works (S6) ---------- */
.steps { display: grid; gap: 15px; margin-top: 24px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
}
.step .s-num { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 20px; }
.step .s-word { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.step h3 { font-size: 19px; margin: 3px 0 5px; }
.step p { font-size: 14.5px; margin: 0; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Product reveal (S7) ---------- */
.reveal-visual { background: linear-gradient(135deg, var(--sage-tint), var(--tan-tint)); border-radius: var(--radius-lg); padding: 34px; text-align: center; margin: 22px 0; border: 1px solid var(--line); }
.reveal-visual .jar { width: 132px; height: 132px; margin: 0 auto; color: var(--sage-deep); }
.reveal-visual--photo { padding: 0; background: var(--surface); overflow: hidden; }
.reveal-visual--photo img { width: 100%; height: auto; display: block; }
.reveal-visual p { margin: 16px 0 0; color: var(--ink-soft); font-size: 15px; }
.ingredient-cards { display: grid; gap: 12px; margin-top: 20px; }
.ing-card { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); }
.ing-card .i-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 8px; background: var(--sage-tint); display: grid; place-items: center; color: var(--sage-deep); }
.ing-card .i-name { font-family: var(--serif); font-size: 16.5px; }
.ing-card .i-step { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }
.ing-card .i-benefit { font-size: 13.5px; color: var(--ink-faint); margin: 3px 0 0; line-height: 1.5; }

/* ---------- Before/After slider (S8) ---------- */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; border: 1px solid var(--line);
}
.ba-slider .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-img .ba-fill { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; pointer-events: none; }
/* Bias each crop toward its underarm so the reveal stays on the transformation */
.ba-before .ba-fill { object-position: 38% 50%; }
.ba-after  .ba-fill { object-position: 66% 40%; }
.ba-label {
  position: absolute; bottom: 12px; z-index: 3;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(58,56,51,.6); border-radius: 4px; padding: 5px 11px;
}
.ba-label--before { left: 12px; }
.ba-label--after { right: 12px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(58,56,51,.1); }
.ba-handle .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; color: var(--sage-deep); }
.ba-caption { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 11px; }
.ba-caption b { color: var(--ink-soft); }

.ugc-grid { display: grid; gap: 14px; margin-top: 22px; }
.ugc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); }
.ugc-card .u-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: var(--cream-deep); }
.ugc-card .u-body { padding: 15px 16px 17px; }
.ugc-card .u-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-faint); flex-wrap: wrap; margin: 0 0 10px; }
.ugc-card .u-quote { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* Application ritual (4 steps) */
.ritual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.ritual-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ritual-step img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.ritual-step .rs-body { padding: 13px 14px 15px; }
.ritual-step .rs-num { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.ritual-step h4 { font-size: 16px; margin: 3px 0 4px; }
.ritual-step p { font-size: 12.5px; color: var(--ink-faint); margin: 0; line-height: 1.45; }
.ritual-step .rs-note { font-size: 10.5px; font-style: italic; color: var(--sage-deep); margin-top: 7px; display: block; }
.ugc-card .u-stars { color: var(--gold); font-size: 13px; }
.ugc-card .u-tag { background: var(--sage-tint); color: var(--sage-deep); border-radius: 4px; padding: 2px 9px; font-weight: 700; font-size: 11px; letter-spacing: .04em; }

/* ---------- Comparison table (S9) ---------- */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 22px -4px 0; padding: 0 4px 6px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.compare th, table.compare td { padding: 12px 9px; text-align: center; border-bottom: 1px solid var(--line-soft); }
table.compare thead th { background: var(--cream-deep); font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-soft); }
table.compare thead th:first-child { text-align: left; }
table.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); font-family: var(--sans); white-space: nowrap; }
table.compare tbody td:last-child { font-family: var(--serif); font-size: 15px; }
table.compare tr.row-win th, table.compare tr.row-win td { background: var(--sage-tint); }
table.compare tr.row-win th { color: var(--sage-deep); font-weight: 700; }
table.compare tr.row-win td:last-child { color: var(--sage-deep); }
.row-tag { display: inline-block; font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .06em; color: #fff; background: var(--sage); border-radius: 3px; padding: 1px 5px; vertical-align: middle; margin-left: 4px; }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: 0; }
.tick { color: var(--sage-deep); font-size: 16px; font-weight: 700; }
.mid { color: var(--grade-mid); font-size: 15px; font-weight: 700; }
.cross { color: var(--alarm); font-size: 15px; font-weight: 700; }

/* ---------- Why it matters (S10) ---------- */
.stakes { font-family: var(--serif); font-size: 23px; line-height: 1.42; color: var(--ink); }
.timeline { display: grid; gap: 14px; margin-top: 22px; padding-left: 4px; }
.tl-item { display: flex; gap: 15px; align-items: flex-start; }
.tl-item .tl-dot { flex: 0 0 auto; width: 13px; height: 13px; border-radius: 50%; background: var(--sage); margin-top: 6px; box-shadow: 0 0 0 4px var(--sage-tint); }
.tl-item .tl-when { font-family: var(--serif); font-size: 16px; color: var(--sage-deep); }
.tl-item .tl-what { font-size: 14.5px; color: var(--ink-soft); margin: 2px 0 0; line-height: 1.5; }

/* ---------- FAQ (S11) ---------- */
.faq { margin-top: 22px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 17px 4px; display: flex; justify-content: space-between; gap: 12px; align-items: center; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: 0 0 auto; transition: transform .2s ease; color: var(--sage); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 4px 17px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Verdict (S12) ---------- */
.verdict-grid { display: grid; gap: 14px; margin-top: 22px; }
.verdict-card { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--sage); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.verdict-card .v-if { font-family: var(--serif); font-size: 19px; color: var(--ink); margin: 0 0 7px; }
.verdict-card .v-then { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- Offer (S13) ---------- */
.offer-card { background: var(--surface); border: 2px solid var(--sage); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); }
.offer-card .price { font-family: var(--serif); font-size: 46px; color: var(--ink); line-height: 1; margin: 6px 0; }
.offer-card .price small { font-size: 15px; color: var(--ink-faint); font-family: var(--sans); }
.offer-deal { display: flex; gap: 12px; align-items: flex-start; background: var(--tan-tint); border: 1px solid #e6d4b3; border-radius: var(--radius); padding: 15px 16px; margin: 18px 0 0; text-align: left; }
.offer-deal .d-icon { flex: 0 0 auto; color: var(--grade-mid); margin-top: 1px; }
.offer-deal p { margin: 0; font-size: 14px; line-height: 1.55; }
.offer-deal b { color: var(--ink); }
.guarantee { display: flex; gap: 13px; align-items: flex-start; background: var(--sage-tint); border-radius: var(--radius); padding: 17px; margin: 20px 0; text-align: left; }
.guarantee .g-icon { flex: 0 0 auto; color: var(--sage-deep); }
.guarantee p { margin: 0; font-size: 14px; line-height: 1.55; }

/* ---------- Footer / Bio (S14) ---------- */
.bio { display: flex; gap: 15px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.bio .b-avatar { flex: 0 0 auto; width: 62px; height: 62px; border-radius: 50%; background: var(--tan-tint); display: grid; place-items: center; color: var(--sage-deep); overflow: hidden; }
.bio .b-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.bio .b-name { font-family: var(--serif); font-size: 18px; }
.bio .b-role { font-size: 12.5px; color: var(--ink-faint); }
.bio p { font-size: 14.5px; margin: 8px 0 0; color: var(--ink-soft); line-height: 1.6; }
.disclaimer { font-size: 12.5px; color: var(--ink-faint); margin-top: 22px; line-height: 1.65; }
.site-footer { background: var(--ink); color: var(--cream); padding: 38px 0 44px; }
.site-footer .brandmark { color: var(--cream); }
.site-footer a { color: var(--cream); opacity: .78; text-decoration: none; }
.site-footer a:hover { opacity: 1; }
.footer-social { display: flex; gap: 14px; margin: 18px 0; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(251,248,243,.22); border-radius: 50%; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; margin: 14px 0; }
.footer-legal { margin: 16px 0 0; border-top: 1px solid rgba(251,248,243,.14); padding-top: 14px; }
.footer-legal p { font-size: 11px; line-height: 1.6; opacity: .6; margin: 0 0 8px; max-width: 62ch; }
.footer-legal b { opacity: 1; font-weight: 700; }
.footer-copy { font-size: 11.5px; opacity: .55; margin-top: 12px; line-height: 1.6; max-width: 62ch; }

/* ---------- Sticky mobile CTA bar (appears after S3) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(58,56,51,.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sc-info { flex: 1 1 auto; min-width: 0; }
.sticky-cta .sc-name { font-family: var(--serif); font-size: 16px; line-height: 1.2; }
.sticky-cta .sc-price { font-size: 12px; color: var(--ink-faint); }
.sticky-cta .sc-price b { color: var(--sage-deep); }
.sticky-cta .cta { width: auto; flex: 0 0 auto; padding: 13px 18px; font-size: 13px; }

body.has-sticky { padding-bottom: 80px; }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  body { font-size: 18px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .ingredient-cards { grid-template-columns: 1fr 1fr; }
  .ugc-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
  body.has-sticky { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
