/* ============================================================
   WILDAPX — Design System
   Extended from the in-app palette: parchment ledger background,
   timber green structure, brass accents, rut red for score emphasis.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  /* Color tokens */
  --parchment: #F3EEDF;
  --parchment-dim: #EAE3CF;
  --card: #EAE4D3;
  --card-border: #D9CFB0;
  --timber: #3F4F2E;
  --timber-deep: #2B3A1F;
  --timber-line: rgba(63, 79, 46, 0.18);
  --brass: #C19A5B;
  --brass-bright: #D7AE6E;
  --rut: #8B3232;
  --rut-deep: #6E2727;
  --ash: #93876A;
  --ink: #272616;
  --ink-soft: #4B4732;
  --paper-shadow: rgba(43, 58, 31, 0.14);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Barlow', -apple-system, sans-serif;
  --font-label: 'Barlow Condensed', -apple-system, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--brass); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--rut);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Texture: faint paper grain via layered gradients ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(43,58,31,0.025) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139,50,50,0.02) 0%, transparent 40%);
}

/* ---- Eyebrow / label style ---- */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow.dark { color: var(--timber); }
.eyebrow.red { color: var(--rut); }

/* ---- Headings ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.h-num {
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "onum" 1;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 238, 223, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--timber-line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--timber-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--timber);
  color: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--rut); }

.nav-cta {
  background: var(--timber);
  color: var(--parchment) !important;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--timber-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--timber);
  color: var(--parchment);
}
.btn-primary:hover { background: var(--timber-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--timber);
  color: var(--timber);
}
.btn-ghost:hover { background: var(--timber); color: var(--parchment); }

/* App store style badge button */
.btn-store {
  background: var(--ink);
  color: var(--parchment);
  padding: 13px 24px 13px 20px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}
.btn-store .store-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}
.btn-store .store-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.1;
}
.btn-store:hover { background: var(--timber-deep); }

/* ============================================================
   HERO — signature element: the live rank card
   ============================================================ */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.04;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rut);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ---- The Rank Card (signature) ---- */
.rank-card-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.rank-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 34px 30px 30px;
  box-shadow: 0 24px 60px -20px var(--paper-shadow), 0 2px 0 rgba(255,255,255,0.4) inset;
  transform: rotate(1.5deg);
}

.rank-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--timber-line);
  border-radius: 12px;
  pointer-events: none;
}

.rank-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.rank-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  flex-shrink: 0;
}

.rank-card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.rank-card-handle {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--ash);
  letter-spacing: 0.02em;
}

.rank-card-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
}

.rank-card-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--rut);
  line-height: 1.02;
  margin-bottom: 4px;
}

.rank-card-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--rut);
  font-variant-numeric: tabular-nums;
}

.rank-card-score-label {
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--ash);
  font-weight: 600;
}

.rank-card-divider {
  height: 1px;
  background: var(--timber-line);
  margin: 22px 0;
}

.rank-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rank-stat {
  background: var(--parchment);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
}

.rank-stat-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 4px;
}

.rank-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--rut);
}

.rank-stat-value .unit {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  color: var(--ash);
  margin-left: 4px;
}

.rank-card-tag {
  position: absolute;
  top: -16px;
  right: 26px;
  background: var(--timber);
  color: var(--parchment);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 5px;
  transform: rotate(-2deg);
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.3);
}

.hero-floaters {
  position: absolute;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--parchment);
  border: 1px solid var(--card-border);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px var(--paper-shadow);
  color: var(--timber);
  opacity: 0;
  animation: floatIn 0.6s ease forwards;
}
.float-1 { top: 4%; right: 2%; animation-delay: 1.1s; }
.float-2 { bottom: -7%; left: 10%; animation-delay: 1.4s; color: var(--rut); }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floaters { animation: none; opacity: 1; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; z-index: 2; }

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--parchment-dim);
  border-top: 1px solid var(--timber-line);
  border-bottom: 1px solid var(--timber-line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head .eyebrow { margin-bottom: 14px; }

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- Reveal on scroll ----
   Safe-by-default: content is fully visible unless JS confirms it's
   running (html.js-ready) AND the element hasn't already been marked
   visible by the IntersectionObserver. If JS fails to load entirely,
   everything just stays visible — nothing on the page can go blank. */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

/* ============================================================
   FEATURE CHAPTERS (The Ledger / Climb / Camp / Library)
   ============================================================ */
.chapter {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.chapter:not(:last-child) {
  border-bottom: 1px solid var(--timber-line);
}

.chapter.reverse { grid-template-columns: 1.15fr 0.85fr; }
.chapter.reverse .chapter-visual { order: 2; }
.chapter.reverse .chapter-copy { order: 1; }

.chapter-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--brass);
}

.chapter-copy h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 14px 0 18px;
  color: var(--timber-deep);
}

.chapter-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.chapter-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.chapter-copy li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--timber-line);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.chapter-copy li:first-child { border-top: none; }
.chapter-copy li::before {
  content: '—';
  color: var(--brass);
  flex-shrink: 0;
  font-weight: 700;
}

/* ---- Chapter visual mockups ---- */
.chapter-visual {
  display: flex;
  justify-content: center;
}

.mock-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 48px -22px var(--paper-shadow);
}

/* Ledger entry mock */
.mock-entry {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--timber-line);
}
.mock-entry:last-child { border-bottom: none; }
.mock-entry-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--timber);
  flex-shrink: 0;
}
.mock-entry-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.mock-entry-meta {
  font-family: var(--font-label);
  font-size: 12.5px;
  color: var(--ash);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.mock-entry-pts {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rut);
  font-size: 17px;
  align-self: center;
  white-space: nowrap;
}

/* Tier ladder mock */
.mock-ladder { display: flex; flex-direction: column; gap: 8px; }
.mock-rung {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--parchment);
  border: 1px solid var(--card-border);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.mock-rung.active {
  background: var(--timber);
  color: var(--parchment);
  border-color: var(--timber);
}
.mock-rung .pts { font-family: var(--font-display); font-weight: 700; }

/* Camp mock */
.mock-camp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--timber-line);
}
.mock-camp-row:last-child { border: none; }
.mock-camp-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brass);
}
.mock-camp-name { font-weight: 700; font-size: 14.5px; }
.mock-camp-action { font-size: 13px; color: var(--ash); }

/* Library species cards (shared with gallery below) */
.mock-species-row {
  display: flex;
  gap: 10px;
}
.mock-species-chip {
  flex: 1;
  background: var(--parchment);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.mock-species-chip .tier-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin: 0 auto 8px;
}
.mock-species-chip .name {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ============================================================
   SPECIES GALLERY (tier system showcase)
   ============================================================ */
.tier-legend {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tier-legend span { display: flex; align-items: center; gap: 8px; }
.tier-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.tier-common { background: var(--ash); }
.tier-notable { background: var(--timber); }
.tier-rare { background: var(--brass); }
.tier-legendary { background: var(--rut); }

.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.species-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.species-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px var(--paper-shadow);
}

.species-card .tier-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.species-card .tier-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.species-card.is-common .tier-label { color: var(--ash); }
.species-card.is-notable .tier-label { color: var(--timber); }
.species-card.is-rare .tier-label { color: var(--brass-bright); }
.species-card.is-legendary .tier-label { color: var(--rut); }

.species-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}

.species-card .pts {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--ash);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--timber-line);
  border-radius: 14px;
  overflow: hidden;
}
.stat-block {
  padding: 32px 24px;
  border-right: 1px solid var(--timber-line);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--timber-deep);
}
.stat-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 4px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--timber-deep);
  color: var(--parchment);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(193,154,91,0.15), transparent 50%);
}
.final-cta h2 {
  color: var(--parchment);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
  position: relative;
}
.final-cta p {
  color: rgba(243,238,223,0.78);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}
.final-cta .hero-ctas { justify-content: center; position: relative; }
.final-cta .btn-ghost { border-color: var(--brass); color: var(--brass-bright); }
.final-cta .btn-ghost:hover { background: var(--brass); color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--timber-line);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand .brand { margin-bottom: 10px; }
.footer-tag {
  font-size: 14.5px;
  color: var(--ash);
  max-width: 280px;
}
.footer-cols {
  display: flex;
  gap: 56px;
}
.footer-col h5 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 5px 0;
}
.footer-col a:hover { color: var(--rut); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--timber-line);
  font-size: 13px;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   GENERIC INNER PAGE (privacy / blog)
   ============================================================ */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--timber-line);
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-top: 14px;
}
.page-hero .updated {
  font-family: var(--font-label);
  font-size: 13.5px;
  color: var(--ash);
  margin-top: 14px;
  display: block;
}

.prose { max-width: 760px; padding: 56px 0 100px; }
.prose h2 {
  font-size: 27px;
  margin: 48px 0 16px;
  color: var(--timber-deep);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 20px;
  margin: 30px 0 12px;
  color: var(--ink);
}
.prose p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.prose ul, .prose ol {
  color: var(--ink-soft);
  font-size: 16.5px;
  padding-left: 22px;
  margin-bottom: 16px;
}
.prose li { margin-bottom: 8px; }
.prose a { color: var(--rut); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.callout {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Blog index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 56px 0 100px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px var(--paper-shadow);
}
.blog-card .eyebrow { margin-bottom: 14px; }
.blog-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--ink);
}
.blog-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.blog-card .read-more {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rut);
}

.post-meta {
  font-family: var(--font-label);
  font-size: 13.5px;
  color: var(--ash);
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .chapter, .chapter.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .chapter.reverse .chapter-visual,
  .chapter.reverse .chapter-copy { order: initial; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block { border-bottom: 1px solid var(--timber-line); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .footer-cols { gap: 36px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 64px 0; }
  .rank-card { transform: none; }
  .hero-floaters { display: none; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { padding: 48px 24px; }
  .footer-cols { flex-direction: column; gap: 24px; }
}
