/* ============================================================
   GLOW — DESIGN SYSTEM (2026)
   The single source of truth for the GLOW look & feel.
   Loaded LAST on every page so it unifies the site; it is the
   ONLY design stylesheet on rebuilt pages (homepage + hubs).

   Contents
     1. Tokens
     2. Base & typography
     3. Layout
     4. Chrome: header / nav / footer  (overrides legacy dark chrome)
     5. Buttons, links, chips, breadcrumb
     6. GLOW Score badge (one badge, everywhere)
     7. Cards
     8. Hero & section components (g- prefix, for rebuilt pages)
     9. Prose (guides / editorial)
    10. Utilities & motion
   ============================================================ */

/* ---------- 1. TOKENS ---------------------------------------- */
:root {
  /* Ink / neutrals */
  --ink:        #17120E;   /* primary text, near-black warm charcoal */
  --ink-2:      #463E37;   /* secondary text */
  --muted:      #786F66;   /* meta / muted */
  --paper:      #FFFFFF;
  --porcelain:  #FAF7F2;   /* warm off-white section background */
  --sand:       #F1EAE0;   /* slightly deeper neutral panel */
  --line:       rgba(23,18,14,0.10);
  --line-2:     rgba(23,18,14,0.16);

  /* Single warm accent — used sparingly; imagery carries the colour */
  --accent:      #9A6A4B;  /* warm bronze */
  --accent-deep: #7B5236;
  --accent-soft: #EFE3D6;  /* accent tint background */
  --accent-ring: rgba(154,106,75,0.30);

  /* Neutralise the legacy coral system → one warm accent (overrides
     coral-accent.css :root tokens, which load earlier). */
  --glow-coral:      #9A6A4B;
  --glow-coral-deep: #7B5236;
  --glow-coral-soft: #EFE3D6;
  --glow-coral-tint: #F6EFE7;

  /* Score cue (kept quiet) */
  --score-ink:  #17120E;

  /* Radii */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --pill: 999px;

  /* Elevation (subtle) */
  --sh-sm: 0 1px 2px rgba(23,18,14,0.05);
  --sh:    0 8px 30px rgba(23,18,14,0.08);
  --sh-lg: 0 18px 50px rgba(23,18,14,0.12);

  /* Type scale */
  --fs-hero:    clamp(2.6rem, 6vw, 4.5rem);
  --fs-h1:      clamp(2.05rem, 4.4vw, 3.3rem);
  --fs-h2:      clamp(1.65rem, 3.1vw, 2.5rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.6rem);
  --fs-lead:    clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9rem;
  --fs-xs:      0.78rem;
  --fs-eyebrow: 0.72rem;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1rem, 4vw, 2.25rem);
  --nav-h: 60px;
}

/* ---------- 2. BASE & TYPOGRAPHY ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html body h1, html body h2, html body h3, html body h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
html body h1 { font-size: var(--fs-h1); }
html body h2 { font-size: var(--fs-h2); }
html body h3 { font-size: var(--fs-h3); line-height: 1.18; }
html body p { margin: 0 0 1rem; }

/* Force the editorial display face on every heading, beating legacy
   per-template classes (e.g. .agv7-hero__h1) that pin Lexend Deca/sans. */
html body h1, html body h2, html body h3, html body h4,
html body [class*="hero__h1"], html body [class*="-hero__h"] {
  font-family: var(--font-display) !important;
}

html body em, html body i { font-style: italic; }

html body a { color: inherit; text-decoration: none; }
html body img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-soft); color: var(--ink); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- 3. LAYOUT ---------------------------------------- */
.wrap, .g-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.g-narrow { max-width: 760px; margin-inline: auto; }

.g-section { padding-block: clamp(2.75rem, 7vw, 5.5rem); }
.g-section--alt { background: var(--porcelain); }
.g-section--sand { background: var(--sand); }
.g-section--ink { background: var(--ink); color: #F4EFE9; }
.g-section--ink h2, .g-section--ink h3 { color: #fff; }

.g-section__head { max-width: 720px; margin: 0 auto clamp(1.75rem, 4vw, 2.75rem); text-align: center; }
.g-section__head--left { text-align: left; margin-inline: 0; }

.g-eyebrow, .g-section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}
.g-h2 { font-size: var(--fs-h2); margin: 0; }
.g-sub { font-size: var(--fs-lead); color: var(--ink-2); margin: 0.9rem 0 0; line-height: 1.55; }
.g-rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 4. CHROME (overrides legacy dark chrome) --------- */
/* Utility bar */
html body .utility-bar {
  background: var(--ink) !important;
  color: rgba(255,255,255,0.72) !important;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
  border: 0 !important;
}
html body .utility-bar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.5rem; flex-wrap: wrap;
}
html body .utility-bar .util-trust { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.66rem; color: rgba(255,255,255,0.6) !important; }
html body .utility-bar .util-right { display: inline-flex; gap: 1.25rem; }
html body .utility-bar a { color: rgba(255,255,255,0.78) !important; padding: 0 !important; }
html body .utility-bar a:hover { color: #fff !important; }

/* Masthead — light, airy, charcoal wordmark */
html body .masthead {
  background: var(--paper) !important;
  color: var(--ink) !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--line);
}
html body .masthead .wrap { padding-block: 0; }
html body .masthead-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}
html body .masthead-burger {
  grid-column: 1; justify-self: start;
  display: inline-flex; flex-direction: column; gap: 4px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
html body .masthead-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
html body .glow-wordmark-link, html body .brand-lockup { grid-column: 2; justify-self: center; }
/* Masthead wordmark uses the black SVG (swapped in by the chrome sweep) */
html body .masthead .glow-wordmark-img { height: 30px !important; width: auto !important; }
html body .masthead-search-btn {
  grid-column: 3; justify-self: end;
  background: none; border: 0; cursor: pointer; color: var(--ink); padding: 8px;
  display: inline-flex; align-items: center;
}

/* Sticky header wrapper behaviour for masthead+nav (best effort) */
html body .masthead, html body .review-nav { position: relative; z-index: 40; }

/* Primary nav */
html body .review-nav {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
  padding: 0 !important;
  display: block !important;   /* beat legacy rules that hide it on some templates */
}
html body .review-nav .wrap { padding-block: 0; }
html body .review-nav .nav-links {
  display: flex !important;    /* beat legacy max-width display:none on agv7 pages */
  justify-content: center; align-items: stretch;
  gap: clamp(1rem, 3vw, 2.25rem);
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
html body .review-nav .nav-links::-webkit-scrollbar { display: none; }
html body .review-nav .nav-links a {
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
  padding: 1.05rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
html body .review-nav .nav-links a:hover,
html body .review-nav .nav-links a[aria-current="page"] {
  color: var(--accent) !important;
  border-bottom-color: var(--accent);
}

/* Secondary discovery strip — slim, quiet, scrollable */
html body .glow-subnav {
  background: var(--porcelain) !important;
  border-bottom: 1px solid var(--line);
}
html body .glow-subnav__links {
  display: flex; gap: 1.4rem; align-items: center;
  overflow-x: auto; scrollbar-width: none; padding-block: 0.6rem;
}
html body .glow-subnav__links::-webkit-scrollbar { display: none; }
html body .glow-subnav__links a {
  font-family: var(--font-body) !important;
  font-size: 0.82rem; color: var(--muted) !important; white-space: nowrap;
}
html body .glow-subnav__links a:hover { color: var(--ink) !important; }
html body .glow-subnav__lead { color: var(--accent) !important; font-weight: 600 !important; }

/* Footer — dark, grounding */
html body .footer {
  background: var(--ink) !important;
  color: rgba(255,255,255,0.66);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 2.5rem !important;
  font-family: var(--font-body);
}
html body .footer .wrap { max-width: var(--maxw); }
html body .footer-mast { display: flex; flex-direction: column; gap: 1rem; max-width: 620px; }
html body .footer .footer-wordmark-link img { height: 30px !important; width: auto !important; }
html body .footer-rule { height: 1px; background: rgba(255,255,255,0.14); width: 100%; }
html body .footer-dek { color: rgba(255,255,255,0.72); font-size: var(--fs-sm); max-width: 46ch; }
html body .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.75rem 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.25rem);
}
html body .footer-grid h5 {
  font-family: var(--font-body); color: #fff; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  margin: 0 0 1rem;
}
html body .footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
html body .footer-grid a { color: rgba(255,255,255,0.66); font-size: 0.9rem; }
html body .footer-grid a:hover { color: #fff; }
html body .footer .colophon { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
html body .footer .colophon a { color: inherit; }
html body .footer .colophon a:hover { color: #fff; }

.gl-skip, .skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.gl-skip:focus, .skip-link:focus { left: 0; }

/* ---------- 5. BUTTONS / LINKS / CHIPS / BREADCRUMB ---------- */
.g-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.04em; line-height: 1;
  padding: 0.95rem 1.6rem; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.g-btn:hover { transform: translateY(-1px); }
.g-btn--primary { background: var(--ink); color: #fff; }
.g-btn--primary:hover { background: var(--accent-deep); }
.g-btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-2); }
.g-btn--secondary:hover { border-color: var(--ink); }
.g-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.g-btn--ghost:hover { background: #fff; color: var(--ink); }
.g-btn--sm { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
.g-btn--lg { padding: 1.05rem 2rem; font-size: 0.9rem; }

.g-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--accent); font-weight: 600; font-size: 0.9rem;
  border-bottom: 1px solid transparent; transition: border-color .15s ease;
}
.g-link:hover { border-bottom-color: var(--accent); }
.g-link .arrow { transition: transform .18s ease; }
.g-link:hover .arrow { transform: translateX(3px); }

.g-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.g-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  color: var(--ink-2); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--pill);
  padding: 0.5rem 1rem; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.g-chip:hover { border-color: var(--ink); color: var(--ink); }
.g-chip--active { background: var(--ink); color: #fff; border-color: var(--ink); }

.g-breadcrumb { font-size: 0.8rem; color: var(--muted); padding-block: 1rem; }
.g-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; }
.g-breadcrumb li { display: inline-flex; gap: 0.45rem; align-items: center; }
.g-breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line-2); }
.g-breadcrumb a { color: var(--muted); }
.g-breadcrumb a:hover { color: var(--accent); }
.g-breadcrumb [aria-current="page"] { color: var(--ink); }

/* ---------- 6. GLOW SCORE BADGE (one badge everywhere) ------- */
.g-score {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--paper); color: var(--score-ink);
  border: 1.5px solid var(--accent-ring);
  box-shadow: var(--sh-sm); text-align: center; flex: none;
}
.g-score__num { font-family: var(--font-display); font-size: 1.45rem; line-height: 1; font-weight: 500; }
.g-score__label {
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 2px;
}
.g-score--lg { width: 92px; height: 92px; }
.g-score--lg .g-score__num { font-size: 2.1rem; }
.g-score--lg .g-score__label { font-size: 0.58rem; }
.g-score--sm { width: 50px; height: 50px; }
.g-score--sm .g-score__num { font-size: 1.15rem; }
.g-score--sm .g-score__label { font-size: 0.44rem; }

/* Horizontal lockup variant: "9.2 / GLOW Score" */
.g-score-row { display: inline-flex; align-items: center; gap: 0.6rem; }
.g-score-row__num {
  font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--ink);
}
.g-score-row__meta { display: flex; flex-direction: column; line-height: 1.1; }
.g-score-row__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.g-score-row__out { font-size: 0.72rem; color: var(--muted); }

/* --- Legacy score elements re-skinned to match --- */
html body .glow-score-chip {
  display: inline-flex; align-items: baseline; gap: 0.3rem;
  font-family: var(--font-display) !important; color: var(--ink) !important;
  background: var(--accent-soft) !important; border: 1px solid var(--accent-ring);
  border-radius: var(--pill); padding: 0.3rem 0.8rem; font-size: 1.1rem; font-weight: 500;
}
html body .glow-score-chip__small { font-family: var(--font-body) !important; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent) !important; }
html body .lv-card__score {
  background: var(--paper) !important; color: var(--ink) !important;
  border: 1.5px solid var(--accent-ring); box-shadow: var(--sh-sm);
  font-family: var(--font-display) !important; font-weight: 500;
  border-radius: 50%; min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- 7. CARDS ----------------------------------------- */
.g-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.g-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.g-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.g-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--line-2); }
.g-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.g-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-card:hover .g-card__media img { transform: scale(1.04); }
.g-card__media--portrait { aspect-ratio: 4 / 5; }
.g-card__media--square { aspect-ratio: 1 / 1; }
.g-card__score { position: absolute; top: 0.85rem; right: 0.85rem; }
.g-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.g-card__eyebrow { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.g-card__title { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.2; color: var(--ink); margin: 0; }
.g-card__meta { font-size: var(--fs-sm); color: var(--muted); }
.g-card__verdict { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; }
.g-card__foot { margin-top: auto; padding-top: 0.4rem; }
.g-card__rank {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem;
}

/* Category discovery card (image + label overlay) */
.g-cat {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--sand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.g-cat:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.g-cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-cat:hover img { transform: scale(1.05); }
.g-cat__label {
  position: absolute; inset: auto 0 0 0; padding: 1.1rem 1rem;
  background: linear-gradient(to top, rgba(18,14,11,0.78), rgba(18,14,11,0));
  color: #fff; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.01em;
}
.g-cat--text {
  aspect-ratio: auto; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem; background: var(--porcelain); border: 1px solid var(--line);
  text-align: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink);
}
.g-cat--text:hover { background: var(--paper); border-color: var(--ink); }

/* Brand card — quieter, logo/name forward */
.g-card--brand .g-card__media { aspect-ratio: 16 / 10; background: var(--porcelain); }
.g-card--brand .g-card__media img { object-fit: cover; }

/* Related links block */
.g-related { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 2.5rem; }
.g-related__list { display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.g-related a { display: flex; gap: 0.5rem; align-items: center; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--ink); font-size: 0.92rem; transition: border-color .15s ease, background .15s ease; }
.g-related a:hover { border-color: var(--ink); background: var(--porcelain); }

/* ---------- 8. HERO & SECTION COMPONENTS --------------------- */
.g-hero { position: relative; overflow: hidden; background: var(--porcelain); }
.g-hero--image { color: #fff; }
.g-hero__bg { position: absolute; inset: 0; z-index: 0; }
.g-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.g-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,11,0.30), rgba(18,14,11,0.62)); }
.g-hero__inner { position: relative; z-index: 1; max-width: 760px; padding-block: clamp(3.5rem, 11vw, 8rem); }
.g-hero--center .g-hero__inner { margin-inline: auto; text-align: center; }
.g-hero__eyebrow { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin: 0 0 1.1rem; }
.g-hero--image .g-hero__eyebrow { color: #F0DCC8; }
.g-hero__title { font-family: var(--font-display); font-size: var(--fs-hero); line-height: 1.02; letter-spacing: -0.015em; margin: 0; color: inherit; }
.g-hero--image .g-hero__title { color: #fff; }
.g-hero__sub { font-size: var(--fs-lead); color: var(--ink-2); margin: 1.25rem 0 0; line-height: 1.5; }
.g-hero--image .g-hero__sub { color: rgba(255,255,255,0.88); }
.g-hero__cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2rem; }
.g-hero--center .g-hero__cta { justify-content: center; }

/* ---------- 9. PROSE (guides / editorial) -------------------- */
.g-prose { max-width: 720px; margin-inline: auto; font-size: 1.1rem; line-height: 1.75; color: var(--ink-2); }
.g-prose > * + * { margin-top: 1.2rem; }
.g-prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.4rem; color: var(--ink); }
.g-prose h3 { font-size: 1.3rem; margin-top: 1.8rem; color: var(--ink); }
.g-prose a { color: var(--accent); border-bottom: 1px solid var(--accent-ring); }
.g-prose a:hover { border-bottom-color: var(--accent); }
.g-prose ul, .g-prose ol { padding-left: 1.25rem; }
.g-prose li { margin: 0.4rem 0; }
.g-prose blockquote {
  border-left: 3px solid var(--accent); padding-left: 1.25rem; margin-left: 0;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); font-style: italic;
}
.g-prose img { border-radius: var(--r); margin-block: 1.75rem; }
.g-toc { background: var(--porcelain); border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem 1.5rem; font-size: 0.95rem; }
.g-toc h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.75rem; }
.g-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.g-toc a { color: var(--ink-2); }
.g-toc a:hover { color: var(--accent); }

/* FAQ */
.g-faq { display: grid; gap: 0; }
.g-faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.g-faq summary { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.g-faq summary::-webkit-details-marker { display: none; }
.g-faq summary::after { content: "+"; color: var(--accent); font-family: var(--font-body); }
.g-faq details[open] summary::after { content: "–"; }
.g-faq p { margin-top: 0.75rem; color: var(--ink-2); }

/* ---------- 10. UTILITIES & MOTION --------------------------- */
.g-center { text-align: center; }
.g-mt-0 { margin-top: 0; }
.g-stack { display: flex; flex-direction: column; gap: 1rem; }
.g-cta-row { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.g-eyebrow-line { display: inline-flex; align-items: center; gap: 0.75rem; }

.g-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.g-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .g-reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Interactive megamenu (site.js .gnav) re-skinned to GLOW --- */
html body .review-nav .gnav {
  display: flex; justify-content: center; align-items: stretch;
  gap: clamp(1rem, 3vw, 2.25rem);
  flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
}
html body .review-nav .gnav::-webkit-scrollbar { display: none; }
html body .gnav__item { position: relative; }
html body .gnav__link {
  display: inline-flex; align-items: center;
  font-family: var(--font-body) !important;
  color: var(--ink) !important; text-transform: uppercase;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  padding: 1.05rem 0; border-bottom: 2px solid transparent;
  background: none !important; transition: color .15s ease, border-color .15s ease;
}
html body .gnav__link:hover,
html body .gnav__item:hover .gnav__link,
html body .gnav__link[aria-current="page"] {
  color: var(--accent) !important; border-bottom-color: var(--accent);
}
html body .gnav__megapanel {
  background: var(--paper); border-top: 1px solid var(--line);
  box-shadow: var(--sh); color: var(--ink); z-index: 50;
}
html body .gnav__megapanel-inner { max-width: var(--maxw); margin-inline: auto; padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter); }
html body .gnav__cols { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); }
html body .gnav__col-label, html body .gnav__pm-eyebrow, html body .gnav__edit-eyebrow, html body .gnav__brands-featured-label {
  font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 0.85rem;
}
html body .gnav__sub-list, html body .gnav__pm-list, html body .gnav__edit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
html body .gnav__sub-list a, html body .gnav__pm-list a, html body .gnav__edit-link, html body .gnav__megapanel a {
  color: var(--ink-2); font-size: 0.94rem; font-family: var(--font-body);
}
html body .gnav__sub-list a:hover, html body .gnav__pm-list a:hover, html body .gnav__edit-link:hover, html body .gnav__megapanel a:hover { color: var(--accent); }

/* --- Legacy hub CTA buttons — guarantee contrast under GLOW palette --- */
html body .rev-hero__pill--primary,
html body .rev-cta--primary,
html body .agv7-cta--primary,
html body a.btn-primary, html body .btn--primary {
  background: var(--ink) !important; color: #fff !important;
  border-color: var(--ink) !important;
}
html body .rev-hero__pill, html body .agv7-cta {
  border-radius: var(--pill);
}

/* --- Mobile drawer (site.js .gdrawer) re-skinned --- */
html body .gdrawer { background: var(--paper) !important; color: var(--ink) !important; }
html body .gdrawer a { color: var(--ink) !important; }
html body .gdrawer a:hover { color: var(--accent) !important; }
html body .gdrawer__panel, html body .gdrawer__inner { background: var(--paper) !important; }

@media (max-width: 640px) {
  html body .review-nav .nav-links { justify-content: flex-start; }
  html body .utility-bar .util-trust { display: none; }
  .g-hero__inner { padding-block: clamp(2.75rem, 14vw, 4rem); }
}
