/* LoadThePlates — site.css · v2.0 Pre-Launch */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg: #0a0a0a; --s1: #111; --s2: #1a1a1a; --s3: #222;
  --border: rgba(255,255,255,0.07);
  --text: #e8e4de; --muted: #777; --chalk: #f0ede8;
  --red: #c0392b; --red2: #e74c3c; --red-glow: rgba(192,57,43,0.15);
  --mono: 'DM Mono', monospace;
  --head: 'Oswald', sans-serif;
  --body: 'Barlow', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); background: var(--bg); color: var(--text);
  min-height: 100vh; font-size: 1.02rem; line-height: 1.75;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Grain texture overlay ── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Skip to content (a11y) ── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 200;
  padding: 8px 16px; background: var(--red); color: #fff;
  font-family: var(--mono); font-size: 0.8rem; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── Focus states ── */
:focus-visible {
  outline: 2px solid var(--red2);
  outline-offset: 2px;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 1px var(--red);
}

/* ═══════════════════════════════════════════
   READING PROGRESS BAR
   ═══════════════════════════════════════════ */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 110;
  background: var(--red2);
  width: 0%; transition: width 0.1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
  background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  padding: 0 32px; height: 58px; display: flex; align-items: center;
  justify-content: space-between; position: sticky; top: 0; z-index: 100;
  gap: 20px;
}
.wordmark {
  font-family: var(--head); font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--chalk);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.wordmark .r { color: var(--red); }
nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
.nav-a {
  font-family: var(--head); font-size: 0.88rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 14px;
  color: var(--muted); text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
  border-bottom: 2px solid transparent; white-space: nowrap;
  position: relative;
}
.nav-a:hover, .nav-a.active { color: var(--chalk); }
.nav-a.active { border-bottom-color: var(--red); }
.nav-cta {
  font-family: var(--head); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 7px 16px;
  background: var(--red-glow); border: 1px solid rgba(192,57,43,0.3);
  color: var(--red2); text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s var(--ease-out);
}
.nav-cta:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 120;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--chalk);
  position: absolute; left: 7px; transition: all 0.3s var(--ease-out);
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ── Mobile nav overlay ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 105;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--head); font-size: 2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
  text-decoration: none; padding: 12px 24px;
  transition: color 0.15s, transform 0.3s var(--ease-out);
  transform: translateY(20px); opacity: 0;
}
.mobile-nav.open a {
  transform: translateY(0); opacity: 1;
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--red2); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 80px 0 68px; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255,255,255,0.015) 44px, rgba(255,255,255,0.015) 45px),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(192,57,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--red); margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.1s forwards;
}
.hero-title {
  font-family: var(--head); font-size: clamp(4rem, 10vw, 8rem); font-weight: 700;
  text-transform: uppercase; line-height: 0.92; letter-spacing: 0.02em;
  color: var(--chalk); margin-bottom: 24px;
}
.hero-title .line {
  display: block; opacity: 0;
  animation: slideIn 0.7s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) { animation-delay: 0.35s; }
.hero-title .line:nth-child(4) { animation-delay: 0.45s; }
.hero-title .r { color: var(--red); }
.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 500px;
  margin-bottom: 36px; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.55s forwards;
}
.hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-red {
  display: inline-block; padding: 13px 30px; background: var(--red); color: #fff;
  font-family: var(--head); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; text-decoration: none;
  transition: all 0.2s var(--ease-out); border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-red:hover {
  background: var(--red2); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
}
.btn-red:active { transform: translateY(0); }
.btn-ghost {
  display: inline-block; padding: 13px 30px; background: transparent;
  color: var(--chalk); border: 1px solid #444; font-family: var(--head);
  font-size: 0.95rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; text-decoration: none;
  transition: all 0.2s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--red); color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0); }

/* ═══════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════ */
.manifesto {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border); border-top: 1px solid var(--border);
}
.m-item {
  padding: 24px 20px; border-right: 1px solid var(--border);
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  transition: background 0.3s;
}
.m-item:last-child { border-right: none; }
.m-item:hover { background: rgba(192,57,43,0.03); }
.m-num {
  font-family: var(--head); font-size: 3rem; font-weight: 700;
  color: var(--red); line-height: 1;
}
.m-lbl {
  font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--muted);
}

/* ═══════════════════════════════════════════
   SECTION LABEL
   ═══════════════════════════════════════════ */
.slabel {
  font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted); margin-bottom: 14px;
  border-left: 2px solid var(--red); padding-left: 10px; display: block;
}

/* ═══════════════════════════════════════════
   TOOL CARDS
   ═══════════════════════════════════════════ */
.tool-card {
  background: var(--s1); border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 22px; display: flex; align-items: flex-start; gap: 18px;
  text-decoration: none; transition: all 0.25s var(--ease-out); color: inherit;
}
.tool-card:hover {
  background: var(--s2); transform: translateX(4px);
  border-left-color: var(--red2);
  box-shadow: -4px 0 24px rgba(192,57,43,0.08);
}
.tool-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.tool-title {
  font-family: var(--head); font-size: 1.2rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--chalk); margin-bottom: 6px;
}
.tool-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
.tool-badge {
  font-family: var(--mono); font-size: 0.6rem; padding: 2px 8px;
  background: var(--red-glow); color: var(--red); border: 1px solid rgba(192,57,43,0.25);
  text-transform: uppercase; letter-spacing: 0.1em; display: inline-block;
}

/* ═══════════════════════════════════════════
   ARTICLE GRID
   ═══════════════════════════════════════════ */
.article-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px; margin: 16px 0;
}
.article-card {
  background: var(--s1); border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  display: flex; flex-direction: column; text-decoration: none;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.article-card::after {
  content: '→'; position: absolute; bottom: 38px; right: 16px;
  font-family: var(--head); font-size: 1.1rem; color: var(--red);
  opacity: 0; transform: translateX(-6px);
  transition: all 0.25s var(--ease-out);
}
.article-card:hover {
  background: var(--s2); transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-top-color: var(--red2);
}
.article-card:hover::after { opacity: 1; transform: translateX(0); }
.ac-cat {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--red); padding: 14px 16px 0;
}
.ac-title {
  font-family: var(--head); font-size: 1.05rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--chalk);
  padding: 6px 16px 4px; line-height: 1.2;
}
.ac-desc {
  font-size: 0.81rem; color: var(--muted); padding: 0 16px 14px;
  line-height: 1.5; flex: 1;
}
.ac-meta {
  font-family: var(--mono); font-size: 0.63rem; color: #444;
  padding: 8px 16px; border-top: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   CALLOUT
   ═══════════════════════════════════════════ */
.callout {
  background: rgba(192,57,43,0.06); border-left: 3px solid var(--red);
  padding: 18px 22px; font-size: 0.95rem; line-height: 1.65;
}
.callout strong { color: var(--red2); }

/* ═══════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════ */
.page-header {
  padding: 48px 0 36px; border-bottom: 1px solid var(--border); margin-bottom: 36px;
}
.page-header h1 {
  font-family: var(--head); font-size: 3rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--chalk); line-height: 1;
}
.page-header p { color: var(--muted); margin-top: 10px; font-size: 0.95rem; font-style: italic; }

/* ═══════════════════════════════════════════
   ARTICLE BODY
   ═══════════════════════════════════════════ */
.article-body { max-width: 680px; }
.article-body h2 {
  font-family: var(--head); font-size: 1.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--chalk);
  margin-top: 2.5rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--red);
}
.article-body h3 {
  font-family: var(--head); font-size: 1.25rem; font-weight: 600;
  text-transform: uppercase; color: var(--red2); margin-top: 1.8rem;
}
.article-body p { margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: 0.45rem; }
.article-body li::marker { color: var(--red); }
.article-body strong { color: var(--chalk); }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.article-body thead th {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); border-bottom: 2px solid var(--red);
  padding: 7px 12px; text-align: left; background: var(--s1);
}
.article-body tbody td {
  padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.article-body tbody tr:hover td { background: rgba(255,255,255,0.015); }
.article-body .callout { margin: 24px 0; }
.article-meta {
  font-family: var(--mono); font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 28px;
  border-left: 2px solid var(--red); padding-left: 10px;
}

/* ═══════════════════════════════════════════
   ARTICLE VISUAL COMPONENTS
   ═══════════════════════════════════════════ */

/* Summary / TLDR card at top of article */
.key-points {
  background: var(--s1); border: 1px solid var(--border);
  border-top: 3px solid var(--red); padding: 20px 22px;
  margin: 24px 0 32px; max-width: 680px;
}
.key-points-label {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--red); margin-bottom: 12px; display: block;
}
.key-points ul { padding-left: 1.2rem; margin: 0; }
.key-points li {
  font-size: 0.9rem; margin-bottom: 6px; color: var(--text); line-height: 1.55;
}
.key-points li::marker { color: var(--red); }

/* Stat strip — horizontal metrics bar */
.stat-strip {
  display: flex; gap: 0; flex-wrap: wrap; margin: 24px 0;
  border: 1px solid var(--border); border-top: 2px solid var(--red);
  max-width: 680px;
}
.stat-strip .ss-item {
  flex: 1; padding: 16px 18px; border-right: 1px solid var(--border);
  min-width: 120px;
}
.stat-strip .ss-item:last-child { border-right: none; }
.ss-val {
  font-family: var(--head); font-size: 1.6rem; font-weight: 700;
  color: var(--red); display: block; line-height: 1;
}
.ss-lbl {
  font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; display: block;
}

/* Pull quote — highlighted key statement */
.pull-quote {
  border-left: 4px solid var(--red); padding: 16px 22px; margin: 28px 0;
  background: rgba(192,57,43,0.04);
}
.pull-quote p {
  font-family: var(--head); font-size: 1.2rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--chalk);
  line-height: 1.35; margin: 0;
}

/* Two-column on desktop */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 20px 0; max-width: 680px;
}
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

/* Info card — compact reference box */
.info-card {
  background: var(--s1); border: 1px solid var(--border);
  border-left: 3px solid var(--red); padding: 16px 18px;
}
.info-card-title {
  font-family: var(--head); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--chalk);
  margin-bottom: 6px;
}
.info-card-body {
  font-size: 0.85rem; color: var(--muted); line-height: 1.55;
}

/* Step list — numbered process steps */
.step-grid { margin: 20px 0; max-width: 680px; }
.step-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--head); font-size: 1.8rem; font-weight: 700;
  color: var(--red); line-height: 1; flex-shrink: 0; width: 32px;
  text-align: center;
}
.step-content { flex: 1; }
.step-title {
  font-family: var(--head); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; color: var(--chalk); margin-bottom: 4px;
}
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Section divider */
.section-break {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0; max-width: 680px; position: relative;
}
.section-break::after {
  content: ''; position: absolute; top: -2px; left: 0;
  width: 40px; height: 3px; background: var(--red);
}
}

/* ═══════════════════════════════════════════
   RECIPE META
   ═══════════════════════════════════════════ */
.recipe-meta {
  display: flex; gap: 0; flex-wrap: wrap; margin: 20px 0;
  border: 1px solid var(--border); border-top: 2px solid var(--red);
}
.rmi { flex: 1; padding: 14px 18px; border-right: 1px solid var(--border); min-width: 90px; }
.rmi:last-child { border-right: none; }
.rmi-val {
  font-family: var(--head); font-size: 1.5rem; font-weight: 700;
  color: var(--red); display: block; line-height: 1;
}
.rmi-lbl {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin-top: 3px; display: block;
}

/* ═══════════════════════════════════════════
   PIT / COMMUNITY CARDS
   ═══════════════════════════════════════════ */
.pit-card {
  background: var(--s1); border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 14px 18px; margin-bottom: 7px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.2s var(--ease-out);
}
.pit-card:hover {
  background: var(--s2); transform: translateX(3px);
}
.pit-icon { font-size: 1.3rem; flex-shrink: 0; }
.pit-name {
  font-family: var(--head); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--chalk); margin-bottom: 2px;
}
.pit-desc { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   STATS ROW
   ═══════════════════════════════════════════ */
.stats-row {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-top: 2px solid var(--red); margin-bottom: 32px;
}
.stat {
  flex: 1; padding: 18px; border-right: 1px solid var(--border); text-align: center;
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--head); font-size: 2.2rem; font-weight: 700;
  color: var(--red); display: block; line-height: 1;
}
.stat-lbl {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted); margin-top: 5px; display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--s1); border-top: 2px solid var(--red); padding: 20px 0;
  margin-top: auto;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 0.72rem; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: var(--muted); text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.08em; transition: color 0.15s;
}
.footer-links a:hover { color: var(--chalk); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .manifesto { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  .recipe-meta { flex-wrap: wrap; }
  .rmi { min-width: 45%; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 680px) {
  header { padding: 0 16px; }
  nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 40px; }
  .hero-title { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .manifesto { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  .tool-card { flex-direction: column; gap: 10px; }
  .page-header h1 { font-size: 2.2rem; }
  .article-body h2 { font-size: 1.4rem; }
  .recipe-meta { flex-wrap: wrap; }
  .rmi { min-width: 45%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   SELECTION STYLE
   ═══════════════════════════════════════════ */
::selection {
  background: rgba(192,57,43,0.35); color: var(--chalk);
}

/* ═══════════════════════════════════════════
   REDUCED MOTION — respect user preference
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line { opacity: 1; }
  .eyebrow, .hero-sub, .hero-btns { opacity: 1; }
}
