:root {
  /* CytoDaily — morning wheat / cell-level nourish (family with Aura, not a clone) */
  --ink: #1a1712;
  --ink-soft: #3d372e;
  --muted: #6b6358;
  --paper: #f6f1e8;
  --paper-deep: #ebe3d4;
  --line: rgba(26, 23, 18, 0.1);
  --copper: #9a6b2f;
  --copper-deep: #7a5224;
  --copper-soft: #c4a06a;
  --steel: #3d5a45;
  --steel-mid: #4f7359;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* ——— Nav ——— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 26px 0;
}

.nav-solid {
  position: sticky;
  background: rgba(243, 246, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
}

.nav-mark img,
.nav-logo {
  display: block;
  height: 36px;
  width: auto;
}

.nav-mark--logo {
  opacity: 1;
}

.brand-logo {
  display: block;
  height: clamp(56px, 10vw, 108px);
  width: auto;
  max-width: min(640px, 94vw);
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.05s var(--ease) 0.12s forwards;
  filter: drop-shadow(0 1px 18px rgba(0, 0, 0, 0.25));
}

.footer-brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.nav-solid .nav-mark {
  color: var(--ink);
  opacity: 1;
}

.nav-mark em {
  font-style: normal;
  color: var(--copper-soft);
}

.nav-solid .nav-mark em {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.nav-solid .nav-links {
  color: var(--muted);
}

.nav-links a {
  transition: color 0.25s var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-solid .nav-links a:hover {
  color: var(--ink);
}

.nav:not(.nav-solid) .nav-links a:hover {
  color: #fff;
}

.nav-solid .nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.nav-solid .nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--copper);
  border-radius: 1px;
}

.nav:not(.nav-solid) .nav-links a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-solid .nav-cta {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-solid .nav-cta:hover {
  background: var(--steel);
}

.nav-over-hero {
  position: sticky;
  top: 0;
  z-index: 20;
  /* Let the hero image read through the bar */
  background: rgba(18, 6, 10, 0.2);
  backdrop-filter: blur(10px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-over-hero .nav-mark {
  color: #fff;
  opacity: 1;
}

.nav-over-hero .nav-mark em {
  color: var(--copper-soft);
}

.nav-over-hero .nav-logo {
  /* Keep the brand colors — do not invert to white */
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.45));
}

.nav-over-hero .nav-links {
  color: rgba(255, 255, 255, 0.82);
}

.nav-over-hero .nav-links a:hover {
  color: #fff;
}

.nav-over-hero .nav-links a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.nav-over-hero .nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--copper-soft);
  border-radius: 1px;
}

.nav-over-hero .nav-cta {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.nav-over-hero .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #2a1f14;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  transform: scale(1.05);
  animation: hero-drift 22s var(--ease) infinite alternate;
  filter: saturate(1.08) contrast(1.03);
}

/* CSS atmosphere when no photo yet — morning wheat / olive cells */
.hero-media--atmosphere {
  background:
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(196, 160, 106, 0.45), transparent 58%),
    radial-gradient(ellipse 40% 38% at 88% 72%, rgba(61, 90, 69, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 40% at 18% 78%, rgba(154, 107, 47, 0.22), transparent 50%),
    linear-gradient(125deg, #1e1810 0%, #3a2c1c 42%, #5c4630 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 48% at 72% 44%, rgba(196, 160, 106, 0.2), transparent 62%),
    radial-gradient(ellipse 40% 35% at 18% 80%, rgba(154, 107, 47, 0.16), transparent 55%);
  pointer-events: none;
  animation: veil-breathe 9s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.55) 0%, rgba(20, 16, 10, 0.14) 36%, rgba(20, 16, 10, 0.2) 55%, rgba(20, 16, 10, 0.86) 100%),
    linear-gradient(90deg, rgba(18, 14, 10, 0.82) 0%, rgba(18, 14, 10, 0.36) 40%, rgba(18, 14, 10, 0.06) 100%);
  pointer-events: none;
}

.hero-media.hero-media--atmosphere::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 236, 200, 0.2) 0%, transparent 28%),
    radial-gradient(circle at 64% 58%, rgba(196, 160, 106, 0.18) 0%, transparent 22%),
    radial-gradient(circle at 82% 62%, rgba(120, 150, 110, 0.16) 0%, transparent 24%);
  animation: veil-breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 12vh, 110px);
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12.5vw, 136px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.05s var(--ease) 0.12s forwards;
}

.brand em {
  font-style: normal;
  color: var(--copper-soft);
}

.hero-copy {
  margin-top: clamp(22px, 3vw, 32px);
  max-width: 42rem;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.05s var(--ease) 0.38s forwards;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: none;
  white-space: nowrap;
}

.hero-copy p {
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 26rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1.05s var(--ease) 0.58s forwards;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 1s var(--ease) 1.1s forwards;
}

.hero-scroll span {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(212, 160, 106, 0.9), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--copper);
  color: #fff;
}

.btn-primary:hover {
  background: var(--copper-deep);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--steel);
}

/* ——— Trust ——— */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
  padding: 18px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Sections ——— */
.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.categories .section-head,
.picks .section-head,
.club .section-head,
.standards .section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.picks .section-head,
.club .section-head,
.standards .section-head {
  max-width: none;
}

.picks .section-head h2,
.club .section-head h2,
.standards .section-head h2,
.picks .section-head p,
.club .section-head p,
.standards .section-head p {
  white-space: nowrap;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
}

.section-head .eyebrow {
  margin-top: 0;
}

/* ——— Categories ——— */
.categories {
  background: var(--white);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.category-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}

.category:hover {
  padding-left: 8px;
}

.category h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.category p {
  margin-top: 8px;
  max-width: none;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
}

.category-go {
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
  white-space: nowrap;
  align-self: center;
  transition: transform 0.3s var(--ease);
}

.category:hover .category-go {
  transform: translateX(6px);
}

/* ——— Picks ——— */
.picks {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(181, 110, 46, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(30, 58, 95, 0.08), transparent 50%),
    var(--paper);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.pick-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4-pick shortlists: wide 4 → mid 2 → narrow 1 (via 900px rule) */
.pick-list--quad {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pick-list--quad .pick-meta h3 {
  font-size: 18px;
}

.pick-list--quad .pick-meta p {
  font-size: 14px;
}

@media (max-width: 1099px) {
  .pick-list--quad {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .pick-list--quad .pick-meta h3 {
    font-size: 22px;
  }

  .pick-list--quad .pick-meta p {
    font-size: 15px;
  }
}

.pick {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pick-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}

.pick-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pick:hover .pick-visual img {
  transform: scale(1.04);
}

.pick-meta {
  padding-top: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pick-meta .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

.pick-meta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
  line-height: 1.2;
}

.pick-meta p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}

.pick-meta .link {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
}

.pick-meta .link:hover {
  color: var(--copper);
}

.picks-more {
  margin-top: 36px;
  text-align: right;
}

.picks-more a {
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
}

/* ——— Club ——— */
.club {
  background: var(--steel);
  color: #fff;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.club .eyebrow {
  color: var(--copper-soft);
}

.club .section-head h2 {
  color: #fff;
}

.club .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.article-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.article {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s var(--ease);
}

.article:hover h3 {
  color: var(--copper-soft);
}

.article time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.article h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.article span {
  font-size: 14px;
  font-weight: 600;
  color: var(--copper-soft);
  white-space: nowrap;
}

/* ——— Standards ——— */
.standards {
  background: var(--white);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.standard h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.standard p {
  color: var(--muted);
  font-size: 15px;
  max-width: 22rem;
}

/* ——— CTA ——— */
.close-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: clamp(40px, 5vw, 56px) 0;
}

.close-cta::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(154, 107, 47, 0.32), transparent 42%),
    radial-gradient(circle at 75% 60%, rgba(61, 90, 69, 0.38), transparent 40%);
  animation: orb-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.close-cta .container {
  position: relative;
}

.close-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 22ch;
  margin-inline: auto;
}

.close-cta p {
  margin: 14px auto 24px;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  white-space: nowrap;
}

.close-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ——— Footer ——— */
.footer {
  background: #14110c;
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-brand em {
  font-style: normal;
  color: var(--copper-soft);
}

.footer-brand-logo + p {
  margin-top: 10px;
  font-size: 14px;
  max-width: 18rem;
}

.footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--copper-soft);
}

.disclaimer {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
}

.disclaimer a {
  display: inline;
  color: rgba(255, 255, 255, 0.45);
}

/* ——— Inner page hero ——— */
.page-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(181, 110, 46, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(30, 58, 95, 0.08), transparent 45%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--copper);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: none;
}

.page-hero--legal {
  padding: clamp(24px, 3.5vw, 36px) 0 clamp(20px, 3vw, 28px);
}

.page-hero--legal .breadcrumb {
  margin-bottom: 10px;
}

.page-hero--legal h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: none;
}

.page-hero--legal .lede {
  margin-top: 10px;
  font-size: 16px;
}

.page-hero--legal + .legal {
  padding-top: clamp(24px, 4vw, 40px);
}

.page-hero .lede {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
  max-width: none;
}

.page-hero--light,
.page-hero--copper,
.page-hero--magnetic,
.page-hero--reviews {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-bottom: none;
  /* Pull hero under sticky nav so the image runs into the top bar */
  margin-top: -84px;
  padding-top: calc(84px + clamp(32px, 4vw, 48px));
  padding-bottom: clamp(20px, 3vw, 32px);
  min-height: 0;
  overflow: hidden;
}

.page-hero--light {
  background-color: #2a0610;
}

.page-hero--copper {
  background-color: #1c1008;
}

.page-hero--magnetic {
  background-color: #050810;
}

.page-hero--reviews {
  background-color: #3a1c14;
}

.page-hero--light::before,
.page-hero--copper::before,
.page-hero--magnetic::before,
.page-hero--reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: -2;
}

.page-hero--light::before {
  background-image: url("../assets/light-hero.jpg");
  /* Favor bottom golden waves + right glow */
  background-position: 58% 72%;
}

.page-hero--copper::before {
  background-image: url("../assets/copper-hero.jpg");
  background-position: 72% 48%;
}

.page-hero--magnetic::before {
  background-image: url("../assets/magnetic-hero.jpg");
  /* Favor Earth + field lines; keep solar glow off the title column */
  background-position: 62% 48%;
}

.page-hero--reviews::before {
  background-image: url("../assets/reviews-hero.png");
  /* Favor cell cluster on the right; keep title in the quieter left glow */
  background-position: 72% 46%;
}

.page-hero--light::after,
.page-hero--copper::after,
.page-hero--magnetic::after,
.page-hero--reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero--light::after {
  background: linear-gradient(
    105deg,
    rgba(14, 22, 36, 0.78) 0%,
    rgba(14, 22, 36, 0.52) 38%,
    rgba(14, 22, 36, 0.22) 66%,
    rgba(14, 22, 36, 0.05) 100%
  );
}

.page-hero--copper::after {
  background: linear-gradient(
    105deg,
    rgba(22, 12, 6, 0.82) 0%,
    rgba(22, 12, 6, 0.55) 36%,
    rgba(22, 12, 6, 0.22) 64%,
    rgba(22, 12, 6, 0.06) 100%
  );
}

.page-hero--magnetic::after {
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.88) 0%,
    rgba(5, 8, 16, 0.62) 34%,
    rgba(5, 8, 16, 0.28) 62%,
    rgba(5, 8, 16, 0.08) 100%
  );
}

.page-hero--reviews::after {
  background: linear-gradient(
    105deg,
    rgba(42, 18, 14, 0.78) 0%,
    rgba(42, 18, 14, 0.48) 36%,
    rgba(42, 18, 14, 0.18) 64%,
    rgba(42, 18, 14, 0.04) 100%
  );
}

.page-hero--light .container,
.page-hero--copper .container,
.page-hero--magnetic .container,
.page-hero--reviews .container {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 48px));
}

.page-hero--light .breadcrumb,
.page-hero--copper .breadcrumb,
.page-hero--magnetic .breadcrumb,
.page-hero--reviews .breadcrumb {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero--light .breadcrumb a:hover,
.page-hero--copper .breadcrumb a:hover,
.page-hero--magnetic .breadcrumb a:hover,
.page-hero--reviews .breadcrumb a:hover {
  color: var(--copper-soft);
}

.page-hero--light h1,
.page-hero--copper h1,
.page-hero--magnetic h1 {
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero--reviews h1 {
  color: #fff;
  max-width: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero--light .lede,
.page-hero--copper .lede,
.page-hero--magnetic .lede,
.page-hero--reviews .lede {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  max-width: none;
}

@media (max-width: 720px) {
  .page-hero--light,
  .page-hero--copper,
  .page-hero--magnetic,
  .page-hero--reviews {
    margin-top: -76px;
    padding-top: calc(76px + 28px);
  }

  .page-hero--light::before {
    background-position: 70% 70%;
  }

  .page-hero--copper::before {
    background-position: 78% 52%;
  }

  .page-hero--magnetic::before {
    background-position: 68% 50%;
  }

  .page-hero--reviews::before {
    background-position: 78% 50%;
  }

  .page-hero--light::after,
  .page-hero--copper::after,
  .page-hero--magnetic::after,
  .page-hero--reviews::after {
    background: linear-gradient(
      180deg,
      rgba(14, 22, 36, 0.72) 0%,
      rgba(14, 22, 36, 0.48) 50%,
      rgba(14, 22, 36, 0.28) 100%
    );
  }

  .page-hero--copper::after {
    background: linear-gradient(
      180deg,
      rgba(22, 12, 6, 0.78) 0%,
      rgba(22, 12, 6, 0.5) 48%,
      rgba(22, 12, 6, 0.32) 100%
    );
  }

  .page-hero--magnetic::after {
    background: linear-gradient(
      180deg,
      rgba(5, 8, 16, 0.82) 0%,
      rgba(5, 8, 16, 0.55) 48%,
      rgba(5, 8, 16, 0.36) 100%
    );
  }

  .page-hero--reviews::after {
    background: linear-gradient(
      180deg,
      rgba(42, 18, 14, 0.78) 0%,
      rgba(42, 18, 14, 0.52) 48%,
      rgba(42, 18, 14, 0.34) 100%
    );
  }
}

/* ——— Product detail ——— */
.product {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.product-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

.product-body h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 10px;
}

.product-body .summary {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.affiliate-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.specs {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.specs h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.spec-row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.spec-row dt {
  color: var(--muted);
  font-weight: 500;
}

.product-prose {
  margin-top: 28px;
}

.product-prose h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-prose p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.product-prose a {
  color: var(--copper);
  font-weight: 500;
}

.related {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* ——— Criteria list (category) ——— */
.criteria {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.criteria-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.criteria-item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.criteria-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.criteria-item p {
  color: var(--muted);
  font-size: 15px;
}

/* ——— Light pathway guide ——— */
.overview {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.overview,
.pathway-map,
.class-block,
.criteria {
  padding: clamp(40px, 5vw, 56px) 0;
}

.overview .section-head,
.pathway-map .section-head,
.class-block .section-head,
.criteria .section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.overview-prose p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 40rem;
}

.overview-prose p:last-child {
  margin-bottom: 0;
}

.overview-prose h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 28px 0 10px;
  color: var(--ink);
}

.overview-prose ul,
.overview-prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 15px;
}

.overview-prose li {
  margin-bottom: 8px;
}

.spectrum-figure {
  margin: 4px 0 22px;
  max-width: 40rem;
}

.spectrum-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spectrum-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  max-width: 40rem !important;
  margin: 18px 0 24px !important;
  padding: clamp(14px, 2vw, 20px) 8px !important;
  background: linear-gradient(145deg, #eef4f8 0%, #f7fafc 55%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.benefit-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin: 0 !important;
  padding: 0 4px;
  position: relative;
}

.benefit-row li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}

.benefit-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.benefit-row strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.benefit-row span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.band-callout {
  display: grid;
  grid-template-columns: 1fr minmax(140px, 0.85fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  max-width: 40rem;
  margin: 8px 0 16px;
  padding: clamp(18px, 2.5vw, 28px);
  background: linear-gradient(145deg, #eef4f8 0%, #f7fafc 55%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.band-callout + .band-callout {
  margin-top: 0;
}

.band-callout + p {
  margin-top: 6px;
}

.band-nm {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.15;
}

.band-nm span {
  color: #c62828;
}

.band-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px !important;
}

.band-points {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.band-points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.band-points li:last-child {
  margin-bottom: 0;
}

.band-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid #c62828;
  border-radius: 50%;
  color: #c62828;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
}

.band-callout-visual {
  margin: 0;
}

.band-callout-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.wave-table {
  width: 100%;
  max-width: 40rem;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
}

.wave-table th,
.wave-table td {
  text-align: left;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.wave-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.wave-table td {
  color: var(--ink-soft);
}

.wave-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  padding-right: 16px;
}

.overview-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 28px);
}

.overview-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  /* Nav ~84px + breathing room below sticky bar */
  top: calc(84px + clamp(18px, 2.5vw, 28px));
  align-self: start;
}

.overview-aside h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.overview-aside .eyebrow {
  margin-bottom: 12px;
}

.overview-aside ol,
.overview-aside ul {
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.overview-aside li {
  margin-bottom: 8px;
}

.overview-aside p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.pathway-map {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.pathway-grid--quad {
  grid-template-columns: repeat(4, 1fr);
}

.pathway-card {
  display: block;
  padding: 22px 0 8px;
  border-top: 2px solid var(--copper);
  transition: opacity 0.25s var(--ease);
}

.pathway-card:hover {
  opacity: 0.85;
}

.pathway-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

.pathway-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
}

.pathway-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pathway-card .go {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
}

.class-block {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.class-block:nth-of-type(even) {
  background: var(--paper);
}

.class-overview {
  max-width: 42rem;
  margin: 4px 0 28px;
}

.class-overview p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.6;
}

.class-overview p:last-child {
  margin-bottom: 0;
}

.class-overview strong {
  color: var(--ink);
  font-weight: 600;
}

.class-empty {
  margin-top: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.class-empty strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .pathway-grid--quad {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .overview-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid--quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-aside {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .overview-stack {
    position: static;
    gap: 0;
  }

  .overview-stack .overview-aside + .overview-aside {
    margin-top: 8px;
  }

  .band-callout {
    grid-template-columns: 1fr;
  }

  .band-callout-visual {
    max-width: 260px;
    margin: 0 auto;
  }

  .benefit-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
  }

  .benefit-row li:not(:last-child)::after {
    display: none;
  }
}

/* ——— Legal pages ——— */
.legal {
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 10vw, 112px);
  background: var(--white);
}

.legal-doc {
  max-width: none;
}

.legal-doc .updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}

.legal-doc h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.legal-doc ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc a {
  color: var(--copper);
  font-weight: 500;
}

.legal-doc a:hover {
  text-decoration: underline;
}

/* ——— Go redirect ——— */
.go-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(181, 110, 46, 0.12), transparent 55%),
    var(--paper);
  text-align: center;
}

.go-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.go-shell p {
  margin: 12px auto 24px;
  max-width: 28rem;
  color: var(--muted);
}

.go-shell code {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1.1) translateY(-1.5%);
  }
}

@keyframes veil-breathe {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.55);
    transform-origin: top;
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

@keyframes orb-drift {
  from {
    transform: translate(-2%, -1%) scale(1);
  }
  to {
    transform: translate(3%, 2%) scale(1.06);
  }
}

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

  .brand,
  .brand-logo,
  .hero-copy,
  .hero-actions,
  .hero-scroll,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .hero-media img,
  .hero-media::before,
  .hero-scroll span,
  .close-cta::before,
  .hero-media::after {
    animation: none;
  }
}

@media (max-width: 900px) {
  .pick-list,
  .standard-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .criteria-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-media img {
    object-position: 62% 42%;
  }
}

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

  .pathway-grid--quad {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .close-cta p,
  .close-note {
    white-space: normal;
  }

  .picks .section-head h2,
  .club .section-head h2,
  .standards .section-head h2,
  .picks .section-head p,
  .club .section-head p,
  .standards .section-head p {
    white-space: normal;
  }

  .category p {
    white-space: normal;
  }

  .container,
  .hero-content {
    width: calc(100% - 32px);
  }

  .category {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-scroll {
    display: none;
  }

  .brand {
    font-size: clamp(52px, 16vw, 72px);
  }
}

/* ——— CytoDaily: wordmark, concerns index, aisle heroes ——— */
.nav-mark--word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: #fff;
}

.nav-solid .nav-mark--word {
  color: var(--ink);
}

.nav-mark--word em {
  font-style: normal;
  color: var(--copper-soft);
}

.nav-solid .nav-mark--word em {
  color: var(--copper);
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.05s var(--ease) 0.12s forwards;
}

.brand-word em {
  font-style: normal;
  color: var(--copper-soft);
}

.footer-brand-word {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand-word em {
  font-style: normal;
  color: var(--copper-soft);
}

.concerns-home {
  background: var(--paper);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.concern-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.concern-chip:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.concern-chip h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.concern-chip p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.concern-note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
  max-width: 42rem;
}

.concern-note a {
  color: var(--copper);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--minerals,
.page-hero--fuel,
.page-hero--flavour,
.page-hero--concerns,
.page-hero--reviews {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-bottom: none;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(196, 160, 106, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(61, 90, 69, 0.3), transparent 50%),
    linear-gradient(125deg, #1e1810 0%, #3a2c1c 55%, #2a3828 100%);
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}

.page-hero--minerals h1,
.page-hero--fuel h1,
.page-hero--flavour h1,
.page-hero--concerns h1,
.page-hero--reviews h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero--minerals .lede,
.page-hero--fuel .lede,
.page-hero--flavour .lede,
.page-hero--concerns .lede,
.page-hero--reviews .lede {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--minerals .breadcrumb,
.page-hero--fuel .breadcrumb,
.page-hero--flavour .breadcrumb,
.page-hero--concerns .breadcrumb,
.page-hero--reviews .breadcrumb {
  color: rgba(255, 255, 255, 0.68);
}

.stub-panel {
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  max-width: 40rem;
}

@media (max-width: 960px) {
  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .concern-grid {
    grid-template-columns: 1fr;
  }
}
