﻿:root {
  --font-body: "Instrument Sans", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --bg: #f5f1e9;
  --bg-soft: #fbf7f0;
  --surface: #fffdf8;
  --surface-soft: #faf5ed;
  --surface-muted: #eee3d5;
  --surface-alt: #e8efe8;
  --surface-dark: #17221d;
  --surface-dark-soft: #233129;
  --border: #d8cbbb;
  --border-strong: #a9957d;
  --text: #17211c;
  --text-soft: #5e665e;
  --accent: #35624b;
  --accent-deep: #1f3c2f;
  --accent-soft: #e4eee4;
  --accent-wash: #eff5ee;
  --accent-warm: #a56e45;
  --accent-ink: #213137;
  --shadow-sm: 0 12px 26px rgba(23, 33, 28, 0.045);
  --shadow: 0 24px 56px rgba(23, 33, 28, 0.074);
  --shadow-lg: 0 34px 82px rgba(23, 33, 28, 0.105);
  --radius-sm: 0.3rem;
  --radius: 0.42rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.5rem;
  --shell-width: 87rem;
  --header-width: 80rem;
  --hub-width: 80rem;
  --browse-width: 85rem;
  --article-width: 53.5rem;
  --support-width: 65rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.87;
  color: var(--text);
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='%2318231d' fill-opacity='.018'%3E%3Ccircle cx='20' cy='28' r='.8'/%3E%3Ccircle cx='42' cy='74' r='1'/%3E%3Ccircle cx='96' cy='42' r='.9'/%3E%3Ccircle cx='156' cy='38' r='.95'/%3E%3Ccircle cx='188' cy='92' r='.85'/%3E%3Ccircle cx='40' cy='150' r='.85'/%3E%3Ccircle cx='118' cy='124' r='.95'/%3E%3Ccircle cx='178' cy='170' r='1'/%3E%3Ccircle cx='94' cy='188' r='.85'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%2318231d' stroke-opacity='.015' stroke-width='1'%3E%3Cpath d='M18 44c30 10 68 12 110 3'/%3E%3Cpath d='M130 26c36 12 78 16 122 8'/%3E%3Cpath d='M26 156c43 -10 88 -9 138 0'/%3E%3Cpath d='M116 226c38 -10 83 -8 128 5'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at top left, rgba(228, 236, 228, 0.58), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 33rem),
    linear-gradient(180deg, #faf6f1 0%, #f4efe7 42%, #f7f3ed 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}

body::before {
  opacity: 0.092;
  background-image:
    url("assets/background-images/bg-image-1.png"),
    url("assets/background-images/bg-image-2.png");
  background-position:
    left -5.2rem top 5rem,
    right -4.4rem top 45%;
  background-size:
    clamp(20rem, 31vw, 28rem),
    clamp(16rem, 25vw, 22rem);
}

body::after {
  opacity: 0.058;
  background-image: url("assets/background-images/bg-image-3.png");
  background-position: left -4.2rem bottom 6%;
  background-size: clamp(13.5rem, 20vw, 18rem);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

::selection {
  color: var(--text);
  background: rgba(53, 95, 73, 0.16);
}

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

figure {
  margin: 0;
}

main {
  padding: clamp(1.95rem, 3.4vw, 2.7rem) 0 clamp(4.9rem, 7vw, 6.8rem);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
  text-decoration-color: rgba(53, 95, 73, 0.42);
  transition:
    color 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    text-decoration-thickness 140ms ease,
    text-decoration-color 140ms ease,
    text-underline-offset 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

a:hover,
a:focus-visible {
  color: var(--accent-deep);
  text-decoration-thickness: 0.11em;
  text-decoration-color: currentColor;
  text-underline-offset: 0.2em;
}

a:focus-visible,
.button-link:focus-visible,
.site-nav a:focus-visible,
.language-switcher__toggle:focus-visible,
.spotlight-card:focus-visible,
.route-card:focus-visible,
.summary-card:focus-visible {
  outline: 2px solid rgba(53, 95, 73, 0.24);
  outline-offset: 3px;
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1.22rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.84rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.45rem);
}

h2 {
  font-size: clamp(1.84rem, 3.15vw, 2.7rem);
}

h3 {
  font-size: clamp(1.16rem, 1.95vw, 1.46rem);
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 30;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: visible;
  background: rgba(255, 252, 248, 0.92);
  border-bottom: 1px solid rgba(215, 204, 189, 0.75);
  box-shadow: 0 10px 24px rgba(24, 35, 29, 0.045);
  backdrop-filter: blur(14px);
}

.shell {
  width: min(calc(100% - 2rem), var(--shell-width));
  margin: 0 auto;
}

.shell.shell--hub {
  width: min(calc(100% - 2rem), var(--hub-width));
}

.shell.page-wide {
  width: min(calc(100% - 2rem), var(--browse-width));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.35rem;
  width: min(calc(100% - 2rem), var(--header-width));
  margin: 0 auto;
  padding: 0.9rem 0 1.1rem;
  position: relative;
}

.brand {
  color: var(--text);
  text-decoration: none;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
  max-width: none;
  min-width: 0;
  position: relative;
  z-index: 2;
  margin-right: clamp(1.35rem, 2.5vw, 2.25rem);
  min-height: 3rem;
  padding-left: 5.6rem;
  transform: none;
}

.site-header .brand-mark {
  position: absolute;
  top: -4px;
  left: 0;
  flex: 0 0 auto;
  width: 4.8rem;
  overflow: hidden;
  border: 1px solid rgba(215, 204, 189, 0.88);
  border-radius: calc(var(--radius-sm) + 0.02rem);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(24, 35, 29, 0.1);
}

.site-header .brand-mark img {
  width: 100%;
  height: auto;
}

.site-header .brand-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.site-header .brand-title {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.72rem;
  min-height: 2.72rem;
  padding: 0.56rem 0.84rem;
  border: 1px solid rgba(185, 170, 149, 0.92);
  border-radius: calc(var(--radius-sm) + 0.04rem);
  background: rgba(255, 253, 249, 0.96);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    color 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(53, 95, 73, 0.22);
  box-shadow: 0 16px 30px rgba(24, 35, 29, 0.07);
  transform: translateY(-1px);
}

.nav-toggle-box {
  display: inline-grid;
  gap: 0.24rem;
}

.nav-toggle-box span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
}

.site-nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.62rem 1.08rem;
}

.site-nav ul,
.footer-links,
.directory-list,
.breadcrumbs ol,
.topic-list,
.checklist,
.related-reading ul,
.hero-list,
.summary-grid,
.spotlight-grid,
.route-grid,
.site-map-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  width: auto;
  gap: 0.4rem 1.18rem;
}

.site-nav-secondary,
.site-nav-divider {
  display: none;
}

.site-nav-primary {
  flex: 1 1 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 2.4rem;
  padding: 0.28rem 0.08rem 0.64rem;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.16rem;
  right: 0.16rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 95, 73, 0.78), rgba(53, 95, 73, 0.5));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  border-color: transparent;
  color: var(--accent-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: clamp(0.8rem, 1.7vw, 1.28rem);
  color: var(--text);
}

.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-height: 2.28rem;
  padding: 0.3rem 0.66rem 0.4rem;
  border: 1px solid rgba(215, 204, 189, 0.88);
  border-radius: calc(var(--radius-sm) + 0.02rem);
  background: rgba(255, 253, 249, 0.88);
  color: var(--text);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(24, 35, 29, 0.045);
  transition:
    color 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible,
.language-switcher.is-open .language-switcher__toggle {
  color: var(--accent-deep);
  border-color: rgba(53, 95, 73, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(24, 35, 29, 0.065);
  transform: translateY(-1px);
}

.language-switcher__current {
  display: inline-flex;
  align-items: center;
}

.language-switcher__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-switcher__chevron {
  transform: translateY(1px) rotate(225deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.52rem);
  right: 0;
  z-index: 12;
  display: grid;
  min-width: 12.5rem;
  gap: 0.16rem;
  padding: 0.46rem;
  border: 1px solid rgba(215, 204, 189, 0.92);
  border-radius: calc(var(--radius) + 0.04rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 241, 232, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.site-nav .language-switcher__menu {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
}

.language-switcher__menu[hidden] {
  display: none !important;
}

html:not(.js-ready) .language-switcher__menu[hidden] {
  position: static;
  display: grid !important;
  margin-top: 0.45rem;
}

.language-switcher__menu li {
  display: block;
}

.site-nav .language-switcher__menu a {
  display: grid;
  grid-template-columns: minmax(2.85rem, auto) minmax(0, 1fr);
  align-items: center;
  justify-content: flex-start;
  gap: 0.78rem;
  min-height: 2.42rem;
  padding: 0.5rem 0.58rem 0.54rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: calc(var(--radius-sm) + 0.02rem);
  text-decoration: none;
}

.site-nav .language-switcher__menu a::after {
  display: none;
}

.language-switcher__code {
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher__name {
  color: var(--text-soft);
  font-size: 0.84rem;
  text-align: left;
}

.site-nav .language-switcher__menu a:hover,
.site-nav .language-switcher__menu a:focus-visible,
.site-nav .language-switcher__menu a[aria-current="true"] {
  background: rgba(228, 236, 228, 0.48);
  color: var(--accent-deep);
}

.site-nav .language-switcher__menu a:hover .language-switcher__name,
.site-nav .language-switcher__menu a:focus-visible .language-switcher__name,
.site-nav .language-switcher__menu a[aria-current="true"] .language-switcher__name {
  color: var(--text);
}

.eyebrow,
.card-kicker,
.route-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.46rem 0.82rem;
  border: 1px solid rgba(53, 95, 73, 0.12);
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
}

.lede {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.26rem);
  line-height: 1.78;
}

.muted,
.article-meta {
  color: var(--text-soft);
}

.article-meta {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.94rem 1.32rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  color: #fff;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 0 18px 34px rgba(36, 63, 49, 0.18);
  transform: translateY(-1px);
}

.button-link.secondary {
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(191, 174, 149, 0.88);
  color: var(--accent);
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
  background: var(--surface-muted);
  border-color: rgba(53, 95, 73, 0.18);
  color: var(--accent-deep);
  box-shadow: 0 16px 28px rgba(24, 35, 29, 0.07);
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.hero,
.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.route-card,
.spotlight-card,
.article-header,
.article-header--visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 244, 236, 0.97));
  border: 1px solid rgba(215, 204, 189, 0.92);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.section,
.topic-group,
.related-reading {
  position: relative;
  isolation: isolate;
}

.section::before,
.topic-group::before,
.related-reading::before {
  content: "";
  position: absolute;
  inset: -0.4rem -0.2rem auto;
  height: 11rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='180' viewBox='0 0 420 180'%3E%3Cg fill='none' stroke='%23355f49' stroke-opacity='.065' stroke-width='1.15'%3E%3Cpath d='M309 25c27 7 55 25 78 55'/%3E%3Cpath d='M286 50c20 5 43 19 60 42'/%3E%3Cpath d='M337 73c16 11 31 28 39 47'/%3E%3Cpath d='M93 42c34-10 76-10 116 0'/%3E%3Cpath d='M64 70c52-13 106-14 161-4'/%3E%3C/g%3E%3C/svg%3E") right top / min(22rem, 48%) auto no-repeat,
    radial-gradient(circle at 10% 12%, rgba(242, 236, 226, 0.34), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(228, 236, 228, 0.32), transparent 38%);
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
}

.hero::before,
.panel::before,
.article-card::before,
.note::before,
.trust-box::before,
.comparison-table-wrap::before,
.directory-block::before,
.site-map-section::before,
.summary-card::before,
.route-card::before,
.spotlight-card::before,
.article-header--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23355f49' stroke-opacity='.045' stroke-width='1'%3E%3Cpath d='M225 36c23 18 40 44 48 75'/%3E%3Cpath d='M56 244c27-19 61-28 95-24'/%3E%3Cpath d='M204 88c17 11 30 28 37 48'/%3E%3C/g%3E%3C/svg%3E") right top / 15rem auto no-repeat,
    radial-gradient(circle at top right, rgba(228, 236, 228, 0.52), transparent 34%),
    radial-gradient(circle at bottom left, rgba(243, 236, 225, 0.56), transparent 40%);
  pointer-events: none;
  opacity: 0.6;
}

.hero > *,
.panel > *,
.article-card > *,
.note > *,
.trust-box > *,
.comparison-table-wrap > *,
.directory-block > *,
.site-map-section > *,
.summary-card > *,
.route-card > *,
.spotlight-card > *,
.article-header--visual > * {
  position: relative;
  z-index: 1;
}

.hero {
  padding: clamp(1.9rem, 3vw, 2.55rem);
  margin-bottom: clamp(2.8rem, 5.4vw, 4.15rem);
}

.hero--home {
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.98), rgba(239, 246, 239, 0.9)),
    var(--surface);
}

.hero--products {
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.98), rgba(244, 236, 230, 0.92)),
    var(--surface);
}

.hero--guides,
.hero--categories,
.hero--brands {
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.98), rgba(242, 246, 241, 0.9)),
    var(--surface);
}

.hero-layout,
.article-header-layout,
.feature-split {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.84fr);
}

.hero-copy {
  min-width: 0;
  max-width: 51rem;
  padding: clamp(0.55rem, 1.1vw, 1rem);
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 1.05rem;
  line-height: 1.03;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem 0.62rem;
  margin-top: 1.28rem;
}

.hero-list li {
  padding: 0.34rem 0.64rem 0.38rem;
  border: 1px solid rgba(185, 170, 149, 0.72);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.82);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero-visual-grid,
.hero-stack,
.feature-stack {
  min-width: 0;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.92rem;
  width: min(100%, 27.5rem);
  margin-left: auto;
}

.hero-visual-grid--single {
  grid-template-columns: 1fr;
}

.hero-visual-grid--home {
  grid-template-columns: 1fr;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  align-content: start;
}

.hero-photo,
.feature-media,
.article-header-figure,
.spotlight-media,
.card-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.04rem);
  background: #ebe3d8;
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: 100%;
}

.hero-photo--main {
  aspect-ratio: 16 / 12;
}

.hero-photo--wide,
.feature-media--wide {
  aspect-ratio: 16 / 10;
}

.hero-photo--square,
.feature-media--square {
  aspect-ratio: 4 / 3;
}

.hero-photo img,
.feature-media img,
.article-header-figure img,
.spotlight-media img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note,
.hero-stack-card {
  padding: 1.04rem 1.08rem 1rem;
  border: 1px solid rgba(215, 204, 189, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-sm);
}

.hero-note {
  height: 100%;
}

.hero-note h3,
.hero-stack-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}

.hero-note p,
.hero-stack-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.28rem;
}

.summary-card {
  padding: 1.25rem 1.22rem 1.18rem;
  color: inherit;
  text-decoration: none;
}

.summary-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.42rem;
}

.summary-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.section,
.topic-group {
  margin-top: clamp(3.55rem, 5.4vw, 4.95rem);
}

.section > h2,
.topic-group > h2 {
  margin-bottom: 1.08rem;
}

.section-intro {
  max-width: 67ch;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.82;
  margin-bottom: 1.34rem;
}

.feature-split {
  grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.08fr);
  align-items: start;
}

.feature-media {
  min-height: 100%;
  max-width: 33rem;
}

.feature-content {
  min-width: 0;
}

.feature-content .panel,
.feature-content .trust-box {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid > * {
  min-width: 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.route-card {
  padding: clamp(1.55rem, 2.45vw, 2.14rem);
}

.panel h2,
.panel h3,
.article-card h2,
.article-card h3,
.route-card h2,
.route-card h3,
.directory-block h2,
.site-map-section h2 {
  margin-bottom: 0.5rem;
}

.panel p:last-child,
.article-card p:last-child,
.trust-box p:last-child,
.note p:last-child,
.route-card p:last-child,
.directory-block p:last-child,
.site-map-section p:last-child {
  margin-bottom: 0;
}

.trust-box {
  background:
    linear-gradient(180deg, rgba(248, 252, 249, 0.98), rgba(240, 246, 241, 0.95)),
    var(--surface);
  border-color: rgba(53, 95, 73, 0.14);
}

.article-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.article-card h2,
.article-card h3 {
  font-size: clamp(1.16rem, 1.8vw, 1.4rem);
}

.article-card h2:last-of-type,
.article-card h3:last-of-type {
  margin-bottom: 0.62rem;
}

.article-card > p {
  color: var(--text-soft);
  line-height: 1.7;
}

.article-card > p:last-of-type,
.card-body > p:last-of-type {
  margin-bottom: 0;
}

.article-card h2 a,
.article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.summary-card h3 a,
.route-card h2 a,
.route-card h3 a {
  color: inherit;
  text-decoration: none;
}

.article-card h2 a:hover,
.article-card h3 a:hover,
.article-card h2 a:focus-visible,
.article-card h3 a:focus-visible,
.summary-card h3 a:hover,
.summary-card h3 a:focus-visible,
.route-card h2 a:hover,
.route-card h2 a:focus-visible,
.route-card h3 a:hover,
.route-card h3 a:focus-visible {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.article-card__footer {
  margin-top: auto;
  padding-top: 1.12rem;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.article-card__link::after {
  content: "\2192";
  font-size: 0.92em;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
}

.article-card__link:hover,
.article-card__link:focus-visible {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-card__link:hover::after,
.article-card__link:focus-visible::after,
.article-card:hover .article-card__link::after,
.article-card:focus-within .article-card__link::after {
  transform: translateX(2px);
}

.article-card--media {
  padding: 0;
}

.card-media {
  aspect-ratio: 16 / 10;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.28rem 1.25rem 1.18rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.15rem;
}

.spotlight-card {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.spotlight-card:hover,
.spotlight-card:focus-visible,
.summary-card:hover,
.route-card:hover,
.article-card:hover,
.article-card:focus-within {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.article-card:hover,
.article-card:focus-within,
.spotlight-card:hover,
.spotlight-card:focus-visible,
.summary-card:hover,
.route-card:hover {
  transform: translateY(-1px);
}

.spotlight-media {
  aspect-ratio: 16 / 11;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.spotlight-body {
  padding: 1.22rem 1.16rem 1.22rem;
}

.spotlight-body h3 {
  margin-top: 0.55rem;
  margin-bottom: 0.4rem;
  font-size: 1.18rem;
}

.spotlight-body p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.64;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.15rem;
}

.route-card {
  color: inherit;
  text-decoration: none;
}

.route-number {
  margin-bottom: 0.92rem;
}

.route-card h2,
.route-card h3 {
  font-size: 1.24rem;
}

.route-card p {
  color: var(--text-soft);
  line-height: 1.68;
}

.article-layout {
  max-width: var(--article-width);
}

.article-layout--support {
  max-width: var(--support-width);
}

.article-layout.page-wide {
  max-width: 79rem;
}

.article-layout article,
.article-layout .article-header,
.article-layout .related-reading,
.article-layout .note,
.article-layout .comparison-table-wrap {
  margin-left: auto;
  margin-right: auto;
}

.article-header {
  margin-bottom: 2.4rem;
  padding: clamp(1.7rem, 2.7vw, 2.42rem);
}

.article-header:not(.article-header--visual) {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(246, 240, 231, 0.95)),
    var(--surface);
}

.article-header--visual {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(240, 246, 241, 0.92)),
    var(--surface);
}

.article-header-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(15.5rem, 0.9fr);
  gap: clamp(1.8rem, 3.2vw, 3.1rem);
}

.article-header-copy {
  min-width: 0;
}

.article-header h1 {
  line-height: 1.04;
}

.article-header-figure {
  aspect-ratio: 1 / 1;
}

.article-layout article > p,
.article-layout article > ul:not(.directory-list),
.article-layout article > ol,
.article-layout article > .section-intro {
  max-width: 73ch;
}

.article-layout--support article > p,
.article-layout--support article > ul:not(.directory-list),
.article-layout--support article > ol,
.article-layout--support article > .section-intro {
  max-width: 79ch;
}

.article-layout article > h2:not(:first-child),
.article-layout article > h3:not(:first-child) {
  margin-top: 3.2rem;
  padding-top: 1.82rem;
  border-top: 1px solid rgba(215, 204, 189, 0.92);
}

.article-layout article > h2 {
  font-size: clamp(1.8rem, 2.85vw, 2.34rem);
}

.article-layout article > h3 {
  font-size: clamp(1.16rem, 2vw, 1.42rem);
}

.directory-grid,
.site-map-grid {
  display: grid;
  gap: 1.42rem;
}

.directory-grid {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.directory-block--wide,
.site-map-section--wide {
  grid-column: 1 / -1;
}

.directory-list,
.footer-links,
.checklist,
.related-reading ul,
.topic-list {
  display: grid;
  gap: 0.9rem;
}

.directory-list li {
  padding: 1.05rem 1.08rem;
  border: 1px solid rgba(215, 204, 189, 0.92);
  border-radius: calc(var(--radius) + 0.06rem);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-sm);
  line-height: 1.68;
}

.directory-list.compact li {
  padding: 0.82rem 0.94rem;
}

.directory-list a {
  display: inline-block;
  margin-bottom: 0.14rem;
  font-weight: 700;
}

.breadcrumbs {
  margin-bottom: 1.38rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  box-shadow: none;
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 0.34rem;
  color: rgba(91, 102, 92, 0.74);
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs li:last-child {
  color: var(--text);
}

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

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.comparison-table-wrap {
  padding: clamp(1.4rem, 2.25vw, 1.95rem);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.97rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 0.95rem;
  border-top: 1px solid rgba(215, 204, 189, 0.9);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  border-top: 0;
  background: rgba(228, 236, 228, 0.65);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(243, 236, 225, 0.58);
}

.comparison-table tbody th {
  width: 24%;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
}

.comparison-table tbody td {
  color: var(--text-soft);
}

.comparison-table tbody tr:first-child th,
.comparison-table tbody tr:first-child td {
  border-top: 0;
}

.callout-list {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.callout-list li::marker {
  color: var(--accent);
}

.callout-list li + li,
.article-layout article > ul:not(.directory-list) li + li,
.article-layout article > ol li + li,
.related-reading li + li {
  margin-top: 0.48rem;
}

.related-reading.note {
  background:
    linear-gradient(180deg, rgba(249, 244, 236, 0.98), rgba(241, 234, 224, 0.95)),
    var(--surface);
}

.topic-group + .topic-group {
  margin-top: clamp(3rem, 4.2vw, 3.7rem);
}

.article-footer-links {
  margin-top: 2.95rem;
}

.site-footer {
  background:
    linear-gradient(180deg, #223028 0%, #17211b 100%);
  border-top: 1px solid rgba(33, 46, 38, 0.96);
  color: rgba(244, 241, 235, 0.9);
}

.footer-brand-block {
  min-width: 0;
}

.footer-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.footer-badge {
  width: 4.5rem;
  padding: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer-badge img {
  width: 100%;
  border-radius: calc(var(--radius) - 0.08rem);
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.05fr) minmax(0, 0.92fr);
  gap: 2.8rem;
  align-items: flex-start;
  padding: 3.1rem 0 2.45rem;
}

.site-footer .brand,
.site-footer .footer-links a {
  color: #f5f1ea;
}

.site-footer .brand small,
.footer-note,
.small-print {
  color: rgba(238, 233, 224, 0.72);
}

.footer-note {
  max-width: 34ch;
  font-size: 0.96rem;
}

.trust-box--brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.brand-plaque {
  max-width: 8rem;
  padding: 0.8rem;
  border: 1px solid rgba(215, 204, 189, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-sm);
  justify-self: end;
}

.brand-plaque img {
  width: 100%;
  border-radius: calc(var(--radius) - 0.08rem);
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: rgba(236, 230, 221, 0.7);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-links.compact {
  gap: 0.6rem 1.14rem;
}

.site-footer .footer-links.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.small-print {
  padding: 1.15rem 0 2.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.72;
}

@media (min-width: 900px) {
  .site-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body::before {
    opacity: 0.078;
    background-position:
      left -6.2rem top 5.2rem,
      right -5.5rem top 43%;
    background-size:
      clamp(17rem, 30vw, 23rem),
      clamp(14rem, 23vw, 18.5rem);
  }

  body::after {
    opacity: 0.046;
    background-position: left -4.8rem bottom 7%;
    background-size: clamp(12rem, 18vw, 15rem);
  }

  .site-header .header-inner {
    width: min(calc(100% - 1.6rem), var(--header-width));
  }

  .site-nav ul {
    gap: 0.3rem 0.94rem;
  }

  .site-nav a {
    font-size: 0.93rem;
  }

  .language-switcher {
    margin-left: 0.7rem;
  }

  .hero-layout,
  .feature-split,
  .article-header-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual-grid {
    width: min(100%, 31.5rem);
    margin-left: 0;
  }
}

@media (max-width: 920px) {
  .hero-visual-grid,
  .feature-split,
  .article-header-layout,
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual-grid,
  .hero-visual-grid--single {
    width: 100%;
    max-width: none;
  }

  .article-layout.page-wide {
    max-width: 100%;
  }

  .hero-photo--main,
  .hero-photo--wide,
  .hero-photo--square,
  .feature-media,
  .article-header-figure {
    aspect-ratio: 16 / 11;
  }

  .feature-media {
    max-width: none;
  }

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

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem 1rem;
    align-items: center;
    width: min(calc(100% - 1.2rem), var(--shell-width));
    padding: 0.48rem 0 0.58rem;
  }

  .site-header .brand {
    max-width: none;
    gap: 0.72rem;
    margin-right: 0;
    min-height: 0;
    padding-left: 0;
    transform: translateY(0.14rem);
  }

  .site-header .brand-mark {
    position: static;
    top: auto;
    left: auto;
    width: 3.1rem;
  }

  .site-header .brand-copy {
    padding-top: 0;
  }

  .site-header .brand-title {
    font-size: 0.96rem;
    white-space: normal;
  }

  .site-nav {
    margin-left: 0;
  }

  .site-header.nav-open {
    background: rgba(255, 252, 248, 0.97);
  }

  .js-ready .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .js-ready .site-nav-panel {
    display: none;
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.7rem 0 0.12rem;
    border: 0;
    border-top: 1px solid rgba(215, 204, 189, 0.7);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    z-index: auto;
  }

  .js-ready .site-nav.is-open .site-nav-panel {
    display: grid;
    gap: 0.34rem;
  }

  .js-ready .site-nav-primary,
  .js-ready .site-nav-secondary {
    display: grid;
    justify-content: stretch;
    gap: 0.06rem;
  }

  .js-ready .site-nav-divider {
    display: block;
    height: 1px;
    margin: 0.2rem 0;
    background: rgba(215, 204, 189, 0.92);
  }

  .js-ready .site-nav-secondary {
    display: grid;
  }

  .js-ready .site-nav a {
    width: 100%;
    min-height: 2.72rem;
    justify-content: flex-start;
    padding: 0.76rem 0.14rem 0.82rem 0.18rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .js-ready .site-nav a::after {
    display: none;
  }

  .js-ready .site-nav a:hover,
  .js-ready .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
  }

  .js-ready .site-nav a[aria-current="page"] {
    background: linear-gradient(90deg, rgba(228, 236, 228, 0.48), rgba(228, 236, 228, 0.18) 52%, transparent 86%);
    border-color: transparent;
    color: var(--accent-deep);
  }

  .js-ready .site-nav a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66rem;
    bottom: 0.66rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(53, 95, 73, 0.88), rgba(53, 95, 73, 0.52));
  }

  .language-switcher {
    display: grid;
    justify-content: stretch;
    margin-left: 0;
    margin-top: 0.34rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(215, 204, 189, 0.62);
  }

  .language-switcher__toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 2.54rem;
    padding: 0.62rem 0.14rem 0.74rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .language-switcher__toggle:hover,
  .language-switcher__toggle:focus-visible,
  .language-switcher.is-open .language-switcher__toggle {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .language-switcher__menu {
    position: static;
    min-width: 0;
    margin-top: 0.12rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.08rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .language-switcher__menu li + li {
    border-top: 1px solid rgba(215, 204, 189, 0.34);
  }

  .js-ready .site-nav .language-switcher__menu a {
    width: 100%;
    position: relative;
    grid-template-columns: minmax(3.2rem, auto) minmax(0, 1fr);
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0.72rem 0.14rem 0.82rem;
    border-radius: 0;
    background: transparent;
  }

  .js-ready .site-nav .language-switcher__code {
    color: var(--text-soft);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .js-ready .site-nav .language-switcher__name {
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .site-nav .language-switcher__menu a:hover,
  .site-nav .language-switcher__menu a:focus-visible,
  .site-nav .language-switcher__menu a[aria-current="true"] {
    background: rgba(228, 236, 228, 0.3);
  }

  .site-nav .language-switcher__menu a[aria-current="true"] {
    background: linear-gradient(90deg, rgba(228, 236, 228, 0.54), rgba(228, 236, 228, 0.16) 72%, transparent 100%);
  }

  .site-nav .language-switcher__menu a[aria-current="true"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    bottom: 0.72rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(53, 95, 73, 0.88), rgba(53, 95, 73, 0.52));
  }
}

/* Override earlier full-width staging so enriched heroes keep a clean two-column composition. */
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-areas: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.48fr);
  align-items: center;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy,
.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  grid-area: auto;
  width: auto;
  max-width: 46rem;
}

.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.article-header--visual .article-header-figure {
  grid-area: auto;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  width: auto;
  max-width: 16ch;
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .article-header--visual .article-header-layout {
    grid-template-columns: 1fr;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy,
  .article-header--visual .article-header-copy {
    max-width: 100%;
  }
}

/* Final interior image correction: use photographic assets, not text-bearing OG art. */
.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  --hero-family-image: url("assets/images/hero/cbd-product-selection.jpg");
  min-height: clamp(22rem, 44svh, 31rem);
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.94) 0%, rgba(7, 12, 10, 0.78) 46%, rgba(7, 12, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(6, 10, 9, 0.9) 0%, rgba(6, 10, 9, 0.25) 58%, rgba(6, 10, 9, 0.52) 100%),
    var(--hero-family-image) center / cover no-repeat,
    #07100d;
}

.shell--hub > .hero--guides {
  --hero-family-image: url("assets/images/sections/cbd-softgels-elsa-olofsson.jpg");
}

.shell--hub > .hero--products {
  --hero-family-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
}

.shell--hub > .hero--categories {
  --hero-family-image: url("assets/images/cards/cbd-gummies-bowl.jpg");
}

.shell--hub > .hero--brands {
  --hero-family-image: url("assets/images/cards/receptra-cbd-oil-packshot.webp");
}

.article-layout > .article-header {
  --hero-family-image: url("assets/images/hero/cbd-product-selection.jpg");
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(17rem, 0.48fr);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 17ch;
  font-size: clamp(2.65rem, 4.55vw, 4.55rem);
  line-height: 1;
}

.article-header--visual .article-header-figure,
.shell--hub > .hero:not(.editorial-hero) .hero-photo,
.page-wide > .hero:not(.editorial-hero) .hero-photo {
  aspect-ratio: 16 / 10;
  max-height: 19rem;
}

.article-header--visual .article-header-figure {
  width: min(100%, 28rem);
  align-self: center;
}

.article-header--visual .article-header-figure::after {
  background:
    linear-gradient(180deg, rgba(6, 10, 9, 0.04), rgba(6, 10, 9, 0.3));
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: auto;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 14ch;
    font-size: clamp(2.38rem, 9.8vw, 3.55rem);
  }

  .article-header--visual .article-header-figure {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}

@media (max-width: 760px) {
  body::before {
    opacity: 0.055;
    background-position:
      left -6.8rem top 5.7rem,
      right -6.8rem top 48%;
    background-size:
      15rem,
      12.5rem;
  }

  body::after {
    opacity: 0.034;
    background-position: left -5.4rem bottom 3%;
    background-size: 10.5rem;
  }

  .shell,
  .shell.shell--hub,
  .shell.page-wide {
    width: min(calc(100% - 1.2rem), var(--shell-width));
  }

  body {
    font-size: 1rem;
  }

  main {
    padding: 1.28rem 0 4rem;
  }

  .hero,
  .panel,
  .article-card,
  .note,
  .trust-box,
  .comparison-table-wrap,
  .directory-block,
  .site-map-section,
  .summary-card,
  .route-card,
  .spotlight-card,
  .article-header {
    padding: 1.22rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .grid {
    gap: 1rem;
  }

  .summary-grid,
  .spotlight-grid,
  .route-grid,
  .directory-grid,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand-lockup,
  .trust-box--brand {
    grid-template-columns: 1fr;
  }

  .footer-badge {
    width: 4rem;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody tr + tr {
    border-top: 1px solid rgba(215, 204, 189, 0.92);
  }

  .comparison-table th,
  .comparison-table td {
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .comparison-table tbody td {
    padding-top: 0.25rem;
  }

  .nav-toggle {
    padding: 0.58rem 0.84rem;
  }

  .js-ready .site-nav-panel {
    grid-template-columns: 1fr;
  }
}

/* Premium editorial redesign pass */
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
.eyebrow,
.card-kicker,
.route-number,
.section-kicker,
.site-nav a,
.language-switcher__toggle,
.language-switcher__code,
.site-header .brand-title,
.button-link,
.article-card__link,
.hero-meta {
  letter-spacing: 0;
}

body {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%2317211c' fill-opacity='.016'%3E%3Ccircle cx='18' cy='24' r='.75'/%3E%3Ccircle cx='78' cy='44' r='.7'/%3E%3Ccircle cx='138' cy='28' r='.82'/%3E%3Ccircle cx='42' cy='126' r='.7'/%3E%3Ccircle cx='124' cy='134' r='.8'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe7 48%, #f8f4ee 100%);
}

.site-header {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(216, 203, 187, 0.82);
  box-shadow: 0 8px 22px rgba(23, 33, 28, 0.042);
}

.header-inner {
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  padding: 0.78rem 0 0.94rem;
}

.site-header .brand {
  min-height: 3.7rem;
  padding-left: 6.2rem;
  margin-right: clamp(1.15rem, 2.2vw, 2.1rem);
}

.site-header .brand-mark {
  top: -0.38rem;
  width: 5.35rem;
  padding: 0.18rem;
  border-color: rgba(169, 149, 125, 0.64);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(23, 33, 28, 0.11);
}

.site-header .brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  font-weight: 600;
  line-height: 1;
}

.site-nav-panel {
  gap: 0.62rem 1.25rem;
}

.site-nav ul {
  gap: 0.28rem clamp(0.9rem, 1.45vw, 1.42rem);
}

.site-nav a {
  min-height: 2.32rem;
  padding: 0.26rem 0 0.56rem;
  color: rgba(23, 33, 28, 0.86);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a::after {
  left: 0;
  right: 0;
  bottom: 0.26rem;
  height: 1px;
  background: var(--accent-warm);
}

.language-switcher__toggle {
  min-height: 2.24rem;
  border-color: rgba(169, 149, 125, 0.52);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
}

.button-link {
  min-height: 3.18rem;
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--accent-deep);
  box-shadow: 0 18px 38px rgba(23, 33, 28, 0.14);
}

.button-link:hover,
.button-link:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 24px 46px rgba(23, 33, 28, 0.2);
}

.editorial-hero .button-link.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.editorial-hero .button-link.secondary:hover,
.editorial-hero .button-link.secondary:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.2);
}

.magazine-home {
  --hub-width: 84rem;
}

.shell.shell--hub.magazine-home {
  width: 100%;
  max-width: none;
}

.magazine-home .section {
  margin-top: clamp(3.8rem, 6.4vw, 6.1rem);
}

.magazine-home > .section:not(.editorial-hero) {
  width: min(calc(100% - 2rem), var(--hub-width));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(1.35rem, 2.7vw, 2.25rem);
}

.section-heading h2 {
  margin-bottom: 0.68rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.section-heading p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: end;
  max-width: none;
}

.section-kicker,
.editorial-hero .eyebrow,
.card-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 0.78rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-warm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-hero {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--surface-dark);
  color: #ffffff;
  box-shadow: 0 34px 82px rgba(23, 33, 28, 0.16);
}

.editorial-hero::before {
  display: none;
}

.editorial-hero__media,
.editorial-hero__shade {
  position: absolute;
  inset: 0;
}

.editorial-hero__media {
  z-index: 0;
}

.editorial-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.editorial-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 26, 21, 0.88) 0%, rgba(16, 26, 21, 0.68) 38%, rgba(16, 26, 21, 0.2) 76%),
    linear-gradient(0deg, rgba(16, 26, 21, 0.72) 0%, rgba(16, 26, 21, 0.18) 46%, rgba(16, 26, 21, 0.28) 100%);
}

.editorial-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: none;
  min-height: inherit;
  padding: clamp(2.2rem, 5.2vw, 5.2rem)
    max(1.4rem, calc((100vw - var(--hub-width)) / 2 + 2rem))
    clamp(8.2rem, 12vh, 10.7rem);
}

.editorial-hero__copy {
  width: min(100%, 54rem);
  min-width: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem 0.92rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-meta span + span {
  position: relative;
  padding-left: 1rem;
}

.hero-meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
}

.editorial-hero .eyebrow {
  color: #f2c9a9;
}

.editorial-hero h1 {
  max-width: 9ch;
  margin-bottom: 1.1rem;
  color: #ffffff;
  font-size: clamp(4.1rem, 11.2vw, 8.6rem);
  font-weight: 500;
  line-height: 0.88;
}

.editorial-hero .lede {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.14rem, 2vw, 1.52rem);
  line-height: 1.54;
}

.hero-briefs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 29, 23, 0.58);
  backdrop-filter: blur(12px);
}

.hero-briefs a {
  display: grid;
  gap: 0.22rem;
  min-height: 6.3rem;
  padding: 1.12rem clamp(1rem, 2.4vw, 1.75rem);
  color: #ffffff;
  text-decoration: none;
}

.hero-briefs a:first-child {
  padding-left: max(1rem, calc((100vw - var(--hub-width)) / 2 + 1.75rem));
}

.hero-briefs a:last-child {
  padding-right: max(1rem, calc((100vw - var(--hub-width)) / 2 + 1.75rem));
}

.hero-briefs a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-briefs span {
  color: #f2c9a9;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-briefs strong {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.16;
}

.hero-briefs a:hover,
.hero-briefs a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.quick-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.quick-route-card {
  min-width: 0;
  padding: 1.3rem 1.18rem 1.24rem;
  border-top: 1px solid rgba(169, 149, 125, 0.6);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(255, 253, 248, 0.36));
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.quick-route-card .route-number {
  margin-bottom: 1.3rem;
}

.quick-route-card h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
}

.quick-route-card h3 a {
  color: inherit;
  text-decoration: none;
}

.quick-route-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.quick-route-card:hover,
.quick-route-card:focus-within {
  border-color: var(--accent-warm);
  background: rgba(255, 253, 248, 0.9);
  transform: translateY(-2px);
}

.editorial-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: stretch;
}

.story-list {
  display: grid;
  gap: clamp(0.85rem, 1.8vw, 1.18rem);
}

.lead-story .card-media {
  aspect-ratio: 16 / 9;
}

.lead-story .card-body {
  padding: clamp(1.35rem, 2.5vw, 2.1rem);
}

.lead-story h3 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.article-card,
.summary-card,
.panel,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.route-card,
.spotlight-card,
.article-header,
.article-header--visual {
  border-color: rgba(216, 203, 187, 0.82);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 246, 238, 0.94));
  box-shadow: 0 20px 48px rgba(23, 33, 28, 0.055);
}

.article-card::before,
.summary-card::before,
.panel::before,
.note::before,
.trust-box::before,
.comparison-table-wrap::before,
.route-card::before,
.spotlight-card::before {
  opacity: 0.26;
}

.article-card {
  border-radius: var(--radius-lg);
}

.article-card h2,
.article-card h3 {
  font-size: clamp(1.26rem, 2vw, 1.62rem);
  line-height: 1.08;
}

.article-card > p,
.card-body > p {
  color: var(--text-soft);
  line-height: 1.68;
}

.article-card--compact {
  padding: clamp(1.18rem, 2.2vw, 1.55rem);
}

.article-card--compact .card-kicker {
  margin-bottom: 0.55rem;
}

.article-card__footer {
  padding-top: 1rem;
}

.article-card__link {
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-card:hover,
.article-card:focus-within,
.summary-card:hover,
.route-card:hover,
.spotlight-card:hover,
.spotlight-card:focus-visible {
  border-color: rgba(165, 110, 69, 0.42);
  box-shadow: 0 28px 68px rgba(23, 33, 28, 0.105);
}

.card-media {
  background: #e8dfd3;
}

.card-media img,
.feature-media img {
  transition: transform 260ms ease;
}

.article-card:hover .card-media img,
.article-card:focus-within .card-media img,
.feature-media:hover img {
  transform: scale(1.025);
}

.issue-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3.2vw, 3rem);
  align-items: center;
}

.issue-feature .feature-media {
  max-width: none;
  min-height: clamp(24rem, 42vw, 34rem);
  border-radius: var(--radius-lg);
}

.issue-feature .feature-content {
  padding: clamp(0.4rem, 1.2vw, 1rem) 0;
}

.issue-feature .feature-content h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  line-height: 1;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.format-card .card-media {
  aspect-ratio: 4 / 3;
}

.browse-section .grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.directory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.directory-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(169, 149, 125, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.directory-row a:hover,
.directory-row a:focus-visible {
  border-color: rgba(165, 110, 69, 0.42);
  background: #ffffff;
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(20rem, 1.06fr);
  gap: clamp(1.35rem, 3vw, 2.8rem);
  align-items: start;
  padding: clamp(1.65rem, 3.8vw, 3.1rem);
  border: 1px solid rgba(31, 60, 47, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(31, 60, 47, 0.96), rgba(33, 49, 55, 0.95)),
    var(--surface-dark);
  color: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.quality-band .section-kicker {
  color: #f2c9a9;
}

.quality-band h2 {
  color: #ffffff;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
}

.quality-band p,
.quality-band li {
  color: rgba(255, 253, 248, 0.78);
}

.quality-band a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.quality-copy p:last-child,
.quality-list {
  margin-bottom: 0;
}

.quality-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  list-style: none;
}

.quality-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 1.55;
}

.quality-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #f2c9a9;
}

.comparison-table-wrap--editorial {
  padding: clamp(1.45rem, 3vw, 2.4rem);
}

.comparison-table-wrap--editorial .section-heading {
  margin-bottom: 1.25rem;
}

.note--editorial {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1180px) {
  .quick-route-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature-grid,
  .issue-feature,
  .quality-band {
    grid-template-columns: 1fr;
  }

  .issue-feature .feature-media {
    min-height: 22rem;
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-header .brand {
    min-height: 0;
    padding-left: 0;
    transform: none;
  }

  .site-header .brand-mark {
    width: 3.25rem;
    padding: 0.12rem;
  }

  .site-header .brand-title {
    font-size: 1rem;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle {
    min-width: 2.7rem;
    justify-content: center;
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }

  .section-heading--split,
  .browse-section .grid-2 {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius-xl);
  }

  .editorial-hero__media img {
    object-position: 46% center;
  }

  .editorial-hero__shade {
    background:
      linear-gradient(180deg, rgba(16, 26, 21, 0.52) 0%, rgba(16, 26, 21, 0.78) 52%, rgba(16, 26, 21, 0.9) 100%);
  }

  .editorial-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: clamp(27rem, calc(100svh - 18rem), 34rem);
    width: 100%;
    min-width: 0;
    padding: 2rem 1.2rem 1.45rem;
  }

  .editorial-hero__copy {
    width: 100%;
    max-width: 36rem;
  }

  .editorial-hero h1 {
    max-width: min(8.5ch, 100%);
    font-size: clamp(3rem, 12vw, 4.4rem);
    overflow-wrap: break-word;
  }

  .editorial-hero .lede {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-briefs {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-briefs a {
    min-height: 0;
    padding: 0.72rem 1.05rem;
  }

  .hero-briefs a:first-child,
  .hero-briefs a:last-child {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }

  .hero-briefs a + a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-briefs strong {
    max-width: none;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .magazine-home .section {
    margin-top: 3.35rem;
  }

  .section-heading h2 {
    font-size: clamp(1.82rem, 9vw, 2.55rem);
  }

  .quick-route-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .quick-route-card {
    padding: 1.08rem 0 1.05rem;
    background: transparent;
  }

  .lead-story .card-media,
  .format-card .card-media,
  .card-media {
    aspect-ratio: 16 / 11;
  }

  .issue-feature .feature-media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .quality-band {
    padding: 1.28rem;
  }

  .directory-row a {
    width: 100%;
    justify-content: center;
  }
}

/* Centered-logo header correction */
.site-header {
  width: 100%;
  overflow: visible;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(calc(100% - 3rem), 94rem);
  min-height: 4.45rem;
  padding: 0.38rem 0 0.7rem;
}

.site-header .brand {
  position: absolute;
  left: 50%;
  top: 0.34rem;
  display: block;
  width: clamp(4.95rem, 5.55vw, 5.55rem);
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  z-index: 4;
}

.site-header .brand-mark {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  padding: 0.16rem;
  overflow: hidden;
  border: 1px solid rgba(169, 149, 125, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(23, 33, 28, 0.12);
}

.site-header .brand-mark img {
  width: 100%;
  height: auto;
}

.site-header .brand-copy,
.site-header .brand-title {
  display: none;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  margin: 0;
}

.site-nav-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(6.4rem, 8.8vw, 8rem) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  gap: clamp(0.8rem, 1.6vw, 1.35rem);
}

.site-nav-primary,
.site-nav-secondary,
.site-nav-left,
.site-nav-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: clamp(0.72rem, 1.55vw, 1.45rem);
}

.site-nav .site-nav-left,
.site-nav .site-nav-right {
  flex: 0 1 auto;
  width: 100%;
}

.site-nav .site-nav-left {
  grid-column: 1;
  justify-content: flex-end;
  padding-right: clamp(0.7rem, 1.3vw, 1.3rem);
}

.site-nav .site-nav-right {
  grid-column: 3;
  justify-content: flex-start;
  padding-left: clamp(0.7rem, 1.3vw, 1.3rem);
  padding-right: clamp(4.9rem, 6vw, 5.6rem);
}

.site-nav a {
  min-height: 2.32rem;
  padding: 0.26rem 0 0.56rem;
  white-space: nowrap;
}

.site-nav a::after {
  left: 0;
  right: 0;
}

.language-switcher {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 5;
  margin: 0;
  transform: translateY(-50%);
}

main {
  padding-top: clamp(2.55rem, 4vw, 3.4rem);
}

@media (max-width: 1120px) and (min-width: 901px) {
  .header-inner {
    width: min(calc(100% - 2rem), 90rem);
  }

  .site-nav-panel {
    grid-template-columns: minmax(0, 1fr) clamp(5.8rem, 8vw, 6.8rem) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .site-nav .site-nav-left,
  .site-nav .site-nav-right {
    gap: 0.72rem;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .site-nav .site-nav-right {
    padding-right: 4.55rem;
  }

  .site-header .brand {
    width: 5.35rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(calc(100% - 1.2rem), var(--shell-width));
    min-height: 4.6rem;
    padding: 0.56rem 0 0.64rem;
  }

  .site-header .brand {
    position: static;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 3.65rem;
    transform: none;
  }

  .site-header .brand-mark {
    padding: 0.1rem;
    box-shadow: 0 12px 24px rgba(23, 33, 28, 0.08);
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 2.72rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .js-ready .site-nav-panel {
    grid-template-columns: 1fr;
  }

  .site-nav-primary,
  .site-nav-secondary,
  .site-nav .site-nav-left,
  .site-nav .site-nav-right {
    display: grid;
    gap: 0.06rem;
    padding: 0;
  }

  .language-switcher {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  main {
    padding-top: 1.28rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Global EazeMD dark editorial pass */
:root {
  --bg: #0b1110;
  --bg-soft: #101815;
  --surface: #121b17;
  --surface-soft: #17231e;
  --surface-muted: #243229;
  --surface-alt: #182820;
  --surface-dark: #070c0b;
  --surface-dark-soft: #101916;
  --border: rgba(215, 196, 165, 0.2);
  --border-strong: rgba(226, 203, 163, 0.44);
  --text: #f5efe3;
  --text-soft: rgba(245, 239, 227, 0.72);
  --accent: #9fbd8e;
  --accent-deep: #d7c4a5;
  --accent-soft: rgba(159, 189, 142, 0.16);
  --accent-wash: rgba(159, 189, 142, 0.1);
  --accent-warm: #d4a270;
  --accent-ink: #e8ddca;
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 42px 110px rgba(0, 0, 0, 0.46);
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-xl: 0;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(159, 189, 142, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(212, 162, 112, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 105%, rgba(77, 107, 88, 0.18), transparent 34rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #0a100e 0%, #0d1512 44%, #09100e 100%);
}

html {
  min-height: 100%;
  background: #0b1110;
}

body {
  min-height: 100vh;
}

body::before {
  opacity: 0.05;
  filter: grayscale(1) brightness(0.65);
  mix-blend-mode: screen;
}

body::after {
  opacity: 0.035;
  filter: grayscale(1) brightness(0.7);
  mix-blend-mode: screen;
}

::selection {
  color: #07100d;
  background: rgba(212, 162, 112, 0.86);
}

main {
  padding-top: 0;
}

a {
  color: var(--accent);
  text-decoration-color: rgba(159, 189, 142, 0.48);
}

a:hover,
a:focus-visible {
  color: #d7e4c9;
  text-decoration-color: currentColor;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(9, 14, 12, 0.97), rgba(12, 19, 16, 0.93));
  border-bottom: 1px solid rgba(226, 203, 163, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.1rem;
  width: min(calc(100% - 3rem), 98rem);
  padding: 0.42rem 0 0.84rem;
}

.site-header .brand {
  top: 0.42rem;
  width: clamp(5.35rem, 5.9vw, 6.05rem);
}

.site-header .brand-mark {
  padding: 0.12rem;
  border: 1px solid rgba(226, 203, 163, 0.52);
  background: #f7f1e6;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.site-nav-panel {
  grid-template-columns: minmax(0, 1fr) clamp(7.2rem, 9.8vw, 9.2rem) minmax(0, 1fr);
}

.site-nav-primary,
.site-nav-secondary,
.site-nav-left,
.site-nav-right {
  gap: clamp(0.9rem, 1.72vw, 1.72rem);
}

.site-nav a {
  min-height: 2.7rem;
  color: rgba(245, 239, 227, 0.86);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-nav a::after {
  bottom: 0.22rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.language-switcher__toggle,
.language-switcher__menu {
  border-color: rgba(226, 203, 163, 0.28);
  background: rgba(12, 19, 16, 0.92);
  color: rgba(245, 239, 227, 0.88);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.language-switcher__menu a {
  color: rgba(245, 239, 227, 0.82);
}

.language-switcher__menu a:hover,
.language-switcher__menu a:focus-visible {
  background: rgba(212, 162, 112, 0.12);
  color: #ffffff;
}

.shell--hub,
.article-layout {
  position: relative;
}

.shell--hub > .breadcrumbs,
.article-layout > .breadcrumbs {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.35rem);
  left: 0;
  right: 0;
  z-index: 12;
  margin: 0;
}

.breadcrumbs ol {
  display: inline-flex;
  max-width: min(100%, var(--shell-width));
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(226, 203, 163, 0.22);
  background: rgba(5, 10, 9, 0.58);
  color: rgba(245, 239, 227, 0.75);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.breadcrumbs li:last-child,
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #ffffff;
}

.breadcrumbs li::after {
  color: rgba(245, 239, 227, 0.42);
}

.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  width: 100vw;
  min-height: clamp(21rem, 50svh, 32rem);
  margin: 0 calc(50% - 50vw) clamp(3rem, 5vw, 4.6rem);
  padding:
    clamp(5.8rem, 9vw, 7.5rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.5rem))
    clamp(2.3rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  border: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.88) 0%, rgba(9, 16, 13, 0.66) 44%, rgba(9, 16, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.78) 0%, rgba(5, 10, 9, 0.18) 58%, rgba(5, 10, 9, 0.5) 100%),
    url("assets/images/hero/cbd-product-selection.jpg") center / cover no-repeat,
    var(--surface-dark);
  color: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.article-layout > .article-header {
  min-height: clamp(18rem, 42svh, 27rem);
  align-items: flex-start;
}

.shell--hub > .hero:not(.editorial-hero)::before,
.article-layout > .article-header::before {
  display: none;
}

.shell--hub > .hero:not(.editorial-hero) > *,
.article-layout > .article-header > * {
  position: relative;
  z-index: 2;
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.article-header-layout {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  align-items: end;
}

.hero-copy,
.article-header-copy,
.article-header:not(.article-header--visual) > h1,
.article-header:not(.article-header--visual) > .lede,
.article-header:not(.article-header--visual) > .eyebrow {
  max-width: 60rem;
}

.hero-copy,
.article-header-copy {
  padding: 0;
}

.hero-copy h1,
.article-header h1 {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(2.7rem, 6.2vw, 5.9rem);
  line-height: 0.94;
  text-wrap: balance;
}

.article-header .lede,
.hero-copy .lede {
  max-width: 52rem;
  color: rgba(245, 239, 227, 0.82);
  font-size: clamp(1.08rem, 1.75vw, 1.36rem);
  line-height: 1.58;
}

.eyebrow,
.section-kicker,
.card-kicker,
.hero-meta,
.article-meta {
  color: var(--accent-warm);
}

.hero-list li {
  border-color: rgba(226, 203, 163, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 239, 227, 0.84);
}

.hero-visual-grid {
  max-width: 30rem;
}

.hero-photo,
.hero-note,
.hero-stack-card,
.feature-media,
.article-header-figure,
.spotlight-media,
.card-media {
  border-color: rgba(226, 203, 163, 0.22);
  background: #101815;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero-note,
.hero-stack-card {
  background: rgba(11, 17, 16, 0.72);
  color: rgba(245, 239, 227, 0.86);
  backdrop-filter: blur(14px);
}

.hero-note p,
.hero-stack-card p {
  color: rgba(245, 239, 227, 0.7);
}

.article-header--visual .article-header-layout {
  display: block;
  position: static;
  z-index: auto;
}

.article-header--visual .article-header-copy {
  position: relative;
  z-index: 2;
}

.article-header--visual .article-header-figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  opacity: 0.76;
  box-shadow: none;
}

.article-header--visual .article-header-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.9), rgba(5, 10, 9, 0.62) 42%, rgba(5, 10, 9, 0.18)),
    linear-gradient(0deg, rgba(5, 10, 9, 0.86), rgba(5, 10, 9, 0.12) 58%, rgba(5, 10, 9, 0.46));
}

.article-header--visual .article-header-figure img {
  width: 100%;
  height: 100%;
  filter: saturate(0.82) contrast(1.05) brightness(0.82);
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.route-card,
.summary-card,
.spotlight-card,
.article-header,
.article-header--visual {
  border-color: rgba(226, 203, 163, 0.18);
  background:
    linear-gradient(180deg, rgba(22, 33, 28, 0.94), rgba(13, 20, 17, 0.96));
  color: var(--text);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.article-card h2,
.article-card h3,
.panel h2,
.note h2,
.trust-box h2,
.route-card h3,
.summary-card h2,
.summary-card h3,
.spotlight-card h3,
article h2,
article h3,
.topic-group h2,
.section-heading h2,
.feature-content h2,
.comparison-table-wrap h2 {
  color: #fbf4e8;
}

p,
li,
.article-card > p,
.card-body > p,
.panel p,
.note p,
.summary-card p,
.route-card p,
.spotlight-card p,
.feature-content p,
.section-heading p,
article p,
article li {
  color: var(--text-soft);
}

.article-card__link,
.directory-row a,
.button-link {
  color: #f5efe3;
}

.button-link {
  border-color: rgba(226, 203, 163, 0.34);
  background: rgba(212, 162, 112, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.button-link:hover,
.button-link:focus-visible {
  border-color: rgba(226, 203, 163, 0.6);
  background: rgba(212, 162, 112, 0.24);
  color: #ffffff;
}

.editorial-hero {
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
}

.editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.9) 0%, rgba(5, 10, 9, 0.68) 38%, rgba(5, 10, 9, 0.22) 76%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.78) 0%, rgba(5, 10, 9, 0.2) 46%, rgba(5, 10, 9, 0.34) 100%);
}

.quick-route-card {
  border-color: rgba(226, 203, 163, 0.2);
  background: linear-gradient(180deg, rgba(22, 33, 28, 0.72), rgba(13, 20, 17, 0.54));
}

.comparison-table th {
  background: rgba(159, 189, 142, 0.12);
  color: rgba(245, 239, 227, 0.74);
}

.comparison-table td {
  border-color: rgba(226, 203, 163, 0.14);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226, 203, 163, 0.18);
  background:
    radial-gradient(circle at 12% 10%, rgba(159, 189, 142, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 20%, rgba(212, 162, 112, 0.16), transparent 26rem),
    radial-gradient(circle at 48% 100%, rgba(255, 255, 255, 0.06), transparent 30rem),
    linear-gradient(135deg, #050908 0%, #0d1512 48%, #111b16 100%);
  color: rgba(245, 239, 227, 0.86);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23grain)' opacity='.32'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.08), transparent 18rem);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-badge {
  padding: 0.1rem;
  border-color: rgba(226, 203, 163, 0.34);
  background: #f7f1e6;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.site-footer .brand,
.site-footer .footer-links a {
  color: #fbf4e8;
}

.footer-note,
.small-print {
  color: rgba(245, 239, 227, 0.62);
}

@media (max-width: 1120px) and (min-width: 901px) {
  .site-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.035em;
  }

  .site-nav-primary,
  .site-nav-secondary,
  .site-nav-left,
  .site-nav-right {
    gap: 0.74rem;
  }
}

@media (max-width: 900px) {
  main {
    padding-top: 0;
  }

  .header-inner {
    min-height: 4.9rem;
    width: min(calc(100% - 1.2rem), var(--shell-width));
  }

  .site-header .brand {
    position: static;
    left: auto;
    top: auto;
    justify-self: start;
    width: 4.05rem;
    transform: none;
  }

  .site-nav-panel {
    background: rgba(8, 13, 11, 0.96);
    border-color: rgba(226, 203, 163, 0.2);
  }

  .site-nav a {
    min-height: 2.8rem;
    font-size: 0.98rem;
  }

  .language-switcher {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .shell--hub > .breadcrumbs,
  .article-layout > .breadcrumbs {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .breadcrumbs ol {
    max-width: 100%;
    padding: 0.34rem 0.55rem;
    font-size: 0.78rem;
  }

  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: clamp(19rem, 56svh, 28rem);
    padding: 5rem 1.1rem 2rem;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual-grid {
    max-width: none;
  }

  .hero-photo {
    display: none;
  }

  .hero-copy h1,
  .article-header h1 {
    max-width: min(100%, 15ch);
    font-size: clamp(2.25rem, 10.5vw, 3.55rem);
    overflow-wrap: break-word;
  }

  .article-header .lede,
  .hero-copy .lede {
    max-width: 100%;
    font-size: 1.04rem;
  }

  .article-layout > .article-header {
    justify-content: flex-start;
  }

  .article-header:not(.article-header--visual) > * {
    width: min(100%, 34rem);
  }

  .nav-toggle {
    border-color: rgba(226, 203, 163, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 239, 227, 0.92);
  }

  .nav-toggle-box span {
    background: currentColor;
  }
}

/* Logo refinement and feature/media cleanup pass */
.header-inner {
  min-height: 5.85rem;
}

.site-header .brand {
  top: 0.34rem;
  width: clamp(6.75rem, 7.1vw, 7.65rem);
}

.site-header .brand-mark,
.footer-badge,
.brand-plaque {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50% !important;
  clip-path: circle(50%);
}

.site-header .brand-mark {
  padding: 0.1rem;
  border-color: rgba(226, 203, 163, 0.62);
  background: #f7f1e6;
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header .brand-mark img,
.footer-badge img,
.brand-plaque img {
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  object-fit: cover;
}

.site-nav-panel {
  grid-template-columns: minmax(0, 1fr) clamp(9rem, 12vw, 11.4rem) minmax(0, 1fr);
}

.feature-split,
.issue-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.5vw, 3.25rem);
  align-items: center;
  overflow: visible;
}

.feature-split > *,
.issue-feature > * {
  min-width: 0;
}

.feature-media,
.feature-media--wide,
.feature-media--square,
.issue-feature .feature-media {
  width: 100%;
  max-width: none;
  min-height: 0;
  align-self: stretch;
  aspect-ratio: 16 / 11;
}

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

.feature-content,
.issue-feature .feature-content {
  display: grid;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  align-content: center;
  min-width: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.feature-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.feature-content .panel,
.feature-content .trust-box {
  margin-top: clamp(0.35rem, 0.8vw, 0.7rem);
}

.issue-feature .feature-content h2 {
  max-width: 13ch;
  font-size: clamp(2.05rem, 3.9vw, 3.35rem);
}

.trust-box--brand {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(5.4rem, 8vw, 7.4rem);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.brand-plaque {
  width: clamp(5.4rem, 8vw, 7.4rem);
  max-width: none;
  padding: 0.12rem;
  background: #f7f1e6;
}

.footer-badge {
  padding: 0.08rem;
}

@media (max-width: 1180px) {
  .site-header .brand {
    width: clamp(6.25rem, 8.2vw, 7rem);
  }

  .site-nav-panel {
    grid-template-columns: minmax(0, 1fr) clamp(8.1rem, 11vw, 10rem) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 5.55rem;
  }

  .site-header .brand {
    width: 4.85rem;
  }

  .feature-split,
  .issue-feature {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 1.8rem);
  }

  .feature-media,
  .feature-media--wide,
  .feature-media--square,
  .issue-feature .feature-media {
    align-self: auto;
    aspect-ratio: 16 / 10;
  }

  .feature-content,
  .issue-feature .feature-content {
    align-content: start;
  }

  .issue-feature .feature-content h2 {
    max-width: 14ch;
  }

  .trust-box--brand {
    grid-template-columns: 1fr;
  }

  .brand-plaque {
    justify-self: start;
    width: 5.4rem;
  }
}

/* Global cleanup, typography, and numbered path-card pass */
:root {
  --font-body: "Instrument Sans", sans-serif;
}

body,
button,
input,
select,
textarea,
.site-nav a,
.button-link,
.article-card__link,
.route-card__link,
.language-switcher__toggle,
.language-switcher__code,
.eyebrow,
.section-kicker,
.card-kicker,
.article-meta {
  font-family: var(--font-body);
}

.page-wide > .breadcrumbs {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.35rem);
  left: 0;
  right: 0;
  z-index: 12;
  margin: 0;
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  width: 100vw;
  min-height: clamp(22rem, 52svh, 34rem);
  margin: 0 calc(50% - 50vw) clamp(3rem, 5vw, 4.6rem);
  padding:
    clamp(6.1rem, 9vw, 7.8rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.5rem))
    clamp(2.45rem, 5vw, 4.2rem);
  border: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.9) 0%, rgba(8, 15, 12, 0.7) 42%, rgba(8, 15, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.82) 0%, rgba(5, 10, 9, 0.2) 56%, rgba(5, 10, 9, 0.52) 100%),
    url("assets/images/hero/cbd-product-selection.jpg") center / cover no-repeat,
    #08100d;
  color: #ffffff;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
}

.page-wide > .hero:not(.editorial-hero)::before,
.page-wide > .hero:not(.editorial-hero)::after,
.shell--hub > .hero:not(.editorial-hero)::before,
.shell--hub > .hero:not(.editorial-hero)::after,
.article-layout > .article-header::before,
.article-layout > .article-header::after {
  display: none;
}

.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.article-header-layout {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
}

.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.46fr);
  align-items: end;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  color: rgba(245, 239, 227, 0.82);
}

.section,
.topic-group {
  color: var(--text);
}

.section > h2,
.topic-group > h2,
.section-heading h2 {
  color: #fbf4e8;
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card {
  border-color: rgba(226, 203, 163, 0.18);
  background:
    linear-gradient(145deg, rgba(22, 33, 28, 0.96), rgba(8, 14, 12, 0.98)),
    #101815;
  color: var(--text);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
}

.panel::before,
.article-card::before,
.note::before,
.trust-box::before,
.comparison-table-wrap::before,
.directory-block::before,
.site-map-section::before,
.summary-card::before,
.spotlight-card::before,
.route-card::before,
.quick-route-card::before {
  opacity: 0.18;
}

.hero-note,
.hero-stack-card {
  border-color: rgba(226, 203, 163, 0.22);
  background:
    linear-gradient(145deg, rgba(23, 33, 28, 0.86), rgba(8, 14, 12, 0.92)),
    #101815;
}

.hero-note h3,
.hero-stack-card h3 {
  color: #fbf4e8;
}

.quick-route-card,
.route-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(17.5rem, 24vw, 22rem);
  padding: clamp(1.45rem, 2.2vw, 2rem);
  overflow: hidden;
  border-top: 1px solid rgba(226, 203, 163, 0.28);
}

.quick-route-card::after,
.route-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% auto;
  width: 78%;
  aspect-ratio: 1;
  z-index: -1;
  background: radial-gradient(circle, rgba(212, 162, 112, 0.18), transparent 68%);
  pointer-events: none;
}

.quick-route-card .route-number,
.route-card .route-number {
  position: absolute;
  top: clamp(0.45rem, 1.1vw, 0.85rem);
  right: clamp(0.75rem, 1.5vw, 1.15rem);
  z-index: -1;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(212, 162, 112, 0.18);
  font-family: var(--font-body);
  font-size: clamp(5.6rem, 9vw, 8.4rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.quick-route-card h3,
.route-card h3,
.route-card h2 {
  position: relative;
  z-index: 1;
  max-width: 13.5ch;
  margin-top: clamp(1.8rem, 3vw, 2.7rem);
  color: #fbf4e8;
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  font-weight: 700;
  line-height: 1.02;
}

.quick-route-card h3 a,
.route-card h3 a,
.route-card h2 a {
  color: inherit;
  text-decoration: none;
}

.quick-route-card p,
.route-card p {
  position: relative;
  z-index: 1;
  color: rgba(245, 239, 227, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
}

.route-card__footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1.35rem;
}

.route-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent-warm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.route-card__link::after {
  content: " ->";
  transform: translateY(-0.02rem);
  transition: transform 160ms ease;
}

.route-card__link:hover,
.route-card__link:focus-visible {
  color: #f0c197;
}

.route-card__link:hover::after,
.route-card__link:focus-visible::after {
  transform: translate(0.18rem, -0.02rem);
}

.quick-route-card:hover,
.quick-route-card:focus-within,
.route-card:hover,
.route-card:focus-within {
  border-color: rgba(212, 162, 112, 0.46);
  background:
    linear-gradient(145deg, rgba(28, 43, 35, 0.98), rgba(9, 16, 13, 0.98)),
    #101815;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .page-wide > .breadcrumbs {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: clamp(20rem, 56svh, 29rem);
    padding: 5.1rem 1.1rem 2.05rem;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .shell--hub > .hero:not(.editorial-hero) .hero-layout {
    grid-template-columns: 1fr;
  }

  .quick-route-card,
  .route-card {
    min-height: 16.5rem;
  }

  .quick-route-card .route-number,
  .route-card .route-number {
    font-size: clamp(5.1rem, 28vw, 7rem);
  }
}

/* Header, breadcrumb, article-surface, and mobile language cleanup */
body {
  overflow-x: clip;
}

.site-header {
  --header-shell-width: min(calc(100% - 3rem), 98rem);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.header-inner,
.site-header .brand,
.site-header .brand-mark,
.site-nav a,
.language-switcher__toggle,
.site-header__breadcrumb-strip,
.site-header__breadcrumb-shell {
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    width 180ms ease,
    top 180ms ease,
    opacity 160ms ease,
    max-height 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 160ms ease;
}

.header-inner {
  width: var(--header-shell-width);
}

.site-header .brand-mark {
  border-radius: 50% !important;
}

.site-header.has-breadcrumbs {
  border-bottom-color: transparent;
}

.site-header__breadcrumb-strip {
  width: 100%;
  max-height: 2.5rem;
  overflow: clip;
  border-top: 1px solid rgba(226, 203, 163, 0.16);
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.76), rgba(8, 12, 11, 0.92));
  opacity: 1;
}

.site-header__breadcrumb-shell {
  width: var(--header-shell-width);
  min-height: 2.15rem;
  margin: 0 auto;
  padding: 0.34rem 0 0.42rem;
  display: flex;
  align-items: center;
}

.site-header__breadcrumb-strip .breadcrumbs {
  width: 100%;
  margin: 0;
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(245, 239, 227, 0.56);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.site-header__breadcrumb-strip .breadcrumbs ol::-webkit-scrollbar {
  display: none;
}

.site-header__breadcrumb-strip .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__breadcrumb-strip .breadcrumbs li::after {
  content: "/";
  margin: 0 0.45rem;
  color: rgba(212, 162, 112, 0.42);
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child::after {
  display: none;
}

.site-header__breadcrumb-strip .breadcrumbs a {
  color: rgba(245, 239, 227, 0.62);
  text-decoration: none;
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child,
.site-header__breadcrumb-strip .breadcrumbs a:hover,
.site-header__breadcrumb-strip .breadcrumbs a:focus-visible {
  color: #ffffff;
}

.site-header.is-condensed {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.site-header.is-condensed .header-inner {
  min-height: 4.38rem;
  padding: 0.2rem 0 0.46rem;
}

.site-header.is-condensed .brand {
  top: 0.2rem;
  width: clamp(4.65rem, 5vw, 5.2rem);
}

.site-header.is-condensed .site-nav a {
  min-height: 2.34rem;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  letter-spacing: 0.04em;
}

.site-header.is-condensed .language-switcher__toggle {
  min-height: 2.06rem;
  padding: 0.26rem 0.58rem 0.32rem;
}

.site-header.is-condensed .site-header__breadcrumb-strip {
  max-height: 0;
  border-top-color: transparent;
  opacity: 0;
}

.site-header.is-condensed .site-header__breadcrumb-shell {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.language-switcher__toggle-copy,
.language-switcher__selected {
  display: inline-flex;
  align-items: center;
}

.language-switcher__toggle-copy {
  gap: 0.44rem;
}

.language-switcher__selected {
  gap: 0.44rem;
}

.language-switcher__label,
.language-switcher__current-name {
  display: none;
}

.language-switcher__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card,
.article-header:not(.article-header--visual) {
  background: #111815 !important;
  background-image: none !important;
}

.hero-note,
.hero-stack-card {
  background: rgba(11, 17, 15, 0.92);
  background-image: none !important;
}

.panel::before,
.article-card::before,
.note::before,
.trust-box::before,
.comparison-table-wrap::before,
.directory-block::before,
.site-map-section::before,
.summary-card::before,
.spotlight-card::before,
.route-card::before,
.quick-route-card::before,
.article-header:not(.article-header--visual)::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E") 0 0 / 180px 180px repeat;
  opacity: 0.045;
  mix-blend-mode: screen;
}

.route-card::after,
.quick-route-card::after {
  display: none;
}

.article-card:hover,
.article-card:focus-within,
.route-card:hover,
.route-card:focus-within,
.quick-route-card:hover,
.quick-route-card:focus-within {
  background: #16211c !important;
}

@media (max-width: 900px) {
  .site-header {
    --header-shell-width: min(calc(100% - 1.2rem), var(--shell-width));
  }

  .header-inner {
    min-height: 4.34rem;
    padding: 0.44rem 0 0.54rem;
  }

  .site-header .brand {
    width: 4rem;
  }

  .js-ready .site-nav-panel {
    margin-top: 0.62rem;
    padding: 0.52rem 0.72rem 0.84rem;
    border: 1px solid rgba(226, 203, 163, 0.16);
    background:
      linear-gradient(180deg, rgba(11, 16, 14, 0.98), rgba(8, 12, 11, 0.95));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  }

  .js-ready .site-nav.is-open .site-nav-panel {
    gap: 0.22rem;
  }

  .js-ready .site-nav a {
    min-height: 3rem;
    padding: 0.82rem 0.78rem 0.86rem;
    color: rgba(245, 239, 227, 0.88);
  }

  .js-ready .site-nav a:hover,
  .js-ready .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.04);
  }

  .js-ready .site-nav a[aria-current="page"] {
    background: linear-gradient(90deg, rgba(212, 162, 112, 0.15), rgba(212, 162, 112, 0.06) 72%, transparent 100%);
    color: #ffffff;
  }

  .js-ready .site-nav a[aria-current="page"]::before {
    background: linear-gradient(180deg, rgba(212, 162, 112, 0.92), rgba(212, 162, 112, 0.56));
  }

  .language-switcher {
    margin-top: 0.6rem;
    padding-top: 0.86rem;
    border-top: 1px solid rgba(226, 203, 163, 0.16);
  }

  .language-switcher__toggle {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.72rem;
    min-height: 0;
    padding: 0.22rem 0.12rem 0.14rem;
  }

  .language-switcher__toggle-copy {
    display: grid;
    gap: 0.24rem;
    min-width: 0;
    text-align: left;
  }

  .language-switcher__label {
    display: block;
    color: rgba(245, 239, 227, 0.48);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .language-switcher__selected {
    gap: 0.62rem;
    min-width: 0;
  }

  .language-switcher__current {
    min-width: 3rem;
    padding: 0.4rem 0.58rem 0.46rem;
    border: 1px solid rgba(226, 203, 163, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #f5efe3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .language-switcher__current-name {
    display: block;
    min-width: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 680;
    line-height: 1.2;
  }

  .language-switcher__chevron {
    margin-top: 0.64rem;
    width: 0.5rem;
    height: 0.5rem;
  }

  .language-switcher__menu {
    margin-top: 0.5rem;
    padding: 0.42rem;
    border: 1px solid rgba(226, 203, 163, 0.16);
    background: rgba(9, 14, 12, 0.96);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
    gap: 0.28rem;
  }

  .language-switcher__menu li + li {
    border-top: 0;
  }

  .js-ready .site-nav .language-switcher__menu a {
    grid-template-columns: minmax(3rem, auto) minmax(0, 1fr);
    gap: 0.74rem;
    min-height: 3.08rem;
    padding: 0.68rem 0.72rem 0.76rem;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
  }

  .js-ready .site-nav .language-switcher__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.1rem 0.44rem;
    border: 1px solid rgba(226, 203, 163, 0.16);
    color: rgba(245, 239, 227, 0.72);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .js-ready .site-nav .language-switcher__name {
    color: rgba(245, 239, 227, 0.92);
    font-size: 0.98rem;
    font-weight: 620;
  }

  .site-nav .language-switcher__menu a:hover,
  .site-nav .language-switcher__menu a:focus-visible,
  .site-nav .language-switcher__menu a[aria-current="true"] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 203, 163, 0.14);
  }

  .site-nav .language-switcher__menu a[aria-current="true"] {
    background: linear-gradient(90deg, rgba(212, 162, 112, 0.16), rgba(212, 162, 112, 0.08));
    border-color: rgba(212, 162, 112, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .site-nav .language-switcher__menu a[aria-current="true"]::before {
    display: none;
  }

  .site-header__breadcrumb-shell {
    min-height: 1.9rem;
    padding: 0.26rem 0 0.32rem;
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .site-header.is-condensed .header-inner {
    min-height: 3.94rem;
    padding: 0.32rem 0 0.38rem;
  }

  .site-header.is-condensed .brand {
    width: 3.56rem;
  }
}

@media (min-width: 901px) {
  .language-switcher__label,
  .language-switcher__current-name {
    display: none;
  }
}

/* Final deployment polish: keep the homepage cinematic and make subpage heroes calmer. */
.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  min-height: clamp(17.5rem, 36svh, 25rem);
  padding:
    clamp(4.55rem, 6.6vw, 5.8rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.5rem))
    clamp(2.15rem, 3.8vw, 3.15rem);
}

.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout {
  align-items: center;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy,
.shell--hub > .hero:not(.editorial-hero) .hero-copy {
  max-width: 44rem;
  padding: 0;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 6.2vw, 5.85rem);
  line-height: 0.98;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 48rem;
}

.article-layout > .article-header {
  min-height: clamp(16.5rem, 31svh, 22rem);
}

.article-header h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 5.6vw, 5.35rem);
  line-height: 0.98;
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: clamp(18.5rem, 50svh, 26rem);
    padding: 4.15rem 1.1rem 1.8rem;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 12ch;
    font-size: clamp(2.78rem, 13.2vw, 4.3rem);
    line-height: 0.98;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid {
    display: none;
  }

  .hero-list {
    gap: 0.44rem;
  }

  .hero-list li {
    max-width: 100%;
  }
}

/* Senior-level design refinement pass */
:root {
  --page-gutter: clamp(1.2rem, 2.4vw, 2.2rem);
  --section-space: clamp(3.6rem, 6vw, 5.8rem);
  --section-space-tight: clamp(2.4rem, 4vw, 3.4rem);
  --section-divider: rgba(226, 203, 163, 0.12);
  --panel-solid: #111816;
  --panel-solid-raised: #151e1a;
  --panel-border-soft: rgba(226, 203, 163, 0.15);
  --card-pad: clamp(1.25rem, 2vw, 1.75rem);
  --card-pad-lg: clamp(1.55rem, 2.4vw, 2.2rem);
  --stack-gap: clamp(0.75rem, 1.35vw, 1.1rem);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.shell,
.shell.shell--hub,
.shell.page-wide {
  width: min(calc(100% - var(--page-gutter)), var(--shell-width));
}

.shell.shell--hub {
  width: min(calc(100% - var(--page-gutter)), var(--hub-width));
}

.shell.page-wide {
  width: min(calc(100% - var(--page-gutter)), var(--browse-width));
}

.site-header {
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.98), rgba(10, 16, 14, 0.94));
}

.site-header__breadcrumb-strip {
  border-top-color: rgba(226, 203, 163, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 26, 22, 0.94), rgba(10, 16, 14, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  color: rgba(245, 239, 227, 0.5);
}

.site-header.is-condensed .site-header__breadcrumb-strip {
  box-shadow: none;
}

.site-nav a,
.language-switcher__toggle,
.site-header__breadcrumb-strip .breadcrumbs ol,
.section-kicker,
.eyebrow,
.card-kicker,
.hero-meta,
.article-meta,
.article-card__link,
.route-card__link {
  font-family: var(--font-body);
}

.site-nav a {
  letter-spacing: 0.038em;
}

.site-header .brand {
  width: clamp(5rem, 5.6vw, 5.8rem);
}

.site-header.is-condensed .brand {
  width: clamp(4.45rem, 4.9vw, 5rem);
}

.hero-copy h1,
.article-header h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.9vw, 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.editorial-hero h1 {
  max-width: 8.2ch;
  font-size: clamp(3.7rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: clamp(1.55rem, 2.8vw, 2.4rem);
  padding-left: clamp(0.95rem, 1.5vw, 1.2rem);
  border-left: 1px solid rgba(226, 203, 163, 0.16);
}

.section-heading h2,
.section > h2 {
  font-size: clamp(1.95rem, 3.4vw, 2.95rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.section-heading p,
.hero-copy .lede,
.article-header .lede {
  max-width: 58ch;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.68;
}

article h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

article h3,
.panel h2,
.panel h3,
.article-card h2,
.article-card h3,
.summary-card h2,
.summary-card h3,
.spotlight-card h3,
.route-card h2,
.route-card h3,
.quick-route-card h3 {
  line-height: 1.06;
  letter-spacing: -0.018em;
}

p,
li,
.panel p,
.note p,
.article-card > p,
.summary-card p,
.route-card p,
.quick-route-card p,
.spotlight-card p,
.section-heading p,
article p,
article li {
  font-size: 1.01rem;
  line-height: 1.72;
}

.shell--hub > .section,
.page-wide > .section,
.magazine-home > .section,
.article-layout > article,
.article-layout > .related-reading,
.article-layout > .note,
.article-layout > .comparison-table-wrap {
  position: relative;
}

.shell--hub > .section:not(:first-of-type),
.page-wide > .section:not(:first-of-type),
.magazine-home > .section:not(:first-of-type),
.article-layout > article,
.article-layout > .related-reading,
.article-layout > .note,
.article-layout > .comparison-table-wrap {
  margin-top: var(--section-space);
  padding-top: var(--section-space-tight);
  border-top: 1px solid var(--section-divider);
}

.article-layout > article {
  padding-right: clamp(0.25rem, 1vw, 0.75rem);
}

.grid,
.grid-2,
.grid-3,
.summary-grid,
.spotlight-grid,
.quick-route-grid,
.route-grid,
.directory-grid,
.site-map-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.editorial-feature-grid,
.section-heading--split,
.browse-section .grid-2 {
  gap: clamp(1.3rem, 2.6vw, 2rem);
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card {
  border: 1px solid var(--panel-border-soft);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.panel,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.route-card,
.quick-route-card {
  padding: var(--card-pad-lg);
}

.article-card:not(.article-card--media),
.article-card.article-card--compact {
  padding: var(--card-pad);
}

.article-card.article-card--media,
.lead-story,
.format-card,
.spotlight-card {
  background: var(--panel-solid) !important;
}

.article-card__footer,
.route-card__footer {
  padding-top: 1.15rem;
}

.hero-note,
.hero-stack-card,
.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card {
  background-color: var(--panel-solid);
}

.hero-note,
.hero-stack-card,
.spotlight-card,
.summary-card {
  border-color: rgba(226, 203, 163, 0.18);
}

.panel:hover,
.note:hover,
.summary-card:hover,
.spotlight-card:hover,
.route-card:hover,
.quick-route-card:hover,
.article-card:hover,
.panel:focus-within,
.note:focus-within,
.summary-card:focus-within,
.spotlight-card:focus-within,
.route-card:focus-within,
.quick-route-card:focus-within,
.article-card:focus-within {
  border-color: rgba(212, 162, 112, 0.26);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.3);
}

.hero-note,
.hero-stack-card {
  padding: var(--card-pad);
}

.spotlight-card {
  overflow: hidden;
}

.spotlight-body,
.card-body {
  display: grid;
  gap: 0.72rem;
  padding: var(--card-pad);
}

.card-media,
.spotlight-media {
  border-bottom: 1px solid rgba(226, 203, 163, 0.12);
}

.article-card > *,
.panel > *,
.note > *,
.summary-card > *,
.spotlight-card > *,
.route-card > *,
.quick-route-card > *,
.hero-note > *,
.hero-stack-card > * {
  margin-bottom: 0;
}

.article-card > * + *,
.panel > * + *,
.note > * + *,
.summary-card > * + *,
.spotlight-card > * + *,
.route-card > * + *,
.quick-route-card > * + *,
.hero-note > * + *,
.hero-stack-card > * + * {
  margin-top: var(--stack-gap);
}

.comparison-table-wrap {
  background: var(--panel-solid-raised) !important;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
}

.comparison-table thead th {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-briefs {
  background: rgba(11, 18, 15, 0.78);
  border-top-color: rgba(226, 203, 163, 0.14);
}

.hero-briefs a + a {
  border-left-color: rgba(226, 203, 163, 0.12);
}

.hero-briefs a {
  min-height: 5.7rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  margin-bottom: clamp(3.2rem, 5.4vw, 4.8rem);
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.84) 0%, rgba(8, 14, 12, 0.62) 44%, rgba(8, 14, 12, 0.26) 100%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.76) 0%, rgba(5, 10, 9, 0.12) 54%, rgba(5, 10, 9, 0.44) 100%),
    url("assets/images/hero/cbd-product-selection.jpg") center / cover no-repeat,
    #08100d;
}

.site-footer {
  margin-top: clamp(5rem, 9vw, 7rem);
  padding-top: clamp(2.6rem, 4vw, 3.4rem);
}

.footer-columns {
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

@media (max-width: 900px) {
  body {
    font-size: 1rem;
  }

  .js-ready .site-nav-panel {
    grid-template-columns: 1fr !important;
  }

  .js-ready .site-nav-primary,
  .js-ready .site-nav-secondary,
  .js-ready .site-nav .site-nav-left,
  .js-ready .site-nav .site-nav-right {
    grid-column: auto !important;
    width: 100%;
    justify-content: stretch !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-copy h1,
  .article-header h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 11vw, 4.1rem);
  }

  .editorial-hero h1 {
    max-width: 8.8ch;
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .section-heading {
    padding-left: 0.82rem;
  }

  .shell--hub > .section:not(:first-of-type),
  .page-wide > .section:not(:first-of-type),
  .magazine-home > .section:not(:first-of-type),
  .article-layout > article,
  .article-layout > .related-reading,
  .article-layout > .note,
  .article-layout > .comparison-table-wrap {
    margin-top: clamp(2.8rem, 8vw, 4rem);
    padding-top: clamp(1.8rem, 6vw, 2.5rem);
  }

  .panel,
  .note,
  .trust-box,
  .comparison-table-wrap,
  .directory-block,
  .site-map-section,
  .summary-card,
  .route-card,
  .quick-route-card,
  .hero-note,
  .hero-stack-card {
    padding: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .spotlight-body,
  .card-body,
  .article-card:not(.article-card--media),
  .article-card.article-card--compact {
    padding: clamp(1.05rem, 4vw, 1.3rem);
  }

  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    width: auto;
    max-width: none;
    margin-bottom: clamp(2.6rem, 8vw, 3.5rem);
    padding: 5rem 1rem 2rem;
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.63rem;
  }

  .site-footer {
    margin-top: clamp(3.6rem, 10vw, 4.6rem);
  }
}

@media (max-width: 640px) {
  .section-heading h2,
  .section > h2,
  article h2 {
    font-size: clamp(1.68rem, 8vw, 2.2rem);
  }

  p,
  li,
  .panel p,
  .note p,
  .article-card > p,
  .summary-card p,
  .route-card p,
  .quick-route-card p,
  .spotlight-card p,
  .section-heading p,
  article p,
  article li {
    font-size: 0.98rem;
  }

  .hero-briefs {
    border-top-width: 1px;
  }
}

/* Senior-level design refinement pass - finishing system polish */
:root {
  --section-band: rgba(17, 24, 22, 0.62);
  --section-band-strong: rgba(20, 29, 26, 0.82);
  --section-band-border: rgba(226, 203, 163, 0.09);
  --panel-shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.2);
  --panel-shadow-hover: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.site-header {
  backdrop-filter: blur(14px);
}

.site-header__breadcrumb-strip {
  background:
    linear-gradient(180deg, rgba(20, 29, 26, 0.94), rgba(11, 17, 15, 0.84));
  border-top-color: rgba(226, 203, 163, 0.1);
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  color: rgba(245, 239, 227, 0.46);
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child,
.site-header__breadcrumb-strip .breadcrumbs a:hover,
.site-header__breadcrumb-strip .breadcrumbs a:focus-visible {
  color: rgba(245, 239, 227, 0.9);
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 11.6ch;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 0.95;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 46rem;
  font-size: clamp(1rem, 1.16vw, 1.08rem);
  line-height: 1.66;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
  padding-left: clamp(1rem, 1.7vw, 1.3rem);
}

.section-heading h2,
.section > h2 {
  max-width: 12ch;
}

.section-heading--split {
  align-items: end;
}

.section-heading--split > :last-child {
  max-width: 35rem;
  justify-self: end;
}

.shell--hub > .section,
.page-wide > .section,
.magazine-home > .section,
.article-layout > article,
.article-layout > .related-reading,
.article-layout > .note,
.article-layout > .comparison-table-wrap {
  isolation: isolate;
}

.shell--hub > .section::before,
.page-wide > .section::before,
.magazine-home > .section::before,
.article-layout > article::before,
.article-layout > .related-reading::before,
.article-layout > .note::before,
.article-layout > .comparison-table-wrap::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--page-gutter) * -0.38);
  z-index: -1;
  background:
    linear-gradient(180deg, var(--section-band-strong) 0%, var(--section-band) 100%);
  border-top: 1px solid var(--section-band-border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  opacity: 0.96;
  pointer-events: none;
}

.magazine-home > .section:first-of-type::before,
.shell--hub > .section:first-of-type::before,
.page-wide > .section:first-of-type::before {
  border-top-color: rgba(226, 203, 163, 0.12);
}

.shell--hub > .section > *,
.page-wide > .section > *,
.magazine-home > .section > *,
.article-layout > article > *,
.article-layout > .related-reading > *,
.article-layout > .note > *,
.article-layout > .comparison-table-wrap > * {
  position: relative;
  z-index: 1;
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card {
  box-shadow: var(--panel-shadow-soft);
}

.panel:hover,
.note:hover,
.summary-card:hover,
.spotlight-card:hover,
.route-card:hover,
.quick-route-card:hover,
.article-card:hover,
.panel:focus-within,
.note:focus-within,
.summary-card:focus-within,
.spotlight-card:focus-within,
.route-card:focus-within,
.quick-route-card:focus-within,
.article-card:focus-within {
  box-shadow: var(--panel-shadow-hover);
}

.article-card:not(.article-card--media),
.article-card.article-card--compact,
.route-card,
.quick-route-card,
.summary-card,
.panel,
.note,
.trust-box,
.directory-block,
.site-map-section {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.article-card.article-card--media,
.spotlight-card,
.lead-story,
.format-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.card-body,
.spotlight-body {
  min-height: 100%;
  align-content: start;
  gap: 0.82rem;
}

.card-body > :last-child,
.spotlight-body > :last-child,
.route-card > :last-child,
.quick-route-card > :last-child,
.summary-card > :last-child,
.panel > :last-child,
.note > :last-child {
  margin-bottom: 0;
}

.article-card__footer,
.route-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 203, 163, 0.1);
}

.article-card__link,
.route-card__link {
  letter-spacing: 0.03em;
}

.article-card h2,
.article-card h3,
.spotlight-card h3,
.summary-card h2,
.summary-card h3,
.route-card h2,
.route-card h3,
.quick-route-card h3 {
  max-width: 16ch;
}

.article-card p,
.spotlight-card p,
.summary-card p,
.route-card p,
.quick-route-card p,
.panel p,
.note p {
  color: rgba(245, 239, 227, 0.72);
}

.card-media img,
.spotlight-media img,
.lead-story img,
.format-card img {
  aspect-ratio: 1.28;
  object-fit: cover;
}

.hero-list {
  gap: 0.55rem;
}

.hero-list li {
  border-color: rgba(226, 203, 163, 0.16);
  background: rgba(15, 23, 20, 0.72);
}

.article-layout article > h2:not(:first-child),
.article-layout article > h3:not(:first-child) {
  margin-top: clamp(2.5rem, 4vw, 3.4rem);
}

.site-footer {
  border-top: 1px solid rgba(226, 203, 163, 0.08);
}

@media (max-width: 1100px) {
  .section-heading--split > :last-child {
    justify-self: start;
    max-width: 40rem;
  }
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 8.8vw, 3.85rem);
  }

  .shell--hub > .section::before,
  .page-wide > .section::before,
  .magazine-home > .section::before,
  .article-layout > article::before,
  .article-layout > .related-reading::before,
  .article-layout > .note::before,
  .article-layout > .comparison-table-wrap::before {
    inset: 0 calc(var(--page-gutter) * -0.24);
  }

  .section-heading {
    gap: 0.66rem;
  }
}

@media (max-width: 640px) {
  .section-heading {
    margin-bottom: 1.4rem;
    padding-left: 0.82rem;
  }

  .section-heading h2,
  .section > h2 {
    max-width: 100%;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 9.8ch;
    font-size: clamp(2.18rem, 10vw, 3.1rem);
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
  .article-header .lede {
    font-size: 0.98rem;
  }

  .hero-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-list li {
    width: 100%;
    min-width: 0;
  }

  .article-card__footer,
  .route-card__footer {
    padding-top: 0.88rem;
  }
}

/* General design improvement, sticky header, language dropdown, and imagery pass */
:root {
  --cannabis-hero-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
  --header-glass: rgba(7, 12, 10, 0.88);
  --header-glass-strong: rgba(5, 9, 8, 0.95);
  --dropdown-surface: rgba(9, 14, 12, 0.96);
  --dropdown-border: rgba(226, 203, 163, 0.18);
}

.site-header {
  top: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 12, 0.92), rgba(6, 10, 9, 0.84));
  border-bottom-color: rgba(226, 203, 163, 0.12);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  will-change: transform;
}

.site-header.is-scrolled,
.site-header.is-condensed {
  background:
    linear-gradient(180deg, rgba(7, 11, 10, 0.97), rgba(5, 9, 8, 0.93));
}

.header-inner {
  min-height: clamp(4.95rem, 5.6vw, 5.75rem);
  padding: 0.46rem 0 0.7rem;
}

.site-header .brand {
  top: 0.08rem;
}

.site-nav a {
  color: rgba(245, 239, 227, 0.86);
  font-size: clamp(0.96rem, 0.95vw, 1.04rem);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.site-header__breadcrumb-strip {
  background:
    linear-gradient(180deg, rgba(18, 27, 23, 0.92), rgba(10, 16, 14, 0.82));
  border-top-color: rgba(226, 203, 163, 0.1);
}

.site-header__breadcrumb-shell {
  min-height: 1.92rem;
  padding: 0.22rem 0 0.3rem;
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  color: rgba(245, 239, 227, 0.42);
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.035em;
  text-transform: none;
}

.site-header__breadcrumb-strip .breadcrumbs li::after {
  content: "";
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  margin: 0 0.56rem;
  background: rgba(212, 162, 112, 0.34);
  transform: rotate(45deg);
}

.site-header__breadcrumb-strip .breadcrumbs a {
  color: rgba(245, 239, 227, 0.52);
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.site-header__breadcrumb-strip .breadcrumbs a:hover,
.site-header__breadcrumb-strip .breadcrumbs a:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

.language-switcher {
  margin-left: clamp(0.8rem, 1.6vw, 1.3rem);
}

.language-switcher__toggle {
  gap: 0.68rem;
  min-height: 2.42rem;
  padding: 0.32rem 0.56rem 0.38rem;
  border: 1px solid var(--dropdown-border);
  background:
    linear-gradient(180deg, rgba(17, 25, 22, 0.86), rgba(10, 16, 14, 0.92));
  color: rgba(245, 239, 227, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible,
.language-switcher.is-open .language-switcher__toggle {
  color: #ffffff;
  border-color: rgba(212, 162, 112, 0.3);
  background:
    linear-gradient(180deg, rgba(19, 28, 24, 0.92), rgba(12, 18, 16, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.24);
}

.language-switcher__toggle-copy {
  gap: 0.5rem;
}

.language-switcher__selected {
  gap: 0.48rem;
}

.language-switcher__flag {
  display: inline-flex;
  width: 1.36rem;
  height: 0.96rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--flag-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.language-switcher__selected .language-switcher__flag {
  width: 1.22rem;
  height: 0.88rem;
}

.language-switcher__current {
  min-width: 2.15rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-switcher__chevron {
  opacity: 0.76;
}

.language-switcher__menu {
  top: calc(100% + 0.58rem);
  min-width: 15.8rem;
  padding: 0.46rem;
  border: 1px solid var(--dropdown-border);
  background:
    linear-gradient(180deg, rgba(12, 18, 16, 0.98), rgba(8, 13, 11, 0.96));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  gap: 0.24rem;
}

.site-nav .language-switcher__menu a {
  grid-template-columns: auto minmax(2.6rem, auto) minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-height: 2.72rem;
  padding: 0.58rem 0.64rem 0.62rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(245, 239, 227, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.site-nav .language-switcher__menu a::before,
.site-nav .language-switcher__menu a::after {
  display: none;
}

.site-nav .language-switcher__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.72rem;
  padding: 0.06rem 0.42rem 0.08rem;
  border: 1px solid rgba(226, 203, 163, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 239, 227, 0.78);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav .language-switcher__name {
  color: rgba(245, 239, 227, 0.88);
  font-size: 0.91rem;
  font-weight: 620;
}

.site-nav .language-switcher__menu a:hover,
.site-nav .language-switcher__menu a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(226, 203, 163, 0.14);
}

.site-nav .language-switcher__menu a[aria-current="true"] {
  background:
    linear-gradient(90deg, rgba(212, 162, 112, 0.18), rgba(212, 162, 112, 0.06));
  border-color: rgba(212, 162, 112, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.site-nav .language-switcher__menu a[aria-current="true"] .language-switcher__code {
  border-color: rgba(212, 162, 112, 0.28);
  background: rgba(212, 162, 112, 0.08);
  color: #ffffff;
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.92) 0%, rgba(7, 13, 11, 0.76) 40%, rgba(7, 13, 11, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.84) 0%, rgba(5, 10, 9, 0.12) 56%, rgba(5, 10, 9, 0.58) 100%),
    var(--cannabis-hero-image) center 42% / cover no-repeat,
    #08100d;
}

.editorial-hero__media img {
  object-position: center 42%;
  filter: saturate(0.86) brightness(0.78) contrast(1.06);
}

.editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 20, 18, 0.9) 0%, rgba(12, 20, 18, 0.72) 36%, rgba(12, 20, 18, 0.24) 76%),
    linear-gradient(0deg, rgba(12, 20, 18, 0.8) 0%, rgba(12, 20, 18, 0.14) 48%, rgba(12, 20, 18, 0.38) 100%);
}

.hero-photo,
.article-header-figure,
.feature-media,
.card-media,
.spotlight-media {
  border: 1px solid rgba(226, 203, 163, 0.12);
  background: #0d1412;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.hero-photo img,
.article-header-figure img,
.feature-media img,
.card-media img,
.spotlight-media img {
  filter: saturate(0.92) contrast(1.04);
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.spotlight-card:hover .spotlight-media img,
.spotlight-card:focus-visible .spotlight-media img,
.article-card:hover .card-media img,
.article-card:focus-within .card-media img,
.feature-split:hover .feature-media img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.07);
}

.panel,
.article-card,
.note,
.trust-box,
.comparison-table-wrap,
.directory-block,
.site-map-section,
.summary-card,
.spotlight-card,
.route-card,
.quick-route-card {
  border-color: rgba(226, 203, 163, 0.14);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.section-heading p,
.panel p,
.note p,
.summary-card p,
.route-card p,
.quick-route-card p,
.spotlight-card p,
.article-card p {
  color: rgba(245, 239, 227, 0.72);
}

.back-to-top {
  position: fixed;
  left: clamp(0.85rem, 1.6vw, 1.45rem);
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.8rem));
  z-index: 26;
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  padding: 0.58rem 0.72rem 0.62rem;
  border: 1px solid rgba(226, 203, 163, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 23, 20, 0.92), rgba(9, 14, 12, 0.96));
  color: rgba(245, 239, 227, 0.84);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top.is-muted {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #ffffff;
  border-color: rgba(212, 162, 112, 0.3);
  background:
    linear-gradient(180deg, rgba(18, 27, 23, 0.96), rgba(10, 16, 14, 0.98));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.back-to-top__icon {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  align-items: center;
  justify-content: center;
}

.back-to-top__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.back-to-top__label {
  line-height: 1;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 4.34rem;
    padding: 0.42rem 0 0.52rem;
  }

  .js-ready .site-nav-panel {
    margin-top: 0.68rem;
    padding: 0.58rem 0.72rem 0.8rem;
    background:
      linear-gradient(180deg, rgba(11, 16, 14, 0.985), rgba(7, 11, 10, 0.96));
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
  }

  .language-switcher {
    margin-top: 0.8rem;
    padding-top: 0.92rem;
    border-top-color: rgba(226, 203, 163, 0.14);
  }

  .language-switcher__toggle {
    gap: 0.86rem;
    padding: 0.2rem 0.08rem 0.08rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .language-switcher__toggle:hover,
  .language-switcher__toggle:focus-visible,
  .language-switcher.is-open .language-switcher__toggle {
    background: transparent;
    box-shadow: none;
  }

  .language-switcher__selected {
    gap: 0.68rem;
  }

  .language-switcher__selected .language-switcher__flag,
  .language-switcher__menu .language-switcher__flag {
    width: 1.48rem;
    height: 1.04rem;
  }

  .language-switcher__current {
    min-width: 2.85rem;
    padding: 0.38rem 0.54rem 0.44rem;
  }

  .language-switcher__current-name {
    font-size: 0.96rem;
  }

  .language-switcher__menu {
    margin-top: 0.52rem;
    padding: 0.4rem;
  }

  .js-ready .site-nav .language-switcher__menu a {
    grid-template-columns: auto minmax(2.8rem, auto) minmax(0, 1fr);
    min-height: 2.98rem;
    padding: 0.64rem 0.66rem 0.7rem;
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.64rem;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 640px) {
  .back-to-top {
    left: 0.8rem;
    bottom: max(0.8rem, calc(env(safe-area-inset-bottom) + 0.7rem));
    padding: 0.56rem;
  }

  .back-to-top__label {
    display: none;
  }
}

/* Header, hero, breadcrumb, and language switcher refinement pass */
html,
body {
  overflow-x: visible;
}

main,
.site-footer {
  overflow-x: clip;
}

main {
  padding-top: 0;
}

.site-header {
  position: sticky !important;
  inset: 0 0 auto 0;
  z-index: 120;
  overflow: visible;
  contain: none;
  filter: none;
  will-change: auto;
}

.header-inner {
  min-height: clamp(4.7rem, 5.3vw, 5.35rem);
  padding: 0.4rem 0 0.56rem;
}

.site-header.is-condensed .header-inner {
  min-height: 4.18rem;
  padding: 0.18rem 0 0.34rem;
}

.site-header .brand {
  top: 0.03rem;
}

.site-header.is-condensed .brand {
  top: 0.08rem;
}

.site-header__breadcrumb-strip {
  max-height: 2.1rem;
}

.site-header__breadcrumb-shell {
  min-height: 1.76rem;
  padding: 0.17rem 0 0.24rem;
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  color: rgba(245, 239, 227, 0.36);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.site-header__breadcrumb-strip .breadcrumbs li::after {
  width: 0.18rem;
  height: 0.18rem;
  margin: 0 0.48rem;
  background: rgba(212, 162, 112, 0.26);
}

.site-header__breadcrumb-strip .breadcrumbs a {
  color: rgba(245, 239, 227, 0.44);
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child,
.site-header__breadcrumb-strip .breadcrumbs a:hover,
.site-header__breadcrumb-strip .breadcrumbs a:focus-visible {
  color: rgba(255, 255, 255, 0.76);
}

.language-switcher {
  margin-left: clamp(0.7rem, 1.3vw, 1rem);
}

.language-switcher__toggle {
  gap: 0.56rem;
  min-height: 2.2rem;
  padding: 0.24rem 0.46rem 0.28rem;
  border-color: rgba(226, 203, 163, 0.12);
  color: rgba(245, 239, 227, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible,
.language-switcher.is-open .language-switcher__toggle {
  border-color: rgba(212, 162, 112, 0.22);
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.language-switcher__selected {
  gap: 0.4rem;
}

.language-switcher__selected .language-switcher__flag {
  width: 1.06rem;
  height: 0.78rem;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.language-switcher__current {
  min-width: 1.86rem;
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.1em;
}

.language-switcher__menu {
  min-width: 14.2rem;
  padding: 0.36rem;
  border-color: rgba(226, 203, 163, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.site-nav .language-switcher__menu a {
  grid-template-columns: auto minmax(2.25rem, auto) minmax(0, 1fr);
  gap: 0.58rem;
  min-height: 2.38rem;
  padding: 0.46rem 0.54rem 0.5rem;
  font-weight: 520;
  letter-spacing: 0.004em;
}

.site-nav .language-switcher__code {
  min-height: 1.52rem;
  padding: 0.04rem 0.34rem 0.06rem;
  border-color: rgba(226, 203, 163, 0.1);
  color: rgba(245, 239, 227, 0.64);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-nav .language-switcher__name {
  color: rgba(245, 239, 227, 0.76);
  font-size: 0.86rem;
  font-weight: 520;
}

.site-nav .language-switcher__menu a:hover,
.site-nav .language-switcher__menu a:focus-visible {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(226, 203, 163, 0.12);
}

.site-nav .language-switcher__menu a[aria-current="true"] {
  background: linear-gradient(90deg, rgba(212, 162, 112, 0.1), rgba(212, 162, 112, 0.03));
  border-color: rgba(212, 162, 112, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-nav .language-switcher__menu a[aria-current="true"] .language-switcher__code {
  border-color: rgba(212, 162, 112, 0.18);
  background: rgba(212, 162, 112, 0.04);
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero) {
  padding-top: clamp(4.7rem, 7vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3.1rem);
}

.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout {
  grid-template-columns: minmax(0, 1.52fr) minmax(17rem, 0.76fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: start;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy,
.shell--hub > .hero:not(.editorial-hero) .hero-copy {
  max-width: min(100%, 46rem);
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1 {
  max-width: 10.6ch;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede {
  max-width: 38rem;
}

.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid {
  width: min(100%, 24rem);
  max-width: 24rem;
  gap: 0.86rem;
  margin-left: auto;
  align-self: end;
}

.page-wide > .hero:not(.editorial-hero) .hero-note,
.shell--hub > .hero:not(.editorial-hero) .hero-note {
  padding: clamp(1rem, 1.8vw, 1.25rem);
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 4.16rem;
    padding: 0.3rem 0 0.36rem;
  }

  .site-header.is-condensed .header-inner {
    min-height: 3.88rem;
    padding: 0.22rem 0 0.28rem;
  }

  .site-header__breadcrumb-strip {
    max-height: 1.9rem;
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.6rem;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .shell--hub > .hero:not(.editorial-hero) .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy,
  .page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid {
    max-width: 100%;
    width: 100%;
  }

  .language-switcher__toggle {
    gap: 0.72rem;
  }

  .language-switcher__selected .language-switcher__flag,
  .language-switcher__menu .language-switcher__flag {
    width: 1.24rem;
    height: 0.88rem;
  }

  .js-ready .site-nav .language-switcher__menu a {
    min-height: 2.72rem;
    padding: 0.54rem 0.58rem 0.58rem;
  }
}

/* Grid completion, footer consistency, and utility cleanup pass */
.topic-group > .grid.grid-2,
.section > .grid.grid-2 {
  align-items: stretch;
}

.topic-group > .grid.grid-2 > *,
.section > .grid.grid-2 > * {
  min-width: 0;
}

.hub-fill-card {
  min-height: 100%;
}

.hub-fill-card .card-media {
  min-height: clamp(10.75rem, 20vw, 13.75rem);
  aspect-ratio: 16 / 9;
}

.hub-fill-card .card-body {
  padding: clamp(1.16rem, 2vw, 1.55rem);
}

.hub-fill-card .card-kicker {
  margin-bottom: 0.38rem;
}

.site-footer .small-print {
  padding: 0.92rem 0 1.9rem;
  text-align: center;
}

.site-footer .small-print p {
  max-width: min(76ch, 100%);
  margin: 0 auto;
  color: rgba(245, 239, 227, 0.54);
  font-size: clamp(0.72rem, 0.16vw + 0.69rem, 0.81rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.back-to-top {
  left: auto;
  right: clamp(0.85rem, 1.6vw, 1.45rem);
}

@media (max-width: 640px) {
  .back-to-top {
    left: auto;
    right: 0.8rem;
  }
}

/* Global header/hero refresh and page polish pass */
body {
  --hero-accent-a: rgba(212, 162, 112, 0.16);
  --hero-accent-b: rgba(159, 189, 142, 0.11);
  --hero-shell-top: rgba(6, 10, 9, 0.97);
  --hero-shell-bottom: rgba(12, 19, 17, 0.84);
}

body[data-section="home"] {
  --hero-accent-a: rgba(212, 162, 112, 0.2);
  --hero-accent-b: rgba(146, 176, 136, 0.14);
}

body[data-section="guides"] {
  --hero-accent-a: rgba(191, 164, 122, 0.16);
  --hero-accent-b: rgba(122, 149, 126, 0.12);
}

body[data-section="products"] {
  --hero-accent-a: rgba(212, 162, 112, 0.2);
  --hero-accent-b: rgba(126, 146, 108, 0.12);
}

body[data-section="categories"] {
  --hero-accent-a: rgba(198, 178, 112, 0.16);
  --hero-accent-b: rgba(120, 145, 102, 0.13);
}

body[data-section="brands"] {
  --hero-accent-a: rgba(185, 154, 118, 0.16);
  --hero-accent-b: rgba(120, 145, 134, 0.11);
}

body[data-page-key="about"] {
  --hero-accent-a: rgba(178, 156, 120, 0.18);
  --hero-accent-b: rgba(128, 146, 135, 0.12);
}

body[data-page-key="contact"] {
  --hero-accent-a: rgba(212, 162, 112, 0.16);
  --hero-accent-b: rgba(132, 164, 141, 0.14);
}

body[data-page-kind="policy"] {
  --hero-accent-a: rgba(168, 154, 122, 0.14);
  --hero-accent-b: rgba(116, 133, 123, 0.11);
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  min-height: clamp(20rem, 44svh, 29rem);
  margin: 0 calc(50% - 50vw) clamp(2.45rem, 4vw, 3.6rem);
  padding:
    clamp(4.85rem, 7.3vw, 6.35rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.5rem))
    clamp(2.65rem, 4.8vw, 3.95rem);
  background:
    radial-gradient(circle at 12% 18%, var(--hero-accent-a), transparent 24rem),
    radial-gradient(circle at 88% 20%, var(--hero-accent-b), transparent 23rem),
    linear-gradient(135deg, var(--hero-shell-top) 0%, rgba(11, 18, 15, 0.92) 54%, var(--hero-shell-bottom) 100%);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.34);
}

.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: center;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy,
.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  max-width: min(100%, 40rem);
  padding-block: 0.45rem 0.7rem;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 11ch;
  margin-bottom: 0.82rem;
  font-size: clamp(2.85rem, 5.6vw, 5.3rem);
  line-height: 0.95;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 34rem;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  line-height: 1.66;
}

.page-wide > .hero:not(.editorial-hero) .hero-list,
.shell--hub > .hero:not(.editorial-hero) .hero-list {
  margin-top: 0.96rem;
}

.page-wide > .hero:not(.editorial-hero) .hero-list li,
.shell--hub > .hero:not(.editorial-hero) .hero-list li {
  padding: 0.38rem 0.72rem 0.42rem;
  border-color: rgba(226, 203, 163, 0.12);
  background: rgba(10, 16, 14, 0.48);
  color: rgba(245, 239, 227, 0.74);
}

.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid {
  width: min(100%, 23rem);
  max-width: 23rem;
  gap: 0.95rem;
  margin-left: auto;
  align-self: center;
}

.hero-photo,
.article-header-figure {
  border: 1px solid rgba(226, 203, 163, 0.16);
  background: #0e1513;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.hero-photo img,
.article-header-figure img {
  filter: saturate(0.92) contrast(1.03) brightness(0.93);
}

.hero-note,
.hero-stack-card {
  padding: 1.08rem 1.12rem 1.04rem;
  border-color: rgba(226, 203, 163, 0.12);
  background: rgba(10, 16, 14, 0.74);
  color: rgba(245, 239, 227, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-note p,
.hero-stack-card p {
  color: rgba(245, 239, 227, 0.7);
}

.article-layout > .article-header.article-header--visual {
  width: 100vw;
  max-width: none;
}

.article-header--visual .article-header-layout {
  display: grid;
  position: relative;
  z-index: auto;
}

.article-header--visual .article-header-copy {
  position: relative;
  z-index: 2;
  max-width: min(100%, 40rem);
}

.article-header--visual .article-header-figure {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  min-height: clamp(16rem, 29vw, 22rem);
  height: auto;
  aspect-ratio: 4 / 5;
  opacity: 1;
  border: 1px solid rgba(226, 203, 163, 0.16);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.article-header--visual .article-header-figure::after {
  background:
    linear-gradient(180deg, rgba(7, 11, 10, 0.06), rgba(7, 11, 10, 0.18));
}

.article-header--visual .article-header-figure img {
  width: 100%;
  height: 100%;
  object-position: center center;
  filter: saturate(0.92) contrast(1.03) brightness(0.94);
}

.article-layout.article-layout--support > .article-header.article-header--visual {
  min-height: clamp(18rem, 38svh, 24rem);
}

.article-layout > .article-header:not(.article-header--visual) {
  min-height: 0;
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
  padding-top: clamp(4.4rem, 7vw, 5.6rem);
  padding-bottom: clamp(1.9rem, 3.5vw, 2.6rem);
}

.editorial-hero {
  min-height: clamp(38rem, 94svh, 54rem);
  align-items: stretch;
  margin-bottom: clamp(2.8rem, 4.8vw, 4.2rem);
}

.editorial-hero__media img {
  object-position: center 32%;
  filter: saturate(0.92) contrast(1.03) brightness(0.8);
}

.editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.84) 0%, rgba(8, 12, 10, 0.52) 42%, rgba(8, 12, 10, 0.12) 80%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.24) 0%, rgba(8, 12, 10, 0.42) 56%, rgba(8, 12, 10, 0.76) 100%);
}

.editorial-hero__content {
  align-items: stretch;
  min-height: 100%;
  padding:
    clamp(4.9rem, 7.4vw, 6.6rem)
    max(1.35rem, calc((100vw - var(--hub-width)) / 2 + 1.85rem))
    clamp(7.8rem, 11vh, 9.4rem);
}

.editorial-hero__copy {
  width: min(100%, 46rem);
}

.hero-meta {
  margin-bottom: 0.92rem;
}

.editorial-hero h1 {
  max-width: 7ch;
  margin-bottom: 0.9rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.editorial-hero .lede {
  max-width: 37rem;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.6;
}

.hero-briefs {
  background: rgba(10, 15, 13, 0.54);
}

.hero-briefs a {
  min-height: 5.55rem;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.section,
.topic-group {
  margin-top: clamp(2.85rem, 4.4vw, 4rem);
}

.section-heading--split {
  align-items: end;
}

.section-heading p,
.section-intro {
  max-width: 40rem;
}

.directory-grid {
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  align-items: start;
}

.directory-block,
.panel,
.article-card,
.note {
  min-height: 100%;
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: 0;
    padding-top: clamp(4.4rem, 10vw, 5.2rem);
    padding-bottom: clamp(2rem, 5vw, 2.6rem);
  }

  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .article-header--visual .article-header-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-copy,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy,
  .article-header--visual .article-header-copy,
  .page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
  .shell--hub > .hero:not(.editorial-hero) .hero-copy .lede {
    max-width: 100%;
  }

  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
  .article-header--visual .article-header-figure {
    width: 100%;
    max-width: 100%;
  }

  .article-header--visual .article-header-figure {
    min-height: 14rem;
    aspect-ratio: 16 / 10;
  }

  .editorial-hero {
    min-height: clamp(32rem, 86svh, 44rem);
  }

  .editorial-hero__content {
    padding: 4.6rem 1.2rem 5.6rem;
  }

  .editorial-hero h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 11vw, 4.8rem);
  }

  .section-heading--split > :last-child {
    max-width: 100%;
  }
}

/* Full-width hero title and distributed image pass */
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "copy copy"
    ". visual";
  align-items: start;
  row-gap: clamp(1.2rem, 2.4vw, 1.95rem);
}

.page-wide > .hero:not(.editorial-hero) .hero-copy,
.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  grid-area: copy;
  width: 100%;
  max-width: none;
  padding-right: 0;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  width: 100%;
  max-width: none;
  text-wrap: balance;
}

.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 44rem;
}

.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.article-header--visual .article-header-figure {
  grid-area: visual;
  justify-self: end;
  width: min(100%, 27rem);
  max-width: 27rem;
}

.article-header--visual .article-header-figure {
  min-height: clamp(15rem, 24vw, 20rem);
  aspect-ratio: 5 / 4;
}

.editorial-hero__content {
  align-content: start;
}

.editorial-hero__copy {
  width: 100%;
  max-width: none;
}

.editorial-hero h1 {
  width: 100%;
  max-width: none;
  text-wrap: balance;
}

.editorial-hero .lede,
.editorial-hero .cta-row,
.editorial-hero .hero-meta,
.editorial-hero .eyebrow {
  max-width: 45rem;
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .article-header--visual .article-header-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual";
  }

  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
  .article-header--visual .article-header-figure {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .editorial-hero h1 {
    width: 100%;
  }
}

/* Cannabis imagery, breadcrumb, back-to-top, and spacing cleanup */
body {
  --section-gap-consistent: clamp(2.55rem, 4vw, 3.75rem);
  --module-gap-consistent: clamp(1.05rem, 1.8vw, 1.45rem);
  --surface-pad-consistent: clamp(1.08rem, 1.9vw, 1.5rem);
}

.site-header__breadcrumb-strip {
  background: #121917;
  border-top: 1px solid rgba(226, 203, 163, 0.08);
  border-bottom: 1px solid rgba(226, 203, 163, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.015),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

.site-header__breadcrumb-shell {
  min-height: 1.62rem;
  padding: 0.1rem 0 0.16rem;
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  color: rgba(245, 239, 227, 0.34);
  font-size: 0.57rem;
  font-weight: 430;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-header__breadcrumb-strip .breadcrumbs li::after {
  margin: 0 0.42rem;
  background: rgba(212, 162, 112, 0.22);
}

.site-header__breadcrumb-strip .breadcrumbs a {
  color: rgba(245, 239, 227, 0.44);
}

.site-header__breadcrumb-strip .breadcrumbs li:last-child,
.site-header__breadcrumb-strip .breadcrumbs a:hover,
.site-header__breadcrumb-strip .breadcrumbs a:focus-visible {
  color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
  left: auto;
  right: clamp(0.9rem, 1.7vw, 1.45rem);
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.8rem));
  background: rgba(13, 20, 18, 0.96);
  border-color: rgba(226, 203, 163, 0.18);
}

.shell--hub > .section,
.page-wide > .section,
.magazine-home > .section,
.topic-group,
.site-map-section {
  margin-top: var(--section-gap-consistent);
}

.section-heading,
.section-heading--split {
  margin-bottom: var(--module-gap-consistent);
}

.panel,
.note,
.directory-block,
.summary-card,
.route-card,
.quick-route-card,
.spotlight-card,
.hero-note,
.hero-stack-card {
  padding: var(--surface-pad-consistent);
}

.article-card:not(.article-card--media),
.article-card.article-card--compact,
.article-card .card-body {
  padding: var(--surface-pad-consistent);
}

.grid,
.route-grid,
.quick-route-grid,
.editorial-feature-grid,
.format-grid,
.directory-grid {
  gap: var(--module-gap-consistent);
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header.article-header--visual,
.editorial-hero {
  margin-bottom: clamp(2.2rem, 3.9vw, 3.2rem);
}

.hero-photo img,
.article-header-figure img,
.editorial-hero__media img,
.card-media img,
.feature-media img {
  object-fit: cover;
  filter: saturate(0.97) contrast(1.04) brightness(0.92);
}

@media (max-width: 900px) {
  .site-header__breadcrumb-shell {
    min-height: 1.52rem;
    padding: 0.09rem 0 0.12rem;
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.54rem;
    letter-spacing: 0.05em;
  }

  .back-to-top {
    right: max(0.75rem, calc(env(safe-area-inset-right) + 0.6rem));
    left: auto;
    bottom: max(0.88rem, calc(env(safe-area-inset-bottom) + 0.65rem));
  }

  .shell--hub > .section,
  .page-wide > .section,
  .magazine-home > .section,
  .topic-group,
  .site-map-section {
    margin-top: clamp(2rem, 6vw, 2.8rem);
  }

  .article-card:not(.article-card--media),
  .article-card.article-card--compact,
  .article-card .card-body,
  .panel,
  .note,
  .directory-block,
  .summary-card,
  .route-card,
  .quick-route-card,
  .spotlight-card,
  .hero-note,
  .hero-stack-card {
    padding: 1rem;
  }
}

/* Final deploy hero normalization. Keep homepage immersive; make subpages compact. */
.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  min-height: clamp(17rem, 34svh, 24rem);
  padding:
    clamp(3.9rem, 5.8vw, 5.2rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.5rem))
    clamp(1.9rem, 3.2vw, 2.7rem);
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.page-wide > .hero:not(.editorial-hero) .hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(15rem, 0.38fr);
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.35rem);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.page-wide > .hero:not(.editorial-hero) .hero-copy {
  max-width: 42rem;
  padding: 0;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 18ch;
  font-size: clamp(2.55rem, 4.1vw, 4.25rem);
  line-height: 1.02;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 45rem;
}

.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.page-wide > .hero:not(.editorial-hero) .hero-visual-grid {
  display: none;
}

.shell--hub > .hero:not(.editorial-hero) .hero-note,
.page-wide > .hero:not(.editorial-hero) .hero-note {
  display: none;
}

.shell--hub > .hero:not(.editorial-hero) .hero-photo,
.page-wide > .hero:not(.editorial-hero) .hero-photo {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.shell--hub > .hero:not(.editorial-hero) .hero-photo--wide,
.page-wide > .hero:not(.editorial-hero) .hero-photo--wide {
  aspect-ratio: 16 / 9;
}

.article-layout > .article-header {
  min-height: clamp(15.5rem, 28svh, 21rem);
}

.article-header--visual .article-header-layout {
  display: block;
}

.article-header--visual .article-header-copy {
  max-width: 42rem;
}

.article-header--visual .article-header-figure {
  display: none;
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: clamp(17rem, 46svh, 24rem);
    padding: 3.75rem 1.1rem 1.65rem;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .page-wide > .hero:not(.editorial-hero) .hero-layout {
    grid-template-columns: 1fr;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 10.6vw, 3.65rem);
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .article-header--visual .article-header-figure {
    display: none;
  }

  .article-header--visual .article-header-layout {
    grid-template-columns: 1fr;
  }
}

/* Interior editorial enrichment: real image-led heroes and designed next-step modules. */
.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header {
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(23rem, 48svh, 34rem);
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.94) 0%, rgba(7, 12, 10, 0.76) 44%, rgba(7, 12, 10, 0.38) 100%),
    linear-gradient(0deg, rgba(6, 10, 9, 0.92) 0%, rgba(6, 10, 9, 0.24) 58%, rgba(6, 10, 9, 0.54) 100%),
    var(--hero-family-image, url("assets/images/hero/cbd-product-selection.jpg")) center / cover no-repeat,
    #07100d;
}

.shell--hub > .hero--guides {
  --hero-family-image: url("assets/images/hero/cbd-product-selection.jpg");
}

.shell--hub > .hero--products {
  --hero-family-image: url("assets/images/sections/cbd-softgels-elsa-olofsson.jpg");
}

.shell--hub > .hero--categories {
  --hero-family-image: url("assets/images/cards/cbd-gummies-bowl.jpg");
}

.shell--hub > .hero--brands {
  --hero-family-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
}

.article-layout > .article-header {
  --hero-family-image: url("assets/images/hero/cbd-product-selection.jpg");
}

.article-layout:has(.breadcrumbs a[href="index.html"] + *),
.article-layout:has(.breadcrumbs a[href="../products/index.html"]) > .article-header {
  --hero-family-image: url("assets/images/sections/cbd-softgels-elsa-olofsson.jpg");
}

.article-layout > .article-header::after,
.shell--hub > .hero:not(.editorial-hero)::after,
.page-wide > .hero:not(.editorial-hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 162, 112, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(106, 143, 112, 0.22), transparent 24rem),
    linear-gradient(120deg, rgba(7, 12, 10, 0.46), rgba(7, 12, 10, 0.08));
  pointer-events: none;
}

.article-layout > .article-header > *,
.shell--hub > .hero:not(.editorial-hero) > *,
.page-wide > .hero:not(.editorial-hero) > * {
  position: relative;
  z-index: 1;
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(17rem, 0.48fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.page-wide > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  max-width: 46rem;
  padding: 0;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 15ch;
  font-size: clamp(2.9rem, 5.1vw, 5.25rem);
  line-height: 0.98;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 42rem;
  color: rgba(245, 239, 227, 0.88);
}

.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.article-header--visual .article-header-figure {
  display: grid;
}

.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.page-wide > .hero:not(.editorial-hero) .hero-visual-grid {
  width: min(100%, 27rem);
  max-width: 27rem;
  margin-left: auto;
  gap: 0.85rem;
}

.shell--hub > .hero:not(.editorial-hero) .hero-note,
.page-wide > .hero:not(.editorial-hero) .hero-note {
  display: block;
}

.article-header--visual .article-header-figure,
.shell--hub > .hero:not(.editorial-hero) .hero-photo,
.page-wide > .hero:not(.editorial-hero) .hero-photo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(226, 203, 163, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(9, 15, 13, 0.78);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
}

.article-header--visual .article-header-figure {
  width: min(100%, 27rem);
  margin-left: auto;
}

.article-header--visual .article-header-figure img,
.shell--hub > .hero:not(.editorial-hero) .hero-photo img,
.page-wide > .hero:not(.editorial-hero) .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05) brightness(0.9);
}

.hero-note,
.hero-stack-card {
  backdrop-filter: blur(10px);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list),
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.64fr);
  gap: clamp(1.1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel {
  background:
    linear-gradient(145deg, rgba(21, 32, 27, 0.94), rgba(8, 14, 12, 0.98)),
    #101815 !important;
  border-color: rgba(226, 203, 163, 0.2);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child {
  padding: clamp(1.45rem, 3vw, 2.35rem);
  background:
    linear-gradient(115deg, rgba(19, 31, 26, 0.98) 0%, rgba(9, 15, 13, 0.94) 55%, rgba(9, 15, 13, 0.48) 100%),
    url("assets/images/sections/cannabisshop-cbd-flatlay.webp") right center / min(34rem, 58%) auto no-repeat,
    #101815 !important;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child h2,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: #fffaf1;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child p,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:first-child p {
  max-width: 46rem;
  color: rgba(245, 239, 227, 0.78);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:nth-child(2),
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:nth-child(2) {
  padding: clamp(1.05rem, 2.2vw, 1.55rem);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:nth-child(2) h2,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) > .panel:nth-child(2) h2 {
  margin-bottom: 0.95rem;
  color: #fffaf1;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: next-step;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list li,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list li {
  counter-increment: next-step;
  margin: 0;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.45rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(226, 203, 163, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 239, 227, 0.88);
  text-decoration: none;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a::before,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a::before {
  content: counter(next-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  border: 1px solid rgba(212, 162, 112, 0.22);
  color: rgba(212, 162, 112, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a::after,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a::after {
  content: ">";
  color: rgba(212, 162, 112, 0.66);
  font-weight: 800;
}

.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a:hover,
.section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a:focus-visible,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a:hover,
.topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a:focus-visible {
  background: rgba(212, 162, 112, 0.08);
  border-color: rgba(212, 162, 112, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: auto;
    padding: 3.5rem 1.1rem 2rem;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .article-header--visual .article-header-layout {
    grid-template-columns: 1fr;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 10.4vw, 3.8rem);
  }

  .article-header--visual .article-header-figure,
  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-note,
  .page-wide > .hero:not(.editorial-hero) .hero-note {
    display: none;
  }

  .section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list),
  .topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) {
    grid-template-columns: 1fr;
  }

  .section > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a,
  .topic-group > .grid.grid-2:has(> .panel:nth-child(2) .callout-list) .callout-list a {
    grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  }
}

/* Clean hero correction: background-only heroes, topic-specific imagery. */
.hero,
.article-header {
  --hero-family-image: url("assets/images/hero/cbd-oil-bottles-leaves.jpg");
  --hero-position: center center;
}

.shell--hub > .hero:not(.editorial-hero),
.page-wide > .hero:not(.editorial-hero),
.article-layout > .article-header {
  min-height: clamp(22rem, 46svh, 31rem);
  padding-top: clamp(4.4rem, 8vw, 6.6rem);
  padding-bottom: clamp(3.2rem, 6vw, 5.2rem);
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.96) 0%, rgba(7, 12, 10, 0.82) 44%, rgba(7, 12, 10, 0.48) 100%),
    linear-gradient(0deg, rgba(6, 10, 9, 0.94) 0%, rgba(6, 10, 9, 0.3) 54%, rgba(6, 10, 9, 0.52) 100%),
    var(--hero-family-image) var(--hero-position) / cover no-repeat,
    #07100d;
}

.hero--home,
.hero-topic-home {
  --hero-family-image: url("assets/images/hero/cbd-oil-bottles-leaves.jpg");
  --hero-position: center center;
}

.shell--hub > .hero--guides,
.hero-topic-guides {
  --hero-family-image: url("assets/images/hero/editorial-wellness-desk.jpg");
  --hero-position: center center;
}

.shell--hub > .hero--products,
.hero-topic-products {
  --hero-family-image: url("assets/images/hero/cbd-product-lineup.jpg");
  --hero-position: center center;
}

.shell--hub > .hero--categories,
.hero-topic-categories {
  --hero-family-image: url("assets/images/hero/cbd-comparison-flatlay.jpg");
  --hero-position: center center;
}

.shell--hub > .hero--brands,
.hero-topic-brands {
  --hero-family-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
  --hero-position: center center;
}

.hero-topic-support {
  --hero-family-image: url("assets/images/hero/wellness-workspace.jpg");
  --hero-position: center center;
}

.hero-topic-oil,
.hero-topic-tincture,
.hero-topic-spectrum {
  --hero-family-image: url("assets/images/hero/cbd-dropper-leaves-pink.jpg");
  --hero-position: center center;
}

.hero-topic-gummies,
.hero-topic-edibles {
  --hero-family-image: url("assets/images/hero/cbd-gummies-flatlay.jpg");
  --hero-position: center center;
}

.hero-topic-capsules {
  --hero-family-image: url("assets/images/hero/softgel-capsules-closeup.jpg");
  --hero-position: center center;
}

.hero-topic-topicals {
  --hero-family-image: url("assets/images/hero/cbd-topical-cream.jpg");
  --hero-position: center center;
}

.hero-topic-pet {
  --hero-family-image: url("assets/images/cards/cbd-pet-oil-scene.jpg");
  --hero-position: center center;
}

.hero-topic-lab,
.hero-topic-quality,
.hero-topic-learning {
  --hero-family-image: url("assets/images/hero/calm-wellness-editorial.jpg");
  --hero-position: center center;
}

.shell--hub > .hero.hero-topic-home,
.page-wide > .hero.hero-topic-home,
.article-layout > .article-header.hero-topic-home {
  --hero-family-image: url("assets/images/hero/cbd-oil-bottles-leaves.jpg");
}

.shell--hub > .hero.hero-topic-guides,
.page-wide > .hero.hero-topic-guides,
.article-layout > .article-header.hero-topic-guides {
  --hero-family-image: url("assets/images/hero/editorial-wellness-desk.jpg");
}

.shell--hub > .hero.hero-topic-products,
.page-wide > .hero.hero-topic-products,
.article-layout > .article-header.hero-topic-products {
  --hero-family-image: url("assets/images/hero/cbd-product-lineup.jpg");
}

.shell--hub > .hero.hero-topic-categories,
.page-wide > .hero.hero-topic-categories,
.article-layout > .article-header.hero-topic-categories {
  --hero-family-image: url("assets/images/hero/cbd-comparison-flatlay.jpg");
}

.shell--hub > .hero.hero-topic-brands,
.page-wide > .hero.hero-topic-brands,
.article-layout > .article-header.hero-topic-brands {
  --hero-family-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
}

.shell--hub > .hero.hero-topic-support,
.page-wide > .hero.hero-topic-support,
.article-layout > .article-header.hero-topic-support {
  --hero-family-image: url("assets/images/hero/wellness-workspace.jpg");
}

.article-layout > .article-header.hero-topic-oil,
.article-layout > .article-header.hero-topic-tincture,
.article-layout > .article-header.hero-topic-spectrum {
  --hero-family-image: url("assets/images/hero/cbd-dropper-leaves-pink.jpg");
}

.article-layout > .article-header.hero-topic-gummies,
.article-layout > .article-header.hero-topic-edibles {
  --hero-family-image: url("assets/images/hero/cbd-gummies-flatlay.jpg");
}

.article-layout > .article-header.hero-topic-capsules {
  --hero-family-image: url("assets/images/hero/softgel-capsules-closeup.jpg");
}

.article-layout > .article-header.hero-topic-topicals {
  --hero-family-image: url("assets/images/hero/cbd-topical-cream.jpg");
}

.article-layout > .article-header.hero-topic-pet {
  --hero-family-image: url("assets/images/cards/cbd-pet-oil-scene.jpg");
}

.article-layout > .article-header.hero-topic-learning,
.article-layout > .article-header.hero-topic-lab,
.article-layout > .article-header.hero-topic-quality {
  --hero-family-image: url("assets/images/hero/calm-wellness-editorial.jpg");
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-columns: minmax(0, 1fr);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.page-wide > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  max-width: min(48rem, 100%);
}

.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
.article-header--visual .article-header-figure,
.shell--hub > .hero:not(.editorial-hero) .hero-note,
.page-wide > .hero:not(.editorial-hero) .hero-note {
  display: none !important;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 15.5ch;
}

@media (max-width: 900px) {
  .shell--hub > .hero:not(.editorial-hero),
  .page-wide > .hero:not(.editorial-hero),
  .article-layout > .article-header {
    min-height: auto;
    padding: 3.4rem 1.1rem 2.25rem;
    background-position: var(--hero-position);
  }
}

/* Senior hero cleanup + nav upgrade + spacing system pass */
body {
  --space-section-system: clamp(2.7rem, 4.2vw, 4rem);
  --space-module-system: clamp(1.1rem, 1.9vw, 1.55rem);
  --space-card-system: clamp(1.08rem, 1.8vw, 1.45rem);
  --hero-figure-brightness: 1.03;
}

body[data-section="home"] {
  --hero-figure-brightness: 1;
}

body[data-page-key="about"] {
  --hero-accent-a: rgba(179, 154, 116, 0.14);
  --hero-accent-b: rgba(129, 149, 135, 0.1);
}

body[data-page-key="contact"] {
  --hero-accent-a: rgba(196, 157, 117, 0.13);
  --hero-accent-b: rgba(134, 162, 145, 0.11);
}

.site-header,
.site-nav,
.site-nav-panel {
  overflow: visible;
}

.site-nav-item--has-subnav {
  position: relative;
}

.site-nav-link-group {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
}

.site-subnav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  min-height: 2.22rem;
  padding: 0;
  border: 1px solid rgba(226, 203, 163, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 239, 227, 0.68);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-subnav-toggle::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.site-nav-item--has-subnav.is-open .site-subnav-toggle::before {
  transform: translateY(1px) rotate(225deg);
}

.site-subnav-toggle:hover,
.site-subnav-toggle:focus-visible,
.site-nav-item--has-subnav:focus-within .site-subnav-toggle {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(226, 203, 163, 0.24);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-subnav-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 24;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.82rem 0.88rem 0.94rem;
  border: 1px solid rgba(226, 203, 163, 0.14);
  background: rgba(11, 17, 15, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-nav-secondary .site-nav-item--has-subnav > .site-subnav-panel {
  left: auto;
  right: 0;
}

.site-nav-item--has-subnav:hover > .site-subnav-panel,
.site-nav-item--has-subnav:focus-within > .site-subnav-panel,
.site-nav-item--has-subnav.is-open > .site-subnav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-subnav-heading {
  margin: 0 0 0.56rem;
  color: rgba(245, 239, 227, 0.46);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-subnav-list {
  display: grid;
  gap: 0.18rem;
}

.site-subnav-list li {
  display: block;
}

.site-subnav-link {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0.62rem 0.68rem 0.66rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(245, 239, 227, 0.88);
  font-size: 0.89rem;
  font-weight: 560;
  line-height: 1.3;
  text-decoration: none;
}

.site-subnav-link::after {
  display: none;
}

.site-subnav-link:hover,
.site-subnav-link:focus-visible {
  background: rgba(212, 162, 112, 0.08);
  border-color: rgba(226, 203, 163, 0.14);
  color: #ffffff;
}

.page-wide > .hero:not(.editorial-hero),
.shell--hub > .hero:not(.editorial-hero),
.article-layout > .article-header.article-header--visual {
  min-height: clamp(21rem, 42svh, 28rem);
  padding:
    clamp(4.65rem, 7vw, 6rem)
    max(1.2rem, calc((100vw - var(--shell-width)) / 2 + 1.45rem))
    clamp(2.9rem, 4.6vw, 3.7rem);
  background:
    radial-gradient(circle at 14% 18%, var(--hero-accent-a), transparent 26rem),
    radial-gradient(circle at 86% 18%, var(--hero-accent-b), transparent 23rem),
    linear-gradient(90deg, rgba(6, 10, 9, 0.78) 0%, rgba(6, 10, 9, 0.46) 46%, rgba(6, 10, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 10, 9, 0.16) 0%, rgba(6, 10, 9, 0.34) 68%, rgba(6, 10, 9, 0.58) 100%),
    var(--hero-family-image) center / cover no-repeat,
    #07100d;
}

.shell--hub > .hero:not(.editorial-hero) .hero-layout,
.page-wide > .hero:not(.editorial-hero) .hero-layout,
.article-header--visual .article-header-layout {
  grid-template-areas: "copy visual";
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(1.45rem, 2.8vw, 2.3rem);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy,
.page-wide > .hero:not(.editorial-hero) .hero-copy,
.article-header--visual .article-header-copy {
  display: grid;
  gap: clamp(0.74rem, 1.2vw, 0.96rem);
  max-width: min(44rem, 100%);
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
.page-wide > .hero:not(.editorial-hero) .hero-copy h1,
.article-header h1 {
  max-width: 14.5ch;
  margin: 0;
  font-size: clamp(2.72rem, 4.8vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.shell--hub > .hero:not(.editorial-hero) .hero-copy .lede,
.page-wide > .hero:not(.editorial-hero) .hero-copy .lede,
.article-header .lede {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(1.02rem, 1.34vw, 1.16rem);
  line-height: 1.72;
  color: rgba(245, 239, 227, 0.8);
}

.shell--hub > .hero:not(.editorial-hero) .hero-list,
.page-wide > .hero:not(.editorial-hero) .hero-list {
  margin-top: 0.22rem;
}

.shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
.page-wide > .hero:not(.editorial-hero) .hero-visual-grid {
  display: grid !important;
  width: min(100%, 22.75rem);
  max-width: 22.75rem;
  gap: 0.86rem;
  align-self: center;
}

.article-header--visual .article-header-figure {
  display: block !important;
  width: min(100%, 25.5rem);
  max-width: 25.5rem;
  min-height: clamp(14rem, 23vw, 18rem);
  aspect-ratio: 16 / 10;
}

.shell--hub > .hero:not(.editorial-hero) .hero-note,
.page-wide > .hero:not(.editorial-hero) .hero-note {
  display: block !important;
}

.hero-photo,
.article-header-figure {
  background: #101715;
}

.hero-photo img,
.article-header-figure img {
  filter: saturate(1) contrast(1.02) brightness(var(--hero-figure-brightness));
}

.article-header--visual .article-header-figure::after {
  background: linear-gradient(180deg, rgba(7, 11, 10, 0.03), rgba(7, 11, 10, 0.14));
}

body[data-page-key="about"] .article-layout > .article-header.article-header--visual {
  --hero-family-image: url("assets/images/sections/cannabisshop-cbd-flatlay.webp");
}

body[data-page-key="contact"] .article-layout > .article-header.article-header--visual {
  --hero-family-image: url("assets/images/cards/cbd-topical-application.jpg");
}

body[data-page-key="about"] .article-header-figure img {
  object-position: center 48%;
}

body[data-page-key="contact"] .article-header-figure img {
  object-position: center 42%;
}

html:not([lang="en"]) .site-nav-primary,
html:not([lang="en"]) .site-nav-secondary,
html:not([lang="en"]) .site-nav-left,
html:not([lang="en"]) .site-nav-right {
  gap: clamp(0.58rem, 1.18vw, 1.18rem);
}

html:not([lang="en"]) .site-nav a {
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  letter-spacing: 0.025em;
}

html:not([lang="en"]) .article-layout > .article-header.article-header--visual {
  min-height: clamp(22rem, 38svh, 28rem);
}

html:not([lang="en"]) .article-header h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 1.02;
}

html:not([lang="en"]) .article-header .lede {
  max-width: 44rem;
}

.hero-topic-home {
  min-height: clamp(39rem, 90svh, 52rem);
}

.editorial-hero__media img {
  object-position: center 34%;
  filter: saturate(1.02) contrast(1.02) brightness(0.94);
}

.editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.62) 0%, rgba(7, 11, 10, 0.28) 40%, rgba(7, 11, 10, 0.08) 78%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.08) 0%, rgba(7, 11, 10, 0.18) 48%, rgba(7, 11, 10, 0.46) 100%);
}

.editorial-hero__content {
  align-content: end;
  padding:
    clamp(6rem, 8.5vw, 7.4rem)
    max(1.35rem, calc((100vw - var(--hub-width)) / 2 + 1.85rem))
    clamp(9rem, 12vh, 10.6rem);
}

.editorial-hero__copy {
  display: grid;
  width: min(100%, 53rem);
  gap: clamp(0.82rem, 1.3vw, 1.1rem);
}

.hero-meta {
  gap: 0.68rem;
  margin-bottom: 0.08rem;
}

.editorial-hero .eyebrow {
  margin-bottom: 0;
}

.editorial-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.95rem, 8vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.editorial-hero .lede {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(1.07rem, 1.45vw, 1.24rem);
  line-height: 1.68;
  color: rgba(245, 239, 227, 0.82);
}

.editorial-hero .cta-row {
  margin-top: 0.2rem;
  gap: 0.86rem;
}

.hero-briefs {
  background: rgba(11, 16, 14, 0.44);
  border-top: 1px solid rgba(226, 203, 163, 0.08);
  backdrop-filter: blur(10px);
}

.hero-briefs a {
  min-height: 5.75rem;
  padding: 1rem 1.12rem;
}

.shell--hub > .section,
.page-wide > .section,
.magazine-home > .section,
.topic-group,
.site-map-section {
  margin-top: var(--space-section-system);
}

.section-heading,
.section-heading--split {
  margin-bottom: var(--space-module-system);
  gap: 0.9rem 1.35rem;
}

.section-heading h2,
.topic-group > h2 {
  margin: 0 0 0.58rem;
  font-size: clamp(1.95rem, 3.25vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.lede,
.section-heading p,
.section-intro,
.panel p,
.note p,
.article-card p,
.route-card p,
.quick-route-card p,
.hero-note p {
  line-height: 1.72;
}

.panel,
.note,
.directory-block,
.summary-card,
.route-card,
.quick-route-card,
.spotlight-card,
.hero-note,
.hero-stack-card {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: var(--space-card-system);
}

.article-card:not(.article-card--media),
.article-card.article-card--compact,
.article-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: var(--space-card-system);
}

.grid,
.route-grid,
.quick-route-grid,
.editorial-feature-grid,
.format-grid,
.directory-grid {
  gap: var(--space-module-system);
}

.article-card h3,
.route-card h3,
.quick-route-card h3,
.hero-note h3 {
  line-height: 1.1;
}

.article-card h3,
.route-card h3,
.quick-route-card h3 {
  font-size: clamp(1.16rem, 1.65vw, 1.42rem);
}

.button-link {
  min-height: 3rem;
  padding: 0.88rem 1.24rem;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.article-card__footer,
.route-card__footer {
  margin-top: auto;
  padding-top: 0.18rem;
}

@media (min-width: 901px) {
  .site-subnav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-nav-link-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.34rem;
  }

  .site-subnav-toggle {
    display: inline-flex;
    width: 2.2rem;
    min-height: 2.2rem;
  }

  .site-subnav-panel {
    position: static;
    width: 100%;
    margin: 0.16rem 0 0.54rem;
    padding: 0.52rem 0 0;
    border: 0;
    border-top: 1px solid rgba(226, 203, 163, 0.1);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-subnav-heading {
    margin-bottom: 0.38rem;
    padding-left: 0.12rem;
  }

  .site-subnav-link {
    padding: 0.62rem 0.12rem 0.72rem;
    border: 0;
    border-bottom: 1px solid rgba(226, 203, 163, 0.08);
    background: transparent;
  }

  .site-subnav-list li:last-child .site-subnav-link {
    border-bottom: 0;
  }

  .page-wide > .hero:not(.editorial-hero),
  .shell--hub > .hero:not(.editorial-hero),
  .article-layout > .article-header.article-header--visual {
    min-height: auto;
    padding:
      4.25rem
      1.1rem
      2.45rem;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-layout,
  .page-wide > .hero:not(.editorial-hero) .hero-layout,
  .article-header--visual .article-header-layout {
    grid-template-areas:
      "copy"
      "visual";
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-copy,
  .page-wide > .hero:not(.editorial-hero) .hero-copy,
  .article-header--visual .article-header-copy {
    max-width: 100%;
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-copy h1,
  .page-wide > .hero:not(.editorial-hero) .hero-copy h1,
  .article-header h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 9.8vw, 3.75rem);
  }

  .shell--hub > .hero:not(.editorial-hero) .hero-visual-grid,
  .page-wide > .hero:not(.editorial-hero) .hero-visual-grid,
  .article-header--visual .article-header-figure {
    width: 100%;
    max-width: 100%;
  }

  .hero-topic-home {
    min-height: clamp(34rem, 82svh, 44rem);
  }

  .editorial-hero__content {
    padding: 5.1rem 1.1rem 6.1rem;
  }

  .editorial-hero__copy {
    width: 100%;
  }

  .editorial-hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 11vw, 5rem);
  }

  .hero-briefs {
    grid-template-columns: 1fr;
  }

  .shell--hub > .section,
  .page-wide > .section,
  .magazine-home > .section,
  .topic-group,
  .site-map-section {
    margin-top: clamp(2.15rem, 6.2vw, 2.8rem);
  }
}

/* Homepage CTA + breadcrumb + subnav consistency cleanup */
body {
  --breadcrumb-content-width: var(--shell-width);
}

body[data-page-kind="hub"][data-section="guides"],
body[data-page-kind="hub"][data-section="products"],
body[data-page-kind="hub"][data-section="brands"] {
  --breadcrumb-content-width: var(--hub-width);
}

body[data-page-kind="hub"][data-section="categories"],
body[data-page-kind="directory"] {
  --breadcrumb-content-width: var(--browse-width);
}

.header-inner,
.site-header .brand,
.site-header .brand-mark,
.site-nav a,
.language-switcher__toggle,
.site-header__breadcrumb-strip,
.site-header__breadcrumb-shell {
  transition:
    padding 160ms ease,
    opacity 160ms ease,
    max-height 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 160ms ease !important;
}

.site-header .brand,
.site-header.is-condensed .brand {
  top: 0.04rem;
}

.site-header.is-condensed .header-inner {
  min-height: 4.46rem;
  padding: 0.28rem 0 0.42rem;
}

.site-header__breadcrumb-shell {
  width: min(calc(100% - 2rem), var(--breadcrumb-content-width));
  margin: 0 auto;
}

.site-header__breadcrumb-strip .breadcrumbs {
  width: 100%;
}

.site-header__breadcrumb-strip .breadcrumbs ol {
  padding-left: 0;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none !important;
}

.site-header__breadcrumb-strip .breadcrumbs li,
.site-header__breadcrumb-strip .breadcrumbs a {
  text-transform: none !important;
}

.site-nav .site-subnav-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-content: stretch;
  align-items: stretch;
  flex: 0 0 auto;
  width: 100%;
  gap: 0.22rem;
}

.site-nav .site-subnav-list li {
  width: 100%;
}

.site-subnav-panel {
  top: calc(100% + 0.92rem);
  width: min(19.75rem, calc(100vw - 2rem));
  padding: 0.88rem 0.88rem 0.94rem;
}

.site-subnav-link,
.site-nav .site-subnav-link {
  display: flex !important;
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  white-space: normal;
}

.site-subnav-link-title {
  display: block;
  width: 100%;
}

.hero-topic-home .editorial-hero__media img,
.editorial-hero.hero-topic-home .editorial-hero__media img {
  object-position: center 16%;
}

.editorial-hero .button-link {
  min-height: 3.14rem;
  padding: 0.92rem 1.28rem;
  border-color: rgba(236, 224, 203, 0.28);
  background: rgba(245, 239, 227, 0.94);
  color: #102019;
  font-size: 0.95rem;
  font-weight: 650;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.editorial-hero .button-link:hover,
.editorial-hero .button-link:focus-visible {
  border-color: rgba(245, 239, 227, 0.38);
  background: #fffaf1;
  color: #0a1511;
  transform: translateY(-1px);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.editorial-hero .button-link.secondary {
  background: rgba(12, 18, 16, 0.48);
  color: rgba(245, 239, 227, 0.92);
  border-color: rgba(245, 239, 227, 0.18);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.editorial-hero .button-link.secondary:hover,
.editorial-hero .button-link.secondary:focus-visible {
  background: rgba(15, 23, 20, 0.68);
  color: #ffffff;
  border-color: rgba(245, 239, 227, 0.26);
}

@media (max-width: 900px) {
  .site-header__breadcrumb-shell {
    width: min(calc(100% - 1.2rem), var(--breadcrumb-content-width));
  }

  .site-header__breadcrumb-strip .breadcrumbs ol {
    font-size: 0.65rem;
  }

  .site-subnav-panel {
    width: 100%;
    padding: 0.52rem 0 0;
  }

  .editorial-hero .cta-row {
    gap: 0.72rem;
  }

  .editorial-hero .button-link {
    min-height: 3rem;
  }
}

/* Homepage hero copy + submenu stacking refinement */
.hero-topic-home .editorial-hero__copy {
  width: min(100%, 45rem);
  gap: clamp(0.92rem, 1.45vw, 1.18rem);
}

.hero-topic-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem 0.58rem;
  margin-bottom: 0.16rem;
}

.hero-topic-home .hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.42rem 0.2rem;
  background: rgba(201, 161, 112, 0.18);
  border: 1px solid rgba(201, 161, 112, 0.18);
  color: rgba(246, 239, 225, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-topic-home .hero-meta span + span {
  padding-left: 0.5rem;
}

.hero-topic-home .hero-meta span + span::before {
  display: none;
}

.hero-topic-home .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.18rem 0;
  border: 0;
  background: transparent;
  color: rgba(246, 239, 225, 0.72);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-topic-home h1 {
  margin-top: 0.08rem;
}

.hero-topic-home .lede {
  max-width: 37rem;
  color: rgba(245, 239, 227, 0.88);
}

.hero-topic-home .cta-row {
  gap: 1.08rem;
}

.hero-topic-home .button-link {
  min-height: 2.88rem;
  padding: 0.74rem 1.08rem;
  font-size: 0.92rem;
}

.site-subnav-panel,
.site-subnav-heading,
.site-subnav-list,
.site-subnav-list li,
.site-subnav-link,
.site-subnav-link-title {
  text-align: left !important;
}

.site-nav .site-subnav-list,
.site-subnav-panel ul {
  display: block !important;
  width: 100%;
}

.site-nav .site-subnav-list li,
.site-subnav-panel li {
  display: block !important;
  width: 100%;
  margin: 0 !important;
}

.site-subnav-link,
.site-nav .site-subnav-link {
  display: block !important;
  width: 100%;
  padding: 0.82rem 0.9rem 0.9rem;
}

.site-subnav-link-title {
  display: block !important;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-topic-home .hero-meta {
    gap: 0.44rem 0.48rem;
  }

  .hero-topic-home .hero-meta span {
    font-size: 0.69rem;
  }

  .hero-topic-home .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .hero-topic-home .cta-row {
    gap: 0.92rem;
  }

  .hero-topic-home .button-link {
    min-height: 2.78rem;
    padding: 0.7rem 0.98rem;
  }
}

/* Desktop submenu panel refinement */
@media (min-width: 901px) {
  .site-nav-item--has-subnav > .site-subnav-panel {
    top: calc(100% + 1.38rem);
    left: 0;
    right: auto;
    width: min(20.5rem, calc(100vw - 2rem));
    padding: 1rem 1.08rem 0.92rem;
    border: 1px solid rgba(226, 203, 163, 0.12);
    background:
      linear-gradient(180deg, rgba(10, 15, 13, 0.985), rgba(7, 11, 10, 0.97));
    box-shadow:
      0 24px 54px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(16px);
  }

  .site-nav-secondary .site-nav-item--has-subnav > .site-subnav-panel {
    left: 0;
    right: auto;
  }

  .site-subnav-heading {
    margin: 0 0 0.68rem;
    padding: 0 0 0.18rem;
    border-bottom: 1px solid rgba(226, 203, 163, 0.08);
    color: rgba(245, 239, 227, 0.5);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-nav .site-subnav-list,
  .site-subnav-panel ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .site-nav .site-subnav-list li,
  .site-subnav-panel li {
    display: block !important;
    width: 100%;
    margin: 0 !important;
  }

  .site-nav .site-subnav-list li + li,
  .site-subnav-panel li + li {
    border-top: 1px solid rgba(226, 203, 163, 0.08);
  }

  .site-subnav-link,
  .site-nav .site-subnav-link {
    display: block !important;
    width: 100%;
    min-height: 0;
    padding: 0.86rem 0 0.92rem;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(245, 239, 227, 0.84);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0 !important;
    line-height: 1.28;
    text-align: left !important;
    text-transform: none !important;
  }

  .site-subnav-link:hover,
  .site-subnav-link:focus-visible,
  .site-nav .site-subnav-link:hover,
  .site-nav .site-subnav-link:focus-visible {
    background: transparent !important;
    border-color: transparent;
    color: #ffffff;
    transform: translateX(3px);
  }

  .site-subnav-link-title {
    display: block !important;
    width: 100%;
    text-align: left !important;
    text-transform: none !important;
    white-space: normal;
  }
}

/* Homepage hero button clarity tweak */
.hero-topic-home .button-link,
.editorial-hero.hero-topic-home .button-link {
  min-height: 2.12rem;
  padding: 0.34rem 0.9rem 0.38rem;
  font-size: 0.91rem;
  text-shadow: none;
}

.hero-topic-home .button-link.secondary,
.editorial-hero.hero-topic-home .button-link.secondary {
  background: rgba(11, 17, 15, 0.82);
  color: rgba(248, 243, 234, 0.98);
  border-color: rgba(245, 239, 227, 0.24);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-topic-home .button-link.secondary:hover,
.hero-topic-home .button-link.secondary:focus-visible,
.editorial-hero.hero-topic-home .button-link.secondary:hover,
.editorial-hero.hero-topic-home .button-link.secondary:focus-visible {
  background: rgba(14, 22, 19, 0.94);
  color: #fffdf8;
  border-color: rgba(245, 239, 227, 0.3);
}

@media (max-width: 900px) {
  .hero-topic-home .button-link,
  .editorial-hero.hero-topic-home .button-link {
    min-height: 2rem;
    padding: 0.32rem 0.82rem 0.36rem;
  }
}

.hero-topic-home .hero-meta span {
  line-height: 1.05;
}

.issue-feature .feature-media img {
  object-position: center 48%;
}

.feature-jump-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.88rem 1rem;
  align-items: end;
  padding: clamp(1rem, 1.8vw, 1.3rem);
  background:
    linear-gradient(145deg, rgba(17, 28, 23, 0.94), rgba(8, 13, 12, 0.98)),
    #101715;
  border-color: rgba(226, 203, 163, 0.18);
}

.feature-jump-card > * {
  margin-bottom: 0;
}

.feature-jump-card .card-kicker {
  grid-column: 1 / -1;
}

.feature-jump-card h3 {
  grid-column: 1 / 2;
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.08;
  color: #fffaf1;
}

.feature-jump-card p {
  grid-column: 1 / 2;
  margin: 0;
  max-width: 40rem;
}

.feature-jump-card__actions {
  grid-column: 2 / 3;
  grid-row: 2 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-jump-card .button-link {
  min-height: 2.24rem;
  padding: 0.44rem 0.84rem 0.5rem;
  white-space: nowrap;
}

/* Brand research cards */
.brand-research-grid {
  align-items: stretch;
}

.brand-research-card {
  display: grid;
  gap: 0.95rem;
  grid-template-rows: auto auto 1fr auto;
}

.brand-research-card h3 {
  margin-bottom: 0;
}

.brand-research-card h3 a {
  color: inherit;
}

.brand-research-card__summary {
  margin: 0;
}

.brand-research-card__details {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 203, 163, 0.14);
}

.brand-research-card__details div {
  display: grid;
  gap: 0.22rem;
}

.brand-research-card__details dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-research-card__details dd {
  margin: 0;
  color: var(--muted);
}

.brand-research-card__actions,
.brand-profile-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.brand-research-card .button-link,
.brand-profile-cta .button-link {
  min-height: 2.1rem;
  padding: 0.34rem 0.78rem 0.38rem;
  font-size: 0.86rem;
}

.brand-profile-cta {
  border-color: rgba(226, 203, 163, 0.22);
  background:
    linear-gradient(135deg, rgba(226, 203, 163, 0.1), rgba(12, 18, 16, 0.96) 38%),
    rgba(13, 20, 18, 0.94);
}

@media (max-width: 900px) {
  .hero-topic-home .hero-meta span {
    padding: 0.14rem 0.36rem 0.18rem;
  }

  .feature-jump-card {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .feature-jump-card h3,
  .feature-jump-card p,
  .feature-jump-card__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-jump-card__actions {
    align-items: start;
  }

  .brand-research-card__actions,
  .brand-profile-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-research-card .button-link,
  .brand-profile-cta .button-link {
    width: 100%;
    justify-content: center;
  }
}

/* Final homepage refinement pass */
.site-nav a,
.site-header.is-condensed .site-nav a,
.js-ready .site-nav a,
.site-nav-link-group > a {
  font-weight: 500 !important;
  letter-spacing: 0.055em;
}

.site-nav a {
  opacity: 0.94;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.editorial-hero.hero-topic-home .editorial-hero__content {
  align-items: center;
}

.editorial-hero.hero-topic-home .editorial-hero__copy {
  gap: clamp(0.82rem, 1.35vw, 1.08rem);
}

.editorial-hero.hero-topic-home .hero-meta,
.hero-topic-home .hero-meta {
  gap: 0.44rem;
  margin: 0 0 0.18rem;
}

.editorial-hero.hero-topic-home .hero-meta span,
.hero-topic-home .hero-meta span {
  min-height: 1.86rem;
  padding: 0.34rem 0.58rem 0.36rem;
  border: 1px solid rgba(236, 224, 203, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.11), rgba(255, 250, 241, 0.055)),
    rgba(10, 17, 15, 0.22);
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.07em;
  line-height: 1;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.editorial-hero.hero-topic-home .cta-row,
.hero-topic-home .cta-row {
  gap: 0.66rem;
  margin-top: 0.12rem;
}

.editorial-hero.hero-topic-home .button-link,
.hero-topic-home .button-link,
.editorial-hero.hero-topic-home .button-link.secondary,
.hero-topic-home .button-link.secondary {
  min-height: 2.28rem;
  padding: 0.48rem 0.88rem 0.52rem;
  border-radius: 0.08rem;
  font-size: 0.88rem;
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.editorial-hero.hero-topic-home .button-link {
  background: rgba(248, 243, 234, 0.94);
}

.editorial-hero.hero-topic-home .button-link.secondary,
.hero-topic-home .button-link.secondary {
  background:
    linear-gradient(180deg, rgba(19, 30, 25, 0.9), rgba(8, 14, 12, 0.92));
}

.support-bridge .panel {
  border-color: rgba(226, 203, 163, 0.17);
  background:
    linear-gradient(145deg, rgba(21, 32, 27, 0.96), rgba(9, 15, 13, 0.98)),
    rgba(12, 18, 16, 0.96);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.article-card,
.route-card,
.panel {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.article-card:hover,
.route-card:hover,
.panel:hover {
  border-color: rgba(226, 203, 163, 0.24);
}

@media (max-width: 700px) {
  .editorial-hero.hero-topic-home .hero-meta,
  .hero-topic-home .hero-meta {
    gap: 0.34rem;
  }

  .editorial-hero.hero-topic-home .hero-meta span,
  .hero-topic-home .hero-meta span {
    min-height: 1.72rem;
    padding: 0.3rem 0.48rem 0.32rem;
    font-size: 0.64rem;
  }

  .editorial-hero.hero-topic-home .cta-row,
  .hero-topic-home .cta-row {
    gap: 0.5rem;
  }

  .editorial-hero.hero-topic-home .button-link,
  .hero-topic-home .button-link,
  .editorial-hero.hero-topic-home .button-link.secondary,
  .hero-topic-home .button-link.secondary {
    min-height: 2.2rem;
    padding: 0.46rem 0.78rem 0.5rem;
  }
}

/* Premium wellness editorial homepage lift */
body:has(.magazine-home) {
  background:
    linear-gradient(180deg, #fbf9f5 0%, #f4f0e9 45%, #fbf9f5 100%);
}

body:has(.magazine-home)::before,
body:has(.magazine-home)::after {
  opacity: 0.025;
}

main:has(.magazine-home) {
  padding-top: 0;
  background: #fbf9f5;
}

.shell.shell--hub.magazine-home {
  width: 100%;
  max-width: none;
}

.magazine-home > .section {
  width: min(calc(100% - 3rem), 78rem);
  margin-inline: auto;
  padding-block: clamp(4.8rem, 8vw, 7.5rem);
}

.magazine-home > .section:not(:first-of-type) {
  margin-top: 0;
}

.magazine-home .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.magazine-home .section-heading h2,
.magazine-home .feature-content h2,
.magazine-home .panel h2 {
  color: #061b0e;
  font-weight: 560;
}

.magazine-home .section-heading p,
.magazine-home .feature-content p,
.magazine-home .panel p,
.magazine-home .article-card p,
.magazine-home .quick-route-card p,
.magazine-home .route-card p {
  color: #434843;
  line-height: 1.68;
}

.magazine-home .section-kicker,
.magazine-home .card-kicker {
  color: #58665c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.editorial-hero.hero-topic-home {
  min-height: clamp(38rem, 88svh, 51rem);
  margin-bottom: 0;
  background: #e8e4dc;
  box-shadow: none;
}

.editorial-hero.hero-topic-home .editorial-hero__media img {
  filter: saturate(0.86) contrast(1.02) brightness(1.06);
  object-position: center 28%;
}

.editorial-hero.hero-topic-home .editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(251, 249, 245, 0.86) 0%, rgba(251, 249, 245, 0.72) 34%, rgba(251, 249, 245, 0.28) 68%, rgba(251, 249, 245, 0.08) 100%),
    linear-gradient(180deg, rgba(251, 249, 245, 0.2) 0%, rgba(251, 249, 245, 0.12) 54%, rgba(6, 27, 14, 0.18) 100%);
}

.editorial-hero.hero-topic-home .editorial-hero__content {
  width: min(calc(100% - 3rem), 78rem);
  margin-inline: auto;
  padding:
    clamp(6.8rem, 10vw, 9.1rem)
    0
    clamp(7.4rem, 10vw, 9.2rem);
}

.editorial-hero.hero-topic-home .editorial-hero__copy {
  width: min(100%, 40rem);
}

.editorial-hero.hero-topic-home .eyebrow {
  color: #58665c;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.editorial-hero.hero-topic-home h1 {
  max-width: 7ch;
  margin-bottom: 1rem;
  color: #061b0e;
  font-size: clamp(4.1rem, 8.8vw, 7.1rem);
  font-weight: 600;
  line-height: 0.9;
}

.editorial-hero.hero-topic-home .lede {
  max-width: 34rem;
  color: #30312f;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.62;
}

.editorial-hero.hero-topic-home .hero-meta {
  gap: 0.38rem;
  margin-bottom: 1.05rem;
}

.editorial-hero.hero-topic-home .hero-meta span {
  min-height: 1.74rem;
  padding: 0.29rem 0.56rem 0.31rem;
  border: 0;
  background: rgba(212, 228, 215, 0.86);
  color: #364c3c;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.editorial-hero.hero-topic-home .cta-row {
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.editorial-hero.hero-topic-home .button-link,
.editorial-hero.hero-topic-home .button-link.secondary {
  min-height: 2.46rem;
  padding: 0.58rem 1.08rem 0.62rem;
  border-radius: 0.16rem;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.editorial-hero.hero-topic-home .button-link {
  border-color: #d97706;
  background: #d97706;
  color: #ffffff;
}

.editorial-hero.hero-topic-home .button-link:hover,
.editorial-hero.hero-topic-home .button-link:focus-visible {
  border-color: #c96d05;
  background: #c96d05;
  color: #ffffff;
  transform: translateY(-1px);
}

.editorial-hero.hero-topic-home .button-link.secondary {
  border-color: rgba(6, 27, 14, 0.42);
  background: rgba(251, 249, 245, 0.52);
  color: #061b0e;
}

.editorial-hero.hero-topic-home .button-link.secondary:hover,
.editorial-hero.hero-topic-home .button-link.secondary:focus-visible {
  border-color: #061b0e;
  background: rgba(251, 249, 245, 0.78);
  color: #061b0e;
}

.hero-briefs {
  width: 100%;
  border-top: 1px solid rgba(6, 27, 14, 0.08);
  background: rgba(6, 27, 14, 0.9);
}

.hero-briefs a {
  min-height: 6.25rem;
  padding: 1.2rem clamp(1rem, 2vw, 1.45rem);
  border-color: rgba(251, 249, 245, 0.09);
}

.hero-briefs a span {
  color: #b4cdb8;
}

.hero-briefs a strong {
  color: #f2f1ee;
  font-weight: 560;
}

.support-bridge {
  width: 100% !important;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 78rem) / 2));
  background: #061b0e;
}

.support-bridge .grid {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.support-bridge .panel {
  padding: clamp(1.45rem, 2.6vw, 2.25rem);
  border: 1px solid rgba(180, 205, 184, 0.16);
  background: rgba(27, 48, 34, 0.86);
  box-shadow: none;
}

.support-bridge .panel h2,
.support-bridge .panel p {
  color: #f2f1ee;
}

.support-bridge .section-kicker {
  color: #b4cdb8;
}

.support-bridge .button-link {
  border-color: #d97706;
  background: #d97706;
  color: #ffffff;
}

.quick-route-grid,
.format-grid {
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.quick-route-card,
.magazine-home .article-card,
.format-card,
.feature-jump-card {
  border: 1px solid rgba(115, 121, 115, 0.18);
  border-radius: 0.22rem;
  background: #efeeeb;
  box-shadow: none;
}

.quick-route-card {
  min-height: 20rem;
  padding: clamp(1.35rem, 2.45vw, 2rem);
}

.quick-route-card .route-number {
  color: rgba(115, 121, 115, 0.34);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
}

.quick-route-card h3 a,
.magazine-home .article-card h3 a,
.magazine-home .route-card h3 a {
  color: #061b0e;
}

.route-card__link,
.article-card__link {
  color: #061b0e;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.route-card__link::after,
.article-card__link::after {
  color: #d97706;
}

.quick-route-card:hover,
.quick-route-card:focus-within,
.magazine-home .article-card:hover,
.magazine-home .article-card:focus-within,
.format-card:hover,
.format-card:focus-within {
  border-color: rgba(6, 27, 14, 0.22);
  background: #f5f3f0;
  box-shadow: 0 28px 60px rgba(6, 27, 14, 0.07);
  transform: translateY(-2px);
}

.editorial-picks,
.format-spotlight {
  background: #fbf9f5;
}

.editorial-feature-grid {
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.article-card--media .card-media,
.format-card .card-media,
.feature-media {
  border-radius: 0.24rem;
  background: #e3e2e0;
}

.article-card--media .card-media img,
.format-card .card-media img,
.feature-media img {
  filter: saturate(0.9) contrast(1.02);
}

.story-list {
  gap: 1rem;
}

.issue-feature {
  width: min(calc(100% - 3rem), 78rem) !important;
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.issue-feature .feature-media {
  min-height: clamp(24rem, 44vw, 34rem);
  box-shadow: none;
}

.issue-feature .feature-content {
  padding: 0;
}

.feature-jump-card {
  display: grid;
  padding: clamp(1.25rem, 2.3vw, 1.8rem);
}

.trust-box--brand {
  border: 1px solid rgba(6, 27, 14, 0.12);
  background: #d7e6d9;
  color: #121e16;
  box-shadow: none;
}

.trust-box--brand h2,
.trust-box--brand p {
  color: #121e16;
}

.site-footer {
  margin-top: 0;
}

/* Final homepage surface normalization after legacy dark-card overrides */
.magazine-home .quick-route-card,
.magazine-home .article-card,
.magazine-home .format-card,
.magazine-home .feature-jump-card,
.magazine-home .trust-box,
.magazine-home .directory-block,
.magazine-home .summary-card,
.magazine-home .spotlight-card,
.magazine-home .route-card,
.magazine-home .note {
  background: #efeeeb !important;
  background-image: none !important;
  border: 1px solid rgba(115, 121, 115, 0.18) !important;
  box-shadow: none !important;
  color: #1b1c1a;
}

.magazine-home .quick-route-card::before,
.magazine-home .article-card::before,
.magazine-home .format-card::before,
.magazine-home .feature-jump-card::before,
.magazine-home .trust-box::before,
.magazine-home .directory-block::before,
.magazine-home .summary-card::before,
.magazine-home .spotlight-card::before,
.magazine-home .route-card::before,
.magazine-home .note::before {
  display: none !important;
}

.magazine-home .quick-route-card:hover,
.magazine-home .article-card:hover,
.magazine-home .format-card:hover,
.magazine-home .feature-jump-card:hover,
.magazine-home .route-card:hover {
  background: #f6f4f0 !important;
  border-color: rgba(6, 27, 14, 0.24) !important;
  box-shadow: 0 28px 60px rgba(6, 27, 14, 0.07) !important;
  transform: translateY(-2px);
}

.magazine-home .support-bridge .panel {
  background: rgba(27, 48, 34, 0.86) !important;
  background-image: none !important;
  border-color: rgba(180, 205, 184, 0.16) !important;
  color: #f2f1ee;
}

.magazine-home .support-bridge .panel::before {
  display: none !important;
}

.magazine-home > .section::before {
  display: none !important;
}

.magazine-home > .section {
  border-top: 0 !important;
}

@media (max-width: 900px) {
  .magazine-home > .section {
    width: min(calc(100% - 2rem), 78rem);
    padding-block: clamp(3.5rem, 11vw, 4.8rem);
  }

  .editorial-hero.hero-topic-home {
    min-height: clamp(34rem, 82svh, 44rem);
  }

  .editorial-hero.hero-topic-home .editorial-hero__content {
    width: min(calc(100% - 2rem), 78rem);
    padding-top: clamp(5.7rem, 18vw, 7.2rem);
    padding-bottom: clamp(5.4rem, 16vw, 6.8rem);
  }

  .editorial-hero.hero-topic-home h1 {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
    max-width: none;
    white-space: nowrap;
  }

  .editorial-hero.hero-topic-home .hero-meta span {
    min-height: 1.64rem;
    padding: 0.27rem 0.48rem 0.29rem;
  }

  .editorial-hero.hero-topic-home .hero-meta {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .editorial-hero.hero-topic-home .hero-meta span {
    flex: 0 1 auto;
    max-width: 100%;
    white-space: nowrap;
  }

  .editorial-hero.hero-topic-home .lede,
  .hero-briefs a strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .editorial-hero.hero-topic-home .cta-row {
    flex-wrap: wrap;
  }

  .support-bridge {
    padding-inline: 1rem;
  }

  .issue-feature {
    width: min(calc(100% - 2rem), 78rem) !important;
    grid-template-columns: 1fr;
  }

  .issue-feature .feature-media {
    min-height: 18rem;
  }
}

/* Cross-page UI readability and width QA pass */
:root {
  --shell-width: 78rem;
  --hub-width: 78rem;
  --browse-width: 78rem;
  --header-width: 78rem;
}

.shell.shell--hub:not(.magazine-home),
.shell.page-wide,
.article-layout.page-wide {
  width: min(calc(100% - 3rem), 78rem) !important;
  max-width: 78rem !important;
}

.button-link {
  border-color: #d97706;
  background: #d97706;
  color: #ffffff;
  text-shadow: none;
  box-shadow: none;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: #c96d05;
  background: #c96d05;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(6, 27, 14, 0.12);
}

.button-link.secondary {
  border-color: rgba(6, 27, 14, 0.42);
  background: transparent;
  color: #061b0e;
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
  border-color: #061b0e;
  background: rgba(6, 27, 14, 0.06);
  color: #061b0e;
}

.site-header .button-link,
.site-footer .button-link,
.support-bridge .button-link,
.hero:not(.hero-topic-home) .button-link,
.article-header .button-link {
  border-color: #d97706;
  background: #d97706;
  color: #ffffff;
}

.magazine-home .feature-jump-card,
.magazine-home .trust-box--brand,
.magazine-home .comparison-table-wrap,
.magazine-home .note,
.magazine-home .panel:not(.support-bridge .panel) {
  background: #efeeeb !important;
  background-image: none !important;
  border: 1px solid rgba(115, 121, 115, 0.2) !important;
  color: #1b1c1a !important;
}

.magazine-home .feature-jump-card *,
.magazine-home .trust-box--brand *,
.magazine-home .comparison-table-wrap *,
.magazine-home .note *,
.magazine-home .panel:not(.support-bridge .panel) * {
  color: inherit;
}

.magazine-home .feature-jump-card h2,
.magazine-home .feature-jump-card h3,
.magazine-home .trust-box--brand h2,
.magazine-home .trust-box--brand h3,
.magazine-home .comparison-table-wrap h2,
.magazine-home .comparison-table-wrap h3,
.magazine-home .note h2,
.magazine-home .note h3,
.magazine-home .panel:not(.support-bridge .panel) h2,
.magazine-home .panel:not(.support-bridge .panel) h3 {
  color: #061b0e !important;
}

.magazine-home .feature-jump-card p,
.magazine-home .trust-box--brand p,
.magazine-home .comparison-table-wrap p,
.magazine-home .note p,
.magazine-home .panel:not(.support-bridge .panel) p {
  color: #343936 !important;
}

.magazine-home .feature-jump-card a:not(.button-link),
.magazine-home .trust-box--brand a:not(.button-link),
.magazine-home .comparison-table-wrap a:not(.button-link),
.magazine-home .note a:not(.button-link),
.magazine-home .panel:not(.support-bridge .panel) a:not(.button-link) {
  color: #2f6b41 !important;
}

.magazine-home .feature-jump-card .section-kicker,
.magazine-home .feature-jump-card .card-kicker,
.magazine-home .trust-box--brand .section-kicker,
.magazine-home .trust-box--brand .card-kicker,
.magazine-home .comparison-table-wrap .section-kicker,
.magazine-home .comparison-table-wrap .card-kicker {
  color: #58665c !important;
}

.magazine-home .feature-jump-card {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  min-height: 0;
}

.magazine-home .feature-jump-card h3,
.magazine-home .feature-jump-card p,
.magazine-home .feature-jump-card__actions {
  grid-column: auto;
  grid-row: auto;
  max-width: 48rem;
}

.magazine-home .feature-jump-card__actions {
  margin-top: 0.2rem;
}

.magazine-home .feature-jump-card .button-link,
.magazine-home .trust-box--brand .button-link,
.magazine-home .comparison-table-wrap .button-link,
.magazine-home .note .button-link,
.magazine-home .panel:not(.support-bridge .panel) .button-link {
  border-color: #d97706 !important;
  background: #d97706 !important;
  color: #ffffff !important;
}

.magazine-home .editorial-feature-grid {
  align-items: start;
}

.magazine-home .lead-story,
.magazine-home .article-card.article-card--media {
  min-height: 0 !important;
}

.magazine-home .lead-story .card-media {
  aspect-ratio: 16 / 9;
  max-height: 25rem;
}

.magazine-home .lead-story .card-body {
  min-height: 0;
}

.magazine-home .issue-feature {
  align-items: start;
}

.magazine-home .issue-feature .feature-media {
  min-height: 0;
  max-height: 32rem;
  aspect-ratio: 4 / 5;
}

.magazine-home .issue-feature .feature-media img,
.magazine-home .lead-story .card-media img {
  object-fit: cover;
}

.magazine-home .comparison-table-wrap {
  padding: clamp(1.35rem, 2.6vw, 2rem);
  box-shadow: 0 24px 54px rgba(6, 27, 14, 0.08) !important;
}

.magazine-home .comparison-table a {
  color: #2f6b41 !important;
}

.magazine-home .quick-route-card,
.magazine-home .article-card,
.magazine-home .format-card,
.magazine-home .route-card {
  overflow: hidden;
}

@media (max-width: 900px) {
  .shell.shell--hub:not(.magazine-home),
  .shell.page-wide,
  .article-layout.page-wide {
    width: min(calc(100% - 2rem), 78rem) !important;
  }

  .button-link,
  .button-link.secondary {
    min-height: 2.38rem;
    padding: 0.58rem 0.88rem 0.62rem;
  }

  .magazine-home .lead-story .card-media,
  .magazine-home .issue-feature .feature-media {
    aspect-ratio: 16 / 11;
    max-height: 20rem;
  }
}

/* Homepage green editorial section alignment pass */
.magazine-home .format-spotlight,
.magazine-home .browse-section {
  width: 100% !important;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 78rem) / 2));
  background:
    radial-gradient(circle at 16% 8%, rgba(180, 205, 184, 0.1), transparent 34rem),
    linear-gradient(180deg, #071b10 0%, #0a2015 100%);
  color: #f4f1ea;
}

.magazine-home .format-spotlight > *,
.magazine-home .browse-section > * {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.magazine-home .format-spotlight .section-heading,
.magazine-home .browse-section .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-left: 0;
  border-left: 0;
}

.magazine-home .editorial-picks .section-heading--split {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  justify-items: start;
  text-align: left;
  padding-left: 0;
  border-left: 0;
}

.magazine-home .editorial-picks .section-heading--split > *,
.magazine-home .editorial-picks .section-heading--split > :last-child {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.magazine-home .editorial-picks .section-heading--split h2 {
  max-width: 18ch;
  margin: 0;
}

.magazine-home .editorial-picks .section-heading--split p {
  max-width: 48rem;
  margin: 0;
}

.magazine-home .format-spotlight .section-heading h2,
.magazine-home .browse-section .section-heading h2 {
  max-width: 18ch;
  margin: 0;
  color: #fffaf1;
}

.magazine-home .format-spotlight .section-heading p,
.magazine-home .browse-section .section-heading p {
  max-width: 48rem;
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
}

.magazine-home .format-spotlight .section-kicker,
.magazine-home .browse-section .section-kicker {
  color: #b4cdb8;
}

.magazine-home .format-grid,
.magazine-home .browse-section .grid {
  align-items: start;
}

.magazine-home .format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.magazine-home .format-card,
.magazine-home .browse-section .article-card {
  height: auto;
  min-height: 0 !important;
  padding: 0 !important;
  background: rgba(17, 38, 25, 0.96) !important;
  border-color: rgba(180, 205, 184, 0.16) !important;
  color: #f4f1ea !important;
  box-shadow: none !important;
}

.magazine-home .format-card .card-media,
.magazine-home .browse-section .article-card .card-media {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  max-height: 13.5rem;
}

.magazine-home .format-card .card-media img,
.magazine-home .browse-section .article-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.magazine-home .format-card .card-body,
.magazine-home .browse-section .article-card .card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.86rem;
  min-height: 0;
  padding: clamp(1.05rem, 2vw, 1.35rem);
}

.magazine-home .format-card .card-body > *,
.magazine-home .browse-section .article-card .card-body > * {
  margin: 0;
}

.magazine-home .format-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100% !important;
}

.magazine-home .format-card h3,
.magazine-home .format-card h3 a,
.magazine-home .browse-section .article-card h3,
.magazine-home .browse-section .article-card h3 a {
  color: #fffaf1 !important;
}

.magazine-home .format-card p,
.magazine-home .browse-section .article-card p {
  color: rgba(244, 241, 234, 0.76) !important;
}

.magazine-home .format-card .article-card__footer,
.magazine-home .browse-section .article-card .article-card__footer {
  margin-top: 0.15rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(180, 205, 184, 0.12);
}

.magazine-home .format-card .article-card__link,
.magazine-home .browse-section .article-card .article-card__link {
  color: #d97706 !important;
}

.magazine-home .format-card:hover,
.magazine-home .browse-section .article-card:hover {
  background: rgba(22, 50, 32, 0.98) !important;
  border-color: rgba(217, 119, 6, 0.38) !important;
}

@media (max-width: 900px) {
  .magazine-home .format-spotlight,
  .magazine-home .browse-section {
    padding-inline: 1rem;
  }

  .magazine-home .format-spotlight .section-heading,
  .magazine-home .browse-section .section-heading {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .magazine-home .format-spotlight .section-heading h2,
  .magazine-home .browse-section .section-heading h2 {
    max-width: 100%;
  }
}

@media (max-width: 1180px) {
  .magazine-home .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .magazine-home .format-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage final alignment, haze, and editorial note polish */
.magazine-home .editorial-routes,
.magazine-home .editorial-picks,
.magazine-home .recommended-reads {
  background:
    linear-gradient(180deg, #fbf9f5 0%, #f4f0e9 100%);
}

.magazine-home .editorial-routes .section-heading,
.magazine-home .recommended-reads .section-heading,
.magazine-home .comparison-table-wrap .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.86rem;
  justify-items: center;
  text-align: center;
  padding-left: 0;
  border-left: 0;
}

.magazine-home .editorial-routes .section-heading h2,
.magazine-home .recommended-reads .section-heading h2,
.magazine-home .comparison-table-wrap .section-heading h2 {
  max-width: 18ch;
  margin: 0;
}

.magazine-home .editorial-routes .section-heading p,
.magazine-home .recommended-reads .section-heading p,
.magazine-home .comparison-table-wrap .section-heading p {
  max-width: 52rem;
  margin: 0;
}

.magazine-home .recommended-reads .section-heading--split > :last-child {
  width: min(100%, 52rem);
  justify-self: center;
  text-align: center;
  margin-inline: auto;
}

.magazine-home .recommended-reads .grid {
  align-items: stretch;
}

.magazine-home .recommended-reads .article-card--compact {
  height: 100%;
}

.home-recommended .section-heading--split > :last-child {
  align-self: end;
  max-width: 44rem;
}

.magazine-home .editorial-picks .section-heading--split {
  padding-bottom: clamp(0.45rem, 1vw, 0.8rem);
}

.magazine-home .editorial-picks .section-heading--split h2 {
  max-width: 22ch;
}

.magazine-home .editorial-picks .section-heading--split p {
  max-width: 56rem;
}

.magazine-home .support-bridge,
.magazine-home .format-spotlight,
.magazine-home .browse-section,
.magazine-home .quality-band,
.magazine-home .note--editorial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.magazine-home .support-bridge::after,
.magazine-home .format-spotlight::after,
.magazine-home .browse-section::after,
.magazine-home .quality-band::after,
.magazine-home .note--editorial::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(180, 205, 184, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 76%, rgba(217, 119, 6, 0.12), transparent 24rem),
    radial-gradient(circle at 50% 0%, rgba(255, 250, 241, 0.06), transparent 30rem);
  filter: blur(1px);
}

.magazine-home .quality-band {
  width: 100% !important;
  max-width: none;
  padding: clamp(3.5rem, 7vw, 5.8rem) max(1.5rem, calc((100vw - 78rem) / 2));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(7, 27, 16, 0.98), rgba(12, 32, 22, 0.96)),
    #071b10;
  box-shadow: none;
}

.magazine-home .quality-copy,
.magazine-home .quality-list {
  position: relative;
  z-index: 1;
}

.magazine-home .quality-band .quality-copy {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.magazine-home .quality-band h2 {
  max-width: 14ch;
  margin: 0;
  color: #fffaf1;
}

.magazine-home .quality-band p {
  max-width: 42rem;
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
}

.magazine-home .quality-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: clamp(0.65rem, 1.4vw, 0.95rem);
  list-style: none;
  border: 1px solid rgba(180, 205, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.055), rgba(255, 250, 241, 0.025)),
    rgba(4, 17, 10, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.06);
}

.magazine-home .quality-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  margin: 0;
  padding: clamp(0.78rem, 1.4vw, 0.96rem) clamp(0.8rem, 1.6vw, 1rem);
  border: 1px solid rgba(180, 205, 184, 0.1);
  background: rgba(255, 250, 241, 0.035);
  color: rgba(244, 241, 234, 0.84);
  line-height: 1.65;
}

.magazine-home .quality-list li::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  margin-top: 0.62em;
  border: 1px solid rgba(240, 196, 140, 0.74);
  background: rgba(240, 196, 140, 0.42);
  box-shadow: 0 0 0 3px rgba(240, 196, 140, 0.08);
}

.magazine-home .quality-list a {
  color: #f0c48c;
  text-decoration-color: rgba(240, 196, 140, 0.48);
  text-underline-offset: 0.18em;
}

.magazine-home .quality-list a:hover,
.magazine-home .quality-list a:focus-visible {
  color: #ffe0ad;
  text-decoration-color: currentColor;
}

.magazine-home .comparison-table-wrap {
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-color: rgba(115, 121, 115, 0.16) !important;
  background:
    linear-gradient(180deg, #f8f6f0 0%, #eeece5 100%) !important;
}

.magazine-home .comparison-table-wrap .section-heading {
  margin-bottom: clamp(1.1rem, 2.6vw, 1.65rem);
}

.magazine-home .comparison-table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(47, 74, 55, 0.14);
  border-radius: 7px;
  background: #fbfaf6;
  box-shadow: 0 16px 38px rgba(6, 27, 14, 0.07);
}

.magazine-home .comparison-table th,
.magazine-home .comparison-table td {
  padding: clamp(0.95rem, 1.7vw, 1.15rem) clamp(1rem, 2vw, 1.35rem);
  border: 0;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.magazine-home .comparison-table thead th {
  background: linear-gradient(180deg, #d8e1d6, #c7d4c8);
  color: #102018 !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-home .comparison-table thead th:first-child {
  width: 22%;
}

.magazine-home .comparison-table tbody th {
  background: transparent;
  color: #082111 !important;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.magazine-home .comparison-table tbody td {
  color: #303733 !important;
}

.magazine-home .comparison-table tbody tr:nth-child(odd) {
  background: #fbfaf6;
}

.magazine-home .comparison-table tbody tr:nth-child(even) {
  background: #f1efe9;
}

.magazine-home .comparison-table tbody tr + tr th,
.magazine-home .comparison-table tbody tr + tr td {
  border-top: 1px solid rgba(47, 74, 55, 0.1);
}

.magazine-home .comparison-table-wrap > p {
  max-width: 74rem;
  margin: clamp(1.1rem, 2vw, 1.45rem) 0 0;
  line-height: 1.72;
}

@media (max-width: 700px) {
  .magazine-home .comparison-table {
    display: grid;
    gap: 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .magazine-home .comparison-table thead {
    display: none;
  }

  .magazine-home .comparison-table tbody {
    display: grid;
    gap: 0.75rem;
  }

  .magazine-home .comparison-table tr {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border: 1px solid rgba(47, 74, 55, 0.14);
    border-radius: 7px;
    background: #fbfaf6 !important;
    box-shadow: 0 12px 28px rgba(6, 27, 14, 0.06);
  }

  .magazine-home .comparison-table tbody tr + tr th,
  .magazine-home .comparison-table tbody tr + tr td {
    border-top: 0;
  }

  .magazine-home .comparison-table th,
  .magazine-home .comparison-table td {
    display: grid;
    gap: 0.28rem;
    padding: 0;
  }

  .magazine-home .comparison-table tbody th {
    font-size: 1.18rem;
  }

  .magazine-home .comparison-table td::before {
    content: attr(data-label);
    color: #58665c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

.magazine-home .note--editorial {
  width: 100% !important;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.8rem);
  align-items: center;
  margin: 0 0 clamp(4.2rem, 7vw, 6rem);
  padding: clamp(2rem, 4vw, 3.35rem) max(1.5rem, calc((100vw - 78rem) / 2));
  text-align: left;
  background:
    linear-gradient(135deg, rgba(7, 27, 16, 0.98), rgba(14, 35, 24, 0.94)),
    #071b10 !important;
  border: 0 !important;
  color: #f4f1ea !important;
  box-shadow: 0 28px 70px rgba(6, 27, 14, 0.18) !important;
}

.magazine-home .note--editorial .section-kicker {
  grid-column: 1 / -1;
  color: #b4cdb8 !important;
}

.magazine-home .note--editorial h2 {
  max-width: 12ch;
  margin: 0;
  color: #fffaf1 !important;
}

.magazine-home .note--editorial p {
  max-width: 54rem;
  margin: 0;
  color: rgba(244, 241, 234, 0.78) !important;
}

.magazine-home .note--editorial a {
  color: #f0c48c !important;
}

@media (max-width: 900px) {
  .magazine-home .quality-band {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .magazine-home .quality-band h2 {
    max-width: 100%;
  }

  .magazine-home .note--editorial {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 1rem;
  }

  .magazine-home .note--editorial h2 {
    max-width: 100%;
  }
}

/* Homepage label-understanding feature refinement */
.magazine-home .issue-feature {
  width: min(calc(100% - 3rem), 78rem) !important;
  grid-template-columns: minmax(20rem, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(2rem, 4.5vw, 4.4rem);
  align-items: start;
}

.magazine-home .issue-feature .feature-media {
  width: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 4.6;
  align-self: start;
}

.magazine-home .issue-feature .feature-media img {
  object-fit: cover;
  object-position: center;
}

.magazine-home .issue-feature .feature-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  align-content: start;
  padding-top: clamp(0.1rem, 0.6vw, 0.35rem);
}

.magazine-home .issue-feature .feature-content > .section-kicker,
.magazine-home .issue-feature .feature-content > h2,
.magazine-home .issue-feature .feature-content > p {
  grid-column: 1 / -1;
}

.magazine-home .issue-feature .feature-content > .section-kicker {
  margin: 0;
}

.magazine-home .issue-feature .feature-content h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 0.98;
}

.magazine-home .issue-feature .feature-content > p {
  max-width: 62rem;
  margin: 0;
}

.magazine-home .issue-feature .feature-jump-card,
.magazine-home .issue-feature .trust-box--brand {
  width: 100%;
  height: auto;
  margin-top: clamp(0.45rem, 1vw, 0.7rem);
}

.magazine-home .issue-feature .feature-jump-card {
  display: grid;
  grid-template-rows: auto;
  align-content: start;
  gap: 0.78rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.magazine-home .issue-feature .feature-jump-card .button-link {
  width: max-content;
  max-width: 100%;
}

.magazine-home .issue-feature .trust-box--brand {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(0.9rem, 1.5vw, 1.25rem);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.magazine-home .issue-feature .trust-box--brand h2 {
  max-width: 100%;
  margin: 0 0 0.72rem;
  font-size: clamp(1.7rem, 2.45vw, 2.25rem);
  line-height: 1.02;
}

.magazine-home .issue-feature .trust-box--brand p + p {
  margin-top: 0.72rem;
}

.magazine-home .issue-feature .brand-plaque {
  align-self: start;
  justify-self: end;
  width: clamp(5.1rem, 6vw, 6.45rem);
  padding: 0;
  border-radius: 50% !important;
  overflow: hidden;
  background: #f7f1e6;
  opacity: 0.96;
}

.magazine-home .issue-feature .brand-plaque img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transform-origin: center;
}

@media (max-width: 1180px) {
  .magazine-home .issue-feature {
    grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1.5rem, 3.5vw, 2.6rem);
  }

  .magazine-home .issue-feature .feature-content {
    grid-template-columns: 1fr;
  }

  .magazine-home .issue-feature .feature-content h2 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .magazine-home .issue-feature {
    width: min(calc(100% - 2rem), 78rem) !important;
    grid-template-columns: 1fr;
  }

  .magazine-home .issue-feature .feature-media {
    aspect-ratio: 16 / 11;
  }

  .magazine-home .issue-feature .feature-content {
    grid-template-columns: 1fr;
  }

  .magazine-home .issue-feature .feature-content h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .magazine-home .issue-feature .trust-box--brand {
    grid-template-columns: 1fr;
  }

  .magazine-home .issue-feature .brand-plaque {
    justify-self: start;
    width: clamp(4.8rem, 18vw, 5.65rem);
  }
}

/* Homepage directory action row readability fix */
.magazine-home .directory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: clamp(1.35rem, 2.5vw, 1.8rem);
}

.magazine-home .directory-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.12rem;
  border: 1px solid rgba(217, 119, 6, 0.48);
  border-radius: 0.16rem;
  background: rgba(217, 119, 6, 0.96);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(4, 17, 10, 0.16);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.magazine-home .directory-row a::after {
  content: " ->";
  margin-left: 0.42rem;
  color: inherit;
  transition: transform 180ms ease;
}

.magazine-home .directory-row a:hover,
.magazine-home .directory-row a:focus-visible {
  border-color: #f0c48c;
  background: #f0c48c;
  color: #061b0e !important;
  box-shadow: 0 18px 36px rgba(4, 17, 10, 0.2);
  transform: translateY(-2px);
}

.magazine-home .directory-row a:hover::after,
.magazine-home .directory-row a:focus-visible::after {
  transform: translateX(3px);
}

.magazine-home .directory-row a:focus-visible {
  outline: 2px solid #fffaf1;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .magazine-home .directory-row {
    align-items: stretch;
    flex-direction: column;
  }

  .magazine-home .directory-row a {
    width: 100%;
  }
}

/* Final mobile header/menu alignment pass */
@media (max-width: 900px) {
  .site-header,
  .site-header.nav-open,
  .site-header.is-scrolled,
  .site-header.is-condensed,
  .site-header.nav-open.is-scrolled,
  .site-header.nav-open.is-condensed {
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(8, 13, 12, 0.96), rgba(6, 10, 9, 0.9)) !important;
    border-bottom-color: rgba(226, 203, 163, 0.12);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
  }

  .header-inner,
  .site-header.is-condensed .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: min(calc(100% - 1.45rem), var(--shell-width));
    min-height: 4.65rem;
    padding: 0.5rem 0;
  }

  .site-header .brand,
  .site-header.is-condensed .brand {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 34;
    display: flex;
    justify-content: center;
    width: 4.95rem;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    transform: translate(-50%, 0.48rem);
  }

  .site-header .brand-mark,
  .site-header.is-condensed .brand-mark {
    position: static;
    width: 4.95rem;
    height: 4.95rem;
    max-width: 5rem;
    max-height: 5rem;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid rgba(226, 203, 163, 0.62);
    border-radius: 50%;
    background: #f7f1e6;
    overflow: hidden;
    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.24),
      0 0 0 4px rgba(255, 253, 249, 0.92);
    transform: none;
  }

  .site-header .brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 5rem;
    max-height: 5rem;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  .site-header .brand-copy {
    display: none;
  }

  .js-ready .nav-toggle,
  .nav-toggle,
  .nav-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 35;
    display: inline-flex;
    width: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(226, 203, 163, 0.22);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 239, 227, 0.9);
    box-shadow: none;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible,
  .nav-toggle[aria-expanded="true"]:hover,
  .nav-toggle[aria-expanded="true"]:focus-visible {
    border-color: rgba(226, 203, 163, 0.32);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    transform: none;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle-box {
    gap: 0.28rem;
  }

  .nav-toggle-box span {
    width: 1.15rem;
    height: 2px;
  }

  .site-nav {
    position: static;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    margin: 0;
  }

  .js-ready .site-nav-panel,
  .js-ready .site-nav.is-open .site-nav-panel {
    position: fixed;
    top: 4.65rem;
    left: 0;
    right: 0;
    z-index: 33;
    width: auto;
    max-height: calc(100svh - 5.4rem);
    margin: 0;
    padding: 0.62rem 0.74rem 0.82rem;
    overflow: auto;
    border: 1px solid rgba(226, 203, 163, 0.16);
    background:
      linear-gradient(180deg, rgba(11, 16, 14, 0.985), rgba(8, 12, 11, 0.965));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    transform: translateY(-0.7rem);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1),
      visibility 220ms ease;
  }

  .js-ready .site-nav-panel {
    display: grid;
  }

  .js-ready .site-nav.is-open .site-nav-panel {
    display: grid;
    gap: 0.1rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    animation: mobile-menu-drop 280ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  .js-ready .site-nav-primary,
  .js-ready .site-nav-secondary {
    display: grid;
    gap: 0;
  }

  .js-ready .site-nav a {
    min-height: 3.35rem;
    padding: 0.95rem 0.78rem 0.98rem;
    color: rgba(245, 239, 227, 0.92);
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .js-ready .site-nav a:hover,
  .js-ready .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .js-ready .site-nav a[aria-current="page"] {
    background: linear-gradient(90deg, rgba(212, 162, 112, 0.14), rgba(212, 162, 112, 0.05) 78%, transparent 100%);
    color: #ffffff;
  }

  .site-nav-link-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-subnav-toggle {
    width: 2.2rem;
    min-height: 2.2rem;
    align-self: center;
  }

  .site-subnav-panel {
    position: static;
    width: 100%;
    margin: 0 0 0.45rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  html.js-ready .site-nav-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  @keyframes mobile-menu-drop {
    from {
      opacity: 0;
      transform: translateY(-0.85rem);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 900px) {
  .site-header .header-inner,
  .site-header.is-condensed .header-inner {
    position: relative;
    min-height: 4.9rem;
    padding-block: 0.58rem;
  }

  .site-header .brand,
  .site-header.is-condensed .brand {
    left: 50%;
    width: clamp(4.25rem, 18vw, 4.95rem);
    height: clamp(4.25rem, 18vw, 4.95rem);
    transform: translate(-50%, 0.5rem);
  }

  .site-header .brand-mark,
  .site-header.is-condensed .brand-mark {
    width: 100%;
    height: 100%;
    max-width: 5rem;
    max-height: 5rem;
    aspect-ratio: 1;
    padding: 0;
  }

  .site-header .brand-mark img,
  .site-header.is-condensed .brand-mark img {
    width: 100%;
    height: 100%;
    max-width: 5rem;
    max-height: 5rem;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .js-ready .nav-toggle,
  .nav-toggle,
  .nav-toggle[aria-expanded="true"] {
    margin-left: auto;
  }

  .magazine-home .hero--home {
    padding-top: clamp(6.4rem, 20vw, 7.35rem);
  }

  .magazine-home .hero--home .hero-copy {
    padding-top: 0;
  }
}

@media (max-width: 360px) {
  .site-header .brand,
  .site-header.is-condensed .brand {
    width: 4.15rem;
    height: 4.15rem;
  }

  .magazine-home .hero--home {
    padding-top: 6.65rem;
  }
}

