:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eee9dc;
  --ink-soft: #b7b4ad;
  --navy-950: #020b14;
  --navy-900: #061524;
  --navy-850: #0a1d30;
  --navy-800: #0d2842;
  --paper: #0a1826;
  --paper-deep: #06111d;
  --surface: #0d2134;
  --line: rgba(188, 151, 75, 0.32);
  --line-soft: rgba(230, 226, 213, 0.12);
  --brass: #bc974b;
  --brass-light: #ddbd70;
  --cobalt: #173f6a;
  --header-bg: rgba(3, 12, 21, 0.82);
  --shadow: rgba(0, 0, 0, 0.4);
  --image-treatment: saturate(0.93) contrast(1.04);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #14181d;
  --ink-soft: #595b5c;
  --navy-950: #f4efe4;
  --navy-900: #f8f4eb;
  --navy-850: #efe7d8;
  --navy-800: #e7dcc8;
  --paper: #f5f0e6;
  --paper-deep: #eae1d2;
  --surface: #fffaf0;
  --line: rgba(157, 113, 43, 0.42);
  --line-soft: rgba(21, 28, 35, 0.14);
  --brass: #9d712b;
  --brass-light: #b78a3c;
  --cobalt: #12385f;
  --header-bg: rgba(247, 242, 232, 0.88);
  --shadow: rgba(44, 34, 20, 0.14);
  --image-treatment: saturate(0.82) contrast(0.98);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Helvetica Neue", Arial, sans-serif;
  transition:
    background-color 420ms ease,
    color 420ms ease;
}

button,
input {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--brass);
  color: #06111d;
}

.site-shell {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  background: var(--brass);
  color: #06111d;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 92px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  padding: 0 3.5vw;
  border-bottom: 1px solid var(--line-soft);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition:
    background-color 420ms ease,
    border-color 420ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.9rem;
}

.brand-mark {
  position: relative;
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass-light);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid color-mix(in srgb, var(--brass) 55%, transparent);
  border-radius: 50%;
  transform: rotate(45deg);
}

.brand-mark::after {
  inset: 9px -4px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.brand-mark span {
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 1.35vw, 1.2rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name > span {
  color: var(--brass);
  font-size: 0.58em;
  letter-spacing: 0.2em;
  vertical-align: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.1vw, 2.2rem);
}

.main-nav a {
  position: relative;
  padding: 0.7rem 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  height: 1px;
  background: var(--brass);
  transition: inset 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  inset-inline: 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.25rem;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.theme-icon {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  line-height: 1;
}

.toggle-track {
  width: 38px;
  height: 18px;
  display: block;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.toggle-knob {
  width: 12px;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  background: var(--brass-light);
  transform: translateX(0);
  transition: transform 260ms ease;
}

:root[data-theme="light"] .toggle-knob {
  transform: translateX(20px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #03101c;
  color: #eee9dc;
}

.hero-image {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition:
    opacity 700ms ease,
    filter 700ms ease;
}

.hero-image.dark-image {
  background-image: url("../images/hero-observatory.webp");
  opacity: 1;
}

.hero-image.light-image {
  background-image: url("../images/hero-observatory-light.webp");
  opacity: 0;
}

:root[data-theme="light"] .hero-image.dark-image {
  opacity: 0;
}

:root[data-theme="light"] .hero-image.light-image {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 20, 0.97) 0%, rgba(2, 11, 20, 0.76) 36%, rgba(2, 11, 20, 0.05) 65%),
    linear-gradient(0deg, rgba(2, 9, 16, 0.58), transparent 36%);
  transition: background 600ms ease;
}

:root[data-theme="light"] .hero {
  background: #eee7da;
  color: #17191d;
}

:root[data-theme="light"] .hero::before {
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.98) 0%, rgba(247, 242, 232, 0.88) 39%, rgba(247, 242, 232, 0.03) 68%),
    linear-gradient(0deg, rgba(232, 223, 207, 0.32), transparent 35%);
}

.blueprint-grid {
  position: absolute;
  z-index: -2;
  inset: 92px 0 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(100, 165, 199, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 165, 199, 0.22) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

:root[data-theme="light"] .blueprint-grid {
  opacity: 0.08;
  filter: sepia(1);
}

.hero-content {
  width: min(50%, 800px);
  margin: 110px 0 50px 6vw;
  animation: hero-rise 800ms ease both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  color: var(--brass-light);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow > span {
  padding-right: 0.8rem;
  border-right: 1px solid currentColor;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.75vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-intro {
  max-width: 610px;
  margin: 2.1rem 0 0;
  color: rgba(238, 233, 220, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

:root[data-theme="light"] .hero-intro {
  color: rgba(23, 25, 29, 0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brass);
  color: #06111d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brass-light);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--brass);
  color: #06111d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--brass-light);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.object-caption {
  position: absolute;
  right: 4vw;
  bottom: 10vh;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.caption-line {
  width: 74px;
  height: 1px;
  margin-top: 0.45rem;
  background: var(--brass);
}

.object-caption p {
  margin: 0;
  color: rgba(238, 233, 220, 0.82);
  font-size: 0.59rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  line-height: 1.65;
  text-transform: uppercase;
}

.object-caption p span {
  display: block;
  color: var(--brass-light);
}

:root[data-theme="light"] .object-caption p {
  color: rgba(23, 25, 29, 0.75);
}

.hero-index {
  position: absolute;
  inset: auto 5vw 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: rgba(238, 233, 220, 0.46);
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index i {
  height: 1px;
  background: rgba(188, 151, 75, 0.34);
}

:root[data-theme="light"] .hero-index {
  color: rgba(23, 25, 29, 0.5);
}

.hero-rule {
  position: absolute;
  z-index: 1;
  left: 2.6vw;
  top: 22%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(188, 151, 75, 0.62);
  font-size: 0.52rem;
}

.hero-rule::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.6rem;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--brass) 0 1px,
    transparent 1px 13px
  );
  opacity: 0.4;
}

.paper-section {
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--brass) 5%, transparent), transparent 32%),
    var(--paper);
  transition: background-color 420ms ease;
}

.archive-intro,
.departments,
.manifesto,
.journal {
  padding: clamp(5.5rem, 10vw, 10rem) 6vw;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--brass);
}

.section-kicker span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
}

.section-kicker::after {
  content: "";
  width: 72px;
  height: 1px;
  order: 2;
  background: var(--line);
}

.section-kicker p {
  order: 3;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.archive-statement {
  max-width: 1450px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 8vw;
  margin-top: 4rem;
}

.large-serif {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.statement-copy {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.75;
}

.statement-copy p:last-child {
  margin-bottom: 0;
}

.departments {
  padding-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.3fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 3rem;
  max-width: 1450px;
  margin-bottom: 3.2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}

.department-card {
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 390px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition:
    border-color 180ms ease,
    transform 220ms ease,
    background-color 420ms ease;
}

.department-card:nth-child(2),
.department-card:nth-child(3) {
  grid-template-columns: 0.9fr 1.1fr;
}

.department-card:hover {
  z-index: 2;
  border-color: var(--line);
  transform: translateY(-5px);
}

.department-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy-900);
}

.department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-treatment);
  transition:
    transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
    filter 420ms ease;
}

.department-card:hover .department-image img {
  transform: scale(1.035);
}

.department-image > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(4, 13, 22, 0.68);
  border-radius: 50%;
  color: #eee9dc;
  font-family: Georgia, serif;
  font-size: 0.7rem;
  backdrop-filter: blur(8px);
}

.department-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.7rem, 3vw, 3.3rem);
}

.department-copy h3 {
  margin: 0 0 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: 400;
}

.department-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.65;
}

.department-copy > span {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  color: var(--brass);
}

.feature-section {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, 0.72fr);
  background: var(--paper-deep);
}

.feature-media {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: #03101c;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset -80px 0 110px rgba(2, 11, 20, 0.28);
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.feature-blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(rgba(116, 173, 203, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 173, 203, 0.25) 1px, transparent 1px);
  background-size: 80px 80px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem);
}

.feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.feature-subtitle {
  margin: 0.8rem 0 2.6rem;
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.drop-cap {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.8;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.11em 0.15em 0 0;
  color: var(--brass-light);
  font-size: 4em;
  line-height: 0.72;
}

.object-specs {
  margin: 2.6rem 0;
  border-top: 1px solid var(--line-soft);
}

.object-specs div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.object-specs dt {
  color: var(--brass);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.object-specs dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.feature-copy .button {
  align-self: flex-start;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.manifesto-layout > div {
  position: relative;
  min-height: 350px;
  padding: clamp(2rem, 4vw, 4.5rem);
  background: var(--paper);
}

.manifesto-number {
  margin: 0 0 4.5rem;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.manifesto-layout h2 {
  max-width: 330px;
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.manifesto-layout > div > p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

.architecture-story {
  position: relative;
  height: min(860px, 78vw);
  min-height: 620px;
  color: #f4efe4;
  overflow: hidden;
}

.architecture-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 9, 15, 0.82), rgba(1, 9, 15, 0.05) 68%),
    linear-gradient(0deg, rgba(1, 9, 15, 0.55), transparent 55%);
}

.architecture-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.architecture-story:hover > img {
  transform: scale(1.025);
}

.architecture-overlay {
  position: absolute;
  z-index: 2;
  left: 6vw;
  bottom: 10%;
  max-width: 620px;
}

.architecture-overlay h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.architecture-overlay > p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.6rem 0 2rem;
  color: rgba(244, 239, 228, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.light-link {
  color: #f4efe4;
}

.journal-heading {
  grid-template-columns: 1fr 1.35fr auto;
}

.journal-heading .text-link {
  justify-self: end;
}

.journal-list {
  border-top: 1px solid var(--line);
}

.journal-entry {
  display: grid;
  grid-template-columns: 65px 1fr auto 22px;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding 220ms ease;
}

.journal-entry:hover {
  padding-inline: 1rem;
}

.entry-number {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 0.75rem;
}

.journal-entry p {
  margin: 0 0 0.5rem;
  color: var(--brass);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.journal-entry h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.journal-entry time {
  color: var(--ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-entry > span:last-child {
  color: var(--brass);
}

.dispatches {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 8vw;
  padding: clamp(5rem, 9vw, 9rem) 6vw;
  border-top: 1px solid rgba(188, 151, 75, 0.25);
  border-bottom: 1px solid rgba(188, 151, 75, 0.25);
  background:
    radial-gradient(circle at 78% 15%, rgba(27, 67, 106, 0.62), transparent 32%),
    #061523;
  color: #eee9dc;
}

.dispatches h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.dispatches > div > p:last-child {
  max-width: 620px;
  color: rgba(238, 233, 220, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.7;
}

.dispatch-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--brass-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dispatch-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(221, 189, 112, 0.68);
}

.dispatch-form input {
  min-width: 0;
  padding: 1rem 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #eee9dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.dispatch-form input::placeholder {
  color: rgba(238, 233, 220, 0.38);
}

.dispatch-form button {
  padding: 0 0.4rem 0 2rem;
  border: 0;
  background: transparent;
  color: var(--brass-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.dispatch-form small {
  display: block;
  margin-top: 0.8rem;
  color: rgba(238, 233, 220, 0.42);
  font-size: 0.65rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 6vw;
  background: var(--paper-deep);
  color: var(--ink-soft);
}

.footer-brand {
  color: var(--ink);
}

.site-footer > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.site-footer > div {
  display: flex;
  gap: 1.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 1rem 4vw;
    border-bottom: 1px solid var(--line-soft);
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    transform: translateY(-140%);
    transition: transform 240ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.9rem;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    width: 58%;
  }

  .section-heading {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .section-heading > p {
    display: none;
  }

  .department-card {
    min-height: 330px;
  }

  .feature-section {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 76px;
    padding-inline: 1.2rem;
  }

  .brand-mark {
    width: 36px;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  .main-nav {
    inset: 76px 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-icon {
    display: none;
  }

  .hero {
    min-height: 870px;
    align-items: flex-end;
  }

  .hero-image {
    background-size: auto 72%;
    background-position: 74% 16%;
    background-repeat: no-repeat;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 11, 20, 0.98) 0%, rgba(2, 11, 20, 0.82) 44%, rgba(2, 11, 20, 0.02) 77%),
      linear-gradient(90deg, rgba(2, 11, 20, 0.4), transparent 70%);
  }

  :root[data-theme="light"] .hero::before {
    background:
      linear-gradient(0deg, rgba(247, 242, 232, 0.99) 0%, rgba(247, 242, 232, 0.9) 47%, rgba(247, 242, 232, 0.04) 79%),
      linear-gradient(90deg, rgba(247, 242, 232, 0.4), transparent 70%);
  }

  .hero-content {
    width: auto;
    margin: 0 1.5rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .object-caption,
  .hero-rule,
  .hero-index {
    display: none;
  }

  .archive-intro,
  .departments,
  .manifesto,
  .journal {
    padding-inline: 1.5rem;
  }

  .archive-statement,
  .section-heading,
  .dispatches {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .department-grid {
    display: block;
  }

  .department-card {
    margin-bottom: 1rem;
  }

  .feature-section {
    display: block;
  }

  .feature-media {
    min-height: 540px;
  }

  .feature-copy {
    padding: 5rem 1.5rem;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-layout > div {
    min-height: 280px;
  }

  .manifesto-number {
    margin-bottom: 2.5rem;
  }

  .architecture-story {
    height: 720px;
  }

  .architecture-story > img {
    object-position: 62% center;
  }

  .architecture-overlay {
    left: 1.5rem;
    right: 1.5rem;
  }

  .journal-heading .text-link {
    justify-self: start;
  }

  .journal-entry {
    grid-template-columns: 42px 1fr 18px;
    gap: 1rem;
  }

  .journal-entry time {
    display: none;
  }

  .dispatches {
    padding-inline: 1.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1.5rem;
  }
}

@media (max-width: 560px) {
  .brand-name {
    max-width: 150px;
    white-space: normal;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .eyebrow {
    font-size: 0.55rem;
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .department-card {
    display: block;
  }

  .department-image {
    height: 260px;
  }

  .department-copy {
    min-height: 220px;
  }

  .feature-media {
    min-height: 420px;
  }

  .feature-media img {
    object-position: 67% center;
  }

  .architecture-story {
    min-height: 650px;
  }

  .architecture-overlay h2 {
    font-size: 3.4rem;
  }

  .dispatch-form > div {
    display: block;
  }

  .dispatch-form button {
    padding: 0.8rem 0;
  }
}

.main-nav-list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-bar .site-header {
  top: 32px;
}

.content-page {
  min-height: 72vh;
  padding: clamp(8.5rem, 13vw, 12rem) 6vw clamp(5rem, 9vw, 9rem);
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--brass) 5%, transparent), transparent 32%),
    var(--paper);
}

.content-narrow {
  width: min(100%, 860px);
  margin-inline: auto;
}

.content-wide {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.article-header {
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--line);
}

.article-kicker,
.archive-card-meta {
  margin: 0 0 1rem;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-header h1,
.listing-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.article-deck {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.7;
}

.article-cover {
  margin: 3rem 0;
}

.article-cover img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.article-body {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.85;
}

.article-body h2,
.article-body h3 {
  margin: 2.4em 0 0.65em;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-body h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.article-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.article-body a {
  color: var(--brass);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.article-body blockquote {
  margin: 2.4rem 0;
  padding: 0.2rem 0 0.2rem 2rem;
  border-left: 1px solid var(--brass);
  color: var(--ink-soft);
  font-size: 1.25em;
  font-style: italic;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3rem;
}

.article-tags a {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.listing-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.listing-header > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.archive-card {
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.archive-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.archive-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.025);
}

.archive-card-copy {
  padding: 1.6rem;
}

.archive-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.12;
}

.archive-card-excerpt {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.archive-pagination {
  margin-top: 3rem;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
}

.archive-pagination a,
.archive-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
}

.archive-pagination .current {
  border-color: var(--brass);
  color: var(--brass);
}

.newsletter-status {
  min-height: 1.2em;
  margin-top: 0.8rem;
  color: var(--brass-light);
  font-size: 0.68rem;
}

.empty-archive {
  padding: 4rem;
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 860px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .listing-header,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .content-page {
    padding-inline: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
