/* Fieldlight Institute homepage */
:root {
  --night: #071a23;
  --navy: #102433;
  --ink: #0b2230;
  --paper: #f2ecdf;
  --cream: #fff8ec;
  --muted: #aab1ad;
  --line-dark: rgba(255, 248, 236, 0.2);
  --line-light: rgba(11, 34, 48, 0.22);
  --gold: #d7aa4b;
  --violet: #8267dc;
  --coral: #eb5b4d;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --book: "Iowan Old Style", Baskerville, "Baskerville Old Face", "Palatino Linotype", Georgia, serif;
  --didot: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

.institution-home h1,
.institution-home h2,
.institution-home h3,
.institution-home p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

.no-break {
  white-space: nowrap;
}

.masthead {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 15px clamp(24px, 4.8vw, 88px);
  color: var(--ink);
  background: rgba(248, 245, 238, 0.96);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: var(--didot);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
}

.masthead nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 42px);
  color: #56616b;
  font-size: 13px;
}

.masthead nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.masthead nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--violet);
}

.entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 26% 78%, rgba(52, 119, 101, 0.3), transparent 35%),
    linear-gradient(112deg, #061a21 0%, #102131 58%, #281e2f 100%);
}

.entry::before,
.home-room::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(215, 170, 75, 0.07) calc(8.333% - 1px), rgba(215, 170, 75, 0.07) 8.333%);
}

.entry-copy,
.entry-image {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.entry-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 154px) clamp(34px, 6vw, 116px);
}

.location,
.home-label,
.call-number {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.location {
  color: var(--gold);
}

.entry h1 {
  max-width: 850px;
  margin: 30px 0 32px;
  color: var(--cream);
  font-size: clamp(58px, 6.9vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.058em;
}

.entry h1 span {
  display: block;
  margin-top: 0.22em;
  color: #c9c2bc;
  font-family: var(--book);
  font-size: 0.48em;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.entry-deck {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 248, 236, 0.68);
  font-family: var(--book);
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.42;
}

.entry-link {
  align-self: flex-start;
  margin-top: 34px;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--violet);
}

.entry-image {
  align-self: end;
  height: min(78vh, 860px);
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.entry-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  max-width: 390px;
  padding: 9px 11px;
  color: rgba(255, 248, 236, 0.76);
  background: rgba(7, 26, 35, 0.84);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.catalog {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 150px);
  padding: clamp(88px, 10vw, 160px) clamp(34px, 7vw, 136px);
  background: var(--paper);
  scroll-margin-top: 78px;
}

.catalog-heading h2,
.home-room h2,
.home-preview-copy h2,
.home-about h2 {
  margin: 22px 0 0;
  font-family: var(--book);
  font-size: clamp(48px, 6vw, 98px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.home-section-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(360px, 1.05fr) minmax(300px, 0.67fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(72px, 8vw, 128px) clamp(34px, 7vw, 136px);
  border-bottom: 1px solid var(--line-light);
}

.home-section-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(215, 170, 75, 0.06) calc(8.333% - 1px), rgba(215, 170, 75, 0.06) 8.333%);
}

.home-section-preview > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-institute-preview,
.home-writing-preview,
.home-continuity-preview {
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 18%, rgba(130, 103, 220, 0.14), transparent 30%),
    var(--night);
  border-bottom-color: var(--line-dark);
}

.home-institute-preview h2,
.home-writing-preview h2,
.home-continuity-preview h2 {
  color: var(--cream);
}

.home-systems-preview,
.home-story-preview {
  color: var(--ink);
  background: var(--paper);
}

.home-systems-preview h2,
.home-story-preview h2 {
  color: var(--ink);
}

.home-story-preview {
  background:
    radial-gradient(circle at 12% 80%, rgba(130, 103, 220, 0.09), transparent 28%),
    var(--paper);
}

.home-preview-marker {
  align-self: start;
  margin: 0;
  font-family: var(--book);
  font-size: 18px;
  line-height: 1.2;
}

.home-preview-marker span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-systems-preview .home-preview-marker span,
.home-story-preview .home-preview-marker span {
  color: var(--violet);
}

.home-preview-copy h2 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(43px, 4.7vw, 76px);
  text-wrap: balance;
}

.home-preview-copy > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 248, 236, 0.64);
  font-family: var(--book);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.48;
}

.home-systems-preview .home-preview-copy > p:last-child,
.home-story-preview .home-preview-copy > p:last-child {
  color: #5d676a;
}

.home-preview-actions {
  display: grid;
  gap: 30px;
  align-content: center;
}

.home-preview-enter {
  width: fit-content;
  padding-bottom: 7px;
  color: inherit;
  border-bottom: 2px solid var(--violet);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-institute-preview .home-preview-enter,
.home-writing-preview .home-preview-enter,
.home-continuity-preview .home-preview-enter {
  border-bottom-color: var(--gold);
}

.home-preview-feature {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  color: inherit;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.home-institute-preview .home-preview-feature,
.home-writing-preview .home-preview-feature,
.home-continuity-preview .home-preview-feature {
  border-color: rgba(255, 248, 236, 0.22);
}

.home-systems-preview .home-preview-feature,
.home-story-preview .home-preview-feature {
  border-color: var(--line-light);
}

.home-preview-feature span,
.home-preview-feature i {
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-systems-preview .home-preview-feature span,
.home-systems-preview .home-preview-feature i,
.home-story-preview .home-preview-feature span,
.home-story-preview .home-preview-feature i {
  color: var(--violet);
}

.home-preview-feature strong {
  font-family: var(--book);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.15;
}

.home-preview-feature i {
  justify-self: end;
}

.home-consequence-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(54px, 8vw, 140px);
  overflow: hidden;
  padding: clamp(82px, 9vw, 142px) clamp(34px, 7vw, 136px);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 88%, rgba(235, 91, 77, 0.12), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.home-consequence-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(11, 34, 48, 0.06) calc(50% - 1px), rgba(11, 34, 48, 0.06) 50%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(11, 34, 48, 0.045) calc(8.333% - 1px), rgba(11, 34, 48, 0.045) 8.333%);
}

.home-consequence-preview > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-label.coral {
  color: var(--coral);
}

.home-consequence-heading h2 {
  margin: 22px 0 0;
  font-family: var(--book);
  font-size: clamp(55px, 6.7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.home-consequence-heading h2 span {
  display: block;
  margin-top: 0.15em;
  color: var(--coral);
  font-family: var(--didot);
  font-style: italic;
  letter-spacing: -0.04em;
}

.home-consequence-heading > p:not(.home-label) {
  max-width: 640px;
  margin: 34px 0 0;
  color: #5d676a;
  font-family: var(--book);
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.45;
}

.home-consequence-enter {
  display: inline-block;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-consequence-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.home-consequence-routes a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  gap: 16px 20px;
  min-height: 238px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, background 180ms ease;
}

.home-consequence-routes a:hover {
  color: var(--cream);
  background: var(--ink);
}

.home-consequence-routes span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.home-consequence-routes strong {
  grid-column: 1;
  font-family: var(--book);
  font-size: clamp(31px, 3vw, 49px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.home-consequence-routes p {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  color: #5d676a;
  font-size: 15px;
  line-height: 1.45;
}

.home-consequence-routes a:hover p {
  color: rgba(255, 248, 236, 0.7);
}

.home-consequence-routes i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--coral);
  font-family: var(--book);
  font-size: 25px;
  font-style: normal;
}

.catalog-paths {
  border-top: 1px solid var(--line-light);
}

.catalog-paths a {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(160px, 0.55fr) minmax(220px, 1fr) 28px;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line-light);
  transition: padding 180ms ease, background 180ms ease;
}

.catalog-paths a:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(130, 103, 220, 0.07);
}

.catalog-paths span,
.publication-number {
  color: var(--violet);
  font-family: var(--book);
  font-size: 18px;
}

.publication-number {
  white-space: nowrap;
}

.catalog-paths strong {
  font-family: var(--book);
  font-size: 25px;
  font-weight: 600;
}

.catalog-paths p {
  margin: 0;
  color: #687177;
  font-size: 14px;
}

.catalog-paths i,
.publication-register i {
  font-style: normal;
}

.home-room {
  position: relative;
  display: grid;
  grid-template-columns: clamp(200px, 16vw, 300px) minmax(0, 1fr);
  min-height: 100vh;
  overflow: clip;
  scroll-margin-top: 78px;
}

.room-marker {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 138px) clamp(26px, 3vw, 54px);
  border-right: 1px solid var(--line-dark);
}

.room-marker p {
  position: sticky;
  top: 120px;
  margin: 0;
  font-family: var(--book);
  max-width: 100%;
  font-size: clamp(25px, 2vw, 36px);
  white-space: nowrap;
}

.room-marker span {
  position: sticky;
  top: 172px;
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.room-content {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 138px) clamp(34px, 7vw, 136px);
}

.room-intro {
  max-width: 1150px;
}

.room-intro h2 {
  max-width: 1080px;
}

.gold {
  color: var(--gold);
}

.violet {
  color: var(--violet);
}

.research-room,
.systems-room,
.writing-room {
  --ink: var(--cream);
  color: var(--cream);
  background: var(--night);
}

.research-room {
  background:
    radial-gradient(circle at 82% 12%, rgba(130, 103, 220, 0.14), transparent 32%),
    var(--night);
}

.research-stacks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: clamp(64px, 8vw, 122px);
  background: transparent;
}

.research-stacks article {
  min-height: 550px;
  padding: clamp(38px, 5vw, 78px);
  background: rgba(7, 26, 35, 0.96);
  border: 1px solid var(--line-dark);
}

.research-stacks article:nth-child(2) {
  transform: translateY(44px);
  background: #0b202b;
  border-left: 0;
}

.call-number {
  color: var(--gold);
}

.research-stacks h3,
.system-shelves h3 {
  margin: 34px 0 26px;
  font-family: var(--book);
  font-size: clamp(39px, 4vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.question {
  color: rgba(255, 248, 236, 0.74);
  font-family: var(--book);
  font-size: 22px;
  line-height: 1.4;
}

.research-stacks ul {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.research-stacks li {
  padding: 12px 0;
  color: rgba(255, 248, 236, 0.64);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.research-stacks a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.research-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.research-actions a + a {
  color: rgba(255, 248, 236, 0.5);
}

.research-outputs {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 120px);
  margin-top: clamp(110px, 12vw, 190px);
  padding-top: clamp(48px, 6vw, 86px);
  border-top: 1px solid var(--line-dark);
}

.research-outputs h3 {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--cream);
  font-family: var(--book);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.04;
}

.research-outputs > div {
  border-top: 1px solid var(--line-dark);
}

.research-outputs a {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line-dark);
}

.research-outputs a span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-outputs a strong {
  font-family: var(--book);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
}

.research-outputs a i {
  color: rgba(255, 248, 236, 0.5);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.systems-room {
  background: linear-gradient(112deg, #102433 0%, #102433 58%, #211c2d 100%);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(44px, 8vw, 140px);
  align-items: end;
}

.split-intro > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: rgba(255, 248, 236, 0.64);
  font-family: var(--book);
  font-size: 20px;
}

.system-shelves {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: clamp(64px, 8vw, 120px);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.system-shelves article {
  min-height: 280px;
  padding: clamp(30px, 4vw, 60px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.system-shelves .system-feature {
  grid-row: span 2;
  min-height: 560px;
}

.system-shelves p:not(.call-number) {
  max-width: 650px;
  color: rgba(255, 248, 236, 0.63);
}

.system-shelves article:not(.system-feature) h3 {
  margin: 26px 0 18px;
  font-size: clamp(30px, 3vw, 48px);
}

.status-line {
  display: flex;
  gap: 14px;
  margin-top: 44px;
}

.status-line span {
  padding: 7px 10px;
  color: var(--cream);
  border: 1px solid var(--violet);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-actions,
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
}

.system-actions a,
.system-link,
.about-links a {
  padding-bottom: 4px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--violet);
}

.system-link {
  display: inline-block;
  margin-top: 24px;
}

.publication-room {
  background: var(--paper);
}

.publication-room::before {
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(11, 34, 48, 0.055) calc(8.333% - 1px), rgba(11, 34, 48, 0.055) 8.333%);
}

.dark-marker {
  border-right-color: var(--line-light);
}

.publication-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 20px 80px;
  align-items: end;
}

.publication-intro .home-label {
  grid-column: 1 / -1;
}

.publication-intro p:last-child {
  margin: 0 0 7px;
  color: #667077;
  font-family: var(--book);
  font-size: 20px;
}

.publication-register {
  margin-top: clamp(64px, 8vw, 118px);
  border-top: 1px solid var(--line-light);
}

.publication-register a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 80px;
  gap: 34px;
  align-items: center;
  min-height: 144px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--line-light);
  transition: background 160ms ease, padding 160ms ease;
}

.publication-register a:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(130, 103, 220, 0.07);
}

.publication-register p {
  margin: 0 0 5px;
  color: #6c7478;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication-register strong {
  font-family: var(--book);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 500;
}

.publication-register i {
  justify-self: end;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.essay-source,
.story-worlds-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--violet);
}

.writing-room {
  background: #0b202b;
}

.story-worlds-room {
  background:
    radial-gradient(circle at 78% 18%, rgba(130, 103, 220, 0.15), transparent 30%),
    #0b202b;
}

.world-shelves {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 118px);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.world-shelves > * {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(34px, 4vw, 62px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.world-shelves .world-feature {
  background: rgba(130, 103, 220, 0.08);
}

.world-shelves span {
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-shelves strong {
  margin-top: 20px;
  color: var(--cream);
  font-family: var(--book);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.world-shelves p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 248, 236, 0.66);
  font-family: var(--book);
  font-size: 19px;
}

.world-shelves i {
  margin-top: auto;
  padding-top: 34px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-worlds-link {
  color: var(--cream);
}

.archive-index {
  margin-top: clamp(64px, 8vw, 118px);
  border-top: 1px solid var(--line-dark);
}

.archive-index a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 80px;
  gap: 24px;
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line-dark);
}

.archive-index span {
  color: var(--violet);
  font-family: var(--book);
  font-size: 18px;
}

.archive-index strong {
  font-family: var(--book);
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
}

.archive-index i {
  justify-self: end;
  color: rgba(255, 248, 236, 0.45);
  font-size: 11px;
  font-style: normal;
}

.home-about {
  --ink: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(54px, 6vw, 118px);
  padding: clamp(90px, 11vw, 180px) clamp(34px, 7vw, 136px);
  color: var(--cream);
  background: linear-gradient(112deg, #071a23 0%, #102433 68%, #241d2c 100%);
  border-top: 1px solid var(--line-dark);
  scroll-margin-top: 78px;
}

.home-about h2 {
  max-width: 900px;
  font-size: clamp(48px, 5.2vw, 88px);
}

.home-about > *,
.home-about .about-copy {
  min-width: 0;
}

.home-about .about-copy {
  display: block;
  align-self: center;
  width: 100%;
  max-width: 720px;
  color: rgba(255, 248, 236, 0.67);
  font-family: var(--book);
  font-size: 20px;
}

.home-about .about-copy p {
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 248, 236, 0.67);
  font-size: 20px;
  line-height: 1.55;
}

.home-about .about-copy p:first-child {
  color: var(--cream);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
}

.about-copy .entry-link {
  font-family: var(--sans);
  color: var(--cream);
}

.about-links a {
  font-family: var(--sans);
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.5fr) auto;
  gap: clamp(30px, 6vw, 110px);
  align-items: start;
  padding: 30px clamp(34px, 7vw, 136px);
  color: rgba(255, 248, 236, 0.58);
  background: #06161d;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-footer p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 248, 236, 0.58);
  font-size: 11px;
  letter-spacing: 0.015em;
  line-height: 1.65;
  text-transform: none;
}

.home-footer > span {
  white-space: nowrap;
}

.home-footer strong {
  color: var(--cream);
  font-family: var(--didot);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1280px) {
  .research-stacks {
    grid-template-columns: 1fr;
  }

  .research-stacks article:nth-child(2) {
    transform: none;
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }
}

@media (max-width: 980px) {
  .entry {
    grid-template-columns: 1fr;
  }

  .entry-image {
    width: 78%;
    height: 48vh;
  }

  .catalog {
    grid-template-columns: 1fr;
  }

  .home-room {
    display: block;
    min-height: auto;
  }

  .home-section-preview {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .home-preview-actions {
    grid-column: 2;
  }

  .room-marker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(22px, 5vw, 48px);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .publication-room .room-marker {
    border-bottom-color: var(--line-light);
  }

  .room-marker p,
  .room-marker span {
    position: static;
    margin: 0;
  }

  .research-stacks,
  .research-outputs,
  .world-shelves,
  .split-intro,
  .publication-intro,
  .home-about {
    grid-template-columns: 1fr;
  }

  .home-consequence-preview {
    grid-template-columns: 1fr;
  }

  .research-stacks article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 700px) {
  .masthead {
    position: relative;
    display: block;
    padding: 19px 20px 15px;
  }

  .wordmark {
    display: block;
    margin-bottom: 18px;
    font-size: 25px;
  }

  .masthead nav {
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
    scrollbar-width: none;
  }

  .entry {
    min-height: auto;
  }

  .entry-copy {
    min-height: 72vh;
    padding: 64px 22px 54px;
  }

  .entry h1 {
    margin-top: 25px;
    font-size: clamp(52px, 15vw, 72px);
    overflow-wrap: normal;
  }

  .entry h1 span {
    margin-top: 0.28em;
    font-size: 0.5em;
  }

  .entry-deck {
    font-size: 20px;
  }

  .entry-image {
    width: calc(100% - 22px);
    height: 48vh;
    margin-left: 22px;
  }

  .catalog {
    gap: 46px;
    padding: 74px 22px 86px;
  }

  .catalog-heading h2,
  .home-room h2,
  .home-preview-copy h2,
  .home-about h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .home-section-preview {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 68px 24px 76px;
  }

  .home-consequence-preview {
    gap: 54px;
    padding: 72px 22px 82px;
  }

  .home-consequence-heading h2 {
    font-size: clamp(56px, 17vw, 82px);
  }

  .home-consequence-routes {
    grid-template-columns: 1fr;
  }

  .home-consequence-routes a {
    min-height: 205px;
  }

  .home-preview-marker {
    display: flex;
    gap: 16px;
    align-items: baseline;
  }

  .home-preview-marker span {
    margin: 0;
  }

  .home-preview-copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .home-preview-actions {
    grid-column: 1;
  }

  .catalog-paths a {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 118px;
  }

  .catalog-paths p {
    grid-column: 2 / 4;
  }

  .catalog-paths i {
    grid-column: 3;
    grid-row: 1;
  }

  .home-room {
    display: block;
    min-height: auto;
  }

  .room-marker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .publication-room .room-marker {
    border-bottom-color: var(--line-light);
  }

  .room-marker p,
  .room-marker span {
    position: static;
    margin: 0;
  }

  .room-marker p {
    font-size: 22px;
  }

  .room-content {
    padding: 66px 22px 84px;
  }

  .research-stacks {
    display: block;
    margin-top: 58px;
  }

  .research-stacks article {
    min-height: 0;
    padding: 38px 26px 48px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .research-stacks article:last-child {
    border-bottom: 0;
  }

  .research-stacks h3,
  .system-shelves h3 {
    font-size: 42px;
  }

  .question {
    font-size: 19px;
  }

  .research-outputs {
    gap: 38px;
    margin-top: 86px;
  }

  .research-outputs a {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .research-outputs a i {
    display: none;
  }

  .split-intro {
    gap: 34px;
  }

  .split-intro > p {
    font-size: 18px;
  }

  .system-shelves {
    display: block;
    margin-top: 58px;
  }

  .system-shelves article,
  .system-shelves .system-feature {
    min-height: 0;
    padding: 38px 26px 46px;
  }

  .publication-intro {
    gap: 34px;
  }

  .publication-register {
    margin-top: 58px;
  }

  .publication-register a {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    min-height: 132px;
    padding: 22px 0;
  }

  .publication-register i {
    display: none;
  }

  .publication-register strong {
    font-size: 25px;
    line-height: 1.15;
  }

  .archive-index a {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 104px;
  }

  .archive-index i {
    display: none;
  }

  .archive-index strong {
    font-size: 24px;
    line-height: 1.15;
  }

  .world-shelves > * {
    min-height: 0;
    padding: 38px 26px 46px;
  }

  .world-shelves strong {
    font-size: 42px;
  }

  .home-about {
    gap: 52px;
    padding: 80px 22px 90px;
  }

  .home-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 22px 38px;
  }
}

@media (max-width: 360px) {
  .entry h1 {
    font-size: 46px;
  }

  .research-stacks h3,
  .system-shelves h3 {
    font-size: 36px;
  }

  .publication-register strong {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
