/* ====================================================================
   GLOW — reviews.css
   Brand: premium · trusted · editorial · clean · empowering
   Minimalist. Pure black & white. Playfair Display + Inter.
   "The place you go before you buy."
   ==================================================================== */

:root {
  /* Editorial canvas — warmed paper, not pure white */
  --canvas:       #FBF9F4;
  --canvas-2:     #F1ECE3;   /* alt section panels */
  --canvas-3:     #E5DFD4;

  --ink:          #1F1C18;   /* warmer than pure black; reads "publication" */
  --ink-body:     #3A3531;
  --ink-muted:    #76706A;
  --ink-dim:      #A8A29A;

  --line:         #E2DCD0;
  --line-soft:    #EDE6D9;

  /* Bordeaux accent — the editorial signature.
     Used sparingly: italic emphasis in display type, scores, hover states only.
     Never as a CTA fill, never as a chrome surface. */
  --bordeaux:        #5A2A35;
  --bordeaux-deep:   #3F1E26;
  --bordeaux-soft:   #EFE3DD;

  /* Aliases for legacy class references — all old "copper/rose/orange" tokens
     now map to the bordeaux system or quiet neutrals. */
  --copper:        var(--bordeaux);
  --copper-deep:   var(--bordeaux-deep);
  --copper-soft:   #BFA38B;            /* now a quiet warm taupe, not orange */
  --rose-deep:     var(--bordeaux);
  --rose-soft:     var(--bordeaux-soft);

  /* Tonal washes — restrained, taupe family (no longer orange) */
  --tone-1:       #F0EBE0;
  --tone-2:       #D9D2C5;
  --tone-3:       #9C9388;
  --tone-4:       #5C5650;

  /* black panels / dark sections */
  --panel:        #000000;
  --panel-2:      #0A0A0A;
  --panel-ink:    #FFFFFF;
  --panel-dim:    rgba(255,255,255,0.55);

  --ff-serif:     "Playfair Display", "Times New Roman", Georgia, serif;
  --ff-sans:      "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-logo:      "Italiana", "Playfair Display", "Times New Roman", Georgia, serif;

  --fs-hero:      clamp(3.5rem, 8vw, 8rem);
  --fs-section:   clamp(2.5rem, 5vw, 4.5rem);
  --fs-lede:      clamp(1.05rem, 1.3vw, 1.2rem);
  --fs-body:      1rem;
  --fs-sm:        0.9rem;
  --fs-xs:        0.75rem;

  --lh-display:   0.98;
  --lh-body:      1.55;

  --maxw:         1400px;
  --gutter:       clamp(1.5rem, 4vw, 3.5rem);
  --pad-y:        clamp(5rem, 10vw, 9rem);

  --trans:        300ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ink); color: var(--canvas); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =====================================================================
   HEADER — Allure-style three-row dark masthead
   ===================================================================== */
.site-header {
  background: var(--panel);
  color: var(--panel-ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Row 1: centered logo + right-side utility (Newsletter | Join | Sign In | Search) */
.header-top {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  position: relative;
}
.header-top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.wordmark-lockup {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.wordmark-lockup img {
  height: clamp(36px, 5vw, 68px);
  width: auto;
  display: block;
}

.header-utility {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-utility a {
  color: var(--panel-ink);
  padding: 0.5rem 1rem;
  position: relative;
  transition: opacity var(--trans);
}
.header-utility a:hover { opacity: 0.6; }
.header-utility a + a::before,
.header-utility a + .search-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}
.header-utility .util-cta {
  color: var(--copper-soft, #D98B63);
  font-weight: 600;
}
.header-utility .search-btn {
  color: var(--panel-ink);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
  transition: opacity var(--trans);
  background: transparent;
}
.header-utility .search-btn:hover { opacity: 0.6; }

@media (max-width: 820px) {
  .header-utility { font-size: 0.65rem; }
  .header-utility a { padding: 0.5rem 0.7rem; }
  .header-utility a:not(.util-cta):not(:first-child) { display: none; }
}

/* Row 2: main category nav, centered, thin hairline above */
.header-main-nav {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: clamp(0.8rem, 1.5vw, 1.2rem) 0;
}
.header-main-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-main-nav a {
  color: var(--panel-ink);
  padding: 0.4rem 0;
  position: relative;
  transition: opacity var(--trans);
}
.header-main-nav a:hover { opacity: 0.55; }
.header-main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--copper-soft, #D98B63);
}

/* Row 3: featured sub-nav — left label + right chips */
.header-sub-nav {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
}
.header-sub-nav .wrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.header-sub-nav .subnav-left {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--panel-ink);
  letter-spacing: -0.005em;
}
.header-sub-nav .subnav-left strong {
  font-style: normal;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--panel-dim);
  margin-right: 0.5rem;
}
.header-sub-nav .subnav-right {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-sub-nav .subnav-right a {
  color: var(--panel-ink);
  padding: 0.3rem 0;
  transition: opacity var(--trans);
}
.header-sub-nav .subnav-right a:hover { opacity: 0.55; }

@media (max-width: 720px) {
  .header-sub-nav { display: none; }
}

/* Keep .menu-btn / .menu-icon around for mobile drawer (future) */
.menu-btn, .search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--panel-ink);
  cursor: pointer;
  transition: opacity var(--trans);
}
.menu-btn:hover, .search-btn:hover { opacity: 0.65; }
.menu-icon {
  display: inline-block;
  width: 22px;
  height: 14px;
  position: relative;
}
.menu-icon::before, .menu-icon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--panel-ink);
}
.menu-icon::before { top: 2px; }
.menu-icon::after { bottom: 2px; }

/* Alias — keep .header-nav working for older pages */
.header-nav { display: none; }

/* =====================================================================
   LEGACY NAMES — keep backward compatibility
   (the CSS has evolved; older classnames still shipped on some pages)
   ===================================================================== */
.top-chrome { display: none !important; }  /* retire the dark strip */
.masthead { display: none !important; }    /* retire the centered issue masthead */

.disclosure-bar {
  background: var(--canvas);
  padding-block: 0.85rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.disclosure-bar a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legacy .review-nav — now styled as the black masthead bar with image logo */
.review-nav {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(1rem, 2vw, 1.5rem) 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Show the actual logo image above the legacy nav links on inner pages */
.review-nav::before {
  content: "";
  display: block;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  width: clamp(150px, 22vw, 280px);
  height: clamp(36px, 5vw, 68px);
  background-image: url("/assets/logo-reversed.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.review-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: clamp(0.8rem, 1.5vw, 1.2rem) 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.review-nav a {
  color: var(--panel-ink);
  padding: 0.5rem 0;
  transition: opacity var(--trans);
  position: relative;
}
.review-nav a:hover { opacity: 0.55; }
.review-nav a[aria-current="page"] { font-weight: 600; }
.review-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--panel-ink);
}

/* =====================================================================
   HERO — big serif headline + lifestyle image, split 50/50
   ===================================================================== */
.editorial-hero {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  background: var(--canvas);
}
.editorial-hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .editorial-hero .grid { grid-template-columns: 1fr 1fr; }
}
.editorial-hero .eyebrow,
.hub-hero .eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.editorial-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: var(--lh-display);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.75rem;
  max-width: 12ch;
}
.editorial-hero h1 em { font-style: italic; }
.editorial-hero .lede {
  font-family: var(--ff-sans);
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 40ch;
  margin: 0 0 2.25rem;
  font-weight: 400;
}
.editorial-hero .hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.editorial-hero .hero-image {
  aspect-ratio: 4/5;
  background: var(--canvas-2);
  position: relative;
  overflow: hidden;
}
.editorial-hero .hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   BUTTONS — clean black rectangles
   ===================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--trans);
}
.btn-primary:hover { background: var(--ink-body); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--trans), color var(--trans);
}
.btn-outline:hover { background: var(--ink); color: var(--canvas); }

.btn-rose-fill { /* keep name compat — now solid black */
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--trans);
}
.btn-rose-fill:hover { background: var(--ink-body); }

/* =====================================================================
   SECTIONS / HEADINGS
   ===================================================================== */
.ed-section { padding-block: clamp(4rem, 8vw, 7rem); }
.ed-section .sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 3vw, 3rem);
  border-top: 1px solid var(--ink);
}
.ed-section h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.ed-section h2 em { font-style: italic; }
.ed-section .see-all {
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.ed-section .see-all::after { content: " →"; }

/* =====================================================================
   PICK CARDS — clean editorial, no silhouettes
   ===================================================================== */
.pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}
@media (min-width: 720px)  { .pick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pick-grid { grid-template-columns: repeat(3, 1fr); } }

.pick-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: opacity var(--trans);
}
.pick-card:hover { opacity: 0.85; }
.pick-card .pick-image {
  aspect-ratio: 4/5;
  background: var(--canvas-2);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
}
.pick-card .pick-image::before {
  content: attr(data-numeral);
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ink);
  opacity: 0.08;
  letter-spacing: -0.02em;
}
.pick-card .pick-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.pick-card .pick-tag {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.pick-card h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.pick-card h3 em { font-style: italic; }
.pick-card .pick-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 0 0 0.75rem;
  max-width: 38ch;
}
.pick-card .pick-meta {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pick-card .pick-meta .star { color: var(--ink); }

/* =====================================================================
   SHOP BY TILES — minimalist B&W with subtle tone accent
   ===================================================================== */
.shop-by { padding-block: clamp(4rem, 7vw, 6.5rem); background: var(--canvas); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (min-width: 720px)  { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .shop-grid { grid-template-columns: repeat(6, 1fr); } }

.shop-tile {
  aspect-ratio: 2/3;
  position: relative;
  display: block;
  padding: 2rem;
  text-decoration: none;
  color: var(--canvas);
  overflow: hidden;
  background: var(--ink);
  transition: filter var(--trans);
}
.shop-tile:nth-child(even) { background: var(--tone-3); }
.shop-tile:nth-child(3n)   { background: var(--tone-4); }
.shop-tile:hover { filter: brightness(1.1); }
.shop-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.shop-tile .shop-content {
  position: absolute;
  left: 2rem; right: 2rem; bottom: 2rem;
  z-index: 2;
}
.shop-tile .shop-tag {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canvas);
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}
.shop-tile .shop-label {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--canvas);
  letter-spacing: -0.01em;
}
.shop-tile .shop-label em { font-style: italic; }

/* =====================================================================
   NEW THIS WEEK — editorial cards
   ===================================================================== */
.new-this-week { padding-block: clamp(4rem, 7vw, 6.5rem); }
.ntw-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .ntw-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 2.5vw, 3rem); } }
.ntw-card { display: block; text-decoration: none; color: var(--ink); transition: opacity var(--trans); }
.ntw-card:hover { opacity: 0.85; }
.ntw-card .ntw-image {
  aspect-ratio: 1/1;
  background: var(--canvas-2);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
}
.ntw-card:nth-child(2) .ntw-image { background: var(--canvas-3); }
.ntw-card:nth-child(3) .ntw-image { background: var(--tone-1); }
.ntw-card .ntw-image img { width: 100%; height: 100%; object-fit: cover; }
.ntw-card .ntw-tag {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.ntw-card h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.ntw-card h3 em { font-style: italic; }
.ntw-card .ntw-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-body);
  margin: 0;
  max-width: 36ch;
}

/* =====================================================================
   WEEKLY EDIT — soft off-white block, centred signup
   ===================================================================== */
.weekly-edit {
  background: var(--canvas-2);
  color: var(--ink);
  padding-block: clamp(5rem, 8vw, 8rem);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.weekly-edit .wrap { max-width: 720px; }
.weekly-edit .we-tag {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.weekly-edit h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--ink);
  max-width: 16ch;
  margin-inline: auto;
}
.weekly-edit h2 em { font-style: italic; }
.weekly-edit p {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 44ch;
  margin: 0 auto 2rem;
}
.weekly-edit .subscribe-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin-inline: auto;
  flex-wrap: nowrap;
  border: 1px solid var(--ink);
}
.weekly-edit input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem;
  background: var(--canvas);
  border: 0;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  border-radius: 0;
}
.weekly-edit input[type="email"]::placeholder { color: var(--ink-muted); }
.weekly-edit button {
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: background var(--trans);
}
.weekly-edit button:hover { background: var(--ink-body); }

/* =====================================================================
   BRAND VIBE STRIP — "PREMIUM · TRUSTED · EDITORIAL · CLEAN · EMPOWERING"
   Horizontal divider strip used near footer
   ===================================================================== */
.vibe-strip {
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.vibe-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.vibe-strip span { position: relative; }
.vibe-strip span + span::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--ink-muted);
}
@media (max-width: 720px) {
  .vibe-strip .wrap { justify-content: center; gap: 1.5rem; }
  .vibe-strip span + span::before { display: none; }
}

/* =====================================================================
   FOOTER — dark, centered wordmark
   ===================================================================== */
.footer {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 2.5rem;
}
.footer .wrap { max-width: var(--maxw); }
.footer-mast {
  text-align: center;
  margin-bottom: clamp(4rem, 6vw, 5.5rem);
}
.footer-mast .wordmark {
  font-family: var(--ff-logo);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--canvas);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-block;
}
.footer-mast .footer-rule { width: 40px; height: 1px; background: var(--canvas); margin: 1.5rem auto; }
.footer-mast .footer-dek {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--panel-dim);
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer h5 {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--panel-dim);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.footer a { color: var(--panel-ink); font-family: var(--ff-sans); font-size: 0.95rem; transition: opacity var(--trans); }
.footer a:hover { opacity: 0.6; }
.colophon {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--panel-dim);
}

/* =====================================================================
   AFFILIATE NOTE
   ===================================================================== */
.aff-note {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  background: var(--canvas-2);
  padding: 1rem 1.25rem;
  line-height: 1.55;
  border-left: 2px solid var(--ink);
}
.aff-note strong { color: var(--ink); font-weight: 500; }

/* =====================================================================
   HUB HERO (category / archive pages)
   ===================================================================== */
.hub-hero { padding-block: clamp(4rem, 7vw, 6.5rem); }
.hub-hero .breadcrumb {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hub-hero .breadcrumb a { color: var(--ink-muted); }
.hub-hero .breadcrumb a:hover { color: var(--ink); }
.hub-hero .breadcrumb .sep { margin: 0 0.5rem; }
.hub-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.hub-hero h1 em { font-style: italic; }
.hub-hero .lede {
  font-family: var(--ff-sans);
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 56ch;
  margin: 0;
}

/* =====================================================================
   EDITORIAL SOPHISTICATION LAYER — drop caps, pull quotes, scorecards
   ===================================================================== */

.drop-cap::first-letter {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 4.5em;
  line-height: 0.82;
  float: left;
  margin: 0.12em 0.15em 0 0;
  color: var(--ink);
  font-weight: 500;
}

.pull-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  max-width: 20ch;
  margin: 3rem auto;
  padding: 2.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem 0;
  font-family: var(--ff-sans);
}
.byline .by-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--canvas-2);
  flex-shrink: 0;
}
.byline .by-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.byline .by-name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.byline .by-role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.scorecard {
  border: 1px solid var(--ink);
  padding: 2.5rem;
  background: var(--canvas);
  position: relative;
}
.scorecard::before {
  content: "Score";
  position: absolute;
  top: -0.7em;
  left: 1.5rem;
  background: var(--canvas);
  padding: 0 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.scorecard .score-big {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.035em;
}
.scorecard .score-big em { font-style: italic; }
.scorecard .score-of {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--ink-muted);
  margin-left: 0.25rem;
}
.scorecard .score-stars { margin: 1rem 0 1.5rem; font-size: 1rem; color: var(--ink); letter-spacing: 0.2em; }
.scorecard .score-criteria {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.scorecard .score-criteria li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--line);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--ink-body);
}
.scorecard .score-criteria li:last-child { border-bottom: 0; }
.scorecard .score-criteria strong {
  color: var(--ink);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
}

.dashed-rule {
  border: 0;
  border-top: 1px dashed var(--ink);
  margin: 3rem 0;
  opacity: 0.3;
}

.price-chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--ink);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sec-numeral {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-block;
  margin-right: 0.75rem;
}

/* =====================================================================
   HIDE LEGACY CHROME
   ===================================================================== */
body.reviews-skin > header.chrome,
body.reviews-skin > .mnav { display: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================
   TRUST STRIP — authority signals below header
   ===================================================================== */
.trust-strip {
  background: var(--canvas-2);
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 1200px;
}
.trust-strip .ts-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  font-family: var(--ff-sans);
}
.trust-strip .ts-item strong {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-strip .ts-item span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
@media (max-width: 720px) {
  .trust-strip .wrap { gap: 0.75rem; }
  .trust-strip .ts-item:nth-child(3),
  .trust-strip .ts-item:nth-child(4) { display: none; }
}

/* =====================================================================
   AUTHOR BYLINE — Cialdini authority marker
   ===================================================================== */
.author-byline {
  padding-block: 1.5rem;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}
.author-byline .ab-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.author-byline .ab-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--canvas-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.author-byline .ab-avatar::before {
  content: attr(data-initials);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
}
.author-byline .ab-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.author-byline .ab-label {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.author-byline .ab-name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.author-byline .ab-name .ab-role {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: normal;
}
.author-byline .ab-credential {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink-body);
}
.author-byline .ab-date {
  text-align: right;
  font-family: var(--ff-sans);
}
.author-byline .ab-when {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-top: 0.2rem;
}
@media (max-width: 620px) {
  .author-byline .ab-date { display: none; }
  .author-byline .ab-credential { display: none; }
}

/* =====================================================================
   TEST CONDITIONS — Ogilvy specificity block
   ===================================================================== */
.test-conditions {
  padding-block: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}
.test-conditions .tc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
@media (min-width: 720px) {
  .test-conditions .tc-grid { grid-template-columns: repeat(4, 1fr); }
}
.test-conditions .tc-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--ink);
}
.test-conditions .tc-stat strong {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.test-conditions .tc-stat span {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* =====================================================================
   TESTIMONIAL PULL — Cialdini social proof
   ===================================================================== */
.testimonial-pull {
  padding-block: clamp(3rem, 5vw, 4rem);
  background: var(--canvas);
}
.testimonial-pull .tp-quote {
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
}
.testimonial-pull .tp-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin-inline: auto;
  position: relative;
}
.testimonial-pull .tp-quote p::before {
  content: "\201C";
  position: absolute;
  top: -0.4em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.2;
}
.testimonial-pull .tp-quote footer {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* =====================================================================
   RECIPROCITY — Cialdini give-first offer
   ===================================================================== */
.reciprocity {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: var(--panel);
  color: var(--panel-ink);
}
.reciprocity .rc-card {
  text-align: center;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.reciprocity .rc-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--panel-ink);
  border: 1px solid var(--panel-ink);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.reciprocity .rc-head {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--panel-ink);
}
.reciprocity .rc-head em { font-style: italic; }
.reciprocity .rc-sub {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.reciprocity .rc-cta {
  display: inline-block;
  padding: 1rem 1.75rem;
  background: var(--panel-ink);
  color: var(--panel);
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--trans);
}
.reciprocity .rc-cta:hover { opacity: 0.85; }

/* =====================================================================
   PRESS STRIP — aspirational "as referenced by"
   ===================================================================== */
.press-strip {
  background: var(--canvas);
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
}
.press-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.press-strip .ps-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.press-strip .ps-logo {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  opacity: 0.7;
}

/* =====================================================================
   CATEGORY HERO IMAGE — full-bleed editorial shot beneath hub-hero
   ===================================================================== */
.cat-hero-image {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  background: var(--canvas);
}
.cat-hero-image .chi-frame {
  aspect-ratio: 21 / 9;
  background: var(--canvas-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}
.cat-hero-image .chi-frame::before {
  content: "GLOW";
  font-family: var(--ff-logo, "Italiana", serif);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--ink);
  opacity: 0.08;
  letter-spacing: 0.05em;
}
.cat-hero-image .chi-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms;
}
.cat-hero-image .chi-frame img.loaded {
  opacity: 1;
}
.cat-hero-image .chi-frame.has-image::before { display: none; }
@media (max-width: 720px) {
  .cat-hero-image .chi-frame { aspect-ratio: 4/5; }
}

/* =====================================================================
   AI ANSWER BLOCK
   Structured, AI-citable answer at the top of every review page.
   Designed to be the single answer ChatGPT / Google AI / Perplexity
   pulls when asked about the page topic.
   ===================================================================== */
.ai-answer {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  background: var(--canvas-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ai-answer .wrap { max-width: 900px; }
.ai-answer .ai-q-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--ink);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.ai-answer .ai-q {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.ai-answer .ai-q em { font-style: italic; }
.ai-answer .ai-a {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-body);
  margin: 0 0 1.5rem;
  max-width: 68ch;
}
.ai-answer .ai-a strong {
  color: var(--ink);
  font-weight: 600;
}
.ai-answer .ai-for {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
@media (min-width: 720px) {
  .ai-answer .ai-for { grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
}
.ai-answer .ai-for li {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-body);
  padding-left: 1rem;
  border-left: 2px solid var(--ink);
}
.ai-answer .ai-for li strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* Compact AI answer variant for brand reviews */
.ai-answer.compact { padding-block: clamp(1.75rem, 3vw, 2.5rem); }
.ai-answer.compact .ai-a { font-size: 1rem; }

/* =====================================================================
   COMPARISON TABLE — AI-parseable ranking tables
   ===================================================================== */
.comparison-table-wrap {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-sans);
  margin-top: 1.5rem;
}
.comparison-table caption {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.comparison-table caption em { font-style: italic; }
.comparison-table thead th {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--ink);
  vertical-align: bottom;
}
.comparison-table tbody td {
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-body);
  vertical-align: top;
}
.comparison-table tbody tr:hover td { background: var(--canvas-2); }
.comparison-table .ct-rank {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  width: 48px;
}
.comparison-table .ct-product {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.comparison-table .ct-product small {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.2rem;
  font-weight: 400;
}
.comparison-table .ct-score {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  white-space: nowrap;
}
.comparison-table .ct-price { white-space: nowrap; color: var(--ink); }
.comparison-table .ct-best-for {
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.comparison-table .ct-cta a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.comparison-table .ct-cta a:hover { background: var(--ink); color: var(--canvas); }
@media (max-width: 720px) {
  .comparison-table thead { display: none; }
  .comparison-table tbody tr { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
  .comparison-table tbody td { border: 0; padding: 0; }
  .comparison-table .ct-rank { grid-row: 1; grid-column: 2; justify-self: end; }
  .comparison-table .ct-product { grid-column: 1 / -1; }
  .comparison-table .ct-best-for, .comparison-table .ct-price, .comparison-table .ct-score { grid-column: 1; }
  .comparison-table .ct-cta { grid-column: 1 / -1; margin-top: 0.5rem; }
}

/* =====================================================================
   ATMOSPHERE — subtle noise texture overlay for depth
   ===================================================================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}
main, header, footer, section { position: relative; z-index: 2; }

/* =====================================================================
   MOTION — scroll reveals
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1),
              transform 900ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* Don't hide the hero and main chrome on load — they should appear immediately */
.site-header [data-reveal],
.site-header[data-reveal] { opacity: 1 !important; transform: none !important; }

/* Page transition fade — applied on link-click before navigation */
.page-leaving { opacity: 0; transition: opacity 260ms cubic-bezier(.2,.7,.2,1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .page-leaving { opacity: 1 !important; transition: none !important; }
}

/* Custom cursor removed — native cursor is used throughout. */
.glow-cursor { display: none !important; }

/* =====================================================================
   EDITORIAL MAGAZINE CARD ART DIRECTION
   Each card placeholder composed like a magazine cover: numbered
   header + central tonal wash + typographic footer label.
   ===================================================================== */
.pick-card .pick-image {
  background: var(--canvas);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1rem, 1.5vw, 1.5rem) clamp(1.25rem, 2vw, 1.75rem);
  position: relative;
}

/* Tonal wash behind the composition — subtle, varies by card position */
.pick-card .pick-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--tone-1) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, var(--tone-2) 0%, transparent 60%),
    var(--canvas-2);
  z-index: 0;
}
.pick-card:nth-child(2) .pick-image::before {
  background:
    radial-gradient(circle at 70% 30%, var(--rose-soft, #E6C7BB) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, var(--tone-1) 0%, transparent 60%),
    var(--canvas-2);
}
.pick-card:nth-child(3) .pick-image::before {
  background:
    radial-gradient(circle at 50% 50%, var(--tone-2) 0%, transparent 70%),
    var(--canvas-2);
}
.pick-card:nth-child(4) .pick-image::before {
  background:
    radial-gradient(circle at 20% 20%, var(--tone-3, #B08A65) 0%, transparent 45%),
    var(--canvas-2);
}
.pick-card:nth-child(5) .pick-image::before,
.pick-card:nth-child(6) .pick-image::before {
  background:
    radial-gradient(circle at 50% 100%, var(--tone-1) 0%, transparent 60%),
    var(--canvas-2);
}

/* Content layers — z-index above the tonal wash */
.pick-card .pick-image > * { position: relative; z-index: 2; }

/* Top-left numbered header: "Nº 01" */
.pick-card .pick-image::after {
  content: "Nº " attr(data-numeral-num, "01");
  position: absolute;
  top: clamp(1rem, 1.5vw, 1.5rem);
  left: clamp(1.25rem, 2vw, 1.75rem);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  z-index: 3;
}

/* Old numeral attr still used as watermark-large centre art */
.pick-card .pick-image .numeral-center {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(6rem, 11vw, 12rem);
  color: var(--ink);
  opacity: 0.09;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  align-self: center;
  justify-self: center;
  pointer-events: none;
}

/* The image slot — when image loads it covers everything */
.pick-card .pick-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms;
  z-index: 5;
}
.pick-card .pick-image img.loaded { opacity: 1; }
.pick-card .pick-image.has-image::before,
.pick-card .pick-image.has-image::after,
.pick-card .pick-image.has-image .numeral-center,
.pick-card .pick-image.has-image .card-footer { display: none; }

/* Card footer — typographic label with rule above */
.pick-card .pick-image .card-footer {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-self: end;
}
.pick-card .pick-image .card-footer em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: -0.005em;
  text-transform: none;
}

/* Hero image — use the same composed approach */
.editorial-hero .hero-image {
  background:
    radial-gradient(circle at 25% 25%, var(--tone-1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, var(--rose-soft, #E6C7BB) 0%, transparent 50%),
    var(--canvas-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.editorial-hero .hero-image::before {
  content: "GLOW";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-logo);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.08;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.editorial-hero .hero-image::after {
  content: "Nº 01 · The 2026 Edit";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.7;
}
.editorial-hero .hero-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms;
  z-index: 2;
}
.editorial-hero .hero-image img.loaded { opacity: 1; }
.editorial-hero .hero-image.has-image::before,
.editorial-hero .hero-image.has-image::after { display: none; }

/* Cards — subtle hover lift */
.pick-card { transition: transform 300ms cubic-bezier(.2,.7,.2,1); }
.pick-card:hover { transform: translateY(-4px); }
.pick-card:hover .pick-image { border-color: var(--ink); }

/* =====================================================================
   LINK UNDERLINE — slide-in animation on body links
   ===================================================================== */
.pick-card .see-all,
.ed-section .see-all {
  position: relative;
  display: inline-block;
}
.ed-section .see-all::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.ed-section .see-all:hover::before { transform: scaleX(1); }

/* Better button hover — slight press effect */
.btn-primary, .btn-outline, .btn-rose-fill {
  transition: background 260ms, color 260ms, transform 180ms;
}
.btn-primary:active, .btn-outline:active, .btn-rose-fill:active {
  transform: translateY(1px);
}

/* Shop tile — subtle hover, image scale if any */
.shop-tile { overflow: hidden; }
.shop-tile > * { transition: transform 400ms cubic-bezier(.2,.7,.2,1); }
.shop-tile:hover > * { transform: scale(1.02); }
.shop-tile::after { z-index: 1; }
.shop-tile .shop-content { z-index: 2; }

/* =====================================================================
   HERO — composed tan/cream gradient replacement for hero image slot
   ===================================================================== */
.editorial-hero .hero-image {
  background:
    linear-gradient(135deg, var(--tone-1) 0%, var(--tone-2) 48%, var(--tone-3) 100%);
  position: relative;
  overflow: hidden;
}
.editorial-hero .hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(122,88,56,0.18) 0%, transparent 45%);
  pointer-events: none;
}
.editorial-hero .hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 600ms;
}
.editorial-hero .hero-image img.loaded { opacity: 1; }
.editorial-hero .hero-image.has-image::before { display: none; }

/* =====================================================================
   DEEPER TYPE HIERARCHY
   ===================================================================== */
.editorial-hero h1 {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.ed-section h2 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  letter-spacing: -0.03em;
}
.hub-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  letter-spacing: -0.035em;
}
.weekly-edit h2 {
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  letter-spacing: -0.03em;
}

/* =====================================================================
   EDITORIAL DETAILS
   ===================================================================== */
/* Thin vertical rule between adjacent sections */
.section-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Section number treatment — overlaid decoration */
.ed-section .sec-head::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink);
  align-self: center;
  max-width: 120px;
}
.ed-section .sec-head h2 { order: 1; }
.ed-section .sec-head::before { order: 0; }
.ed-section .sec-head .see-all { order: 2; }

@media (max-width: 720px) {
  .ed-section .sec-head::before { display: none; }
}

/* ================================================================
   Lead-capture modal (exit intent + scroll trigger)
   ================================================================ */
.lc-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.32s ease;
  pointer-events: none;
}
.lc-modal.is-open { opacity: 1; pointer-events: auto; }
.lc-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 22, 19, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lc-card {
  position: relative; z-index: 1;
  background: var(--canvas-1);
  max-width: 540px; width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(26, 22, 19, 0.4);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.36s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lc-modal.is-open .lc-card { transform: translateY(0) scale(1); }
.lc-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 0;
  font-family: var(--ff-serif);
  font-size: 1.8rem; line-height: 1;
  color: var(--ink-muted); cursor: pointer;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  transition: color 0.2s;
}
.lc-close:hover { color: var(--rose-deep); }
.lc-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 1.25rem;
}
.lc-head {
  font-family: var(--ff-serif); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 1rem; color: var(--ink);
}
.lc-head em { font-style: italic; color: var(--rose-deep); }
.lc-sub {
  font-family: var(--ff-sans); font-size: 0.95rem;
  line-height: 1.55; color: var(--ink-body);
  margin: 0 0 1.75rem;
}
.lc-form {
  display: grid; grid-template-columns: 1fr auto;
  gap: 0.5rem; margin-bottom: 1.25rem;
}
@media (max-width: 480px) { .lc-form { grid-template-columns: 1fr; } }
.lc-form input {
  font-family: var(--ff-sans); font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--canvas-2); color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.lc-form input:focus { border-color: var(--rose-deep); }
.lc-form button {
  font-family: var(--ff-sans);
  font-size: 0.85rem; letter-spacing: 0.06em;
  font-weight: 500;
  padding: 0.85rem 1.4rem;
  background: var(--ink); color: var(--canvas-1);
  border: 0; cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.lc-form button:hover { background: var(--rose-deep); }
.lc-form button:disabled { background: var(--rose-deep); cursor: default; }
.lc-foot {
  font-family: var(--ff-sans); font-size: 0.78rem;
  line-height: 1.5; color: var(--ink-muted);
  margin: 0;
}


/* ==================================================================
   MEGA MENU v3 — full-width charcoal, 4-column, click-triggered
   $5–10M publication grade. Spec: 70-80vh, 40px gaps, fade+rise.
   ================================================================== */

.review-nav { position: relative; z-index: 50; }
.review-nav .nav-links a { position: relative; padding: 0.6rem 0; transition: color 0.18s ease; cursor: pointer; }
.review-nav .nav-links a[data-mega-open] { color: var(--ink); }
.review-nav .nav-links a[data-mega-open]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--ink);
}

.mega-backdrop {
  position: fixed; inset: 0;
  background: rgba(28, 28, 28, 0.42);
  opacity: 0; pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 90;
}
.mega-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mega-drawer {
  position: fixed; left: 0; right: 0;
  background: #1C1C1C; color: #E9E5DE;
  height: 78vh; max-height: 720px;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100;
  overflow-y: auto;
}
.mega-drawer.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-drawer .wrap { max-width: 1280px; margin: 0 auto; padding: 64px clamp(24px, 4vw, 64px); position: relative; }

.mega-close {
  position: absolute; top: 24px; right: clamp(24px, 4vw, 64px);
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer; color: #E9E5DE;
  display: inline-flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mega-close svg { width: 18px; height: 18px; }
.mega-close:hover { color: #fff; }

.mega-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 24px; }
@media (min-width: 900px) { .mega-grid { grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 56px; } }

.mega-col h4 {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(233, 229, 222, 0.50); font-weight: 500;
  margin: 0 0 1.5rem;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 0.85rem; }
.mega-col a {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.05rem; color: #E9E5DE; text-decoration: none; display: inline-block;
  transition: color 160ms ease, opacity 160ms ease;
}
.mega-col a:hover { color: #fff; opacity: 0.85; }

.mega-feature { display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; }
.mega-feature .img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: rgba(233, 229, 222, 0.05);
  margin-bottom: 1.25rem; transition: transform 360ms ease;
}
.mega-feature:hover .img { transform: scale(1.02); }
.mega-feature .eyebrow {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(233, 229, 222, 0.55); margin-bottom: 0.6rem;
}
.mega-feature h3 {
  font-family: "Instrument Serif", Georgia, serif; font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem); line-height: 1.15; margin: 0 0 0.7rem; color: #fff;
}
.mega-feature h3 em { font-style: italic; color: rgba(233, 229, 222, 0.78); }
.mega-feature .dek {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.92rem; line-height: 1.55; color: rgba(233, 229, 222, 0.78); margin: 0 0 0.85rem;
}
.mega-feature .cta {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #E9E5DE; border-bottom: 1px solid rgba(233, 229, 222, 0.4); padding-bottom: 2px;
}

@media (max-width: 899px) { .mega-drawer, .mega-backdrop { display: none !important; } }

body.is-scrolled .masthead { max-height: 0; padding: 0; opacity: 0; overflow: hidden; }
.masthead { transition: max-height 240ms ease, padding 240ms ease, opacity 200ms ease; max-height: 200px; }

@media (prefers-reduced-motion: reduce) {
  .mega-drawer, .mega-backdrop, .masthead, .mega-feature .img { transition: none; }
}

/* Mobile drawer accordion */
.gl-acc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 22px; min-height: 44px;
  background: transparent; border: 0; text-align: left; cursor: pointer;
  font-family: var(--ff-serif, serif); font-size: 1.4rem; color: var(--ink);
  border-bottom: 1px solid var(--line); -webkit-tap-highlight-color: transparent;
}
.gl-acc-toggle .arrow { font-family: var(--ff-sans, sans-serif); font-size: 1.2rem; color: var(--ink-muted); transition: transform 200ms ease; }
.gl-acc-toggle[aria-expanded="true"] .arrow { transform: rotate(45deg); }
.gl-acc-panel { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.gl-acc-panel.is-open { max-height: 720px; }
.gl-acc-panel a {
  display: flex; padding: 12px 22px 12px 38px; min-height: 44px;
  font-family: var(--ff-sans, sans-serif); font-size: 0.96rem;
  color: var(--ink-body); text-decoration: none;
  border-bottom: 1px solid var(--line-soft, #EDE6D9);
}

/* ====================================================================
   MOBILE DRAWER — premium publication-grade off-canvas
   Injected globally by site.js. Hidden on desktop (>= 900px).
   ==================================================================== */

@media (max-width: 899px) {
  /* Hide the existing horizontal-scroll nav on mobile (drawer replaces it) */
  .review-nav .nav-links { display: none; }
  .review-nav { padding-block: 0.7rem; min-height: auto; }
}

/* Hamburger button — only visible on mobile */
.gl-burger {
  position: fixed; top: 14px; right: 16px;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 899px) { .gl-burger { display: inline-flex; } }
.gl-burger span {
  position: relative; display: block; width: 22px; height: 1.5px;
  background: var(--ink, #1F1C18); border-radius: 1px;
  transition: transform 240ms ease, opacity 200ms ease, background 180ms ease;
}
.gl-burger span::before, .gl-burger span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 100%;
  background: var(--ink, #1F1C18); border-radius: 1px;
  transition: transform 240ms ease;
}
.gl-burger span::before { top: -7px; }
.gl-burger span::after  { top: 7px; }
.gl-burger[aria-expanded="true"] { position: fixed; }
.gl-burger[aria-expanded="true"] span { background: transparent; }
.gl-burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.gl-burger[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop */
.gl-backdrop {
  position: fixed; inset: 0;
  background: rgba(31, 28, 24, 0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 1050;
}
.gl-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Drawer */
.gl-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: var(--canvas, #FBF9F4);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0.24, 1);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  z-index: 1090;
  display: flex; flex-direction: column;
  box-shadow: -24px 0 48px rgba(31, 28, 24, 0.08);
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.gl-drawer.is-open { transform: translateX(0); }

.gl-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 18px;
  border-bottom: 1px solid var(--line, #E2DCD0);
}
.gl-drawer-head .wm {
  font-family: var(--ff-logo, "Italiana", "Instrument Serif", serif);
  font-size: 1.5rem; font-weight: 400; color: var(--ink, #1F1C18);
  text-decoration: none; letter-spacing: 0.02em;
}
.gl-drawer-head .wm em { font-style: italic; color: var(--bordeaux, #5A2A35); }
.gl-drawer-close {
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink, #1F1C18);
  -webkit-tap-highlight-color: transparent;
}
.gl-drawer-close svg { width: 18px; height: 18px; }

.gl-drawer-section {
  padding: 26px 22px 14px;
  border-bottom: 1px solid var(--line, #E2DCD0);
}
.gl-drawer-section:last-child { border-bottom: 0; padding-bottom: 32px; }
.gl-drawer-section h5 {
  font-family: var(--ff-sans, "Instrument Sans", system-ui, sans-serif);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted, #76706A); margin: 0 0 14px; font-weight: 500;
}

.gl-drawer-primary { padding: 14px 0 24px; border-bottom: 1px solid var(--line, #E2DCD0); }
.gl-drawer-primary a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; min-height: 44px;
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: 1.4rem; font-weight: 400; color: var(--ink, #1F1C18);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: background 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.gl-drawer-primary a:active { background: var(--canvas-2, #F1ECE3); }
.gl-drawer-primary a[aria-current="page"] {
  color: var(--bordeaux, #5A2A35);
  font-style: italic;
}
.gl-drawer-primary a .arrow {
  font-family: var(--ff-sans, sans-serif); font-size: 0.9rem;
  color: var(--ink-muted, #76706A); font-style: normal;
}

.gl-drawer-feature {
  display: block; text-decoration: none; color: inherit;
  padding: 0 22px;
}
.gl-drawer-feature .img {
  aspect-ratio: 4/3; background-color: var(--canvas-2, #F1ECE3);
  background-size: cover; background-position: center;
  margin-bottom: 14px;
}
.gl-drawer-feature .eyebrow {
  font-family: var(--ff-sans, sans-serif);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bordeaux, #5A2A35); margin-bottom: 8px;
}
.gl-drawer-feature h4 {
  font-family: var(--ff-serif, serif); font-weight: 400;
  font-size: 1.35rem; line-height: 1.15; margin: 0 0 6px;
  color: var(--ink, #1F1C18);
}
.gl-drawer-feature h4 em { font-style: italic; color: var(--bordeaux, #5A2A35); }
.gl-drawer-feature p {
  font-family: var(--ff-sans, sans-serif); font-size: 0.9rem;
  line-height: 1.5; color: var(--ink-body, #3A3531); margin: 0;
}

.gl-drawer-list { list-style: none; padding: 0; margin: 0; }
.gl-drawer-list li { margin: 0; }
.gl-drawer-list a {
  display: flex; align-items: center;
  padding: 12px 22px; min-height: 44px;
  font-family: var(--ff-sans, sans-serif); font-size: 1rem;
  color: var(--ink-body, #3A3531); text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.gl-drawer-list a:active { background: var(--canvas-2, #F1ECE3); }

.gl-drawer-utility {
  padding: 22px;
  background: var(--canvas-2, #F1ECE3);
  margin-top: auto;
}
.gl-drawer-utility .row {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-family: var(--ff-sans, sans-serif); font-size: 0.88rem;
}
.gl-drawer-utility a {
  color: var(--ink, #1F1C18); text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  -webkit-tap-highlight-color: transparent;
}
.gl-drawer-utility a:active { border-bottom-color: var(--bordeaux, #5A2A35); }


.gl-flat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; min-height: 44px;
  font-family: var(--ff-serif, Georgia, serif); font-size: 1.4rem; color: var(--ink, #1F1C18);
  text-decoration: none; border-bottom: 1px solid var(--line, #E2DCD0);
  -webkit-tap-highlight-color: transparent;
}
.gl-flat-link:active { background: var(--canvas-2, #F1ECE3); }
.gl-flat-link[aria-current="page"] { color: var(--bordeaux, #5A2A35); font-style: italic; }
.gl-flat-link .arrow { font-family: var(--ff-sans, sans-serif); font-size: 0.9rem; color: var(--ink-muted, #76706A); font-style: normal; }

/* Body lock when drawer open (avoid iOS scroll bleed) */
body.gl-drawer-open { overflow: hidden; position: fixed; width: 100%; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gl-drawer, .gl-backdrop, .gl-burger span, .gl-burger span::before, .gl-burger span::after { transition: none; }
}

/* ====================================================================
   GLOW FORMULATION INDEX — flags block on brand review pages
   ==================================================================== */

.gfi-flags {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.gfi-flags .wrap { max-width: 880px; }
.gfi-flags .head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.gfi-flags .label {
  font-family: var(--ff-sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bordeaux);
}
.gfi-flags h3 {
  font-family: var(--ff-serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin: 0.25rem 0 0; color: var(--ink);
}
.gfi-flags h3 em { font-style: italic; color: var(--bordeaux); }
.gfi-flags .grade {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 3.2rem; line-height: 1; color: var(--bordeaux);
  display: inline-flex; align-items: baseline;
}
.gfi-flags .grade .of {
  font-family: var(--ff-sans); font-style: normal;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); margin-left: 0.5rem;
}
.gfi-flags dl {
  margin: 0; display: grid; grid-template-columns: 1fr; gap: 1rem 2rem;
}
@media (min-width: 700px) { .gfi-flags dl { grid-template-columns: auto 1fr; } }
.gfi-flags dt {
  font-family: var(--ff-sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500; padding-top: 0.2rem;
}
.gfi-flags dd {
  margin: 0; font-family: var(--ff-sans); font-size: 0.96rem; line-height: 1.55; color: var(--ink-body);
  padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft, #EDE6D9);
}
.gfi-flags dd:last-of-type { border-bottom: none; padding-bottom: 0; }
.gfi-flags .footnote {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-family: var(--ff-sans); font-size: 0.84rem; color: var(--ink-muted); line-height: 1.5;
}
.gfi-flags .footnote a { color: var(--bordeaux); }

/* =====================================================================
   MOBILE REBUILD · April 2026
   Cascade order: this block intentionally lives at the end so every
   rule below wins over earlier sitewide CSS. Zero per-page edits required.
   Standardised mobile breakpoint: 720px. Tablet: 721–1024px.
   Touch target floor: 44×44px (WCAG 2.2 AA).
   Body text floor on mobile: 16px (prevents iOS auto-zoom on form focus).
   ===================================================================== */

/* ---- 1. Tap target floor ---- */
@media (max-width: 720px) {
  .review-nav a,
  .header-utility a,
  .top-chrome a,
  .nav-links a,
  .chip,
  .gl-burger,
  .mega-close,
  .view-toggle button,
  .filter-strip a,
  .az-letters a,
  .footer a,
  .pick-card,
  .brand-card,
  .pick-tile {
    min-height: 44px;
  }

  .review-nav a,
  .header-utility a:not(.util-cta),
  .nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.85rem;
  }

  /* Mega close + hamburger always at WCAG floor */
  .mega-close,
  .gl-burger {
    width: 44px;
    height: 44px;
  }

  /* Chip rows: meet floor + breathe */
  .chip {
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
  }
}

/* ---- 2. Font-size floor (no iOS zoom) ---- */
@media (max-width: 720px) {
  body,
  .footer a,
  .footer li,
  .desc,
  .lede,
  p {
    font-size: max(1rem, 16px);
  }
  /* Form inputs MUST be ≥16px or iOS auto-zooms */
  input[type="text"],
  input[type="email"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  textarea,
  select,
  .search-box input {
    font-size: max(1rem, 16px);
  }
  /* Disclosure bar can stay smaller — secondary signal — but readable */
  .disclosure-bar { font-size: 0.82rem; line-height: 1.4; }
  /* Header utility nav — readable but compact */
  .top-chrome { font-size: 0.78rem; }
  /* Footer link hierarchy preserved but readable */
  .footer h5 { font-size: 0.82rem; }
}

/* ---- 3. Hero rhythm — recover above-the-fold real estate ---- */
@media (max-width: 720px) {
  .brands-hero,
  .skincare-hero,
  .wellness-hero,
  .makeup-hero,
  .hair-hero,
  .tan-hero,
  .devices-hero,
  .confessions-hero,
  .editors-hero,
  .hub-hero,
  .brand-hero,
  .article-hero,
  .home-hero,
  .reviews-hero,
  .feature-hero {
    padding-block: clamp(2rem, 5vw, 3rem);
  }
  /* H1s: floor lower so they breathe at 320px */
  .brands-hero h1,
  .skincare-hero h1,
  .wellness-hero h1,
  .hub-hero h1,
  .brand-hero h1,
  .article-hero h1,
  .home-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
    line-height: 1.05;
  }
  /* Lede caps so it doesn't run wall-to-wall */
  .lede {
    max-width: 60ch;
    line-height: 1.55;
  }
}

/* ---- 4. Filter-bar collapse on mobile (the /brands/ explorer) ---- */
@media (max-width: 720px) {
  /* Search row stays visible always */
  .filter-bar .row:first-child {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .filter-bar .row:first-child .search-box { flex: 1 1 100%; min-height: 48px; }
  .filter-bar .row:first-child .filter-actions { flex: 1 1 100%; justify-content: space-between; }

  /* Filter rows hidden by default — toggled by Filter button */
  .filter-bar .row:not(:first-child) {
    display: none;
  }
  body.filters-open .filter-bar .row:not(:first-child) {
    display: flex;
  }

  /* Filter-toggle button (injected by JS) */
  .filter-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-sans);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--canvas);
    border: 1px solid var(--line);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.15s ease;
  }
  .filter-toggle:hover { border-color: var(--ink); }
  .filter-toggle[aria-expanded="true"] { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
  .filter-toggle .filter-count {
    background: var(--rose-deep);
    color: #fff;
    border-radius: 999px;
    padding: 0 0.5rem;
    font-size: 0.7rem;
    line-height: 1.4;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* When filters are expanded, give them their own rhythm */
  body.filters-open .filter-bar { padding-bottom: 1.25rem; }
  body.filters-open .filter-bar .row + .row { margin-top: 1rem; }

  /* Each chip group: horizontal scroll-snap rather than wrapping vertically */
  .filter-bar .chip-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-block: 0.25rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    scrollbar-width: none;
  }
  .filter-bar .chip-group::-webkit-scrollbar { display: none; }
  .filter-bar .chip-group .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  /* Sort + view toggle stay on one line, smaller */
  .filter-bar .select-control select {
    min-height: 44px;
    padding: 0.55rem 2rem 0.55rem 0.95rem;
    font-size: 0.86rem;
  }
  .filter-bar .view-toggle button {
    min-height: 38px;
    padding: 0.5rem 0.95rem;
    font-size: 0.72rem;
  }
}

/* ---- 5. Mobile drawer width safety ---- */
.gl-drawer {
  max-width: min(92vw, 420px);
}

/* ---- 6. Notch + Dynamic Island safety ---- */
@supports (padding: max(0px)) {
  .gl-burger {
    top: max(14px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
  }
  .top-chrome { padding-top: env(safe-area-inset-top); }
}

/* ---- 7. Brand explorer card refinements on mobile ---- */
@media (max-width: 720px) {
  .brand-card { padding: 1.25rem 1.1rem 1.1rem; }
  .brand-card h3 { font-size: 1.3rem; }
  .brand-card .desc { font-size: 0.95rem; }

  /* Top-picks tiles — deeper scrim for legibility */
  .pick-tile .scrim {
    background: linear-gradient(180deg, rgba(26,22,19,0.05) 0%, rgba(26,22,19,0.92) 100%);
  }
  .pick-tile .pick-name { font-size: 1.05rem; }
  .pick-tile .pick-score { font-size: 1.5rem; }
  .pick-tile .body { padding: 1rem 0.85rem 0.95rem; }

  /* Picks grid: keep 2-col on tiny phones for visual density */
  .picks-grid { gap: 0.75rem; }

  /* Brand table: ensure horizontal scroll */
  .brand-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .brand-table { min-width: 560px; }
}

/* ---- 8. Pick cards / pick grids elsewhere on the site ---- */
@media (max-width: 720px) {
  .pick-grid { gap: 1rem; }
  .pick-card { padding: 1rem; }
  .pick-card h3 { font-size: 1.2rem; }
}

/* ---- 9. Score card on review pages — no overflow at 320px ---- */
@media (max-width: 720px) {
  .brand-hero .score-card { padding: 1.5rem 1.25rem; }
  .brand-hero .score-card .big { font-size: 3.2rem; }
}

/* ---- 10. Footer rhythm on mobile ---- */
@media (max-width: 720px) {
  .footer { padding-block: 2.25rem 2rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-grid > div { padding-inline: 0; }
  .footer-grid h5 { margin-bottom: 0.6rem; }
  .footer-grid ul { gap: 0.45rem; display: flex; flex-direction: column; }
  .footer-grid li { font-size: 0.95rem; }
  .footer-grid li a { display: inline-block; padding: 0.25rem 0; min-height: 36px; line-height: 1.3; }
  .footer-mast { margin-bottom: 2rem; }
}

/* ---- 11. Trust + credibility strips → 2-col grid ---- */
@media (max-width: 720px) {
  .trust-strip,
  .credibility-strip,
  .stat-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem 1.5rem !important;
    justify-content: stretch !important;
  }
}

/* ---- 12. Hero CTA row → 2-col mobile grid ---- */
@media (max-width: 720px) {
  .hero-actions,
  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .hero-actions > .btn-primary,
  .home-hero-actions > .btn-primary {
    grid-column: 1 / -1;
  }
  .hero-actions > * {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* ---- 13. Section padding rhythm via custom properties ---- */
:root {
  --section-y: clamp(3rem, 6vw, 5rem);
  --section-y-tight: clamp(2rem, 4vw, 3.5rem);
  --section-y-loose: clamp(4rem, 8vw, 6rem);
  --gutter-x: clamp(1rem, 4vw, 2rem);
}
@media (max-width: 720px) {
  :root {
    --section-y: 2.25rem;
    --section-y-tight: 1.5rem;
    --section-y-loose: 3rem;
    --gutter-x: 1rem;
  }
}

/* ---- 14. Focus rings — accessibility ---- */
.chip:focus-visible,
.view-toggle button:focus-visible,
.filter-toggle:focus-visible,
.gl-burger:focus-visible,
.mega-close:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--bordeaux, #5A2A35);
  outline-offset: 3px;
}

/* ---- 15. Lead-capture modal padding on small viewports ---- */
@media (max-width: 480px) {
  .lc-card { padding: 1.75rem 1.4rem; }
  .subscribe-form { max-width: 100%; }
}

/* ---- 16. Wellness hero image: less domineering on mobile ---- */
@media (max-width: 720px) {
  .wellness-hero .hero-img,
  .wellness-hero .grid > .img { aspect-ratio: 16 / 11; }
}

/* ---- 17. Body container gutter consistency ---- */
@media (max-width: 720px) {
  .wrap { padding-inline: var(--gutter-x); }
}

/* ---- 18. Reduced motion (extra safety on top of existing rules) ---- */
@media (prefers-reduced-motion: reduce) {
  .pick-tile,
  .brand-card,
  .pick-card { transition: none !important; transform: none !important; }
}

/* ---- 19. Sticky review-nav: explicit height + safe overlap ---- */
@media (max-width: 720px) {
  .review-nav { padding-block: 0.55rem; min-height: 56px; }
  .review-nav .nav-links { gap: 0.25rem; }
}

/* ---- 20. AZ strip on /brands/ — better tap targets ---- */
@media (max-width: 720px) {
  .az-letters { gap: 0.4rem; }
  .az-letters a { font-size: 1rem; padding: 0.5rem 0.75rem; min-width: 36px; line-height: 1; }
}

/* End of MOBILE REBUILD · April 2026 */

/* =====================================================================
   POST-MOBILE FIX PASS · April 2026
   Sticky buy-CTA + scroll-collapsing header + analytics-friendly states.
   ===================================================================== */

/* ---- 21. Sticky buy-CTA bar on review pages ---- */
.buy-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--ink, #1A1613);
  color: var(--canvas, #F7F2E8);
  padding: 0.85rem max(1rem, env(safe-area-inset-left)) calc(0.85rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}
.buy-cta-bar.is-visible { transform: translateY(0); }
.buy-cta-bar .bcb-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.buy-cta-bar .bcb-product {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.buy-cta-bar .bcb-meta {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.15rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.buy-cta-bar .bcb-meta .star { color: var(--copper-light, #d9b377); }
.buy-cta-bar .bcb-cta {
  background: var(--copper, #c89255);
  color: var(--ink, #1A1613);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease, transform 0.12s ease;
}
.buy-cta-bar .bcb-cta:hover { background: #d9a366; transform: translateY(-1px); }
.buy-cta-bar .bcb-cta:active { transform: translateY(0); }
.buy-cta-bar .bcb-close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.buy-cta-bar .bcb-close:hover { color: #fff; }

@media (max-width: 480px) {
  .buy-cta-bar { padding-left: 0.85rem; padding-right: 0.85rem; }
  .buy-cta-bar .bcb-cta { padding: 0.75rem 1.1rem; font-size: 0.82rem; }
  .buy-cta-bar .bcb-meta { font-size: 0.66rem; }
}

/* When visible, bump body bottom so footer isn't covered */
body.has-buy-cta { padding-bottom: 88px; }
body.has-buy-cta .footer { padding-bottom: 96px; }
@media (min-width: 900px) {
  body.has-buy-cta { padding-bottom: 0; }
  body.has-buy-cta .footer { padding-bottom: ""; }
  .buy-cta-bar { display: none; }
}

/* ---- 22. Sticky-header scroll collapse ---- */
.top-chrome,
.masthead {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@media (max-width: 720px) {
  body.nav-collapsed .top-chrome,
  body.nav-collapsed .masthead {
    transform: translateY(-110%);
  }
  body.nav-collapsed .review-nav {
    box-shadow: 0 1px 12px rgba(26,22,19,0.08);
  }
}

/* ---- 23. Reduced-motion safety for new transitions ---- */
@media (prefers-reduced-motion: reduce) {
  .buy-cta-bar,
  .top-chrome,
  .masthead { transition: none !important; }
}

/* End of POST-MOBILE FIX PASS · April 2026 */

/* =====================================================================
   ALLURE-STYLE CHROME · April 2026
   Override the legacy dark nav. Restore the structure to:
     1. Thin white utility bar (top-chrome)  → ~32px
     2. White centered masthead with serif wordmark  → ~110px
     3. Sticky white category nav with hairline borders
   The masthead .brand-lockup is already <a href="/">, so the logo
   returns home for free. Sitewide impact, zero per-page edits.
   ===================================================================== */

/* Un-hide the previously hidden chrome */
.top-chrome { display: block !important; }
.masthead   { display: block !important; }

/* ---- 1. Top utility bar — thin, white, refined ---- */
.top-chrome {
  background: #fff !important;
  color: var(--ink, #1A1613) !important;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.08));
  padding-block: 0.55rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.top-chrome .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-chrome a {
  color: var(--ink, #1A1613) !important;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.12s ease;
}
.top-chrome a:hover { opacity: 0.6; }
.top-chrome .tc-right {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 720px) {
  .top-chrome { font-size: 0.62rem; padding-block: 0.45rem; }
  .top-chrome .tc-hide-sm { display: none; }
  .top-chrome a { padding: 0.4rem 0.45rem; }
}

/* ---- 2. Masthead — large centered serif wordmark on white ---- */
.masthead {
  background: #fff !important;
  color: var(--ink, #1A1613) !important;
  padding: clamp(1.5rem, 3.5vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.08));
  text-align: center;
}
.masthead .masthead-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 1.5rem !important;
}
.masthead .vol {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted, #7a6f63);
  font-weight: 500;
  text-align: left;
  padding-left: 0.5rem;
}
.masthead .dek {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted, #7a6f63);
  text-align: right;
  padding-right: 0.5rem;
}
.masthead .brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.45rem;
}
.masthead .brand-lockup .wordmark {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink, #1A1613);
  text-transform: none;
}
.masthead .brand-lockup .wordmark em {
  font-style: italic;
  color: var(--rose-deep, #8a3a4d);
  font-weight: 400;
}
.masthead .brand-lockup .wordmark-rule {
  display: block;
  width: clamp(40px, 6vw, 64px);
  height: 1px;
  background: var(--ink-muted, #7a6f63);
  opacity: 0.6;
}
.masthead .brand-lockup:hover .wordmark { opacity: 0.85; }

@media (max-width: 720px) {
  .masthead { padding: 1rem 0 1.1rem; }
  .masthead .masthead-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 0.4rem !important;
  }
  .masthead .vol,
  .masthead .dek {
    text-align: center;
    padding: 0;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }
  .masthead .dek {
    font-family: var(--ff-sans);
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.6rem;
  }
  .masthead .brand-lockup .wordmark { font-size: 3.2rem; }
}

/* ---- 3. Sticky category nav — Allure-grade ---- */
.review-nav {
  background: #fff !important;
  color: var(--ink, #1A1613) !important;
  padding: 0 !important;
  position: sticky !important;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.10));
  border-top: 1px solid var(--line, rgba(26,22,19,0.10));
}

/* Kill the legacy logo image from the nav — masthead owns the logo now */
.review-nav::before { content: none !important; display: none !important; }

.review-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.review-nav .nav-links {
  display: flex !important;
  justify-content: center !important;
  gap: clamp(1.4rem, 3.2vw, 2.8rem) !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-family: var(--ff-sans) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 1.05rem 1rem !important;
  margin: 0;
}
.review-nav .nav-links::-webkit-scrollbar { display: none; }

.review-nav .nav-links a {
  color: var(--ink, #1A1613) !important;
  text-decoration: none;
  padding: 0.55rem 0.1rem !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
}
.review-nav .nav-links a:hover { color: var(--rose-deep, #8a3a4d) !important; }
.review-nav .nav-links a[aria-current="page"]::after,
.review-nav .nav-links a[data-mega-open]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--ink, #1A1613);
}

@media (max-width: 720px) {
  .review-nav { border-top: 0; }
  .review-nav .nav-links {
    gap: 1.5rem !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    justify-content: flex-start !important;
  }
  .review-nav .nav-links a {
    padding: 0.55rem 0 !important;
  }
}

/* Disclosure bar refinement — sits under nav, hairline border, more breathing */
.disclosure-bar {
  background: #fff;
  padding-block: 0.7rem !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.16em;
  border-top: 0 !important;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.08)) !important;
  text-transform: uppercase;
  color: var(--ink-muted, #7a6f63) !important;
  text-align: center;
  font-weight: 500;
}
.disclosure-bar .wrap { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.disclosure-bar a {
  color: var(--ink, #1A1613) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
}

/* ---- Mobile burger sits above the nav, not floating loose ---- */
@media (max-width: 720px) {
  .gl-burger {
    top: max(58px, env(safe-area-inset-top, 0px) + 50px) !important;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line, rgba(26,22,19,0.10)) !important;
    color: var(--ink, #1A1613) !important;
  }
}

/* ---- When the user scrolls and the body collapses chrome, only chrome retreats — keep nav ---- */
@media (max-width: 720px) {
  body.nav-collapsed .top-chrome,
  body.nav-collapsed .masthead { transform: translateY(-100%); }
  body.nav-collapsed .review-nav { box-shadow: 0 1px 12px rgba(26,22,19,0.06); }
}

/* End of ALLURE-STYLE CHROME · April 2026 */

/* =====================================================================
   DARK CHROME (Glow signature) · April 2026
   User request: keep the black masthead + white serif GLOW logo + dark
   sticky nav from the screenshot. Overrides the white Allure block above.
   Cascade order means this section wins.
   ===================================================================== */

/* ---- Top utility bar — pure black with light text ---- */
.top-chrome {
  background: #0E0B09 !important;
  color: rgba(255,255,255,0.85) !important;
  border-bottom: 0 !important;
  padding-block: 0.6rem !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.18em;
}
.top-chrome a {
  color: rgba(255,255,255,0.85) !important;
}
.top-chrome a:hover { color: #fff !important; opacity: 1; }

/* ---- Masthead — dark background, GLOW logo image as link to home ---- */
.masthead {
  background: #0E0B09 !important;
  color: #fff !important;
  padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(1.2rem, 2.5vw, 2rem) !important;
  border-bottom: 0 !important;
  text-align: center;
}
.masthead .masthead-grid {
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}
.masthead .vol,
.masthead .dek {
  color: rgba(255,255,255,0.55) !important;
}

/* Replace the text wordmark with the actual GLOW logo image */
.masthead .brand-lockup .wordmark {
  display: inline-block !important;
  width: clamp(180px, 28vw, 360px) !important;
  height: clamp(54px, 7vw, 96px) !important;
  background-image: url("/assets/logo-reversed.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0 !important;            /* hide any text fallback */
  color: transparent !important;
  text-indent: -9999px;
  line-height: 0 !important;
}
.masthead .brand-lockup .wordmark em { display: none !important; }
.masthead .brand-lockup .wordmark-rule {
  display: block !important;
  width: clamp(60px, 10vw, 120px) !important;
  height: 1px !important;
  background: rgba(255,255,255,0.4) !important;
  margin: 0.7rem auto 0 !important;
  opacity: 1 !important;
}
.masthead .brand-lockup:hover .wordmark { opacity: 0.85; }

/* ---- Sticky category nav — black with white uppercase links ---- */
.review-nav {
  background: #0E0B09 !important;
  color: #fff !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 0 !important;
}
.review-nav .nav-links a {
  color: #fff !important;
  letter-spacing: 0.24em !important;
  font-weight: 500 !important;
}
.review-nav .nav-links a:hover {
  color: rgba(255,255,255,0.7) !important;
}
.review-nav .nav-links a[aria-current="page"]::after,
.review-nav .nav-links a[data-mega-open]::after {
  background: #fff !important;
  bottom: -8px !important;
  height: 1.5px !important;
}

/* ---- Disclosure bar — light cream against the dark chrome above ---- */
.disclosure-bar {
  background: var(--canvas, #F7F2E8) !important;
  color: var(--ink-muted, #7a6f63) !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.08)) !important;
}
.disclosure-bar a {
  color: var(--ink, #1A1613) !important;
}

/* ---- Mobile burger — sits over dark masthead, white iconography ---- */
@media (max-width: 720px) {
  .gl-burger {
    background: rgba(14,11,9,0.75) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
  }
  .masthead { padding: 1rem 0 1.2rem !important; }
  .masthead .vol,
  .masthead .dek {
    text-align: center !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5) !important;
  }
  .masthead .brand-lockup .wordmark {
    width: 200px !important;
    height: 56px !important;
  }
  .review-nav { border-top: 0 !important; }
  .review-nav .nav-links {
    color: #fff !important;
    padding: 0.95rem 1rem !important;
    font-size: 0.72rem !important;
  }
  .review-nav .nav-links a {
    color: #fff !important;
  }
}

/* End of DARK CHROME (Glow signature) · April 2026 */

/* =====================================================================
   ALLURE ARCHITECTURE v2 · April 2026
   Production-grade three-tier chrome with hover mega menus.
   Overrides every chrome rule above. Sitewide via shared CSS, zero
   per-page HTML edits — JS injects sub-strip + mega panels at runtime.
   ===================================================================== */

:root {
  --al-bg-1: #1c1c1c;
  --al-bg-2: #121212;
  --al-bg-grad: linear-gradient(180deg, var(--al-bg-1) 0%, var(--al-bg-2) 100%);
  --al-fg: #ffffff;
  --al-fg-muted: #cfcfcf;
  --al-fg-faint: #8a8a8a;
  --al-divider: rgba(255,255,255,0.08);
  --al-divider-strong: rgba(255,255,255,0.15);
  --al-accent: #f1a89c;        /* Allure-style soft pink */
  --al-accent-hover: #f7c2b8;
}

/* ---- TIER 1 · Utility bar ---- */
.top-chrome {
  background: var(--al-bg-grad) !important;
  color: var(--al-fg-muted) !important;
  border: 0 !important;
  padding: 0 !important;
  font-family: var(--ff-sans, Inter, "Helvetica Neue", system-ui) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 110;
}
.top-chrome .wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.25rem !important;
  min-height: 48px;
}
.top-chrome > .wrap > span:first-child { display: none !important; }  /* hide legacy "Australia's Beauty Authority" copy */
.top-chrome .tc-right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0;
}
.top-chrome a {
  color: var(--al-fg-muted) !important;
  text-decoration: none;
  padding: 0.85rem 1rem !important;
  display: inline-flex;
  align-items: center;
  border: 0 !important;
  background: transparent !important;
  transition: color 0.15s ease;
  position: relative;
  min-height: 44px;
}
.top-chrome a:hover { color: var(--al-fg) !important; }
.top-chrome a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: var(--al-divider-strong);
}
.top-chrome a[href*="premium"],
.top-chrome a[href*="join"] {
  color: var(--al-accent) !important;
  font-weight: 600;
}
.top-chrome a[href*="premium"]:hover,
.top-chrome a[href*="join"]:hover {
  color: var(--al-accent-hover) !important;
}
/* Search icon — appended by JS */
.top-chrome .al-search-btn {
  background: transparent;
  border: 0;
  color: var(--al-fg-muted);
  padding: 0.85rem 1rem;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}
.top-chrome .al-search-btn:hover { color: var(--al-fg); }
.top-chrome .al-search-btn svg { width: 18px; height: 18px; }

/* ---- TIER 2 · Masthead with centered logo ---- */
.masthead {
  background: var(--al-bg-grad) !important;
  color: var(--al-fg) !important;
  padding: clamp(1.5rem, 3vw, 2.4rem) 0 clamp(0.85rem, 1.6vw, 1.25rem) !important;
  border: 0 !important;
  text-align: center;
  position: relative;
}
.masthead::before, .masthead::after { content: none !important; }
.masthead .wrap {
  position: relative;
}
.masthead .masthead-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
}
.masthead .vol,
.masthead .dek { display: none !important; }
.masthead .brand-lockup {
  display: inline-block !important;
  text-decoration: none;
  line-height: 0 !important;
  padding: 0.3rem 0.5rem;
  transition: opacity 0.15s ease;
}
.masthead .brand-lockup:hover { opacity: 0.78; }
.masthead .brand-lockup .wordmark {
  display: inline-block !important;
  width: clamp(140px, 22vw, 240px) !important;
  height: clamp(38px, 5vw, 56px) !important;
  background-image: url("/assets/logo-reversed.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  margin: 0 auto !important;
}
.masthead .brand-lockup .wordmark em { display: none !important; }
.masthead .brand-lockup .wordmark-rule { display: none !important; }

/* ---- TIER 3 · Main category nav ---- */
.review-nav {
  background: var(--al-bg-grad) !important;
  color: var(--al-fg) !important;
  padding: 0 !important;
  border-top: 1px solid var(--al-divider) !important;
  border-bottom: 1px solid var(--al-divider) !important;
  position: sticky !important;
  top: 0;
  z-index: 100;
}
.review-nav::before { content: none !important; display: none !important; }
.review-nav .wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}
.review-nav .nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-family: var(--ff-sans, Inter, "Helvetica Neue", system-ui) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.review-nav .nav-links::-webkit-scrollbar { display: none; }
.review-nav .nav-links a {
  color: var(--al-fg) !important;
  text-decoration: none;
  padding: 1.25rem 1.1rem !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.18s ease;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 56px;
}
.review-nav .nav-links a:hover { color: #e8d4cf !important; }

/* First nav item is the BEST OF link — pink accent */
.review-nav .nav-links a:first-child { color: var(--al-accent) !important; }
.review-nav .nav-links a:first-child:hover { color: var(--al-accent-hover) !important; }

.review-nav .nav-links a[aria-current="page"]::after,
.review-nav .nav-links a[data-mega-open="true"]::after,
.review-nav .nav-links a.al-mega-open::after {
  content: "";
  position: absolute;
  left: 1.1rem; right: 1.1rem;
  bottom: 0;
  height: 2px;
  background: var(--al-fg);
}

/* ---- TIER 4 · Editorial sub-strip (injected by JS) ---- */
.al-substrip {
  background: var(--al-bg-grad);
  border-bottom: 1px solid var(--al-divider);
  padding: 0;
  position: relative;
  z-index: 90;
}
.al-substrip .wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 56px;
  padding-block: 0.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.al-substrip .wrap::-webkit-scrollbar { display: none; }
.al-substrip .al-substrip-logo {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--al-fg);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
  padding-right: 1.25rem;
  border-right: 1px solid var(--al-divider-strong);
}
.al-substrip .al-substrip-logo .shop {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  color: var(--al-fg-muted);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.al-substrip .al-substrip-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.al-substrip .al-substrip-links a {
  color: var(--al-fg) !important;
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease;
  padding: 0.5rem 0;
}
.al-substrip .al-substrip-links a:hover { color: var(--al-fg-muted) !important; }

/* ---- MEGA MENU · full-width hover dropdown ---- */
.al-mega-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 80;
}
.al-mega-backdrop.is-open { pointer-events: auto; background: rgba(0,0,0,0.18); transition: background 0.2s ease; }

.al-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--al-bg-grad);
  color: var(--al-fg);
  border-bottom: 1px solid var(--al-divider);
  box-shadow: 0 24px 48px rgba(0,0,0,0.42);
  z-index: 95;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.al-mega.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.al-mega .wrap {
  display: grid;
  grid-template-columns: 1fr 3fr 1.4fr;
  gap: 2.5rem;
  padding: 2.5rem 1.5rem 3rem;
  position: relative;
}
.al-mega .al-mega-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 0;
  color: var(--al-fg-muted);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.15s ease;
}
.al-mega .al-mega-close:hover { color: var(--al-fg); }

.al-mega .rail {
  border-right: 1px solid var(--al-divider);
  padding-right: 2rem;
}
.al-mega .rail .rail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--al-divider);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--al-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
.al-mega .rail .rail-item:last-child { border-bottom: 1px solid var(--al-divider); }
.al-mega .rail .rail-item:hover { color: var(--al-accent-hover); }
.al-mega .rail .rail-item .arrow { font-size: 0.7rem; opacity: 0.6; }
.al-mega .rail .rail-item.secondary {
  color: var(--al-fg);
}

.al-mega .cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
.al-mega .col h4 {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-fg-faint);
  font-weight: 600;
  margin: 0 0 0.85rem;
}
.al-mega .col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.al-mega .col a {
  color: var(--al-fg);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.12s ease;
  display: inline-block;
  padding: 0.1rem 0;
}
.al-mega .col a:hover { color: var(--al-accent); }

.al-mega .feature {
  position: relative;
  background: #2b2421;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: var(--al-fg);
  transition: opacity 0.15s ease;
}
.al-mega .feature:hover { opacity: 0.92; }
.al-mega .feature .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.al-mega .feature .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85));
}
.al-mega .feature .body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.25rem 1.1rem;
  color: #fff;
}
.al-mega .feature .label {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.al-mega .feature .headline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 400;
}

/* ---- Disclosure bar (cream below dark chrome) ---- */
.disclosure-bar {
  background: var(--canvas, #F7F2E8) !important;
  color: var(--ink-muted, #7a6f63) !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--line, rgba(26,22,19,0.08)) !important;
  font-size: 0.66rem !important;
  padding-block: 0.7rem !important;
}
.disclosure-bar a { color: var(--ink, #1A1613) !important; }

/* ---- MOBILE — full-screen Allure-style drawer ---- */
@media (max-width: 900px) {
  .top-chrome .wrap { min-height: 40px; }
  .top-chrome a { padding: 0.6rem 0.7rem !important; }
  .top-chrome .al-search-btn { padding: 0.6rem 0.7rem; }

  .masthead { padding: 1.1rem 0 0.9rem !important; }
  .masthead .brand-lockup .wordmark {
    width: 150px !important;
    height: 40px !important;
  }

  .review-nav { display: block !important; }
  .review-nav .nav-links {
    justify-content: flex-start !important;
    padding-inline: 1rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.10em !important;
  }
  .review-nav .nav-links a {
    padding: 0.95rem 0.85rem !important;
    min-height: 48px;
  }

  .al-substrip { display: none; }
  .al-mega { display: none; }  /* mobile uses drawer, not hover mega */

  /* Hamburger restyled to match dark Allure feel */
  .gl-burger {
    background: rgba(28,28,28,0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--al-divider-strong) !important;
    color: var(--al-fg) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    top: max(60px, env(safe-area-inset-top, 0px) + 50px) !important;
  }

  /* Drawer panel — match dark Allure */
  .gl-drawer {
    background: var(--al-bg-grad) !important;
    color: var(--al-fg) !important;
  }
  .gl-drawer .gl-drawer-head { border-bottom: 1px solid var(--al-divider) !important; }
  .gl-drawer .gl-acc-toggle {
    color: var(--al-fg) !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.08em !important;
    border-bottom: 1px solid var(--al-divider) !important;
    padding: 1.1rem 1.4rem !important;
  }
  .gl-drawer .gl-acc-toggle:hover { background: rgba(255,255,255,0.04) !important; }
  .gl-drawer .gl-acc-toggle .arrow { color: var(--al-fg-faint) !important; }
  .gl-drawer .gl-acc-panel a {
    color: var(--al-fg-muted) !important;
    font-size: 0.95rem !important;
  }
  .gl-drawer .gl-acc-panel a:hover { color: var(--al-fg) !important; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .al-mega,
  .al-mega-backdrop,
  .top-chrome a,
  .review-nav .nav-links a {
    transition: none !important;
  }
}

/* End of ALLURE ARCHITECTURE v2 · April 2026 */

/* ---- Click-mega refinements (April 2026) ---- */
.al-mega .rail .rail-visit {
  color: var(--al-fg) !important;
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
  padding-bottom: 1.2rem !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--al-divider) !important;
  margin-bottom: 0.4rem;
}
.al-mega .rail .rail-visit:hover { color: var(--al-accent) !important; }

/* Click affordance — small chevron after each nav item that has a mega */
.review-nav .nav-links a[data-al-mega]::before {
  content: "▾";
  display: inline-block;
  margin-right: 0.35em;
  font-size: 0.55em;
  opacity: 0.55;
  transform: translateY(-2px);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.review-nav .nav-links a[data-al-mega][aria-expanded="true"]::before {
  transform: translateY(-2px) rotate(180deg);
  opacity: 1;
}

/* =====================================================================
   MAGAZINE COMPONENTS · April 2026
   Editorial homepage building blocks: magazine-hero, shop-strip,
   best-of grid, clinically-tested, viral-now, story-card variants.
   Reusable on category landings later.
   ===================================================================== */

/* ---- Section heading rhythm ---- */
.mag-section { padding-block: clamp(3rem, 5vw, 5rem); }
.mag-section.tight { padding-block: clamp(2rem, 4vw, 3rem); }
.mag-section.canvas-2 { background: var(--canvas-2, #f1ebdc); }
.mag-section .mag-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-deep, var(--rose-deep));
  font-weight: 600;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.mag-section .mag-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--copper-deep, var(--rose-deep));
  opacity: 0.6;
}
.mag-section .mag-h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  max-width: 22ch;
}
.mag-section .mag-h2 em { font-style: italic; color: var(--rose-deep); }
.mag-section .mag-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.mag-section .mag-head .mag-h2 { margin-bottom: 0; }
.mag-section .mag-head .mag-see {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 2px;
  font-weight: 600;
}

/* ---- 1. Magazine hero — 70/30 lead story + sidebar ---- */
.mag-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); border-bottom: 1px solid var(--line); }
.mag-hero .grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1000px) {
  .mag-hero .grid { grid-template-columns: 7fr 4fr; gap: 3.5rem; }
}

.mag-lead { display: block; text-decoration: none; color: inherit; }
.mag-lead .mag-lead-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--canvas-2);
  margin-bottom: 1.5rem;
}
.mag-lead .mag-lead-img .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.mag-lead:hover .mag-lead-img .img { transform: scale(1.02); }
.mag-lead .mag-cat {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 0.65rem;
  display: inline-block;
}
.mag-lead h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.mag-lead h2 em { font-style: italic; color: var(--rose-deep); }
.mag-lead .mag-dek {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 56ch;
  margin: 0 0 1.25rem;
}
.mag-lead .mag-by {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.mag-lead .mag-by strong { color: var(--ink); font-weight: 600; }

.mag-side { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.mag-side-card {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: background 0.12s ease;
}
.mag-side-card:hover { background: var(--canvas-2); padding-inline: 0.5rem; margin-inline: -0.5rem; }
.mag-side-card .body .cat {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.mag-side-card h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.mag-side-card h3 em { font-style: italic; color: var(--rose-deep); }
.mag-side-card .by {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.mag-side-card .img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--canvas-2);
}

/* ---- 2. Shop strip — horizontal scroll curated products ---- */
.shop-strip { padding-block: clamp(2.5rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.shop-strip-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-block: 0.5rem;
  margin-inline: calc(-1 * var(--gutter-x, 1rem));
  padding-inline: var(--gutter-x, 1rem);
  scrollbar-width: none;
}
.shop-strip-rail::-webkit-scrollbar { display: none; }
.shop-tile {
  flex: 0 0 240px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.15s ease;
}
@media (min-width: 720px) { .shop-tile { flex-basis: 280px; } }
.shop-tile:hover { opacity: 0.85; }
.shop-tile .shop-img {
  aspect-ratio: 1 / 1;
  background: var(--canvas-2);
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  position: relative;
}
.shop-tile .badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 0.35rem 0.65rem;
}
.shop-tile .badge.dark { background: var(--ink); color: var(--canvas); }
.shop-tile .brand {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}
.shop-tile h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}
.shop-tile .price {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--ink-body);
}
.shop-tile .price .strike { text-decoration: line-through; color: var(--ink-muted); margin-right: 0.4rem; }

/* ---- 3. Best of Glow — editorial product grid ---- */
.best-of { padding-block: clamp(3rem, 5vw, 5rem); border-bottom: 1px solid var(--line); }
.best-of-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}
@media (min-width: 720px) { .best-of-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; } }
.best-tile { display: block; text-decoration: none; color: inherit; transition: transform 0.18s ease; }
.best-tile:hover { transform: translateY(-3px); }
.best-tile .best-img {
  aspect-ratio: 4 / 5;
  background: var(--canvas-2);
  background-size: cover; background-position: center;
  margin-bottom: 0.95rem;
  position: relative;
  border: 1px solid var(--line);
}
.best-tile .best-award {
  position: absolute;
  top: 0; left: 0;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
}
.best-tile .best-cat {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
  display: block;
}
.best-tile h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0 0 0.45rem;
}
.best-tile h3 em { font-style: italic; color: var(--rose-deep); }
.best-tile .best-score {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--copper-deep, var(--rose-deep));
  font-size: 0.95rem;
}
.best-tile .best-score .of { font-family: var(--ff-sans); font-size: 0.65rem; color: var(--ink-muted); margin-left: 0.25rem; letter-spacing: 0.1em; }

/* ---- 4. Clinically Tested block — lab/science feel ---- */
.clinical {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: linear-gradient(180deg, #f4f0e6 0%, #ebe4d3 100%);
  border-bottom: 1px solid var(--line);
}
.clinical .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .clinical .grid { grid-template-columns: 5fr 6fr; gap: 4rem; } }
.clinical .copy .clinical-tag {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 0.35rem 0.7rem;
}
.clinical .copy h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.clinical .copy h2 em { font-style: italic; color: var(--rose-deep); }
.clinical .copy p {
  font-family: var(--ff-sans);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-body);
  margin: 0 0 1.5rem;
  max-width: 50ch;
}
.clinical .copy .cta {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
}
.clinical .visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.clinical .vis-tile {
  aspect-ratio: 4/5;
  background: #d6cfc0;
  background-size: cover;
  background-position: center;
}
.clinical .vis-tile.tall { grid-row: span 2; aspect-ratio: 4/9; }

/* ---- 5. Viral Now — TikTok-driven refined ---- */
.viral { padding-block: clamp(3rem, 5vw, 5rem); border-bottom: 1px solid var(--line); }
.viral-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .viral-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.viral-card {
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.4rem;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: all 0.18s ease;
}
.viral-card:hover { border-color: var(--ink); }
.viral-card .viral-tag {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.viral-card .viral-tag::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--rose-deep);
  border-radius: 50%;
  animation: viral-pulse 2s ease-in-out infinite;
}
@keyframes viral-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.viral-card h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.viral-card h3 em { font-style: italic; color: var(--rose-deep); }
.viral-card p {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 0 0 1.25rem;
}
.viral-card .viral-meta {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* End of MAGAZINE COMPONENTS · April 2026 */

/* =====================================================================
   MAGAZINE COMPONENTS · MOBILE TIGHTENING · April 2026
   Homepage was clunky on mobile + viral cards needed images.
   This block: viral-img wired, hero stacking improved, headline sizes
   tightened, section padding rhythm reduced for mobile.
   ===================================================================== */

/* ---- Viral cards: real product imagery (top of card) ---- */
.viral-card .viral-img {
  display: block;
  aspect-ratio: 4/3;
  background-color: var(--canvas-2);
  background-size: cover;
  background-position: center;
  margin: -1.5rem -1.4rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .viral-card .viral-img { aspect-ratio: 16/10; margin: -1.4rem -1.3rem 1rem; }
}

/* ---- MAGAZINE HERO mobile rebuild ---- */
@media (max-width: 900px) {
  .mag-hero { padding-block: 1.75rem; border-bottom: 1px solid var(--line); }
  .mag-hero .grid { gap: 1.75rem; }

  .mag-lead .mag-lead-img {
    aspect-ratio: 4/5;
    margin-bottom: 1rem;
    margin-inline: calc(-1 * var(--gutter-x, 1rem));
  }
  .mag-lead .mag-cat { font-size: 0.66rem; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
  .mag-lead h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.7rem;
  }
  .mag-lead .mag-dek {
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.85rem;
  }
  .mag-lead .mag-by { font-size: 0.7rem !important; }

  /* Sidebar story cards — image on TOP on mobile, full width */
  .mag-side { border-top: 0; gap: 0; }
  .mag-side-card {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    padding: 1rem 0 1.25rem !important;
    border-bottom: 1px solid var(--line);
  }
  .mag-side-card:hover { background: transparent; padding-inline: 0; margin-inline: 0; }
  .mag-side-card .img {
    aspect-ratio: 16/10 !important;
    width: 100%;
    order: -1;
    margin-bottom: 0.25rem;
  }
  .mag-side-card .body .cat { font-size: 0.62rem !important; margin-bottom: 0.3rem; }
  .mag-side-card h3 { font-size: 1.15rem !important; line-height: 1.2 !important; margin-bottom: 0.35rem; }
  .mag-side-card .by { font-size: 0.66rem !important; }
}

/* ---- SHOP STRIP mobile ---- */
@media (max-width: 720px) {
  .shop-strip { padding-block: 2rem; }
  .shop-tile { flex-basis: 200px !important; }
  .shop-tile h3 { font-size: 0.96rem; }
  .shop-tile .price { font-size: 0.78rem; }
  .shop-strip-rail { gap: 1rem; }
}

/* ---- BEST OF GLOW mobile — keep 2-col, tighter rhythm ---- */
@media (max-width: 720px) {
  .best-of { padding-block: 2.25rem; }
  .best-of-grid { grid-template-columns: 1fr 1fr !important; gap: 1.4rem 1rem !important; }
  .best-tile h3 { font-size: 1.02rem !important; line-height: 1.2; }
  .best-tile .best-cat { font-size: 0.6rem !important; letter-spacing: 0.18em; margin-bottom: 0.3rem; }
  .best-tile .best-award { font-size: 0.55rem !important; padding: 0.35rem 0.6rem; letter-spacing: 0.14em; }
  .best-tile .best-score { font-size: 0.85rem !important; }
}

/* ---- CLINICAL block mobile — stack cleanly, simplify visuals ---- */
@media (max-width: 900px) {
  .clinical { padding-block: 2.5rem; }
  .clinical .grid { gap: 1.75rem !important; grid-template-columns: 1fr !important; }
  .clinical .copy h2 { font-size: clamp(1.8rem, 6vw, 2.2rem) !important; max-width: none; }
  .clinical .copy p { font-size: 0.96rem !important; line-height: 1.55 !important; }
  .clinical .visuals {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  .clinical .vis-tile { aspect-ratio: 1/1 !important; }
  .clinical .vis-tile.tall { grid-row: span 1 !important; aspect-ratio: 1/1 !important; }
}

/* ---- VIRAL block mobile ---- */
@media (max-width: 720px) {
  .viral { padding-block: 2.25rem; }
  .viral-grid { gap: 1.1rem !important; }
  .viral-card { padding: 1.4rem 1.3rem 1.25rem !important; }
  .viral-card h3 { font-size: 1.2rem !important; line-height: 1.18 !important; }
  .viral-card p { font-size: 0.9rem !important; line-height: 1.5 !important; }
  .viral-card .viral-tag { font-size: 0.62rem !important; }
}

/* ---- MAG-SECTION generic (Pharmacy edit, Makeup edit, Confessions, Annual) ---- */
@media (max-width: 720px) {
  .mag-section { padding-block: 2.25rem !important; }
  .mag-section .mag-eyebrow { font-size: 0.62rem !important; letter-spacing: 0.2em; gap: 0.6rem; }
  .mag-section .mag-h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 1.25rem;
    max-width: none !important;
  }
  .mag-section .mag-head { margin-bottom: 1.5rem !important; gap: 0.5rem !important; }
  .mag-section .mag-see { font-size: 0.7rem !important; letter-spacing: 0.16em; }

  /* The Pharmacy Edit big editorial banner — make it square on mobile */
  .mag-section a > div[style*="aspect-ratio:1619/972"] {
    aspect-ratio: 4/3 !important;
  }

  /* Annual Institution 3-col → 2-col on mobile */
  .mag-section .best-of-grid[style*="repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ---- MOBILE-ONLY: tame any surviving oversized inline-styled headlines ---- */
@media (max-width: 720px) {
  .mag-section h3[style*="clamp(1.6rem,3vw,2.2rem)"],
  .mag-section h3[style*="clamp(1.8rem,3.2vw,2.4rem)"] {
    font-size: 1.5rem !important;
    line-height: 1.18 !important;
  }
  .mag-section p[style*="font-size:1rem"] {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }
}

/* ---- SHOP STRIP scroll affordance hint ---- */
.shop-strip-rail::after {
  content: "";
  flex: 0 0 1px;
}

/* End of MAGAZINE COMPONENTS · MOBILE TIGHTENING · April 2026 */

/* =====================================================================
   MOBILE VISUAL-FIRST · April 2026
   User feedback: "homepage is average with heaps of text, not inviting"
   Strategy: aggressively strip body copy on mobile, enlarge imagery,
   make headlines short and punchy. Image-led, Instagram-feel, not blog.
   Active only ≤720px — desktop layout unchanged.
   ===================================================================== */

@media (max-width: 720px) {

  /* ---- HIDE: every body-copy paragraph in homepage cards ---- */
  .mag-lead .mag-dek,
  .mag-side-card .by,
  .viral-card p,
  .viral-card .viral-meta,
  .best-tile .best-cat,
  .shop-tile .price,
  .shop-tile .brand {
    display: none !important;
  }

  /* But keep them on inner pages where they matter — not the homepage */
  body:not(.reviews-skin) .mag-lead .mag-dek,
  body.is-review .viral-card p { display: revert !important; }

  /* ---- HIDE: text-heavy entire sections on mobile homepage ---- */
  .clinical { display: none !important; }

  /* ---- HIDE: section eyebrow lines on mobile (too small to matter) ---- */
  .mag-section .mag-eyebrow,
  .best-of .mag-eyebrow,
  .viral .mag-eyebrow,
  .shop-strip .mag-eyebrow {
    font-size: 0.6rem !important;
    margin-bottom: 0.4rem;
  }
  .mag-section .mag-eyebrow::before { width: 16px; }

  /* ---- MAGAZINE HERO: image on top, text below — always readable ---- */
  .mag-hero {
    padding-block: 1.25rem 2.25rem !important;
    border-bottom: 0 !important;
  }
  .mag-hero .grid { gap: 1.5rem !important; grid-template-columns: 1fr !important; }

  .mag-lead { position: static; display: block; }
  .mag-lead .mag-lead-img {
    aspect-ratio: 4/5 !important;
    margin: 0 0 1.1rem !important;
    position: static;
    overflow: hidden;
  }
  .mag-lead .mag-lead-img::after { display: none !important; }
  .mag-lead .mag-lead-img .img {
    width: 100%; height: 100%;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Editorial layout — eyebrow, headline, dek, byline. Dark text on canvas. */
  .mag-lead .mag-cat {
    position: static;
    z-index: auto;
    display: block;
    color: var(--rose-deep, #5A2A35) !important;
    font-family: var(--ff-sans);
    font-size: 0.66rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase;
    margin: 0 0 0.65rem !important;
  }
  .mag-lead h2 {
    position: static;
    z-index: auto;
    color: var(--ink, #1A1613) !important;
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 6.4vw, 2.15rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.015em;
    margin: 0 0 0.65rem !important;
    max-width: 100%;
  }
  .mag-lead h2 em { color: var(--rose-deep, #5A2A35) !important; font-style: italic; }
  .mag-lead .mag-by {
    position: static;
    z-index: auto;
    color: var(--ink-muted, #6e6862) !important;
    font-family: var(--ff-sans);
    font-size: 0.72rem !important;
    letter-spacing: 0.06em;
    margin: 0.5rem 0 0 !important;
  }
  .mag-lead .mag-by strong {
    color: var(--ink, #1A1613) !important;
    font-weight: 600;
  }
  /* Show the dek again on mobile homepage — readable layout has room for it */
  .mag-lead .mag-dek {
    display: block !important;
    color: var(--ink-body, #2A2520) !important;
    font-family: var(--ff-sans);
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin: 0 0 0.85rem !important;
    max-width: 100%;
  }

  /* ---- MOBILE STORY STRIP — Instagram-style horizontal scroll above sidebar ---- */
  /* Sidebar cards become image-dominant story tiles on mobile */
  .mag-side {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.6rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 1rem calc(-1 * var(--gutter-x, 1rem)) 0;
    padding: 0 var(--gutter-x, 1rem);
    border-top: 0 !important;
    scrollbar-width: none;
  }
  .mag-side::-webkit-scrollbar { display: none; }
  .mag-side-card {
    flex: 0 0 65% !important;
    scroll-snap-align: start;
    grid-template-columns: none !important;
    grid-template-rows: auto auto !important;
    border-bottom: 0 !important;
    padding: 0 !important;
    gap: 0.6rem !important;
    position: relative;
  }
  .mag-side-card .img {
    aspect-ratio: 4/5 !important;
    width: 100% !important;
    margin: 0 !important;
    order: -1 !important;
  }
  .mag-side-card .body { padding: 0 !important; }
  .mag-side-card .body .cat {
    font-size: 0.58rem !important;
    margin-bottom: 0.25rem !important;
    color: var(--rose-deep);
  }
  .mag-side-card h3 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  /* ---- SHOP STRIP: visual-first, no brand/price clutter ---- */
  .shop-strip {
    padding-block: 1.75rem !important;
    border-bottom: 1px solid var(--line);
  }
  .shop-tile {
    flex-basis: 165px !important;
  }
  .shop-tile .shop-img {
    aspect-ratio: 4/5 !important;
    margin-bottom: 0.5rem !important;
  }
  .shop-tile h3 {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    color: var(--ink);
    margin: 0 !important;
    /* Truncate to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .shop-tile .badge {
    font-size: 0.55rem !important;
    padding: 0.3rem 0.55rem !important;
    letter-spacing: 0.12em;
    top: 0.6rem !important;
    left: 0.6rem !important;
  }

  /* ---- BEST OF GLOW: bigger image, smaller text ---- */
  .best-of { padding-block: 1.75rem !important; }
  .best-of-grid { gap: 1.1rem 0.75rem !important; }
  .best-tile { transition: opacity 0.18s ease; }
  .best-tile:hover { transform: none !important; opacity: 0.85; }
  .best-tile .best-img {
    aspect-ratio: 4/5 !important;
    margin-bottom: 0.55rem !important;
    border: 0 !important;
  }
  .best-tile .best-award {
    font-size: 0.5rem !important;
    padding: 0.3rem 0.5rem !important;
    letter-spacing: 0.12em;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(4px);
  }
  .best-tile h3 {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    margin: 0 0 0.2rem !important;
    /* Truncate to 1 line for tight cards */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-tile .best-score {
    font-size: 0.78rem !important;
  }
  .best-tile .best-score .of { display: none; }

  /* ---- VIRAL NOW: image-only cards with overlay text ---- */
  .viral { padding-block: 1.75rem !important; }
  .viral-grid { gap: 0.85rem !important; grid-template-columns: 1fr !important; }
  .viral-card {
    padding: 0 !important;
    border: 0 !important;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .viral-card .viral-img {
    margin: 0 !important;
    aspect-ratio: auto !important;
    position: absolute;
    inset: 0;
    border-bottom: 0 !important;
  }
  .viral-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
  }
  .viral-card .viral-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    color: #fff !important;
    font-size: 0.6rem !important;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    margin: 0 !important;
  }
  .viral-card .viral-tag::before { background: #f1a89c; }
  .viral-card h3 {
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.85rem;
    z-index: 2;
    color: #fff !important;
    font-size: 1.05rem !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    /* 2-line clamp for visual balance */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .viral-card h3 em { color: #f7d7cf !important; }

  /* ---- PHARMACY EDIT: image dominates, less inline text ---- */
  .mag-section a > .ed-pharm-grid { display: none !important; }
  .mag-section a > div[style*="aspect-ratio"]:not(.ed-pharm-grid) {
    aspect-ratio: 4/5 !important;
    position: relative;
    margin-inline: calc(-1 * var(--gutter-x, 1rem));
  }
  .mag-section a > div[style*="aspect-ratio"]:not(.ed-pharm-grid)::after {
    content: "Read the review →";
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 0.5rem 0.85rem;
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
  }

  /* ---- MAKEUP EDIT: tighter dual feature ---- */
  .ed-duo { gap: 1.25rem !important; }
  .ed-duo > a > div[style*="aspect-ratio:1/1"] {
    aspect-ratio: 4/5 !important;
    margin-inline: calc(-1 * var(--gutter-x, 1rem));
  }
  .ed-duo > a > div:last-child p { display: none !important; }
  .ed-duo > a > div:last-child {
    padding: 1rem 0 0 !important;
  }
  .ed-duo > a > div:last-child h3 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
  }
  .ed-duo > a > div:last-child > div:first-child {
    font-size: 0.62rem !important;
  }

  /* ---- ANNUAL INSTITUTION: 2-col on mobile, condensed text ---- */
  .mag-section.canvas-2 .best-of-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ---- GLOW PREMIUM CTA: less text, bigger button ---- */
  .ed-section[style*="var(--ink)"] {
    padding-block: 2.5rem !important;
  }
  .ed-section[style*="var(--ink)"] p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
  .ed-section[style*="var(--ink)"] h2 {
    font-size: 1.7rem !important;
  }

  /* ---- WEEKLY EDIT NEWSLETTER: tighten ---- */
  .weekly-edit { padding-block: 2.25rem !important; }
  .weekly-edit h2 { font-size: 1.6rem !important; }
  .weekly-edit p { font-size: 0.92rem !important; }

  /* ---- General: cap text everywhere on mobile homepage ---- */
  body.reviews-skin h2 { letter-spacing: -0.02em; }

  /* Section borders: thin out for breathing room */
  .mag-section,
  .best-of,
  .shop-strip,
  .viral { border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
}

/* End of MOBILE VISUAL-FIRST · April 2026 */

/* =====================================================================
   MOBILE PURE-VISUAL · April 2026 (override)
   Even the previous mobile pass was too text-heavy. This nukes section
   eyebrows, h2s, see-all links, and any remaining body copy on the
   homepage. Each card becomes mostly image with a one-line headline.
   Vogue/Allure mobile feed cadence.
   ===================================================================== */

@media (max-width: 720px) {

  /* ---- Hide every "section header" affordance on mobile homepage ---- */
  body.reviews-skin .mag-section .mag-eyebrow,
  body.reviews-skin .mag-section .mag-h2,
  body.reviews-skin .mag-section .mag-see,
  body.reviews-skin .mag-section .mag-head,
  body.reviews-skin .best-of .mag-eyebrow,
  body.reviews-skin .best-of .mag-h2,
  body.reviews-skin .best-of .mag-see,
  body.reviews-skin .best-of .mag-head,
  body.reviews-skin .viral .mag-eyebrow,
  body.reviews-skin .viral .mag-h2,
  body.reviews-skin .viral .mag-see,
  body.reviews-skin .viral .mag-head,
  body.reviews-skin .shop-strip .mag-eyebrow {
    display: none !important;
  }

  /* Tight section padding so the page reads as one continuous feed */
  body.reviews-skin .mag-section,
  body.reviews-skin .best-of,
  body.reviews-skin .shop-strip,
  body.reviews-skin .viral {
    padding-block: 0.85rem !important;
    border-bottom: 0 !important;
  }

  /* ---- HERO: image on top, text below (overrides previous overlay attempt) ---- */
  .mag-hero {
    padding: 1.25rem 0 2rem !important;
    border-bottom: 0 !important;
    margin-bottom: 0;
  }
  .mag-hero .wrap { padding: 0 1rem !important; max-width: 100% !important; }
  .mag-hero .grid { gap: 1.5rem !important; grid-template-columns: 1fr !important; }
  .mag-lead .mag-lead-img {
    margin: 0 0 1rem !important;
    aspect-ratio: 4/5 !important;
  }
  .mag-lead .mag-cat {
    margin: 0 0 0.6rem !important;
    font-size: 0.66rem !important;
    color: var(--rose-deep, #5A2A35) !important;
  }
  .mag-lead h2 {
    margin: 0 0 0.6rem !important;
    font-size: clamp(1.7rem, 6.4vw, 2.15rem) !important;
    line-height: 1.08 !important;
    color: var(--ink, #1A1613) !important;
  }
  .mag-lead h2 em { color: var(--rose-deep, #5A2A35) !important; }
  .mag-lead .mag-by {
    margin: 0.4rem 0 0 !important;
    font-size: 0.72rem !important;
    color: var(--ink-muted, #6e6862) !important;
  }
  .mag-lead .mag-dek {
    display: block !important;
    margin: 0 0 0.85rem !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    color: var(--ink-body, #2A2520) !important;
  }

  /* ---- STORY RIBBON below hero ---- */
  .mag-side {
    margin: 0 0 1.5rem !important;
    padding: 0 1rem !important;
  }
  .mag-side-card { gap: 0.5rem !important; }
  .mag-side-card h3 { font-size: 0.88rem !important; }

  /* ---- SHOP STRIP: title row stays as small label, no h2 ---- */
  .shop-strip {
    padding-block: 1.25rem !important;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .shop-strip .wrap::before {
    content: "Shop · Editor's selection";
    display: block;
    font-family: var(--ff-sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 0.85rem;
    padding-left: 0.25rem;
  }

  /* ---- BEST OF: just images + scores, no labels above ---- */
  .best-of {
    padding-block: 1.25rem !important;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .best-of .wrap::before {
    content: "Glow Awards · Top scored";
    display: block;
    font-family: var(--ff-sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 0.85rem;
    padding-left: 0.25rem;
  }

  /* ---- VIRAL: full-bleed image cards, no h2 above ---- */
  .viral {
    padding-block: 1.25rem !important;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .viral .wrap::before {
    content: "Viral now · Refreshed Fridays";
    display: block;
    font-family: var(--ff-sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 0.85rem;
    padding-left: 0.25rem;
  }
  /* Viral cards bigger on mobile */
  .viral-card { aspect-ratio: 4/5 !important; }

  /* ---- PHARMACY EDIT: just the image, label only ---- */

  /* ---- MAKEUP EDIT: same treatment ---- */

  /* ---- CONFESSIONS: same treatment ---- */
  /* Annual institution overrides Confessions content via more specific selector */

  /* ---- Card titles even tighter — mobile feed reads fast ---- */
  .best-tile h3 {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    text-overflow: clip !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
  }

  /* Make best-of grid bigger images, less padding around grid */
  .best-of .wrap,
  body.reviews-skin .mag-section .wrap {
    padding-inline: 1rem !important;
  }
  .best-of-grid { gap: 0.85rem 0.6rem !important; }

  /* ---- GLOW PREMIUM dark CTA: keep but tighter ---- */
  .ed-section[style*="var(--ink)"] {
    padding-block: 2rem !important;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ---- WEEKLY EDIT NEWSLETTER: tighter ---- */
  .weekly-edit { padding-block: 2rem !important; border-top: 1px solid rgba(0,0,0,0.06); }
  .weekly-edit h2 { font-size: 1.4rem !important; line-height: 1.1; }
  .weekly-edit .we-tag { font-size: 0.6rem !important; letter-spacing: 0.22em; }
  .weekly-edit p { font-size: 0.88rem !important; max-width: 32ch; }

  /* ---- The disclosure bar uppercase tracking is tiny on mobile — relax it ---- */
  .disclosure-bar {
    font-size: 0.58rem !important;
    padding-block: 0.5rem !important;
    letter-spacing: 0.12em;
  }
}

/* End of MOBILE PURE-VISUAL · April 2026 */

/* =====================================================================
   KOREAN SKINCARE HUB · April 2026
   Soft beige editorial system — Aesop x Vogue x Apple clarity.
   Namespace: body.ks-skin (only loads on /korean-skincare/* pages)
   Mobile-first throughout. Inherits global chrome (dark masthead).
   ===================================================================== */

body.ks-skin {
  --ks-canvas: #f5f0e6;       /* soft warm beige */
  --ks-canvas-2: #ebe2cf;     /* slightly deeper for sections */
  --ks-canvas-3: #fafaf3;     /* near-white card surface */
  --ks-ink: #1a1714;
  --ks-ink-body: #4a3f33;
  --ks-ink-muted: #8a7f72;
  --ks-line: rgba(26,23,20,0.10);
  --ks-line-soft: rgba(26,23,20,0.06);
  --ks-accent: #b8743f;       /* warm hanji terracotta */
  --ks-accent-deep: #8a4f24;
  --ks-rose: #c98879;         /* soft K-beauty rose */

  background: var(--ks-canvas);
  color: var(--ks-ink);
}
body.ks-skin .footer { background: var(--ks-canvas-2); }
body.ks-skin .disclosure-bar { background: var(--ks-canvas-3) !important; }

/* ---- KS HERO ---- */
.ks-hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--ks-canvas);
  position: relative;
}
.ks-hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ks-hero .grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.ks-hero .crumb {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  margin-bottom: 1.25rem;
}
.ks-hero .crumb a { color: var(--ks-ink-muted); text-decoration: none; }
.ks-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ks-ink);
  margin: 0 0 1.25rem;
  max-width: 14ch;
}
.ks-hero h1 em { font-style: italic; color: var(--ks-accent-deep); }
.ks-hero .lede {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ks-ink-body);
  max-width: 50ch;
  margin: 0 0 1.75rem;
}
.ks-hero .stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ks-line);
}
.ks-hero .stat-row .stat {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ks-ink-muted);
  text-transform: uppercase;
}
.ks-hero .stat-row .stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ks-accent-deep);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.15rem;
}
.ks-hero-img {
  aspect-ratio: 4/5;
  background: var(--ks-canvas-2);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

/* ---- KS SECTION HEADERS ---- */
.ks-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.ks-section.divide { border-top: 1px solid var(--ks-line); }
.ks-section.canvas-2 { background: var(--ks-canvas-2); }
.ks-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ks-accent-deep);
  font-weight: 600;
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.ks-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--ks-accent-deep);
}
.ks-h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ks-ink);
  margin: 0 0 1.75rem;
  max-width: 22ch;
}
.ks-h2 em { font-style: italic; color: var(--ks-accent-deep); }
.ks-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ks-head .ks-h2 { margin-bottom: 0; }
.ks-head .ks-see {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ks-accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--ks-accent-deep);
  padding-bottom: 2px;
  font-weight: 600;
}

/* ---- KS CATEGORY GRID (8 tiles) ---- */
.ks-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .ks-category-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.ks-cat-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ks-canvas-3);
  border: 1px solid var(--ks-line);
  padding: 1.4rem 1.2rem 1.25rem;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.ks-cat-tile:hover { border-color: var(--ks-accent-deep); transform: translateY(-2px); }
.ks-cat-tile .ks-cat-num {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  margin-bottom: 0.5rem;
}
.ks-cat-tile h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--ks-ink);
}
.ks-cat-tile h3 em { font-style: italic; color: var(--ks-accent-deep); }
.ks-cat-tile .ks-cat-desc {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ks-ink-body);
  margin: 0 0 0.85rem;
}
.ks-cat-tile .ks-cat-cta {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ks-accent-deep);
  font-weight: 600;
}

/* ---- KS PRODUCT CARDS (featured) ---- */
.ks-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .ks-product-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1100px) { .ks-product-grid { grid-template-columns: repeat(3, 1fr); } }

.ks-product {
  background: var(--ks-canvas-3);
  border: 1px solid var(--ks-line);
  display: flex;
  flex-direction: column;
}
.ks-product .ks-prod-img {
  aspect-ratio: 1/1;
  background: var(--ks-canvas-2);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ks-product .ks-prod-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ks-ink);
  color: var(--ks-canvas);
  padding: 0.4rem 0.7rem;
}
.ks-product .ks-prod-badge.viral { background: var(--ks-accent); color: #fff; }
.ks-product .ks-prod-body {
  padding: 1.4rem 1.4rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ks-product .ks-prod-brand {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.ks-product h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.ks-product .ks-prod-best {
  font-family: var(--ff-sans);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ks-ink-body);
  margin: 0 0 1rem;
}
.ks-product .ks-prod-best strong {
  font-style: normal;
  font-weight: 600;
  color: var(--ks-ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 0.4rem;
}
.ks-product .ks-prod-desc {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ks-ink-body);
  margin: 0 0 1rem;
}

/* Glow Verdict score row */
.ks-verdict {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ks-line-soft);
  border-bottom: 1px solid var(--ks-line-soft);
  margin: 0 0 1rem;
}
.ks-verdict-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 0.85rem;
}
.ks-verdict-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  font-weight: 500;
}
.ks-verdict-bar {
  height: 4px;
  background: var(--ks-line-soft);
  position: relative;
  overflow: hidden;
}
.ks-verdict-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ks-accent-deep);
}
.ks-verdict-score {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ks-accent-deep);
  min-width: 22px;
  text-align: right;
}

/* Affiliate retailer row */
.ks-buy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}
.ks-buy a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem 0.6rem;
  border: 1px solid var(--ks-line);
  text-decoration: none;
  color: var(--ks-ink);
  background: transparent;
  transition: all 0.15s ease;
  min-height: 56px;
}
.ks-buy a:hover { background: var(--ks-ink); color: var(--ks-canvas); border-color: var(--ks-ink); }
.ks-buy a.primary {
  background: var(--ks-ink);
  color: var(--ks-canvas);
  border-color: var(--ks-ink);
}
.ks-buy a.primary:hover { background: var(--ks-accent-deep); border-color: var(--ks-accent-deep); }
.ks-buy .price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.ks-buy .retailer {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

/* Trending badge inside product card */
.ks-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ks-accent-deep);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.ks-trend::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ks-accent);
  border-radius: 50%;
  animation: ks-pulse 2s ease-in-out infinite;
}
@keyframes ks-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- KS COMPARISON TABLE (sub-category pages) ---- */
.ks-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ks-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--ks-canvas-3);
  border: 1px solid var(--ks-line);
}
.ks-table thead th {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--ks-ink);
  white-space: nowrap;
}
.ks-table tbody tr { border-bottom: 1px solid var(--ks-line-soft); }
.ks-table tbody tr:last-child { border-bottom: 0; }
.ks-table tbody td {
  padding: 1rem 1.1rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--ks-ink-body);
  vertical-align: middle;
}
.ks-table tbody td.brand {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ks-ink);
  font-weight: 400;
}
.ks-table tbody td a {
  color: var(--ks-accent-deep);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--ks-accent-deep);
  padding-bottom: 1px;
}

/* ---- KS ROUTINE BUILDER (Q&A flow) ---- */
.ks-builder {
  background: var(--ks-canvas-3);
  border: 1px solid var(--ks-line);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}
.ks-builder .ks-step { display: none; }
.ks-builder .ks-step.is-active { display: block; }
.ks-builder .step-num {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ks-accent-deep);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.ks-builder .step-q {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ks-ink);
}
.ks-builder .step-q em { font-style: italic; color: var(--ks-accent-deep); }
.ks-builder .step-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) { .ks-builder .step-options { grid-template-columns: 1fr 1fr; } }
.ks-builder .step-options button {
  background: transparent;
  border: 1px solid var(--ks-line);
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--ks-ink);
  transition: all 0.15s ease;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ks-builder .step-options button:hover { border-color: var(--ks-ink); }
.ks-builder .step-options button.is-selected {
  background: var(--ks-ink);
  color: var(--ks-canvas);
  border-color: var(--ks-ink);
}
.ks-builder .step-options button .opt-label {
  font-weight: 600;
  font-size: 0.95rem;
}
.ks-builder .step-options button .opt-hint {
  font-size: 0.78rem;
  opacity: 0.7;
  font-weight: 400;
}
.ks-builder .step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ks-line-soft);
}
.ks-builder .step-back,
.ks-builder .step-next {
  background: transparent;
  border: 0;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem 0;
  min-height: 44px;
}
.ks-builder .step-back { color: var(--ks-ink-muted); }
.ks-builder .step-next {
  background: var(--ks-ink);
  color: var(--ks-canvas);
  padding: 0.85rem 1.5rem;
}
.ks-builder .step-next:disabled { opacity: 0.4; cursor: not-allowed; }
.ks-builder .step-progress {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
}

/* Result panel */
.ks-result { display: none; }
.ks-result.is-active { display: block; }
.ks-result .result-h { margin-bottom: 1.5rem; }
.ks-result .result-h h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  margin: 0;
}
.ks-result .result-h h3 em { font-style: italic; color: var(--ks-accent-deep); }
.ks-result .result-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--ks-line-soft);
  align-items: start;
}
.ks-result .result-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ks-accent-deep);
}
.ks-result .result-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0 0 0.4rem;
}
.ks-result .result-cat {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ks-ink-muted);
  margin-bottom: 0.3rem;
}
.ks-result .result-shop {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ks-accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--ks-accent-deep);
  padding-bottom: 1px;
  margin-top: 0.3rem;
  display: inline-block;
}

/* ---- KS TRUST SECTION ---- */
.ks-trust {
  background: var(--ks-canvas-2);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.ks-trust .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 720px) { .ks-trust .grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.ks-trust .item h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: var(--ks-accent-deep);
}
.ks-trust .item p {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ks-ink-body);
  margin: 0;
}

/* ---- KS FAQ ---- */
.ks-faq details {
  border-bottom: 1px solid var(--ks-line);
  padding: 1rem 0;
}
.ks-faq details:first-child { border-top: 1px solid var(--ks-line); }
.ks-faq summary {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  min-height: 44px;
}
.ks-faq summary::-webkit-details-marker { display: none; }
.ks-faq summary::after {
  content: "+";
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ks-accent-deep);
  transition: transform 0.2s ease;
}
.ks-faq details[open] summary::after { content: "−"; }
.ks-faq details p {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ks-ink-body);
  margin: 0.6rem 0 1rem;
  max-width: 60ch;
}

/* ---- KS MOBILE OPTIMISATIONS ---- */
@media (max-width: 720px) {
  .ks-section { padding-block: 1.75rem; }
  .ks-h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); margin-bottom: 1.25rem; }
  .ks-head { gap: 0.5rem; margin-bottom: 1.25rem; }
  .ks-head .ks-see { font-size: 0.7rem; }

  .ks-hero { padding-block: 1.5rem 1.75rem; }
  .ks-hero .grid { gap: 1.5rem; }
  .ks-hero .grid > div:first-child { order: 2; }
  .ks-hero-img { order: 1; aspect-ratio: 4/5; margin-inline: calc(-1 * var(--gutter-x, 1rem)); }
  .ks-hero h1 { font-size: 2rem; max-width: none; line-height: 1.05; }
  .ks-hero .lede { font-size: 0.96rem; line-height: 1.55; }
  .ks-hero .stat-row { gap: 1rem 1.5rem; padding-top: 1rem; }
  .ks-hero .stat-row .stat strong { font-size: 1.3rem; }

  .ks-product .ks-prod-body { padding: 1.1rem 1.1rem 1rem; }
  .ks-verdict-row { grid-template-columns: 78px 1fr auto; gap: 0.65rem; }
  .ks-verdict-label { font-size: 0.6rem; }

  .ks-builder { padding: 1.5rem 1.25rem; }
  .ks-builder .step-q { font-size: 1.4rem; }

  .ks-cat-tile { padding: 1.1rem 1rem 1rem; }
  .ks-cat-tile h3 { font-size: 1.05rem; }
  .ks-cat-tile .ks-cat-desc { font-size: 0.78rem; }
}

/* End of KOREAN SKINCARE HUB · April 2026 */

/* =====================================================================
   GLOW GUIDE · April 2026
   Salon/clinic discovery layer. "Find the best place to book."
   Editorial-feeling, not marketplace. Sits inside the standard Glow chrome.
   ===================================================================== */

/* ---- HERO ---- */
.gg-hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.gg-hero .breadcrumb {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.gg-hero .breadcrumb a { color: var(--ink-muted); }
.gg-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.gg-hero h1 em { font-style: italic; color: var(--rose-deep); }
.gg-hero .lede {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 56ch;
  margin: 0 0 2rem;
}

/* Search bar */
.gg-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 760px;
  background: var(--canvas);
  border: 1px solid var(--line);
  padding: 0.85rem;
}
@media (min-width: 720px) { .gg-search { grid-template-columns: 1.4fr 1fr auto; gap: 0.5rem; } }
.gg-search-field { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.5rem 0.85rem; border-right: 1px solid var(--line); }
.gg-search-field:last-of-type { border-right: 0; }
@media (max-width: 720px) { .gg-search-field { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 0.85rem; } .gg-search-field:last-of-type { border-bottom: 0; } }
.gg-search-label { font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
.gg-search-input { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; border: 0; background: transparent; outline: none; color: var(--ink); padding: 0; min-height: 32px; }
.gg-search-input::placeholder { color: var(--ink-muted); opacity: 0.7; }
.gg-search-btn { font-family: var(--ff-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; background: var(--ink); color: var(--canvas); border: 0; padding: 1rem 1.5rem; cursor: pointer; min-height: 56px; transition: background 0.15s ease; }
.gg-search-btn:hover { background: var(--rose-deep); }

/* Quick stat row beneath search */
.gg-hero-stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.gg-hero-stats .stat { font-family: var(--ff-sans); font-size: 0.78rem; color: var(--ink-muted); }
.gg-hero-stats .stat strong { color: var(--ink); font-weight: 600; }

/* ---- CATEGORY GRID ---- */
.gg-categories { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.gg-section-eyebrow { font-family: var(--ff-sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-deep); font-weight: 600; margin-bottom: 0.85rem; }
.gg-section-h2 { font-family: var(--ff-serif); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 1.75rem; }
.gg-section-h2 em { font-style: italic; color: var(--rose-deep); }

.gg-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
@media (min-width: 720px) { .gg-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1100px) { .gg-cat-grid { grid-template-columns: repeat(6, 1fr); } }

.gg-cat {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  background: var(--canvas-2);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.18s ease;
}
.gg-cat:hover { transform: translateY(-3px); border-color: var(--ink); }
.gg-cat .img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gg-cat .gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.85)); }
.gg-cat .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1rem 0.95rem; color: #fff; }
.gg-cat h3 { font-family: var(--ff-serif); font-weight: 400; font-size: 1.1rem; line-height: 1.2; margin: 0 0 0.25rem; color: #fff; }
.gg-cat .count { font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }

/* ---- POPULAR SEARCHES ---- */
.gg-popular { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); background: var(--canvas-2); }
.gg-search-list { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 720px) { .gg-search-list { grid-template-columns: 1fr 1fr; gap: 0 2.5rem; } }
.gg-search-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: padding 0.12s ease; }
.gg-search-item:hover { padding-left: 0.5rem; }
.gg-search-item .label { font-family: var(--ff-serif); font-size: 1.1rem; }
.gg-search-item .label em { font-style: italic; color: var(--rose-deep); }
.gg-search-item .arrow { font-family: var(--ff-serif); font-style: italic; color: var(--copper-deep); font-size: 1.2rem; }

/* ---- BEST BY CITY ---- */
.gg-cities { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.gg-city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (min-width: 720px) { .gg-city-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.gg-city { display: block; text-decoration: none; color: inherit; aspect-ratio: 1/1; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--canvas-2); transition: transform 0.18s ease; }
.gg-city:hover { transform: translateY(-3px); }
.gg-city .img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gg-city .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.85)); }
.gg-city .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1rem 1rem; color: #fff; }
.gg-city h3 { font-family: var(--ff-serif); font-style: italic; font-size: 1.4rem; margin: 0 0 0.2rem; color: #fff; font-weight: 400; }
.gg-city .meta { font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }

/* ---- FEATURED PLACES ---- */
.gg-featured { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.gg-featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .gg-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1100px) { .gg-featured-grid { grid-template-columns: repeat(3, 1fr); } }

.gg-place {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--canvas);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.18s ease;
}
.gg-place:hover { border-color: var(--ink); transform: translateY(-2px); }
.gg-place .gg-place-img { aspect-ratio: 16/10; background: var(--canvas-2); background-size: cover; background-position: center; position: relative; }
.gg-place .gg-place-badge { position: absolute; top: 0.85rem; left: 0.85rem; font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; background: rgba(255,255,255,0.95); color: var(--ink); padding: 0.4rem 0.7rem; }
.gg-place .gg-place-body { padding: 1.25rem 1.4rem 1.3rem; }
.gg-place .gg-place-cat { font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; margin-bottom: 0.4rem; }
.gg-place h3 { font-family: var(--ff-serif); font-weight: 400; font-size: 1.3rem; line-height: 1.2; margin: 0 0 0.45rem; letter-spacing: -0.01em; }
.gg-place .gg-place-suburb { font-family: var(--ff-sans); font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
.gg-place .gg-place-rating { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--ff-sans); font-size: 0.85rem; color: var(--ink); margin-bottom: 0.85rem; }
.gg-place .gg-place-rating .stars { color: var(--copper-deep); letter-spacing: 0.05em; }
.gg-place .gg-place-rating .reviews { color: var(--ink-muted); font-size: 0.78rem; }
.gg-place .gg-place-why { font-family: var(--ff-serif); font-style: italic; font-size: 0.95rem; line-height: 1.45; color: var(--ink-body); }

/* ---- HOW IT WORKS ---- */
.gg-how { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); background: var(--canvas-2); }
.gg-how-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .gg-how-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.gg-how-step { text-align: left; }
.gg-how-num { font-family: var(--ff-serif); font-style: italic; font-size: 3rem; color: var(--rose-deep); line-height: 1; margin-bottom: 0.75rem; }
.gg-how-step h3 { font-family: var(--ff-serif); font-weight: 400; font-size: 1.4rem; line-height: 1.2; margin: 0 0 0.6rem; }
.gg-how-step p { font-family: var(--ff-sans); font-size: 0.95rem; line-height: 1.55; color: var(--ink-body); margin: 0; max-width: 32ch; }

/* ---- BUSINESS CTA ---- */
.gg-business { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--ink); color: var(--canvas-1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.gg-business h2 { font-family: var(--ff-serif); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.1; margin: 0 0 1.25rem; max-width: 26ch; color: #fff; }
.gg-business h2 em { font-style: italic; color: #f7c2b8; }
.gg-business p { font-family: var(--ff-sans); font-size: 1.05rem; line-height: 1.6; color: rgba(247,242,232,0.85); max-width: 56ch; margin: 0 0 1.75rem; }
.gg-business .gg-business-cta { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--ff-sans); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; background: #f7c2b8; color: var(--ink); text-decoration: none; padding: 1rem 1.75rem; min-height: 56px; transition: background 0.15s ease; }
.gg-business .gg-business-cta:hover { background: #f1a89c; }

/* ---- COMPARE TABLE for /guide/best-* pages ---- */
.gg-compare { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.gg-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); }
.gg-compare-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--canvas); }
.gg-compare-table thead th { font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; padding: 0.95rem 0.85rem; border-bottom: 2px solid var(--ink); text-align: left; white-space: nowrap; background: var(--canvas-2); }
.gg-compare-table tbody td { padding: 1rem 0.85rem; font-family: var(--ff-sans); font-size: 0.88rem; color: var(--ink-body); vertical-align: middle; border-bottom: 1px solid var(--line); }
.gg-compare-table .gg-rank { font-family: var(--ff-serif); font-style: italic; color: var(--rose-deep); font-size: 1.1rem; min-width: 40px; }
.gg-compare-table .gg-name { font-family: var(--ff-serif); font-size: 1rem; color: var(--ink); font-weight: 400; min-width: 180px; }
.gg-compare-table .gg-rating-cell { font-family: var(--ff-serif); font-style: italic; color: var(--copper-deep); font-size: 1.05rem; }

/* ---- Mobile rhythm ---- */
@media (max-width: 720px) {
  .gg-categories, .gg-popular, .gg-cities, .gg-featured, .gg-how, .gg-business { padding-block: 2rem; }
  .gg-section-h2 { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 1.25rem; }
  .gg-search-input { font-size: 0.95rem; }
  .gg-cat h3 { font-size: 0.95rem; }
  .gg-place h3 { font-size: 1.15rem; }
}

/* End of GLOW GUIDE · April 2026 */

/* =====================================================================
   GLOW GUIDE v2 · UX REBUILD · April 2026
   User feedback: "looking very clunky". Fixes:
   - Cleaner hero: single bold search, tighter, focused
   - Real editorial imagery on category tiles (or richer treatment)
   - Generous spacing rhythm — 8pt grid
   - Simpler featured-places cards (less density)
   - Stronger visual hierarchy
   - Mobile-first with bigger thumb targets
   Cascade order means this block wins over GLOW GUIDE · April 2026.
   ===================================================================== */

/* ---- HERO v2 ---- */
.gg-hero { padding-block: clamp(3rem, 7vw, 5.5rem) !important; background: var(--canvas) !important; border-bottom: 0 !important; }
.gg-hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem) !important; max-width: 16ch !important; margin-bottom: 1.5rem !important; line-height: 1 !important; }
.gg-hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important; max-width: 52ch; margin-bottom: 2.5rem !important; }

/* New focused search — single row, big, scannable */
.gg-search {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  max-width: 720px !important;
  background: #fff !important;
  border: 1px solid var(--ink) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 6px 24px rgba(26,22,19,0.06);
  overflow: hidden;
}
.gg-search-field {
  flex: 1 1 50% !important;
  display: flex !important;
  flex-direction: column;
  gap: 0.15rem !important;
  padding: 1.1rem 1.25rem !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 0 !important;
  min-width: 200px;
}
.gg-search-field:last-of-type { border-right: 0 !important; }
@media (max-width: 720px) {
  .gg-search-field { flex: 1 1 100% !important; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; padding: 0.95rem 1.15rem !important; }
  .gg-search-field:last-of-type { border-bottom: 0 !important; }
}
.gg-search-label { font-family: var(--ff-sans) !important; font-size: 0.6rem !important; letter-spacing: 0.22em !important; text-transform: uppercase; color: var(--ink-muted) !important; font-weight: 600; }
.gg-search-input { font-family: var(--ff-serif) !important; font-style: italic !important; font-size: 1.15rem !important; border: 0 !important; background: transparent; outline: none; color: var(--ink); padding: 0 !important; min-height: 32px; }
.gg-search-input::placeholder { color: var(--ink-muted); opacity: 0.55; }
.gg-search-btn {
  flex: 1 1 100% !important;
  font-family: var(--ff-sans) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  background: var(--ink) !important;
  color: var(--canvas) !important;
  border: 0 !important;
  padding: 1.15rem 1.5rem !important;
  cursor: pointer;
  min-height: 56px !important;
  transition: background 0.15s ease;
}
.gg-search-btn:hover { background: var(--rose-deep) !important; }

@media (min-width: 720px) {
  .gg-search-btn { flex: 0 0 auto !important; padding: 0 2rem !important; }
}

/* Hero stats — quieter, less cluttered */
.gg-hero-stats { gap: 0.85rem 2.25rem !important; padding-top: 2rem !important; margin-top: 2rem !important; opacity: 0.9; }
.gg-hero-stats .stat { font-size: 0.74rem !important; letter-spacing: 0.04em !important; }

/* ---- CATEGORY GRID v2 — bigger, cleaner, real imagery ---- */
.gg-categories { padding-block: clamp(3rem, 6vw, 5rem) !important; background: var(--canvas-2); border-top: 1px solid var(--line); }
.gg-cat-grid { gap: 1rem !important; }
@media (min-width: 720px) { .gg-cat-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; } }
@media (min-width: 1100px) { .gg-cat-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1.75rem !important; } }
.gg-cat {
  aspect-ratio: 1 !important;
  border: 0 !important;
  background: var(--canvas-2);
  position: relative;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.gg-cat:hover { transform: translateY(-4px) !important; border: 0 !important; }
@media (min-width: 720px) { .gg-cat { aspect-ratio: 4/5 !important; } }
.gg-cat .img { background-size: cover !important; background-position: center !important; }
.gg-cat .gradient { background: linear-gradient(180deg, transparent 30%, rgba(26,22,19,0.92)) !important; }
.gg-cat .body { padding: 1.5rem 1.4rem 1.4rem !important; }
.gg-cat h3 { font-size: 1.5rem !important; line-height: 1.05 !important; margin-bottom: 0.3rem !important; letter-spacing: -0.01em; }
.gg-cat .count { font-size: 0.66rem !important; letter-spacing: 0.18em !important; opacity: 0.78; }
@media (max-width: 720px) {
  .gg-cat-grid { grid-template-columns: 1fr 1fr !important; gap: 0.85rem !important; }
  .gg-cat h3 { font-size: 1.05rem !important; }
  .gg-cat .body { padding: 1rem 0.95rem 0.9rem !important; }
}

/* ---- POPULAR SEARCHES v2 — magazine list ---- */
.gg-popular { padding-block: clamp(3rem, 6vw, 5rem) !important; background: var(--canvas) !important; }
.gg-search-list { grid-template-columns: 1fr !important; gap: 0 !important; max-width: 880px; margin: 0 auto; }
@media (min-width: 720px) { .gg-search-list { grid-template-columns: 1fr 1fr !important; gap: 0 3rem !important; } }
.gg-search-item {
  padding: 1.4rem 0 !important;
  border-bottom: 1px solid var(--line) !important;
  min-height: 64px;
  font-size: 1.05rem;
}
.gg-search-item:hover { padding-left: 0.85rem !important; }
.gg-search-item .label { font-size: 1.2rem !important; font-weight: 400; }
.gg-search-item .arrow { font-size: 1.3rem !important; opacity: 0.7; transition: transform 0.15s ease, opacity 0.15s ease; }
.gg-search-item:hover .arrow { opacity: 1; transform: translateX(4px); }
@media (max-width: 720px) {
  .gg-search-item { padding: 1.15rem 0 !important; }
  .gg-search-item .label { font-size: 1.05rem !important; }
}

/* ---- BEST BY CITY v2 ---- */
.gg-cities { padding-block: clamp(3rem, 6vw, 5rem) !important; background: var(--canvas-2); border-top: 1px solid var(--line); border-bottom: 0 !important; }
.gg-city-grid { gap: 1rem !important; }
@media (min-width: 720px) { .gg-city-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 1.5rem !important; } }
.gg-city { aspect-ratio: 4/5 !important; border: 0 !important; transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important; }
.gg-city:hover { transform: translateY(-4px) !important; }
@media (max-width: 720px) { .gg-city { aspect-ratio: 1 !important; } }
.gg-city .scrim { background: linear-gradient(180deg, transparent 35%, rgba(26,22,19,0.95)) !important; }
.gg-city .body { padding: 1.5rem 1.4rem 1.3rem !important; }
.gg-city h3 { font-size: 1.65rem !important; margin: 0 0 0.3rem !important; }
.gg-city .meta { font-size: 0.62rem !important; opacity: 0.78; }

/* ---- FEATURED PLACES v2 — less density, more breathing room ---- */
.gg-featured { padding-block: clamp(3rem, 6vw, 5rem) !important; background: var(--canvas) !important; border-top: 1px solid var(--line); border-bottom: 0 !important; }
.gg-featured-grid { gap: 1.5rem !important; }
@media (min-width: 1100px) { .gg-featured-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; } }
.gg-place {
  border: 0 !important;
  background: transparent !important;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.gg-place:hover { transform: translateY(-3px) !important; border: 0 !important; }
.gg-place .gg-place-img { aspect-ratio: 4/5 !important; }
.gg-place .gg-place-badge {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.6rem !important;
  letter-spacing: 0.16em !important;
  padding: 0.45rem 0.7rem !important;
  top: 1rem !important;
  left: 1rem !important;
}
.gg-place .gg-place-body { padding: 1.25rem 0.25rem 1.5rem !important; }
.gg-place .gg-place-cat { font-size: 0.6rem !important; letter-spacing: 0.22em !important; margin-bottom: 0.5rem !important; }
.gg-place h3 { font-size: 1.5rem !important; line-height: 1.1 !important; margin-bottom: 0.55rem !important; }
.gg-place .gg-place-suburb { font-size: 0.82rem !important; margin-bottom: 0.6rem !important; }
.gg-place .gg-place-rating { margin-bottom: 0.85rem !important; font-size: 0.85rem !important; }
.gg-place .gg-place-rating .stars { font-size: 0.95rem; }
.gg-place .gg-place-why {
  font-family: var(--ff-sans) !important;
  font-style: normal !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  color: var(--ink-body);
}

/* ---- HOW IT WORKS v2 — bigger numbers, cleaner ---- */
.gg-how { padding-block: clamp(3rem, 6vw, 5rem) !important; background: var(--ink) !important; color: var(--canvas-1) !important; border-bottom: 0 !important; }
.gg-how .gg-section-eyebrow { color: #f7c2b8 !important; }
.gg-how .gg-section-h2 { color: #fff !important; max-width: 22ch; }
.gg-how .gg-section-h2 em { color: #f7c2b8 !important; }
.gg-how-grid { gap: 2rem !important; }
@media (min-width: 720px) { .gg-how-grid { gap: 4rem !important; grid-template-columns: repeat(3, 1fr) !important; } }
.gg-how-num {
  font-size: 4rem !important;
  color: #f7c2b8 !important;
  line-height: 0.9 !important;
  margin-bottom: 1rem !important;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.gg-how-step h3 { color: #fff !important; font-size: 1.5rem !important; margin-bottom: 0.7rem !important; line-height: 1.15; }
.gg-how-step p { color: rgba(247,242,232,0.78) !important; font-size: 0.95rem !important; line-height: 1.55 !important; max-width: 30ch; }

/* ---- BUSINESS CTA v2 — split layout for visual variety ---- */
.gg-business {
  background: var(--canvas-2) !important;
  color: var(--ink) !important;
  padding-block: clamp(3rem, 6vw, 5rem) !important;
  border-top: 1px solid var(--line);
  border-bottom: 0 !important;
}
.gg-business .gg-section-eyebrow { color: var(--rose-deep) !important; }
.gg-business h2 { color: var(--ink) !important; font-size: clamp(1.8rem, 4vw, 2.8rem) !important; max-width: 22ch; line-height: 1.1; }
.gg-business h2 em { color: var(--rose-deep) !important; }
.gg-business p { color: var(--ink-body) !important; max-width: 56ch; font-size: 1.02rem !important; }
.gg-business .gg-business-cta {
  background: var(--ink) !important;
  color: var(--canvas) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.18em !important;
  padding: 1.1rem 2rem !important;
  min-height: 60px !important;
}
.gg-business .gg-business-cta:hover { background: var(--rose-deep) !important; color: var(--canvas) !important; }

/* ---- SECTION RHYTHM (sitewide on Guide pages) ---- */
.gg-section-eyebrow {
  font-size: 0.66rem !important;
  letter-spacing: 0.26em !important;
  margin-bottom: 1.1rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.gg-section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.gg-section-h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 2.5rem !important;
  max-width: 24ch;
}
@media (max-width: 720px) {
  .gg-section-h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; margin-bottom: 1.5rem !important; }
}

/* ---- COMPARE TABLE v2 (programmatic pages) ---- */
.gg-compare-wrap { border: 0 !important; box-shadow: 0 1px 0 var(--line); }
.gg-compare-table { background: transparent !important; }
.gg-compare-table thead th {
  background: transparent !important;
  border-bottom: 1px solid var(--ink) !important;
  padding: 1.1rem 1rem !important;
  font-size: 0.6rem !important;
}
.gg-compare-table tbody tr { transition: background 0.12s ease; }
.gg-compare-table tbody tr:hover { background: var(--canvas-2); }
.gg-compare-table tbody td { padding: 1.15rem 1rem !important; }
.gg-compare-table .gg-name { font-size: 1.05rem !important; }

/* End of GLOW GUIDE v2 · UX REBUILD · April 2026 */

/* ---- GLOW GUIDE · CLICKABLE CARDS (April 2026) ---------------------------
   On the 7 programmatic pages each <article class="gg-place"> is wrapped in
   <a class="gg-place-link"> → Google Maps (phone, hours, directions, reviews).
   On the 10 category + city landing pages the <a class="gg-place"> anchor
   links to the relevant programmatic guide. Both need to read as clickable. */

.gg-place-link,
a.gg-place {
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.18s ease;
  outline: 0;
}
.gg-place-link:hover,
a.gg-place:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -22px rgba(26, 22, 19, 0.34);
}
.gg-place-link:focus-visible,
a.gg-place:focus-visible {
  outline: 2px solid var(--bordeaux, #5A2A35);
  outline-offset: 4px;
  border-radius: 6px;
}
.gg-place-link:hover h3,
a.gg-place:hover h3 {
  color: var(--bordeaux, #5A2A35);
  transition: color 0.18s ease;
}
.gg-place-link .gg-place { height: 100%; border: 1px solid transparent; }
.gg-place-link:hover .gg-place { border-color: var(--ink); }

@media (max-width: 720px) {
  .gg-place-link:hover,
  a.gg-place:hover { transform: none; box-shadow: none; }
}

/* ============================================================
   GLOW GUIDE v3 — High-conversion editorial pages
   Vogue × Airbnb × Apple. Mobile-first.
   ============================================================ */

.glow-guide-v3 {
  --gv3-ink: #1A1613;
  --gv3-ink-soft: #4a423b;
  --gv3-line: #e6dccd;
  --gv3-canvas: #faf7f0;
  --gv3-bordeaux: #5A2A35;
  --gv3-gold: #b8954a;
  --gv3-gold-soft: #f4ead0;
  --gv3-rose-soft: #f9eee5;
}

.glow-guide-v3 main { padding-bottom: 6rem; }

/* ---- HERO -------------------------------------------------- */

.gv3-hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, #fdfaf2 0%, var(--canvas, #f7f2e8) 100%);
  border-bottom: 1px solid var(--gv3-line);
}
.gv3-hero .breadcrumb {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gv3-ink-soft);
  margin-bottom: 2rem;
}
.gv3-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gv3-bordeaux);
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gv3-bordeaux);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}
.gv3-hero h1 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.6rem;
  max-width: 22ch;
  color: var(--gv3-ink);
}
.gv3-hero h1 em {
  font-style: italic;
  color: var(--gv3-bordeaux);
}
.gv3-lede {
  font-family: var(--ff-sans, system-ui);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.55;
  color: var(--gv3-ink-soft);
  max-width: 60ch;
  margin: 0 0 2.4rem;
}
.gv3-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin: 0 0 2rem;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.92rem;
  color: var(--gv3-ink-soft);
}
.gv3-hero-stats .stat strong {
  color: var(--gv3-ink);
  font-weight: 600;
  margin-right: 0.4rem;
}
.gv3-hero-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.86rem;
}
.gv3-hero-jump a {
  color: var(--gv3-ink);
  border-bottom: 1px solid var(--gv3-line);
  padding: 0.2rem 0;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.gv3-hero-jump a:hover {
  color: var(--gv3-bordeaux);
  border-color: var(--gv3-bordeaux);
}

/* ---- SECTION HEADINGS -------------------------------------- */

.gv3-section-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gv3-ink-soft);
  margin-bottom: 1rem;
}
.gv3-section-h2 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1.6rem;
}
.gv3-section-h2 em { font-style: italic; color: var(--gv3-bordeaux); }
.gv3-section-intro {
  font-family: var(--ff-sans, system-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gv3-ink-soft);
  max-width: 60ch;
  margin: 0 0 2.4rem;
}

/* ---- COMPARE TABLE (high-conversion) ----------------------- */

.gv3-compare-sec { padding: 3.5rem 0; border-bottom: 1px solid var(--gv3-line); }
.gv3-compare {
  border: 1px solid var(--gv3-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-top: 1.5rem;
}
.gv3-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-sans, system-ui);
}
.gv3-compare-table th {
  text-align: left;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gv3-ink-soft);
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--gv3-line);
  background: var(--gv3-canvas);
}
.gv3-compare-table td {
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--gv3-line);
  vertical-align: middle;
  font-size: 0.94rem;
}
.gv3-compare-table tbody tr:last-child td { border-bottom: 0; }
.gv3-compare-table tbody tr { transition: background 0.15s ease; }
.gv3-compare-table tbody tr:hover { background: var(--gv3-rose-soft); }
.gv3-tbl-rank {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--gv3-ink-soft);
  width: 64px;
}
.gv3-tbl-name a { color: var(--gv3-ink); }
.gv3-tbl-name a:hover { color: var(--gv3-bordeaux); }
.gv3-tbl-name strong { display: block; font-size: 1rem; }
.gv3-tbl-best {
  display: block;
  font-size: 0.78rem;
  color: var(--gv3-ink-soft);
  margin-top: 2px;
}
.gv3-tbl-price { white-space: nowrap; font-weight: 600; }
.gv3-tbl-price span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--gv3-ink-soft); }
.gv3-tbl-rating { white-space: nowrap; }
.gv3-tbl-rating span { color: var(--gv3-ink-soft); font-size: 0.8rem; }
.gv3-tbl-cta { text-align: right; }
.gv3-btn-mini {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--gv3-ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.18s ease;
  white-space: nowrap;
}
.gv3-btn-mini:hover { background: var(--gv3-bordeaux); }

/* Mobile: convert to horizontal scroll */
@media (max-width: 720px) {
  .gv3-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .gv3-compare-table { min-width: 640px; }
}

/* ---- FILTER CHIPS ----------------------------------------- */

.gv3-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gv3-line);
}
.gv3-filter-label {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gv3-ink-soft);
  margin-right: 0.6rem;
}
.gv3-chip {
  appearance: none;
  border: 1px solid var(--gv3-line);
  background: #fff;
  color: var(--gv3-ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.gv3-chip:hover { border-color: var(--gv3-ink); }
.gv3-chip.is-active {
  background: var(--gv3-ink);
  border-color: var(--gv3-ink);
  color: #fff;
}
.gv3-chip:focus-visible {
  outline: 2px solid var(--gv3-bordeaux);
  outline-offset: 3px;
}

/* ---- RANKED CARDS ---------------------------------------- */

.gv3-ranked-sec { padding: 3.5rem 0; border-bottom: 1px solid var(--gv3-line); }

.gv3-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 760px) {
  .gv3-cards { grid-template-columns: repeat(2, 1fr); gap: 2.8rem 2.4rem; }
}
@media (min-width: 1100px) {
  .gv3-cards { grid-template-columns: repeat(3, 1fr); gap: 3rem 2.4rem; }
}

.gv3-card {
  background: #fff;
  border: 1px solid var(--gv3-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.26s ease, border-color 0.22s ease;
}
.gv3-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(26, 22, 19, 0.32);
  border-color: var(--gv3-ink);
}
.gv3-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.gv3-rank {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--ff-serif, Georgia, serif);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.gv3-score {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(26, 22, 19, 0.85);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gv3-card-body {
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.gv3-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.gv3-cat {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gv3-ink-soft);
}
.gv3-price-pill {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gv3-bordeaux);
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--gv3-bordeaux);
  border-radius: 999px;
}
.gv3-card-h3 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0.4rem 0 0.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.gv3-card-h3 a { color: var(--gv3-ink); }
.gv3-card-h3 a:hover { color: var(--gv3-bordeaux); }
.gv3-card-loc {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.84rem;
  color: var(--gv3-ink-soft);
  margin-bottom: 0.6rem;
}
.gv3-best-for { color: var(--gv3-ink); }
.gv3-card-rating {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.85rem;
  color: var(--gv3-ink);
  margin-bottom: 0.8rem;
}
.gv3-stars { color: var(--gv3-gold); letter-spacing: 0.06em; }
.gv3-stars-empty { color: var(--gv3-line); }
.gv3-reviews { color: var(--gv3-ink-soft); }
.gv3-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0.4rem 0 0.85rem;
}
.gv3-tag {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.tag-top { background: var(--gv3-gold); color: #fff; }
.tag-value { background: #2a4a2e; color: #fff; }
.tag-verified { background: var(--gv3-bordeaux); color: #fff; }
.tag-luxury { background: var(--gv3-ink); color: #fff; }
.tag-beginners { background: #f4ead0; color: var(--gv3-bordeaux); border: 1px solid var(--gv3-gold); }
.tag-default { background: var(--gv3-line); color: var(--gv3-ink); }

.gv3-card-why {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gv3-ink);
  margin: 0 0 1rem;
  flex: 1 1 auto;
}
.gv3-specs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.gv3-spec {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.74rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--gv3-line);
  border-radius: 4px;
  color: var(--gv3-ink-soft);
}
.gv3-card-price-detail {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gv3-ink);
  margin-bottom: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gv3-line);
}
.gv3-card-ctas {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.gv3-btn-primary {
  flex: 1 1 auto;
  display: inline-block;
  text-align: center;
  padding: 0.85rem 1.2rem;
  background: var(--gv3-ink);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.18s ease;
  border: 0;
  cursor: pointer;
}
.gv3-btn-primary:hover { background: var(--gv3-bordeaux); transform: translateY(-1px); }
.gv3-btn-large { padding: 1.05rem 1.6rem; font-size: 1rem; }
.gv3-btn-block { display: block; width: 100%; margin-top: 1rem; }
.gv3-btn-ghost {
  display: inline-block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gv3-line);
  color: var(--gv3-ink) !important;
  border-radius: 8px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gv3-btn-ghost:hover { border-color: var(--gv3-ink); color: var(--gv3-bordeaux) !important; }
.gv3-claim {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.76rem;
  color: var(--gv3-ink-soft);
  text-align: center;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--gv3-line);
}
.gv3-claim:hover { color: var(--gv3-bordeaux); }
.gv3-claim-block { padding: 0.85rem; border: 1px dashed var(--gv3-line); border-radius: 6px; margin-top: 0.8rem; }

/* Top-3 differentiation */
.gv3-card-1 {
  border: 2px solid var(--gv3-gold);
  position: relative;
  background: linear-gradient(180deg, #fffbf2 0%, #fff 18%);
}
.gv3-card-1::before {
  content: "Editor's Choice";
  position: absolute;
  top: -12px;
  left: 1.6rem;
  background: var(--gv3-gold);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.gv3-card-1 .gv3-card-img { aspect-ratio: 16/10; }
.gv3-card-1 .gv3-card-h3 { font-size: 1.85rem; }
@media (min-width: 1100px) {
  .gv3-card-1 { grid-column: span 1; }
}
.gv3-card-2, .gv3-card-3 {
  border-color: var(--gv3-bordeaux);
}
.gv3-card-2::before, .gv3-card-3::before {
  content: "Runner-up";
  position: absolute;
  top: -10px;
  left: 1.4rem;
  background: var(--gv3-bordeaux);
  color: #fff;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gv3-card-2, .gv3-card-3 { position: relative; }

@media (max-width: 720px) {
  .gv3-card:hover { transform: none; }
  .gv3-card-1 .gv3-card-h3 { font-size: 1.55rem; }
}

/* Filtered-out state */
.gv3-card.is-hidden { display: none; }
.gv3-compare-table tbody tr.is-hidden { display: none; }

/* ---- TRUST + EDITORIAL ------------------------------------ */

.gv3-trust-sec { padding: 4rem 0; background: var(--gv3-canvas); border-bottom: 1px solid var(--gv3-line); }
.gv3-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 880px) { .gv3-trust-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.gv3-trust-h2 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}
.gv3-trust-sec p {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--gv3-ink-soft);
  margin: 0 0 1rem;
  max-width: 60ch;
}
.gv3-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.98rem;
  line-height: 1.6;
}
.gv3-checklist li {
  padding-left: 1.8rem;
  margin-bottom: 0.85rem;
  position: relative;
  color: var(--gv3-ink);
}
.gv3-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--gv3-bordeaux);
  font-size: 1.1rem;
}
.gv3-link-arrow {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gv3-bordeaux);
  border-bottom: 1px solid var(--gv3-bordeaux);
  padding-bottom: 2px;
}

/* ---- FAQ + SEO ------------------------------------------- */

.gv3-faq-sec { padding: 4rem 0; border-bottom: 1px solid var(--gv3-line); }
.gv3-faq details {
  border-bottom: 1px solid var(--gv3-line);
  padding: 1.2rem 0;
}
.gv3-faq summary {
  font-family: var(--ff-serif, Georgia, serif);
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--gv3-ink);
}
.gv3-faq summary::-webkit-details-marker { display: none; }
.gv3-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--gv3-bordeaux);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.gv3-faq details[open] summary::after { transform: rotate(45deg); }
.gv3-faq p {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--gv3-ink-soft);
  margin: 1rem 0 0;
  max-width: 64ch;
}

.gv3-seo-block { padding: 3rem 0; border-bottom: 1px solid var(--gv3-line); }
.gv3-seo-h2 {
  font-family: var(--ff-serif, Georgia, serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 1.2rem;
}
.gv3-seo-block p {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gv3-ink-soft);
  margin: 0 0 1rem;
  max-width: 70ch;
}

/* ---- BUSINESS / CLAIM CTAS -------------------------------- */

.gv3-business-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
.gv3-business-secondary {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.gv3-business-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---- STICKY MOBILE CTA ----------------------------------- */

.gv3-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: rgba(255, 252, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gv3-line);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gv3-sticky-cta.is-visible { transform: translateY(0); }
.gv3-sticky-btn {
  display: block;
  padding: 1rem 1.2rem;
  background: var(--gv3-ink);
  color: #fff !important;
  border-radius: 10px;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}
.gv3-sticky-btn:hover { background: var(--gv3-bordeaux); }

@media (min-width: 880px) {
  .gv3-sticky-cta {
    bottom: 1.5rem;
    left: auto;
    right: 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--gv3-line);
    padding: 0;
  }
  .gv3-sticky-cta .gv3-sticky-btn {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
  }
}

/* ---- SALON PROFILE PAGE ---------------------------------- */

.gv3-profile-hero {
  padding: 4.5rem 0 3rem;
  color: #fff;
  position: relative;
}
.gv3-profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.gv3-profile-hero > .wrap { position: relative; z-index: 1; }
.breadcrumb-light, .breadcrumb-light a { color: rgba(255,255,255,0.85) !important; }
.gv3-profile-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.gv3-profile-h1 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: #fff;
}
.gv3-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  align-items: center;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.3rem;
}
.gv3-profile-meta .gv3-stars { color: #f4ce80; }
.gv3-profile-meta .gv3-price-pill {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  margin-right: 0.4rem;
}
.gv3-profile-sep { opacity: 0.5; }
.gv3-profile-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.gv3-profile-hero .gv3-btn-primary { background: #fff; color: var(--gv3-ink) !important; }
.gv3-profile-hero .gv3-btn-primary:hover { background: #f4ead0; }
.gv3-profile-hero .gv3-btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff !important; }
.gv3-profile-hero .gv3-tags { margin: 0.6rem 0 0; }

.gv3-profile-body { padding: 3.5rem 0; }
.gv3-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 920px) { .gv3-profile-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 4rem; } }
.gv3-profile-main h2.gv3-profile-h2 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.gv3-profile-main h3.gv3-profile-h3 {
  font-family: var(--ff-serif, Georgia, serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 1.6rem 0 0.6rem;
}
.gv3-profile-main p,
.gv3-profile-list {
  font-family: var(--ff-sans, system-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gv3-ink);
  max-width: 64ch;
}
.gv3-profile-lede { font-size: 1.12rem; color: var(--gv3-ink-soft); }
.gv3-profile-list { padding-left: 1.2rem; }
.gv3-profile-list li { margin-bottom: 0.4rem; }

.gv3-profile-aside { position: relative; }
.gv3-profile-card {
  background: #fff;
  border: 1px solid var(--gv3-line);
  border-radius: 12px;
  padding: 1.6rem;
  position: sticky;
  top: 110px;
}
.gv3-profile-card h4 {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gv3-ink-soft);
  margin: 0 0 0.9rem;
  font-weight: 600;
}
.gv3-profile-dl { display: grid; grid-template-columns: 110px 1fr; gap: 0.5rem 1rem; margin: 0 0 1.2rem; font-family: var(--ff-sans, system-ui); font-size: 0.86rem; }
.gv3-profile-dl dt { color: var(--gv3-ink-soft); font-size: 0.78rem; }
.gv3-profile-dl dd { margin: 0; color: var(--gv3-ink); font-weight: 500; }

.gv3-profile-related { padding: 3rem 0 2rem; background: var(--gv3-canvas); border-top: 1px solid var(--gv3-line); }
.gv3-profile-related p { font-family: var(--ff-sans, system-ui); font-size: 1rem; color: var(--gv3-ink-soft); }

/* ---- DIRECTORY GRID ------------------------------------- */

.gv3-dir-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 660px) { .gv3-dir-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gv3-dir-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1300px) { .gv3-dir-grid { grid-template-columns: repeat(4, 1fr); } }
.gv3-dir-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gv3-line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.22s ease;
}
.gv3-dir-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -22px rgba(26,22,19,0.32); }
.gv3-dir-img { aspect-ratio: 4/3; }
.gv3-dir-body { padding: 1rem 1.1rem 1.2rem; }
.gv3-dir-cat { font-family: var(--ff-sans, system-ui); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gv3-ink-soft); }
.gv3-dir-body h3 {
  font-family: var(--ff-serif, "Instrument Serif", Georgia, serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.3rem 0 0.5rem;
  color: var(--gv3-ink);
  letter-spacing: -0.01em;
}
.gv3-dir-score { font-family: var(--ff-sans, system-ui); font-size: 0.78rem; color: var(--gv3-bordeaux); font-weight: 600; }

/* ---- CLAIM FORM ----------------------------------------- */

.gv3-claim-sec { padding: 3rem 0; border-bottom: 1px solid var(--gv3-line); }
.gv3-claim-form { display: grid; gap: 1rem; }
.gv3-claim-form label { display: block; font-family: var(--ff-sans, system-ui); }
.gv3-claim-form label span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gv3-ink-soft);
  margin-bottom: 0.3rem;
}
.gv3-claim-form input,
.gv3-claim-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gv3-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--gv3-ink);
  box-sizing: border-box;
  transition: border-color 0.18s ease;
}
.gv3-claim-form input:focus,
.gv3-claim-form textarea:focus {
  outline: 0;
  border-color: var(--gv3-bordeaux);
}
.gv3-claim-form textarea { resize: vertical; min-height: 110px; }
.gv3-form-fineprint {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.78rem;
  color: var(--gv3-ink-soft);
  margin: 0.4rem 0 0;
}
.gv3-claim-form button { margin-top: 0.6rem; }

/* ---- MOBILE OVERRIDES ------------------------------------- */

@media (max-width: 720px) {
  .gv3-hero { padding: 3rem 0 2.5rem; }
  .gv3-compare-sec, .gv3-ranked-sec, .gv3-trust-sec, .gv3-faq-sec { padding: 2.6rem 0; }
  .gv3-card-1::before, .gv3-card-2::before, .gv3-card-3::before { left: 1rem; }
  .gv3-card-body { padding: 1.3rem 1.3rem 1.2rem; }
  .gv3-card-ctas { flex-direction: column; }
  .gv3-btn-ghost { text-align: center; }
  .glow-guide-v3 main { padding-bottom: 7.5rem; }
  .gv3-filter-row { gap: 0.4rem; }
  .gv3-filter-label { width: 100%; margin: 0 0 0.4rem; }
  .gv3-chip { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
}

/* ---- CITY AGGREGATOR — Top 3 teaser cards ----------------------- */

.gv3-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
@media (min-width: 760px) { .gv3-teaser-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; } }

.gv3-place-teaser {
  display: block;
  background: #fff;
  border: 1px solid var(--gv3-line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.26s ease, border-color 0.22s ease;
}
.gv3-place-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -28px rgba(26, 22, 19, 0.34);
  border-color: var(--gv3-ink);
}
.gv3-teaser-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.gv3-teaser-img .gv3-rank {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gv3-teaser-body {
  padding: 1.4rem 1.4rem 1.5rem;
}
.gv3-teaser-body h3 {
  font-family: var(--ff-serif, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.01em;
  color: var(--gv3-ink);
}
.gv3-place-teaser:hover h3 { color: var(--gv3-bordeaux); transition: color 0.18s ease; }
.gv3-teaser-body p {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gv3-ink-soft);
  margin: 0;
}

/* ============================================================
   GUIDE HUB · EDITOR'S PICKS (full-bleed image tiles · April 2026)
   Replaces the old gg-featured starred-card layout.
   ============================================================ */

.gg-picks {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line, #e6dccd);
}

.gg-picks .gg-section-eyebrow,
.gg-picks .gg-section-h2 {
  /* Inherit existing eyebrow + h2 styles from the rest of the Guide */
}

.gg-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 760px) {
  .gg-picks-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.4rem; }
}

.gg-pick {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease;
}

.gg-pick:hover { transform: translateY(-3px); }
.gg-pick:hover .gg-pick-img { box-shadow: 0 22px 44px -28px rgba(26,22,19,0.34); }
.gg-pick:hover .gg-pick-title { color: var(--rose-deep, #5A2A35); }

.gg-pick-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: #efe5d4;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: box-shadow 0.26s ease;
}

.gg-pick-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink, #1A1613);
  color: #fff;
  padding: 0.55rem 1rem;
  font-family: var(--ff-sans, system-ui);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.gg-pick-meta {
  font-family: var(--ff-sans, system-ui);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted, #888);
  margin-bottom: 0.7rem;
}

.gg-pick-title {
  font-family: var(--ff-serif, 'Instrument Serif', Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.45rem;
  color: var(--ink, #1A1613);
  max-width: 22ch;
  transition: color 0.18s ease;
}

.gg-pick-title em {
  font-style: italic;
  color: var(--rose-deep, #5A2A35);
}

.gg-pick-count {
  font-family: var(--ff-serif, Georgia, serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted, #888);
}

@media (max-width: 560px) {
  .gg-picks-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 0.8rem; }
  .gg-pick-tag { font-size: 0.6rem; padding: 0.4rem 0.7rem; }
  .gg-pick-title { font-size: 1.05rem; }
}



/* ====================================================================
   MOBILE HOMEPAGE 10/10 — appended 2026-05-01
   Fixes: invisible hero text, side-by-side cards on narrow viewports,
   weak shop-strip cards, content overflow, popup polish.
   Triggers below 720px. Desktop unchanged.
   ==================================================================== */

@media (max-width: 720px) {

  /* === 1. MAG-HERO — stack vertically, dark text, no overflow === */
  .mag-hero { padding-block: 1.5rem 2rem; }
  .mag-hero .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .mag-lead { display: block; }
  .mag-lead-img {
    aspect-ratio: 4 / 5 !important;
    margin-bottom: 1.25rem;
    overflow: hidden;
  }
  .mag-lead-img .img {
    width: 100%; height: 100%;
    background-size: cover !important;
    background-position: center;
  }
  /* CRITICAL: hero text was white on canvas — force dark for visibility */
  .mag-lead .mag-cat {
    color: var(--rose-deep, #5A2A35) !important;
    font-size: 0.7rem; letter-spacing: 0.22em;
    display: block; margin-bottom: 0.85rem;
  }
  .mag-lead h2 {
    color: var(--ink, #1A1613) !important;
    font-size: clamp(1.7rem, 6.4vw, 2.2rem) !important;
    line-height: 1.08 !important;
    margin: 0 0 0.85rem !important;
    max-width: 100%;
  }
  .mag-lead h2 em { color: var(--rose-deep, #5A2A35) !important; }
  .mag-lead .mag-dek {
    color: var(--ink-body, #2A2520) !important;
    font-size: 0.95rem; line-height: 1.55;
    margin: 0 0 1rem;
  }
  .mag-lead .mag-by {
    color: var(--ink-muted, #6e6862) !important;
    font-size: 0.78rem; letter-spacing: 0.06em;
  }

  /* Sidebar cards — stack vertically, full width */
  .mag-side {
    display: flex !important; flex-direction: column !important;
    gap: 1.25rem !important;
  }
  .mag-side-card {
    display: grid !important;
    grid-template-columns: 1fr 100px !important;
    gap: 1rem !important;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line, #E5DFCF);
  }
  .mag-side-card .img {
    aspect-ratio: 1 / 1;
    background-size: cover; background-position: center;
    background-color: var(--canvas-2, #EFEBDC);
  }
  .mag-side-card .body { padding: 0; }
  .mag-side-card .cat {
    font-size: 0.65rem !important; letter-spacing: 0.18em;
    color: var(--rose-deep, #5A2A35);
    display: block; margin-bottom: 0.4rem;
  }
  .mag-side-card h3 {
    font-size: 0.98rem !important; line-height: 1.25 !important;
    margin: 0 0 0.4rem !important;
    color: var(--ink, #1A1613);
  }
  .mag-side-card .by {
    font-size: 0.7rem;
    color: var(--ink-muted, #6e6862);
  }

  /* === 2. SHOP-STRIP — tighter rail, cleaner cards === */
  .shop-strip { padding-block: 2.5rem; overflow: hidden; }
  .shop-strip-rail {
    display: flex !important;
    gap: 0.85rem !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 1rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .shop-strip-rail::-webkit-scrollbar { display: none; }
  .shop-tile {
    flex: 0 0 62vw !important;
    max-width: 250px;
    scroll-snap-align: start;
    background: #fff !important;
    border: 1px solid var(--line, #E5DFCF) !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .shop-tile .shop-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #FAF8F2;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .shop-tile .badge {
    position: absolute; top: 0.6rem; left: 0.6rem;
    background: rgba(255,255,255,0.92); color: var(--ink, #1A1613);
    font-size: 0.58rem; letter-spacing: 0.16em;
    padding: 0.3rem 0.55rem;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
  }
  .shop-tile .badge.dark {
    background: var(--ink, #1A1613); color: #fff;
  }
  .shop-tile .brand {
    display: block;
    font-size: 0.65rem; letter-spacing: 0.18em;
    color: var(--rose-deep, #5A2A35);
    text-transform: uppercase;
    padding: 0.85rem 0.85rem 0.25rem;
  }
  .shop-tile h3 {
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 0 0.85rem 0.5rem;
    color: var(--ink, #1A1613);
  }
  .shop-tile .price {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-muted, #6e6862);
    padding: 0 0.85rem 0.85rem;
    margin-top: auto;
  }

  /* === 3. BEST-OF GRID — 2-column on mobile, premium card design === */
  .best-of { padding-block: 2.5rem; }
  .best-of .mag-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem;
  }
  .best-of-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .best-tile {
    background: #fff !important;
    border: 1px solid var(--line, #E5DFCF);
    overflow: hidden;
  }
  .best-tile .best-img {
    aspect-ratio: 4 / 5 !important;
    background-color: #FAF8F2 !important;
    background-size: 75% !important;
    background-position: center !important;
    background-repeat: no-repeat;
    position: relative;
  }
  .best-tile .best-award {
    position: absolute; top: 0.5rem; left: 0.5rem;
    background: var(--ink, #1A1613); color: #fff;
    font-size: 0.55rem; letter-spacing: 0.14em;
    padding: 0.28rem 0.5rem;
    text-transform: uppercase;
  }
  .best-tile .best-cat {
    display: block;
    font-size: 0.6rem !important; letter-spacing: 0.18em;
    color: var(--rose-deep, #5A2A35);
    padding: 0.7rem 0.7rem 0.2rem;
    text-transform: uppercase;
  }
  .best-tile h3 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    padding: 0 0.7rem;
    margin: 0 !important;
    color: var(--ink, #1A1613);
  }
  .best-tile .best-score {
    display: block;
    font-family: var(--ff-serif, Georgia, serif);
    font-size: 1.2rem;
    color: var(--rose-deep, #5A2A35);
    padding: 0.4rem 0.7rem 0.85rem;
  }
  .best-tile .best-score .of {
    font-size: 0.7rem;
    color: var(--ink-muted, #6e6862);
    margin-left: 0.15rem;
  }

  /* === 4. NO HORIZONTAL OVERFLOW ANYWHERE === */
  body, main { overflow-x: hidden; }
  .wrap { padding-left: 1rem; padding-right: 1rem; }

  /* === 5. EMAIL POPUP — refined mobile === */
  .lc-modal { padding: 1rem; }
  .lc-card {
    padding: 2rem 1.4rem 1.5rem !important;
    max-width: 100%;
  }
  .lc-eyebrow {
    font-size: 0.62rem !important; letter-spacing: 0.2em;
    margin-bottom: 0.85rem !important;
  }
  .lc-head {
    font-size: 1.55rem !important;
    line-height: 1.08 !important;
    margin: 0 0 0.7rem !important;
  }
  .lc-sub {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 0 1.25rem !important;
  }
  .lc-form {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }
  .lc-form input {
    padding: 0.95rem 1rem !important;
    font-size: 0.95rem !important;
  }
  .lc-form button {
    padding: 0.95rem !important;
    font-size: 0.85rem !important;
  }
  .lc-foot {
    font-size: 0.72rem !important;
    line-height: 1.45;
  }
  .lc-close {
    top: 0.6rem !important; right: 0.6rem !important;
  }
}

/* === Email popup — desktop polish (unchanged from before, refined) === */
@media (min-width: 721px) {
  .lc-card {
    max-width: 520px;
    padding: 3rem 2.75rem 2.25rem !important;
  }
  .lc-head {
    font-size: 2.1rem !important;
    line-height: 1.05 !important;
  }
  .lc-sub {
    font-size: 1rem;
    max-width: 44ch;
  }
}

/* === Cache-bust hint for clients === */
/* v=20260501-mobile */


/* ====================================================================
   MOBILE HOMEPAGE FINAL — kills all prior conflicting mobile blocks.
   Uses body.reviews-skin prefix for max specificity (0,2,1) so it wins
   the cascade over all earlier .mag-... rules, including !important.
   Source: 2026-05-01c
   ==================================================================== */

@media (max-width: 720px) {

  /* === HERO: image stacked above text. No overlay. No negative margins. === */
  body.reviews-skin .mag-hero {
    padding: 1.25rem 0 2rem !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    margin: 0 !important;
  }
  body.reviews-skin .mag-hero .wrap {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  body.reviews-skin .mag-hero .grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  body.reviews-skin .mag-lead {
    display: block !important;
    position: static !important;
    margin: 0 0 2rem !important;
  }
  body.reviews-skin .mag-lead .mag-lead-img {
    position: static !important;
    margin: 0 0 1rem !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden;
  }
  body.reviews-skin .mag-lead .mag-lead-img::after { display: none !important; }
  body.reviews-skin .mag-lead .mag-lead-img .img {
    width: 100% !important; height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }
  body.reviews-skin .mag-lead .mag-cat {
    position: static !important;
    margin: 0 0 0.6rem !important;
    color: var(--rose-deep, #5A2A35) !important;
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    z-index: auto !important;
    display: block !important;
  }
  body.reviews-skin .mag-lead h2 {
    position: static !important;
    margin: 0 0 0.65rem !important;
    color: var(--ink, #1A1613) !important;
    font-family: var(--ff-serif, Georgia, serif) !important;
    font-weight: 400 !important;
    font-size: clamp(1.7rem, 6.4vw, 2.15rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.015em !important;
    z-index: auto !important;
    max-width: 100% !important;
  }
  body.reviews-skin .mag-lead h2 em {
    color: var(--rose-deep, #5A2A35) !important;
    font-style: italic !important;
  }
  body.reviews-skin .mag-lead .mag-dek {
    display: block !important;
    margin: 0 0 0.85rem !important;
    color: var(--ink-body, #2A2520) !important;
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  body.reviews-skin .mag-lead .mag-by {
    position: static !important;
    margin: 0.5rem 0 0 !important;
    color: var(--ink-muted, #6e6862) !important;
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    z-index: auto !important;
  }
  body.reviews-skin .mag-lead .mag-by strong {
    color: var(--ink, #1A1613) !important;
    font-weight: 600 !important;
  }

  /* === SIDEBAR: STACK vertically. No flex-direction:row. No scroll-snap.  === */
  body.reviews-skin .mag-side {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    padding-top: 1.25rem !important;
  }
  body.reviews-skin .mag-side-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 92px !important;
    grid-auto-flow: row !important;
    gap: 1rem !important;
    align-items: center !important;
    padding: 0.85rem 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    scroll-snap-align: none !important;
    position: static !important;
    transform: none !important;
  }
  body.reviews-skin .mag-side-card:last-child { border-bottom: 0 !important; }
  body.reviews-skin .mag-side-card .img {
    width: 92px !important;
    height: 92px !important;
    aspect-ratio: 1 / 1 !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #FAF8F2 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }
  body.reviews-skin .mag-side-card .body {
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
  }
  body.reviews-skin .mag-side-card .body .cat {
    display: block !important;
    color: var(--rose-deep, #5A2A35) !important;
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    margin: 0 0 0.35rem !important;
  }
  body.reviews-skin .mag-side-card h3 {
    color: var(--ink, #1A1613) !important;
    font-family: var(--ff-serif, Georgia, serif) !important;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    line-height: 1.22 !important;
    margin: 0 0 0.35rem !important;
  }
  body.reviews-skin .mag-side-card h3 em {
    color: var(--rose-deep, #5A2A35) !important;
    font-style: italic !important;
  }
  body.reviews-skin .mag-side-card .by {
    display: block !important;
    color: var(--ink-muted, #6e6862) !important;
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.68rem !important;
    margin: 0 !important;
  }

  /* No horizontal overflow anywhere */
  body.reviews-skin, body.reviews-skin main { overflow-x: hidden !important; }
}
/* End MOBILE HOMEPAGE FINAL · 2026-05-01c */


/* ====================================================================
   MOBILE HEADINGS RESTORED — 2026-05-01d
   Previous "image-first mobile" pass hid every section heading.
   This restores them with magazine-grade editorial typography.
   ==================================================================== */

@media (max-width: 720px) {

  /* === BRING BACK every hidden section heading === */
  body.reviews-skin .mag-section .mag-eyebrow,
  body.reviews-skin .mag-section .mag-h2,
  body.reviews-skin .mag-section .mag-see,
  body.reviews-skin .mag-section .mag-head,
  body.reviews-skin .best-of .mag-eyebrow,
  body.reviews-skin .best-of .mag-h2,
  body.reviews-skin .best-of .mag-see,
  body.reviews-skin .best-of .mag-head,
  body.reviews-skin .viral .mag-eyebrow,
  body.reviews-skin .viral .mag-h2,
  body.reviews-skin .viral .mag-see,
  body.reviews-skin .viral .mag-head,
  body.reviews-skin .shop-strip .mag-eyebrow,
  body.reviews-skin .shop-strip .mag-h2,
  body.reviews-skin .shop-strip .mag-head,
  body.reviews-skin .shop-strip .mag-see {
    display: block !important;
  }

  /* === Section heading styles — editorial magazine grade === */
  body.reviews-skin .mag-head,
  body.reviews-skin .best-of .mag-head,
  body.reviews-skin .viral .mag-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    margin: 0 0 1.5rem !important;
    padding: 0 !important;
  }

  body.reviews-skin .mag-eyebrow,
  body.reviews-skin .mag-section .mag-eyebrow,
  body.reviews-skin .best-of .mag-eyebrow,
  body.reviews-skin .viral .mag-eyebrow,
  body.reviews-skin .shop-strip .mag-eyebrow {
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: var(--rose-deep, #5A2A35) !important;
    font-weight: 600 !important;
    margin: 0 0 0.5rem !important;
    padding: 0 !important;
    display: block !important;
  }

  body.reviews-skin .mag-h2,
  body.reviews-skin .best-of .mag-h2,
  body.reviews-skin .viral .mag-h2,
  body.reviews-skin .mag-section h2,
  body.reviews-skin .best-of h2,
  body.reviews-skin .viral h2 {
    font-family: var(--ff-serif, Georgia, serif) !important;
    font-weight: 400 !important;
    font-size: clamp(1.55rem, 5.6vw, 2rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.015em !important;
    color: var(--ink, #1A1613) !important;
    margin: 0 0 0.4rem !important;
    max-width: 100% !important;
    display: block !important;
  }
  body.reviews-skin .mag-h2 em,
  body.reviews-skin .best-of .mag-h2 em,
  body.reviews-skin .viral .mag-h2 em {
    color: var(--rose-deep, #5A2A35) !important;
    font-style: italic !important;
  }

  body.reviews-skin .mag-see,
  body.reviews-skin .best-of .mag-see,
  body.reviews-skin .viral .mag-see {
    font-family: var(--ff-sans, sans-serif) !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: var(--ink, #1A1613) !important;
    border-bottom: 1px solid var(--ink, #1A1613) !important;
    padding-bottom: 0.2rem !important;
    margin-top: 0.25rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    align-self: flex-start !important;
  }

  /* === Section padding + breathing room === */
  body.reviews-skin .best-of,
  body.reviews-skin .viral,
  body.reviews-skin .mag-section {
    padding-block: 2.5rem !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    border-bottom: 0 !important;
  }

  /* Restore the dek under hero — was hidden by the old "strip text" rule */
  body.reviews-skin .mag-lead .mag-dek {
    display: block !important;
  }

  /* Kill the ::before pseudo-elements that the old rule used as fake headings */
  body.reviews-skin .shop-strip .wrap::before,
  body.reviews-skin .best-of .wrap::before {
    content: none !important;
    display: none !important;
  }
}
/* End MOBILE HEADINGS RESTORED · 2026-05-01d */
