/* TSL Authentic — bold modern design, derived from thesnuslife.com.
   Brand DNA pulled straight from the parent shop:
     · Bebas Neue (condensed, all-caps display)  +  Public Sans (clean body)
     · Electric blue  #0396FF  on near-black ink  #0D1B1E  over off-white #FCFCFC
   Big condensed headlines, a scrolling announcement bar, pill badges and trust
   strips — the e-commerce energy of the shop, anchored with ink + whitespace so
   it still reads as a credible authenticity watchdog. */

:root {
  /* Surfaces */
  --bg: #fcfcfc;            /* shop --bg */
  --surface: #f2f5f8;       /* light panel */
  --surface-2: #e9eef2;
  --card: #ffffff;

  /* Ink (shop --text, slight teal-black) */
  --ink: #0d1b1e;
  --ink-2: #38474c;         /* body text */
  --muted: #6d777c;         /* meta / labels */

  /* Electric blue — the brand primary (shop --blue / --blue-hover) */
  --blue: #0396ff;
  --blue-600: #0280dc;
  --blue-700: #0d5690;
  --blue-tint: #e7f4ff;

  /* Semantics */
  --alert: #e0322a;         /* counterfeit / warning (shop sale red) */
  --green: #1f9d57;         /* authentic / verified (shop green) */

  /* Lines + dark sections */
  --line: #e4e9ed;
  --line-2: #d2dadf;
  --dark: #0d1b1e;
  --dark-2: #13262b;

  --radius: 4px;
  --radius-btn: 3px;
  --radius-sm: 2px;
  --radius-pill: 4px;     /* formerly full pills — squared off for a sharper look */

  --shadow-sm: 0 1px 2px rgba(13,27,30,0.04), 0 6px 18px -8px rgba(13,27,30,0.10);
  --shadow-md: 0 28px 50px -26px rgba(13,27,30,0.30);
  --shadow-blue: 0 14px 30px -12px rgba(3,150,255,0.45);

  --maxw: 1180px;
  --font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Bebas Neue', 'Public Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Default headings: Public Sans, tight + bold (readable everywhere). */
h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.018em;
}

/* Display moments use the shop's condensed face. */
.hero h1, .page-hero h1, .post-head h1,
.section-head h2, .cta-band h2, .featured-body h2,
.featured-cat, .brand-text, .stat-num, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 0.94;
}

p { margin: 0 0 1.15em; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
mark { background: none; color: var(--blue); }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: rgba(3,150,255,0.22); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
.container-narrow { max-width: 748px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* ---------- Announcement ticker (from the shop) ---------- */
.ticker {
  background: var(--ink);
  border-top: 3px solid var(--blue);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 42s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 9px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.85);
}
.ticker-item::before {
  content: "◆";
  color: var(--blue);
  font-size: 0.52rem;
  margin: 0 30px;
  transform: translateY(-1px);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; box-shadow: var(--shadow-blue); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 17px; font-size: 0.82rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); box-shadow: none; }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); box-shadow: none; transform: translateY(-1px); }
.btn-gold { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-gold:hover { background: var(--blue-600); border-color: var(--blue-600); }
.btn-alert { background: var(--alert); border-color: var(--alert); color: #fff; }
.btn-alert:hover { background: #c1241d; border-color: #c1241d; box-shadow: 0 14px 30px -12px rgba(224,50,42,0.5); }
.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--blue-tint); border-color: var(--blue-tint); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,252,252,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 28px; width: auto; }
.brand-logo--dark { filter: brightness(0) invert(1); height: 30px; }   /* footer: black wordmark -> white on dark */

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-2);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a.active:not(.btn) { color: var(--ink); border-bottom-color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 78% 0%, rgba(3,150,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, var(--surface) 100%);
  padding: 92px 0 84px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,27,30,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13,27,30,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 60% at 70% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(70% 60% at 70% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.trust-brands { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-brand {
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  transition: border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.trust-brand:hover { border-color: var(--blue); color: var(--blue-600); box-shadow: var(--shadow-sm); }

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line-2);
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0; }
.section-head h2 .eyebrow { display: flex; margin-bottom: 10px; }
.count {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ---------- Pillars ---------- */
.pillars { padding: 84px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--card);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--line-2); }
.pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--blue-tint);
  border: 1px solid rgba(3,150,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--blue-600);
  margin-bottom: 22px;
}
.pillar-icon svg { width: 25px; height: 25px; }
.pillar-icon svg [stroke="var(--ink)"] { stroke: var(--blue-600); }
.pillar h3 { font-size: 1.32rem; font-weight: 700; }
.pillar p { margin: 0; font-size: 0.97rem; }

/* ---------- Featured ---------- */
.featured { padding: 16px 0 6px; }
.featured-card {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.featured-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.featured-side {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
  padding: 44px 36px;
  background:
    linear-gradient(155deg, var(--cat, var(--ink)), color-mix(in srgb, var(--cat, var(--ink)) 72%, #000));
  color: #fff;
  overflow: hidden;
}
.featured-side::after {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.featured-tag {
  position: relative;
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.featured-cat {
  position: relative;
  font-size: 2.6rem;
  color: #fff;
}
.featured-body { padding: 42px 44px; align-self: center; }
.featured-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 2px 0 14px; }
.featured-body p { font-size: 1.05rem; }
.read-more {
  display: inline-block; margin-top: 10px;
  font-weight: 700; font-size: 0.9rem; color: var(--blue-600);
  letter-spacing: 0.01em;
}
.featured-card:hover .read-more { color: var(--blue); }

/* ---------- Articles grid ---------- */
.articles { padding: 84px 0 92px; background: var(--surface); border-top: 1px solid var(--line); }
.articles .section-head { align-items: flex-end; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; }
.chip {
  font-family: var(--font-body);
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue-600); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--cat, var(--blue));
  opacity: 0; transition: opacity 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--line-2); }
.card:hover::before { opacity: 1; }
.card-link { color: inherit; display: flex; flex-direction: column; height: 100%; padding: 28px 26px 24px; }
.card-link:hover { color: inherit; }
.card-top { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; }
.card h3 { font-size: 1.28rem; margin: 0 0 12px; font-weight: 700; line-height: 1.28; letter-spacing: -0.015em; }
.card:hover h3 { color: var(--blue-700); }
.card p { font-size: 0.95rem; margin-bottom: 20px; color: var(--ink-2); }
.card-meta, .post-meta {
  display: flex; align-items: center; gap: 9px;
  color: var(--muted); font-size: 0.8rem; letter-spacing: 0.02em;
}
.card-meta { margin-top: auto; }
.dot { opacity: 0.5; }
.card-go { margin-left: auto; color: var(--blue-600); font-weight: 700; }
.card:hover .card-go { color: var(--blue); }

/* ---------- Tag ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--cat, var(--blue)) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--cat, var(--blue)) 30%, #fff);
  color: color-mix(in srgb, var(--cat, var(--blue)) 78%, #000);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-pill); padding: 4px 12px 4px 10px;
}
.tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--cat, var(--blue)); display: inline-block; }

/* ---------- Mentions / press ---------- */
.mentions { padding: 84px 0; background: var(--bg); border-top: 1px solid var(--line); }
.mentions-lead { color: var(--ink-2); max-width: 620px; margin: -8px 0 30px; font-size: 1.02rem; }
.mention-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.mention {
  position: relative;
  display: flex; flex-direction: column; gap: 6px; height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  padding: 22px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.mention:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-left-color: var(--blue); color: inherit; }
.mention-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 1;
  font-size: 1.5rem;
  color: var(--ink);
}
.mention-context { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.mention-go {
  margin-top: auto; padding-top: 12px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.01em;
  color: var(--blue-600);
}
.mention:hover .mention-go { color: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(70% 120% at 85% 50%, rgba(3,150,255,0.22), transparent 60%),
    var(--dark);
  padding: 66px 0;
  overflow: hidden;
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band .eyebrow { color: #5cc1ff; }
.cta-band .eyebrow::before { background: var(--blue); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0 0 10px; }
.cta-band p { color: rgba(252,252,252,0.74); max-width: 540px; margin: 0; }

/* ---------- Article / prose ---------- */
.post { padding: 56px 0 32px; }
.back-link {
  font-weight: 700; font-size: 0.86rem; color: var(--blue-600); letter-spacing: 0.02em;
}
.back-link:hover { color: var(--blue); }
.post-head { margin: 24px 0 36px; padding-bottom: 28px; border-bottom: 2px solid var(--line-2); }
.post-head h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: 18px 0 18px; color: var(--ink); }
.post-body { font-size: 1.12rem; color: var(--ink-2); }
.post-body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem); margin: 1.8em 0 0.5em; font-weight: 700;
  letter-spacing: -0.015em;
  padding-left: 16px; border-left: 3px solid var(--blue);
}
.post-body ul, .prose ul { padding-left: 1.2em; margin: 0 0 1.35em; }
.post-body li, .prose li { margin-bottom: 0.55em; }
.post-body strong, .prose strong { color: var(--ink); font-weight: 700; }
.post-foot { margin: 48px 0 10px; padding: 22px 24px; border: 1px solid var(--line-2); border-left: 3px solid var(--alert); border-radius: var(--radius-sm); background: #fff; }
.disclaimer-note { color: var(--muted); font-size: 0.9rem; margin: 0; }
.more { padding: 64px 0 92px; background: var(--surface); border-top: 1px solid var(--line); }
.more .card-grid { margin-top: 6px; }

/* ---------- Page hero / prose pages ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(55% 90% at 85% 0%, rgba(3,150,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 70%, var(--surface) 100%);
  padding: 78px 0 52px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.8rem, 6.4vw, 4.6rem); margin: 8px 0 18px; color: var(--ink); }
.lead { font-size: 1.2rem; color: var(--ink-2); }
.prose { padding: 58px 0 64px; }
.prose h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem); margin: 1.7em 0 0.5em; font-weight: 700;
  letter-spacing: -0.015em;
  padding-left: 16px; border-left: 3px solid var(--blue);
}
.prose h2:first-child { margin-top: 0; }
.prose a, .post-body a, .lead a { border-bottom: 1px solid rgba(3,150,255,0.35); }
.prose a:hover, .post-body a:hover, .lead a:hover { border-bottom-color: var(--blue); }

/* ---------- Contact form ---------- */
.contact-section { padding: 52px 0 80px; }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 38px; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; font-size: 0.88rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3,150,255,0.18);
}
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 0.88rem; }

/* ---------- Parent credit (The Snus Life) ---------- */
.parent-credit { display: inline-flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.parent-kicker {
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.parent-logo { height: 30px; width: auto; }
.parent-credit.on-dark .parent-logo { opacity: 0.92; }   /* avif is white — sits on dark */
.parent-credit.on-dark:hover .parent-logo { opacity: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(252,252,252,0.62); padding: 66px 0 0; border-top: 3px solid var(--blue); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 360px; margin-bottom: 24px; }
.footer-col h4 {
  color: #fff; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-col a { color: rgba(252,252,252,0.62); }
.footer-col a:hover { color: var(--blue); }
.footer-col .muted li { color: rgba(252,252,252,0.42); font-size: 0.84rem; }
.footer-bar { border-top: 1px solid rgba(252,252,252,0.12); padding: 20px 0; }
.footer-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bar span { font-size: 0.8rem; letter-spacing: 0.03em; color: rgba(252,252,252,0.45); }
.age-pill { border: 1px solid rgba(3,150,255,0.5); color: #5cc1ff; padding: 5px 13px; border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .mention-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-side { flex-direction: row; align-items: center; justify-content: flex-start; gap: 18px; padding: 26px 30px; }
  .featured-cat { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .brand-logo { height: 22px; }
  .brand-logo--dark { height: 26px; }
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 26px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.btn { margin-top: 14px; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .mention-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 0 54px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

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