/* ── Ravex design tokens ──────────────────────────────────────── */
:root {
  /* Background */
  --bg: #f8f5f0;
  --bg-soft: #f1ece5;
  --surface: #fffcf8;
  --surface-muted: rgba(255, 252, 248, 0.88);

  /* Ink */
  --ink: #020617;
  --ink-soft: #0f172a;
  --muted: #5b6472;

  /* Borders */
  --line: rgba(15, 23, 42, 0.11);
  --line-strong: rgba(15, 23, 42, 0.2);

  /* Ravex brand palette */
  --color-coral: #CF6A3C;
  --color-coral-light: #FAE8DC;
  --color-coral-hover: #b85c32;
  --color-coral-glow: rgba(207, 106, 60, 0.12);
  --color-charcoal: #1C1714;
  --color-charcoal-supporting: #2D2926;
  --color-cream: #F5F0E8;
  --color-muted: #6B6560;

  /* Semantic accent → coral */
  --accent: #CF6A3C;
  --accent-soft: rgba(207, 106, 60, 0.10);
  --accent-border: rgba(207, 106, 60, 0.30);

  /* Shadows */
  --shadow: 0 18px 42px rgba(28, 23, 20, 0.08);
  --shadow-hover: 0 28px 55px rgba(28, 23, 20, 0.14);

  /* Radii */
  --radius-panel: 30px;
  --radius-card: 24px;
  --radius-button: 16px;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Ravex easing */
  --ease-ravex: cubic-bezier(0.16, 1, 0.3, 1);

  /* Motion timing */
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-enter: 600ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 10% 8%, rgba(207, 106, 60, 0.09), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(28, 23, 20, 0.08), transparent 28rem),
    linear-gradient(135deg, var(--bg) 0%, #fbfaf6 44%, var(--bg-soft) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(28, 23, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 23, 20, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

/* ── Site navigation (Ravex brand zone) ──────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  background: rgba(248, 245, 240, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  height: 22px;
  width: auto;
}

.nav-brand-divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
  opacity: 0.5;
}

.nav-brand-sub {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.nav-links a:hover {
  color: var(--color-coral);
  background: var(--accent-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 10px;
  background: var(--color-coral);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--color-coral-hover) !important;
  transform: translateY(-1px);
}

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

/* ── Page shell ──────────────────────────────────────────────── */
.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-panel,
.stat,
.card,
.pick-card {
  border: 1px solid var(--line);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border-radius: var(--radius-panel);
}

.hero-copy::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(207, 106, 60, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 106, 60, 0.14), transparent 66%);
}

/* ── Eyebrow / section labels (Ravex brand zone) ─────────────── */
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Headings ────────────────────────────────────────────────── */
h1, h2, h3 {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

.lede {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform var(--duration-fast) var(--ease-ravex),
    border-color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--color-coral);
  box-shadow: 0 14px 28px rgba(207, 106, 60, 0.28);
}

.button.primary:hover {
  background: var(--color-coral-hover);
  box-shadow: 0 18px 36px rgba(207, 106, 60, 0.36);
}

.button.secondary,
.button.tertiary {
  color: var(--ink-soft);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.54);
}

.button.tertiary {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.74rem;
}

.button.secondary:hover,
.button.tertiary:hover {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--color-coral);
}

/* ── Hero panel (dark sidebar) ───────────────────────────────── */
.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  min-height: 420px;
  padding: 30px;
  border-radius: var(--radius-panel);
  background:
    linear-gradient(145deg, rgba(28, 23, 20, 0.97), rgba(28, 23, 20, 0.88)),
    var(--color-charcoal);
  color: var(--color-cream);
}

.hero-panel .eyebrow {
  color: rgba(245, 240, 232, 0.55);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-feature {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.12), rgba(245, 240, 232, 0.035)),
    rgba(207, 106, 60, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-label {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(207, 106, 60, 0.42);
  border-radius: 999px;
  color: #f0b08c;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-feature strong {
  display: block;
  max-width: 300px;
  color: #fff8ee;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-panel-feature p {
  max-width: 310px;
  margin: 0;
  color: rgba(245, 240, 232, 0.64);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-rails {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.feature-rails span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(207, 106, 60, 0.95), rgba(245, 240, 232, 0.42)),
    rgba(245, 240, 232, 0.08);
}

.feature-rails span:nth-child(1) { width: 92%; }
.feature-rails span:nth-child(2) { width: 74%; }
.feature-rails span:nth-child(3) { width: 58%; }

.hero-panel-grid {
  display: grid;
  gap: 14px;
}

.hero-panel-grid div {
  padding: 20px;
  border: 1px solid rgba(245, 240, 232, 0.10);
  border-radius: 22px;
  background: rgba(245, 240, 232, 0.05);
}

.hero-panel-grid span,
.meta-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-grid span {
  color: rgba(245, 240, 232, 0.50);
}

.hero-panel-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ── Stats bar ───────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 72px;
}

.stat {
  padding: 24px;
  border-radius: 22px;
}

.stat strong {
  display: block;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Section headings ────────────────────────────────────────── */
.section-head {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin: 88px 0 28px;
}

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

.section-copy {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Filter pills (Ravex brand zone — coral accent) ──────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 252, 248, 0.72);
  cursor: pointer;
  transition:
    transform var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.filter-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent-border);
  color: var(--color-coral);
}

.filter-button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--color-coral);
  background: var(--color-coral);
}

/* ── Cards grid ──────────────────────────────────────────────── */
.picks-grid,
.cards {
  display: grid;
  gap: 22px;
}

.picks-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cards {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.card,
.pick-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  will-change: transform;
  transition:
    transform 240ms var(--ease-ravex),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.card:hover,
.pick-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-hover);
}

/* ── Scroll-reveal base state ────────────────────────────────── */
.card,
.pick-card,
.section-head,
.stats,
.hero-panel {
  opacity: 0;
  transform: translateY(28px);
}

.card.revealed,
.pick-card.revealed,
.section-head.revealed,
.stats.revealed,
.hero-panel.revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--duration-enter) var(--ease-ravex),
    transform var(--duration-enter) var(--ease-ravex),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

/* Stagger sibling cards */
.card.revealed:nth-child(2) { transition-delay: 60ms; }
.card.revealed:nth-child(3) { transition-delay: 120ms; }
.card.revealed:nth-child(4) { transition-delay: 180ms; }
.card.revealed:nth-child(5) { transition-delay: 240ms; }
.card.revealed:nth-child(6) { transition-delay: 300ms; }

.pick-card.revealed:nth-child(2) { transition-delay: 80ms; }
.pick-card.revealed:nth-child(3) { transition-delay: 160ms; }
.pick-card.revealed:nth-child(4) { transition-delay: 240ms; }
.pick-card.revealed:nth-child(5) { transition-delay: 320ms; }

/* ── Hero entrance animation ─────────────────────────────────── */
.hero-copy > *:not(.hero-orb) {
  animation: hero-rise 0.85s var(--ease-ravex) both;
}

.hero-copy .eyebrow    { animation-delay: 80ms; }
.hero-copy h1          { animation-delay: 180ms; }
.hero-copy .lede       { animation-delay: 290ms; }
.hero-copy .hero-actions { animation-delay: 400ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Floating orbs behind hero copy ─────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  animation: float-drift var(--drift-dur, 12s) ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 320px; height: 320px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(207,106,60,0.22), transparent 68%);
  --drift-dur: 11s;
}
.hero-orb-2 {
  width: 240px; height: 240px;
  bottom: -40px; right: 10%;
  background: radial-gradient(circle, rgba(207,106,60,0.18), transparent 64%);
  --drift-dur: 14s;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(207,106,60,0.12), transparent 60%);
  --drift-dur: 9s;
  animation-delay: -7s;
}

@keyframes float-drift {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to   { transform: translate(18px, -22px) scale(1.08); opacity: 1; }
}

/* ── Hero copy children sit above orbs ───────────────────────── */
.hero-copy > *:not(.hero-orb) { position: relative; z-index: 1; }

/* ── Hero panel glow + grid stagger ─────────────────────────── */
@keyframes panel-glow {
  0%   { opacity: 0.08; }
  100% { opacity: 0.20; }
}

.hero-panel::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,106,60,0.55), transparent 68%);
  pointer-events: none;
  animation: panel-glow 5s ease-in-out infinite alternate;
}

.hero-panel { position: relative; overflow: hidden; }

.hero-panel.revealed .hero-panel-feature {
  animation: grid-slide 0.55s var(--ease-ravex) both;
}

/* Stagger panel grid items in after panel reveals */
.hero-panel.revealed .hero-panel-grid div:nth-child(1) {
  animation: grid-slide 0.55s var(--ease-ravex) 120ms both;
}
.hero-panel.revealed .hero-panel-grid div:nth-child(2) {
  animation: grid-slide 0.55s var(--ease-ravex) 240ms both;
}
.hero-panel.revealed .hero-panel-grid div:nth-child(3) {
  animation: grid-slide 0.55s var(--ease-ravex) 360ms both;
}

@keyframes grid-slide {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Stat accent colours ─────────────────────────────────────── */
.stat {
  border-top: 3px solid var(--color-coral);
}

.stat strong {
  color: var(--color-coral) !important;
}

/* ── Animated pulse dot ──────────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-coral);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse-beat 2s ease-in-out infinite;
}

@keyframes pulse-beat {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.65); }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .card, .pick-card, .section-head, .stats, .hero-panel {
    opacity: 1;
    transform: none;
    transition: box-shadow 240ms ease, border-color 240ms ease !important;
  }
  .hero-copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Preview images ──────────────────────────────────────────── */
.preview-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 18% 22%, rgba(207, 106, 60, 0.14), transparent 22rem),
    linear-gradient(135deg, #ede8df, #f9f5ec);
}

.preview-wrap-pick {
  aspect-ratio: 16 / 9;
}

.preview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 450ms ease;
}

.card:hover .preview,
.pick-card:hover .preview {
  transform: scale(1.035);
}

.preview[hidden] + .preview-fallback {
  display: flex;
}

.preview-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* ── Card body ───────────────────────────────────────────────── */
.card-body,
.pick-body {
  padding: 24px;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* Category pill (Ravex brand zone — coral) */
.category-pill,
.pick-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-pill {
  color: var(--color-coral);
  border: 1px solid var(--accent-border);
  background: transparent;
}

.pick-pill {
  color: #fff;
  border: 1px solid var(--color-coral);
  background: var(--color-coral);
}

.best-for,
.editor-note,
.meta-stack p,
.effort {
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.6;
}

.best-for,
.editor-note {
  margin: 12px 0 0;
  font-size: 0.98rem;
}

.meta-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.meta-stack p,
.effort {
  margin: 0;
  font-size: 0.9rem;
}

.card-footer {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.effort-wrap {
  min-width: 0;
}

/* ── Error state ─────────────────────────────────────────────── */
.error-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid rgba(190, 18, 60, 0.18);
  border-radius: 22px;
  color: #9f1239;
  background: rgba(255, 241, 242, 0.86);
}

/* ── Site footer (Ravex brand zone — charcoal) ───────────────── */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: 56px clamp(20px, 5vw, 64px) 36px;
  margin-top: 96px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  height: 22px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--color-coral);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 240, 232, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: rgba(245, 240, 232, 0.35);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 28px;
  }

  .hero,
  .stats,
  .picks-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .hero-copy,
  .hero-panel {
    border-radius: 24px;
  }

  .hero-copy {
    padding: 30px 22px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-actions,
  .card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 58px;
    gap: 14px;
  }

  .filters {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
