/* ─── Fate Moves marketing site ─────────────────────────────────────────
   Single static stylesheet. No build step. Cloudflare-Pages-safe.
   Palette + type tokens live at :root so the Tweaks accent toggle just
   flips one variable.
   ────────────────────────────────────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg: #0C1C20;
  --panel: #102428;
  --border: #2E4F58;

  /* Text */
  --text-primary: #D8C898;
  --text-secondary: #A87850;
  --text-muted: #4A6A70;

  /* Accents */
  --accent-warm: #E8B060;
  --accent-cool: #6AC8B8;
  --accent-danger: #C87068;

  /* Accent-emphasis routing (Tweaks-driven)
     ----------------------------------------
     --accent-led = the primary accent used on CTAs, italics in headings, eyebrow ticks.
     --accent-aux = the rare-pop accent used on status dots, fine details. */
  --accent-led: var(--accent-warm);
  --accent-aux: var(--accent-cool);

  /* Type */
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --mono:  'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Scale */
  --gutter: clamp(20px, 5vw, 80px);
  --column: 1200px;
}

/* When the user flips to cyan-led, the two accent slots swap. */
body[data-accent="cool"] {
  --accent-led: var(--accent-cool);
  --accent-aux: var(--accent-warm);
}

/* ─── Reset-ish ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }

/* ─── Shared section primitives ─── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-head {
  max-width: var(--column);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-title {
  margin: 11px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text-primary);
}
.section-title em { color: var(--accent-led); font-style: italic; }
.section-lede {
  margin: 22px 0 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ─── Topbar ─── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter) 0;
  max-width: var(--column);
  margin: 0 auto;
}
.topbar__brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  white-space: nowrap;
}
.topbar__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: clamp(48px, 8vh, 100px) 0 clamp(36px, 6vh, 72px);
}
.hero__inner {
  max-width: var(--column);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__coords {
  position: absolute;
  top: clamp(28px, 6vh, 64px);
  right: var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.7;
}
.hero__status { color: var(--accent-aux); margin-top: 8px; }

.hero__title {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 9.2vw, 132px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.hero__title em { color: var(--accent-led); font-style: italic; }

.rule {
  color: var(--border);
  margin: clamp(28px, 4vw, 44px) 0 clamp(28px, 4vw, 40px);
  width: clamp(220px, 36vw, 480px);
  opacity: 0.75;
}

.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
}
.hero__subhead {
  margin: 0;
  font-style: italic;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 460px;
  flex: 1 1 360px;
}

/* ─── CTAs ─── */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; align-items: center; }
.cta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.005em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cta--primary {
  background: var(--accent-led);
  color: #1a0f08;
  font-weight: 600;
}
body[data-accent="cool"] .cta--primary { color: #0a1a17; }
.cta--primary:hover { transform: translateY(-1px); }
.cta--secondary {
  color: var(--text-primary);
  border-color: var(--border);
  background: transparent;
}
.cta--secondary:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ─── Why this exists (below-hero origin teaser → why.html) ─── */
.why {
  padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--border);
}
.why__lede { max-width: 720px; }
.why__more {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-led);
  transition: opacity 0.15s ease;
}
.why__more:hover { opacity: 0.78; }

/* ─── Journal section (headline + copy block; screenshot moved to gallery) ─── */
.journal-section {
  padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--border);
}
.journal__lede + .journal__lede {
  margin-top: 14px;
}

/* ─── Screenshot section ─── */
.screenshot-section {
  padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--border);
}
.screenshot {
  max-width: 1320px;
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding: 0 var(--gutter);
}
.screenshot__frame {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}

.screenshot__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.screenshot__dots { display: flex; gap: 7px; }
.screenshot__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
  display: inline-block;
}
.screenshot__address {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}
.screenshot__chrome-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.screenshot__body {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 540px;
}

/* — left rail — */
.screenshot__rail {
  border-right: 1px solid var(--border);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.rail__group { display: flex; flex-direction: column; gap: 8px; }
.rail__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rail__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.rail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
}
.rail__stats b { color: var(--text-primary); font-weight: 500; }
.rail__meter {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(46,79,88,0.5);
}
.rail__meter b { color: var(--text-primary); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.rail__vow {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-primary);
  font-style: normal;
}
.rail__vow i {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* — journal — */
.screenshot__journal {
  padding: 22px 28px 28px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.journal__title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-secondary);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(46,79,88,0.6);
  margin-bottom: 4px;
}
.journal__sub { color: var(--text-muted); }

.entry { display: flex; flex-direction: column; gap: 4px; }
.entry__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.entry__kind {
  text-transform: uppercase;
  color: var(--accent-led);
  letter-spacing: 0.16em;
  font-size: 10px;
}
.entry__name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  color: var(--text-primary);
  font-weight: 500;
}
.entry__name i {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}
.entry__time { margin-left: auto; color: var(--text-muted); font-size: 10px; }
.entry__roll { color: var(--text-secondary); }
.entry__result { color: var(--text-primary); }
.entry__result em { color: var(--accent-led); font-style: italic; }
.entry__result--hit { color: var(--accent-led); }
.entry__result--miss { color: var(--accent-danger); }
.entry__effect { color: var(--text-secondary); padding-left: 8px; }
.entry__prose {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  padding: 8px 14px;
  border-left: 2px solid var(--accent-led);
  margin-top: 4px;
}
.entry--pulse .entry__kind {
  color: var(--accent-aux);
  letter-spacing: 0.14em;
}

.screenshot__caption {
  margin: 20px 4px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
}
.screenshot__caption em { color: var(--text-secondary); }

/* ─── Features ─── */
.features {
  padding: clamp(28px, 4vw, 56px) 0 clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--border);
}

/* ─── Gallery ─── */
.gallery {
  padding: clamp(32px, 4.5vw, 60px) 0 clamp(36px, 5vw, 66px);
  border-top: 1px solid var(--border);
}
.gallery__grid {
  max-width: var(--column);
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.thumb {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.thumb__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.thumb:hover .thumb__frame {
  border-color: var(--accent-led);
  transform: translateY(-2px);
}
.thumb__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}
.thumb__dots { display: flex; gap: 4px; }
.thumb__dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border);
}
.thumb__address {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumb__body {
  position: absolute;
  inset: 28px 0 0 0;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  color: var(--text-secondary);
  overflow: hidden;
}
.thumb__body strong {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.thumb__body em {
  color: var(--accent-led);
  font-style: italic;
}
.thumb__body .acc { color: var(--accent-led); }
.thumb__body .mut { color: var(--text-muted); }
.thumb__body .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(46,79,88,0.5);
}
.thumb__body .row:last-child { border-bottom: 0; }

/* Real screenshot inside the browser-chrome frame. Unlike the old CSS
   mockups (forced 16/10 via .thumb__frame aspect-ratio), real captures
   keep their natural ratio so portrait UI shots aren't cropped. The
   --shot modifier drops the fixed aspect-ratio; the <img> sizes itself
   and the chrome bar sits above it in normal flow. */
.thumb__frame--shot { aspect-ratio: auto; }
.thumb__shot {
  width: 100%;
  height: auto;
  display: block;
}
.thumb__caption {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}
.thumb__title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  flex: 1 1 auto;
  min-width: 0;
}
.thumb__zoom {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: 0 0 auto;
  white-space: nowrap;
}
.thumb:hover .thumb__zoom { color: var(--accent-led); }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
.feature-list {
  max-width: var(--column);
  margin: clamp(20px, 2.5vw, 36px) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
}
.feature {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(14px, 2vw, 22px) 0;
  border-top: 1px solid var(--border);
}
.feature:last-child { border-bottom: 1px solid var(--border); }
.feature__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  padding-top: 4px;
}
.feature__title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--text-primary);
}
.feature__title em { color: var(--accent-led); }
.feature__body p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
}
.feature__body p em { color: var(--text-primary); }

/* ─── About ─── */
.about {
  padding: clamp(40px, 5.5vw, 70px) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
}
.about__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-title--about { letter-spacing: -0.015em; }
.section-title--about em { color: var(--accent-led); }
.about__copy {
  margin: 26px 0 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.6;
  color: var(--text-primary);
}
.about__copy--quiet {
  color: var(--text-secondary);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
}

/* ─── Tomkin ─── */
.tomkin {
  padding: clamp(40px, 5.5vw, 70px) 0;
  border-top: 1px solid var(--border);
}
.tomkin__lede { max-width: 720px; }
.tomkin__cards {
  max-width: var(--column);
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tomkin-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-height: 280px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.tomkin-card:hover {
  border-color: var(--accent-led);
  transform: translateY(-2px);
}
.tomkin-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tomkin-card__name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--text-primary);
}
.tomkin-card__copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  flex: 1;
}
.tomkin-card__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-led);
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: clamp(56px, 7vw, 88px) 0 clamp(28px, 3vw, 40px);
}
.footer__inner {
  max-width: var(--column);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-primary);
}
.footer__tagline {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 320px;
}
.footer__bmc {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  align-self: flex-start;
  max-width: 340px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer__bmc:hover { border-color: var(--accent-led); background: rgba(232,176,96,0.04); }
.footer__bmc-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--accent-led);
}
.footer__bmc-label {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-primary);
}
.footer__bmc-sub {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer__list { display: flex; flex-direction: column; gap: 8px; }
.footer__list a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-primary);
  transition: color 0.15s ease;
}
.footer__list a:hover { color: var(--accent-led); }

.footer__base {
  max-width: var(--column);
  margin: clamp(48px, 6vw, 64px) auto 0;
  padding: clamp(20px, 2.5vw, 28px) var(--gutter) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.footer__attribution { max-width: 720px; line-height: 1.6; }
.footer__attribution em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.footer__attribution a {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__attribution a:hover { color: var(--accent-led); border-bottom-color: var(--accent-led); }

.footer__copy a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__copy a:hover {
  color: var(--accent-led);
  border-bottom-color: var(--accent-led);
}

/* ─── Legal stub pages ─── */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--gutter);
}
.legal h1 {
  margin: 24px 0 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.legal h2 {
  margin: 48px 0 12px;
  font-size: 22px;
  font-weight: 500;
}
.legal p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.legal p a {
  color: var(--accent-led);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.legal p a:hover { border-bottom-color: var(--accent-led); }
.legal a.back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  margin-top: 64px;
  transition: color 0.15s ease;
}
.legal a.back:hover { color: var(--accent-led); }

/* ─── Campaign log index (/sessions/) ─── */
.camplog {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 104px) var(--gutter) clamp(60px, 8vw, 100px);
}
.camplog h1 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.camplog__lede {
  margin: 26px 0 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.6;
  color: var(--text-secondary);
}
.camplog p {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}
.camplog p a {
  color: var(--accent-led);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.camplog p a:hover { border-bottom-color: var(--accent-led); }
.camplog__list {
  margin: clamp(32px, 4vw, 52px) 0 0;
  border-top: 1px solid var(--border);
}
.camplog__list li { border-bottom: 1px solid var(--border); }
.camplog__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 4px;
  transition: background 0.15s ease, padding 0.15s ease;
}
.camplog__list a:hover { background: rgba(232,176,96,0.05); padding-left: 12px; }
.camplog__ep {
  flex: 0 0 auto;
  width: 88px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.camplog__title {
  flex: 1 1 auto;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--text-primary);
}
.camplog__list a:hover .camplog__title { color: var(--accent-led); }
.camplog__where {
  flex: 0 0 auto;
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.camplog .back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.camplog .back:hover { color: var(--accent-led); }
@media (max-width: 560px) {
  .camplog__where { display: none; }
  .camplog__list a { flex-wrap: wrap; gap: 4px 14px; }
  .camplog__ep { width: auto; }
}

/* ─── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding-top: clamp(120px, 18vh, 180px); }
  .hero__coords {
    top: 70px;
    right: var(--gutter);
    text-align: right;
    font-size: 10px;
  }
  .hero__title { font-size: clamp(46px, 13vw, 80px); }
  .hero__bottom { flex-direction: column; gap: 28px; }
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .cta { justify-content: center; padding: 14px 18px; }

  .screenshot__body { grid-template-columns: 1fr; min-height: 0; }
  .screenshot__rail { border-right: 0; border-bottom: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .rail__group { flex: 1 1 160px; }
  .screenshot__journal { padding: 18px 18px 22px; font-size: 11.5px; }
  .entry__head { flex-wrap: wrap; }
  .entry__time { margin-left: 0; width: 100%; }
  .screenshot__chrome { gap: 10px; padding: 10px 14px; }
  .screenshot__address { font-size: 10px; text-align: left; }
  .screenshot__chrome-meta { display: none; }

  .feature { grid-template-columns: 1fr; gap: 8px; }
  .feature__num { padding-top: 0; }

  .tomkin__cards { grid-template-columns: 1fr; }
  .tomkin-card { min-height: 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; gap: 14px; }
}
@media (max-width: 520px) {
  .topbar { padding-top: 20px; }
  .topbar__meta { font-size: 10px; letter-spacing: 0.16em; }
  .hero__title { font-size: 46px; }
  .section-title { font-size: clamp(32px, 9vw, 44px); }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ─── Motion respect ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── Visually-hidden but screen-reader-accessible (standard a11y utility).
   Used by the obfuscated contact email so screen readers announce the real
   "@" / "." while sighted JS-off users see the "[at]" / "[dot]" fallback. ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
