/* Limitless Alternative — briefing / newsprint */
:root {
  --bg: #fbf6ee;
  --ink: #1a140c;
  --muted: #5c5348;
  --line: #e2d4c0;
  --card: #fffdf8;
  --amber: #c45c12;
  --banner: #1a140c;
  --hl: #f3e4cc;
  --wide: 58rem;
  --max: 40rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Figtree, system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
}
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem; z-index: 9; }
a { color: var(--amber); }
.wrap { width: min(var(--wide), calc(100% - 2rem)); margin-inline: auto; }
.banner { background: var(--banner); color: #fbf6ee; }
.head {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem;
  padding: 1rem 0;
}
.mark {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.45rem;
  color: #fbf6ee;
  text-decoration: none;
}
nav { display: flex; flex-wrap: wrap; gap: .85rem; margin-left: auto; font-size: .88rem; }
nav a { color: #e8d8c4; text-decoration: none; }
nav a:hover { color: #fff; }
.disclosure { background: #f0e0c8; font-size: .86rem; padding: .65rem 0; }
.disclosure p { margin: 0; }
.hero { padding: 2.5rem 0 1rem; max-width: 46rem; }
.stamp {
  margin: 0 0 .7rem;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
h1, h2, h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.15rem, 5.4vw, 3.2rem); margin: 0 0 1rem; }
h2 { font-size: 1.7rem; margin: 2.4rem 0 .8rem; }
h3 { font-size: 1.3rem; margin: 0 0 .45rem; }
.lede { font-size: 1.2rem; color: var(--muted); margin: 0; }
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.timeline li { padding: 0 0 1.3rem 1.15rem; position: relative; }
.timeline li::before {
  content: "";
  position: absolute; left: -5px; top: .35rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
}
.when { margin: 0 0 .25rem; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); }
.promo {
  margin: 2rem 0;
  background: var(--banner);
  color: #f7ecde;
  padding: 1.4rem 1.3rem 1.5rem;
}
.promo h2 { margin: 0 0 .55rem; color: #fff; }
.promo p { margin: 0 0 1rem; color: #e8d8c4; }
.promo-label { margin: 0 0 .45rem; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: #e8a46a; }
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  padding: .7rem 1.05rem;
  font-weight: 700;
}
.btn:hover { filter: brightness(1.08); }
.jobs { display: grid; gap: 1rem; }
.jobs article { background: var(--card); border: 1px solid var(--line); padding: 1.15rem 1.2rem; }
.jobs .muted { opacity: .9; background: #f3eee6; }
.text-cta { font-weight: 700; text-decoration: none; }
.text-cta:hover { text-decoration: underline; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--card); }
table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 46rem; }
caption { text-align: left; padding: .7rem .85rem; font-weight: 700; background: var(--hl); }
th, td { padding: .7rem .85rem; text-align: left; vertical-align: top; border-top: 1px solid var(--line); }
thead th { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
tr.hl { background: #f8ead4; }
tr.dead { color: var(--muted); text-decoration: none; }
.note, .prose p { color: var(--ink); }
.note { color: var(--muted); font-size: .92rem; }
.cta-band {
  margin: 2.4rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  max-width: var(--max);
}
.cta-band h2 { margin-top: 0; }
.faq details { border-top: 1px solid var(--line); padding: .85rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { margin: .55rem 0 0; color: var(--muted); }
footer { margin-top: 3rem; padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (min-width: 760px) {
  .jobs { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
