:root {
  color-scheme: light;
  --paper: #fcf5ec;
  --paper-deep: #f4e8d8;
  --panel: #fffaf3;
  --ink: #10283f;
  --ink-soft: #405568;
  --gold: #9b7133;
  --gold-light: #c3a270;
  --line: rgba(16, 40, 63, 0.2);
  --line-soft: rgba(16, 40, 63, 0.1);
  --night: #10283f;
  --shadow: 0 18px 52px rgba(16, 40, 63, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(155, 113, 51, 0.08), transparent 29rem),
    linear-gradient(180deg, var(--paper) 0%, #fff9f1 48%, var(--paper-deep) 100%);
  color: var(--ink);
  font-family: var(--serif);
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
img { max-width: 100%; }

.site-shell {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  padding: 26px clamp(22px, 4.75vw, 68px) 30px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-mark {
  height: clamp(76px, 8.4vw, 104px);
  width: auto;
  flex-shrink: 0;
}

.brand-sep { display: none; }

.brand-name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  transform: translateY(0.2em);
}

.brand-text { white-space: nowrap; }
.brand-text > span { color: var(--gold); margin: 0 0.1em; letter-spacing: 0; }
.brand-apos { color: var(--gold); margin-left: 0 !important; letter-spacing: 0; }
.brand small {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.47em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(1.6em);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 10px 0;
  transition: color 160ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold); }

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-top { transition: color 160ms ease; }

.nav-gold-r { color: var(--gold); }
.nav a:hover .nav-gold-r,
.nav a[aria-current="page"] .nav-gold-r { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.idea-item { padding: clamp(24px, 3vw, 36px) 0; border-bottom: 1px solid var(--line); }
.idea-item:first-child { border-top: 1px solid var(--line); }
.idea-item h2 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.idea-item p { color: var(--ink-soft); font-size: 0.975rem; line-height: 1.7; max-width: 560px; }

.section-aside-link { margin-top: clamp(32px, 4vw, 48px); }

.rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 20px 0 34px;
  color: var(--gold);
}

.rule span { height: 1px; background: var(--line); }
.rule i { font-size: 1.1rem; font-style: normal; line-height: 0; }

.eyebrow,
.section-index,
.meta-list dt,
.tag,
.text-link,
.button,
.footer-note,
.footer-top {
  font-family: var(--mono);
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 8px; }
.eyebrow span { font-size: 0.9rem; }

.display-title {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.display-title em,
.section-title em,
.pullquote em { color: var(--gold); font-style: italic; }

.lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.07rem, 1.35vw, 1.28rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.text-link:hover { color: var(--gold); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  border: 1px solid var(--ink);
  padding: 14px 18px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--paper);
  transform: translateY(-2px);
}

.button-dark { border-color: var(--paper); color: var(--paper); }
.button-dark:hover { border-color: var(--gold-light); background: var(--gold-light); color: var(--night); }

.home-hero {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(510px, 1.42fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 540px;
  padding: 0 2.8% 0 3%;
}

.home-hero h1 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.home-hero h1 em { color: var(--gold); font-style: italic; }
.home-intro { max-width: 450px; }

.hero-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 18px;
  color: var(--gold);
}

.hero-rule span { width: 100px; height: 1px; background: var(--gold); }
.hero-rule i { font-size: 0.85rem; font-style: normal; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
}

.hero-art::before {
  position: absolute;
  top: 7%;
  right: -10%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 113, 51, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-art img { position: relative; z-index: 1; width: 100%; height: auto; }

.hero-caption {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 2;
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.home-section {
  padding: clamp(20px, 2vw, 32px) 3% 0;
}

.dossier-section {
  padding: clamp(82px, 11vw, 152px) 3% 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(260px, 0.96fr) minmax(220px, 0.72fr);
  gap: clamp(18px, 3vw, 52px);
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.45rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.section-copy {
  max-width: 305px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  padding: 27px 25px 24px;
  background: rgba(255, 250, 243, 0.6);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover { border-color: rgba(155, 113, 51, 0.65); box-shadow: var(--shadow); transform: translateY(-4px); }
.card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.card .tag { margin: 0 0 30px; color: var(--gold); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.card h3 { margin: 0 0 11px; font-size: clamp(1.6rem, 2vw, 2.1rem); font-weight: 400; letter-spacing: -0.035em; line-height: 1; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.68; }
.card .text-link { margin-top: 23px; }

.card--planning { cursor: default; opacity: 0.72; }
.card--planning:hover { border-color: var(--line); box-shadow: none; transform: none; }
.card--planning::after { opacity: 0.4; }
.card-state { margin-top: 23px; font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.idler-eyebrow { margin: 0 0 8px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-family: var(--mono); }

.project-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.72fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.project-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.project-card-grid .card:first-child { grid-column: span 2; min-height: 335px; background: linear-gradient(140deg, rgba(16, 40, 63, 0.98), rgba(16, 40, 63, 0.92)); color: var(--paper); }
.project-card-grid .card:first-child p { color: rgba(252, 245, 236, 0.8); }
.project-card-grid .card:first-child .tag { color: var(--gold-light); }
.project-card-grid .card:first-child .text-link { color: var(--paper); }
.project-card-grid .card:first-child::after { border-color: var(--gold-light); }

.side-note {
  border-top: 1px solid var(--line);
  padding-top: 21px;
}

.side-note h3 { margin: 0 0 15px; font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.side-note p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.78; }
.side-note .text-link { margin-top: 17px; }

.world-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.world-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); padding: 30px 29px; background: rgba(255, 250, 243, 0.43); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.world-card:hover { border-color: rgba(155, 113, 51, 0.7); box-shadow: var(--shadow); transform: translateY(-4px); }
.world-card::after { position: absolute; right: -35px; bottom: -46px; color: rgba(155, 113, 51, 0.1); font-size: 12rem; line-height: 1; pointer-events: none; }
.world-card.flame::after { content: "✦"; }
.world-card.ashes::after { content: "◌"; }
.world-card .tag { margin: 0 0 62px; color: var(--gold); font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.world-card h3 { max-width: 390px; margin: 0 0 14px; font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; letter-spacing: -0.04em; line-height: 0.95; }
.world-card p { position: relative; max-width: 410px; margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.72; }
.world-card .text-link { position: relative; margin-top: 27px; }

/* Dossier entry */
.dossier-entry {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.3fr);
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: 0 3% clamp(64px, 8vw, 100px);
}

.dossier-entry-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.45fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(16px, 1.2vw, 22px) 0 clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid var(--line);
}

.dossier-entry-title {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.dossier-entry-title em { color: var(--gold); font-style: italic; }

/* Screenshot slot — grid placement only */
.dossier-screenshot { align-self: stretch; }

/* Placeholder when no image is set */
.dossier-screenshot-placeholder {
  height: 100%;
  min-height: 100px;
  background: rgba(155, 113, 51, 0.04);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dossier-screenshot-hint {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--line);
}

/* ── Field-plate frame ──────────────────────────────────────────────────── */

.field-plate { margin: 0; display: flex; flex-direction: column; height: 100%; }

.field-plate-frame {
  position: relative;
  flex: 1;
  border: 1px solid rgba(16, 40, 63, 0.5);
  background: rgba(16, 40, 63, 0.03);
  overflow: hidden;
}

/* Inset secondary line — clipped with the frame */
.field-plate-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(16, 40, 63, 0.1);
  z-index: 2;
  pointer-events: none;
}

.field-plate-img-link { display: block; width: 100%; height: 100%; }
.field-plate-img-link img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity 160ms ease; }
.field-plate-img-link:hover img { opacity: 0.88; }

/* Gold L-markers — on the wrap, outside the clip-path, so all four show */
.fpc {
  position: absolute;
  width: 13px;
  height: 13px;
  z-index: 3;
}
.fpc-tl { top: 9px;    left: 9px;  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.fpc-tr { top: 9px;    right: 9px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.fpc-bl { bottom: 9px; left: 9px;  border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.fpc-br { bottom: 9px; right: 9px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.field-plate-caption {
  margin: 7px 0 0;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  opacity: 0.6;
}

.dossier-entry-body { padding: clamp(28px, 3.5vw, 44px) 0 0; }
.dossier-entry-body p { margin: 0 0 16px; color: var(--ink-soft); font-size: 1rem; line-height: 1.82; }
.dossier-entry-body p:last-child { margin: 0; }

.dossier-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(28px, 3.5vw, 44px);
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 36px);
}

.dossier-meta-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.dossier-meta-item:first-child { padding-top: 0; }

.dossier-meta-label {
  margin: 0 0 4px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.dossier-meta-value { margin: 0; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.4; }

.dossier-back { margin-top: 20px; }

/* ── Lightbox ───────────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 20, 35, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  cursor: zoom-out;
}

.lightbox.is-open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: min(90vw, 1280px);
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
  transition: color 160ms ease;
}

.lightbox-close:hover { color: var(--gold); }

.progress-bar { width: 100%; height: 3px; background: var(--line); margin: 6px 0 4px; }
.progress-bar-fill { height: 100%; background: var(--gold); }
.progress-value { margin: 0; font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; color: var(--ink-soft); }

.card-progress { display: flex; align-items: center; gap: 10px; margin: 10px 0 4px; }
.card-progress .progress-bar { flex: 1; margin: 0; }

.index-hero { padding: clamp(16px, 1.2vw, 22px) 3% clamp(20px, 2vw, 32px); }
.index-hero .lede { max-width: 650px; }
.index-list { display: grid; grid-template-columns: minmax(74px, 0.16fr) minmax(240px, 0.62fr) minmax(220px, 0.75fr) auto; column-gap: clamp(16px, 3vw, 46px); row-gap: 0; }
.index-item { display: grid; grid-template-columns: subgrid; grid-column: 1 / -1; align-items: center; border-top: 1px solid var(--line); padding: 27px 0; transition: color 160ms ease; }
.index-item:last-child { border-bottom: 1px solid var(--line); }
.index-item:hover { color: var(--gold); }
.index-item .tag { margin: 0; color: var(--gold); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.index-item h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.index-item p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; }
.index-item-blurb { display: flex; flex-direction: column; gap: 10px; }
.index-item .text-link { white-space: nowrap; }

.about-section { display: grid; grid-template-columns: minmax(120px, 0.3fr) minmax(300px, 1fr) minmax(260px, 0.75fr); gap: clamp(22px, 4vw, 56px); align-items: start; padding: clamp(90px, 12vw, 165px) 3% clamp(55px, 7vw, 90px); }
.about-content { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.about-section h2 { max-width: 560px; margin: 0; font-size: clamp(1.6rem, 2.8vw, 2.75rem); font-weight: 400; letter-spacing: -0.045em; line-height: 1.08; }
.about-section h2 em { color: var(--gold); font-style: italic; }
.about-copy { max-width: 370px; margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.82; }
.contact-panel { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 40px); }
.about-icon-wrap { display: flex; align-items: flex-start; justify-content: center; padding-top: 0.5rem; }
.about-icon-svg { width: clamp(80px, 14vw, 140px); height: auto; color: var(--ink); opacity: 0.7; }

/* Idler field guide */
.idler-page { padding: 0 3% clamp(64px, 8vw, 100px); }

.idler-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.26fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.idler-hero-row { padding-top: clamp(16px, 1.2vw, 22px); }
.idler-row + .idler-row { border-top: 1px solid var(--line); }

.idler-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 5px;
}

.idler-num {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0.3;
  padding-top: 4px;
}

.idler-claim {
  max-width: 600px;
  margin: 0 0 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.idler-claim em { color: var(--gold); font-style: italic; }

.idler-copy {
  max-width: 520px;
  margin: 18px 0 20px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.idler-section-heading {
  margin: 0 0 clamp(14px, 1.8vw, 22px);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.idler-principles {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: principles;
}

.idler-principles li {
  counter-increment: principles;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--ink);
}

.idler-principles li:first-child { border-top: 1px solid var(--line); }

.idler-principles li::before {
  content: counter(principles);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 3px;
}

.idler-body-copy {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.idler-signals { margin-top: 28px; }

.idler-signals-heading {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) 1fr;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.signal-row:last-child { border-bottom: 1px solid var(--line); }
.signal-label { font-family: var(--mono); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); opacity: 0.55; padding-top: 1px; }
.signal-value { color: var(--ink-soft); }

.footer-rule { margin: 0 0 22px; }
.site-footer { padding: 0 3%; }
.footer-note,
.footer-top { margin: 0; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; line-height: 1.7; text-transform: uppercase; }
.footer-note span { color: var(--gold); }
.footer-top:hover { color: var(--gold); }

@media (max-width: 1050px) {
  .home-hero { grid-template-columns: minmax(280px, 0.85fr) minmax(400px, 1.15fr); padding-right: 0; }
  .section-heading { grid-template-columns: 130px minmax(240px, 1fr); }
  .section-copy { grid-column: 2; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid .card:first-child { grid-column: span 2; }
  .about-section { grid-template-columns: 130px minmax(280px, 1fr); }
  .about-icon-wrap { grid-column: 2; }
  .contact-panel { border-left: 0; border-top: 1px solid var(--line); padding: 21px 0 0; }
  .idler-row { grid-template-columns: 100px 1fr; }
  .index-list { grid-template-columns: 80px minmax(220px, 0.75fr) minmax(180px, 0.65fr) auto; }
}

@media (max-width: 820px) {
  .site-shell { padding: 22px 24px 28px; }
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; justify-content: space-between; }
  .home-hero { grid-template-columns: 1fr; min-height: 0; padding: 0; }
  .hero-art { order: -1; min-height: 320px; margin: -10px -2% 0; }
  .hero-caption { right: 8%; bottom: 5%; }
  .section-heading,
  .about-section,
  .idler-row { grid-template-columns: 1fr; }
  .idler-num { display: none; }
  .about-image { margin-top: 8px; }
  .section-copy { grid-column: auto; }
  .project-feature-grid { grid-template-columns: 1fr; }
  .index-list { grid-template-columns: 90px 1fr auto; }
  .index-item p, .index-item .index-item-blurb { grid-column: 2 / 4; }
  .index-item .text-link { grid-column: 2; }
}

@media (max-width: 620px) {
  .site-shell { padding: 20px 18px 26px; }
  .brand { font-size: 0; }
  .nav { gap: 13px; overflow-x: auto; padding-bottom: 4px; font-size: 0.62rem; }
  .rule { margin: 15px 0 25px; }
  .hero-art { min-height: 235px; margin-bottom: 8px; }
  .home-hero h1 { max-width: 360px; font-size: clamp(3.15rem, 15vw, 4.3rem); }
  .lede { font-size: 1rem; }
  .home-section { padding-top: 40px; }
  .dossier-section { padding-top: 76px; }
  .section-heading { gap: 13px; margin-bottom: 25px; }
  .section-title { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .card-grid,
  .project-card-grid,
  .world-card-grid { grid-template-columns: 1fr; }
  .card-grid .card:first-child,
  .project-card-grid .card:first-child { grid-column: auto; }
  .card,
  .project-card-grid .card:first-child { min-height: 0; padding: 24px 21px; }
  .world-card { min-height: 285px; padding: 25px 22px; }
  .world-card .tag { margin-bottom: 43px; }
  .display-title { font-size: clamp(2rem, 11vw, 3rem); }
  .dossier-entry { grid-template-columns: 1fr; }
  .dossier-entry-header { grid-template-columns: 1fr; }
  .dossier-sidebar { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: clamp(24px, 3vw, 36px); flex-direction: row; flex-wrap: wrap; gap: 0 32px; margin-top: clamp(24px, 3vw, 36px); }
  .dossier-meta-item { min-width: 140px; }
  .dossier-entry-title { font-size: clamp(1.8rem, 9vw, 3rem); }
  .about-section { padding-top: 88px; }
  .about-section h2 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .index-hero { padding-top: 32px; }
  .index-list { grid-template-columns: 1fr auto; }
  .index-item { gap: 10px; padding: 23px 0; }
  .index-item p,
  .index-item .index-item-blurb,
  .index-item .text-link { grid-column: 1 / 3; }
  .index-item h2 { font-size: 2rem; }
  .site-footer { gap: 12px; }
}

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

.dossier-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(16px, 2vw, 28px); margin-top: clamp(32px, 4vw, 52px); }

.uncharted-list { width: 100%; }
.idea-item { border-top: 1px solid var(--line); padding: 24px 0; display: flex; gap: 20px; align-items: flex-start; }
.idea-item:last-child { border-bottom: 1px solid var(--line); }
.idea-item h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.1; }
.idea-item p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.68; }
.idea-text { flex: 1; }
.idea-thumb-link { flex-shrink: 0; display: block; width: 80px; }
.idea-thumb { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); cursor: zoom-in; transition: opacity 160ms ease; }
.idea-thumb:hover { opacity: 0.82; }
