@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;1,9..144,600;1,9..144,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;1,400&display=swap");

:root {
  --abyss: #071014;
  --river: #121c22;
  --ochre: #c17a3a;
  --limestone: #ede6d8;
  --sage: #8a9a8e;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --measure: 40rem;
  --pad-section: clamp(6rem, 10vw, 8.75rem);
  --hairline: 1px solid var(--ochre);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  background: var(--abyss);
  color: var(--limestone);
}

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

a {
  color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

::selection {
  background: #c17a3a;
  color: #071014;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.05rem, 3.4vw, 3.15rem);
  max-width: 18ch;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0.7;
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-variation-settings: "opsz" 48, "SOFT" 20, "WONK" 0.4;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 1rem;
}

.surface-abyss {
  background: #071014;
  color: #ede6d8;
}

.surface-river {
  background: #121c22;
  color: #ede6d8;
}

.surface-limestone {
  background: #ede6d8;
  color: #071014;
}

.surface-ochre {
  background: #c17a3a;
  color: #071014;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.5rem 0.9rem;
  z-index: 1000;
}

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

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.measure {
  max-width: var(--measure);
}

.hairline {
  border: 0;
  border-top: var(--hairline);
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: var(--hairline);
  background: #071014;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: #c17a3a;
  color: #071014;
  border-color: #c17a3a;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 20, 0.12);
}

.btn-ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

.btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 1.25rem;
  row-gap: 0;
  padding: 1.25rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero-spine {
  position: absolute;
  left: 0.35rem;
  top: 42%;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  z-index: 3;
}

.hero-eyebrow {
  grid-column: 1 / -1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: var(--hairline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-year {
  color: var(--ochre);
}

.hero-copy {
  width: min(1180px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: 0;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  padding: 3rem 0 5.5rem;
  padding-left: max(2.4rem, calc((100vw - 1180px) / 2 + 1.2rem));
  max-width: 38rem;
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  max-width: none;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  font-variation-settings: normal;
}

.hero-display {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.85rem, 5.2vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--limestone);
  margin-bottom: 0.85rem;
  max-width: 8ch;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
}

.hero-slogan {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 22ch;
  color: rgba(237, 230, 216, 0.88);
  font-variation-settings: "opsz" 36, "SOFT" 20, "WONK" 0.3;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--ochre);
}

.hero-sub {
  max-width: 34rem;
  color: rgba(237, 230, 216, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-photo {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  justify-self: end;
  width: min(90%, 500px);
  margin: 0 5% 1.6rem 0;
  position: relative;
  z-index: 2;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.15rem -1.15rem 1.1rem;
  border: 1px solid var(--ochre);
  z-index: -1;
}

.hero-photo img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
  border: var(--hairline);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  height: min(58vh, 520px);
  background: linear-gradient(180deg, transparent 46%, rgba(7, 16, 20, 0.42));
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: -1.35rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-trust {
  grid-column: 1 / -1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 0.85rem 0 1.1rem;
  border-top: var(--hairline);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  position: relative;
  z-index: 1;
}

.header-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-open,
.nav-close {
  display: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid currentColor;
  padding: 0.4rem 0.7rem;
}

.site-nav ul {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

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

.section {
  padding: var(--pad-section) 0;
  position: relative;
}

.section + .section {
  border-top: var(--hairline);
}

.opening-desk {
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}

.opening-desk p {
  font-size: 1.12rem;
  line-height: 1.85;
}

.opening-desk p::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.72;
  padding-right: 0.4rem;
  padding-top: 0.18rem;
  color: var(--ochre);
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.civic-spine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  counter-reset: spine;
}

.civic-spine span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  padding: 2.1rem 1.1rem 1.7rem;
  text-align: left;
  border-right: var(--hairline);
  position: relative;
  counter-increment: spine;
  font-variation-settings: "opsz" 48, "WONK" 0.8;
}

.civic-spine span::before {
  content: counter(spine, decimal-leading-zero);
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ochre);
  margin-bottom: 0.55rem;
}

.civic-spine span:last-child {
  border-right: 0;
}

.slab {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: var(--hairline);
}

.slab:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.slab:nth-child(even) > div:first-child {
  order: 2;
}

.slab-index {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  font-weight: 700;
  color: rgba(193, 122, 58, 0.18);
  line-height: 0.72;
  letter-spacing: -0.06em;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.slab figure {
  position: relative;
}

.slab figure::after {
  content: "";
  position: absolute;
  inset: 0.75rem -0.75rem -0.75rem 0.75rem;
  border: 1px solid var(--ochre);
  z-index: -1;
}

.slab img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: var(--hairline);
  position: relative;
  z-index: 1;
}

.pullquote {
  padding: var(--pad-section) 0;
  position: relative;
}

.pullquote::before {
  content: "«";
  position: absolute;
  left: max(0.5rem, calc((100vw - 1180px) / 2 - 0.4rem));
  top: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 10rem);
  line-height: 0.7;
  color: rgba(193, 122, 58, 0.16);
  font-variation-settings: "opsz" 144, "WONK" 1;
  pointer-events: none;
}

.pullquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.32;
  font-weight: 600;
  max-width: 38rem;
  font-variation-settings: "opsz" 60, "SOFT" 50, "WONK" 0.9;
}

.essay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.6rem 1.9rem;
  border: var(--hairline);
  min-height: 16.5rem;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 8px 10px 0 rgba(7, 16, 20, 0.04);
}

.btn-more {
  margin-top: 1.15rem;
  align-self: flex-start;
  min-height: 2.35rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.72rem;
}

.essay-card .btn-more {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.slab-copy .btn-more {
  margin-top: 1.35rem;
}

.essay-card.surface-limestone {
  background-color: #f3ece0;
  background-image: linear-gradient(180deg, rgba(255, 252, 245, 0.55), transparent 42%);
}

.essay-card .num {
  position: absolute;
  right: 0.15rem;
  top: -0.45rem;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(193, 122, 58, 0.16);
  line-height: 1;
  pointer-events: none;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.cta-hybrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 28rem;
  position: relative;
}

.cta-hybrid img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.86);
}

.cta-hybrid-copy {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cta-hybrid-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--ochre);
}

.page-intro h1 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}

.photo-inline {
  margin: 2rem 0;
  position: relative;
}

.photo-inline::before {
  content: "";
  position: absolute;
  inset: 0.7rem -0.7rem -0.7rem 0.7rem;
  border: 1px solid var(--ochre);
  z-index: 0;
}

.photo-inline img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: var(--hairline);
  position: relative;
  z-index: 1;
}

.faq-list summary,
.mini-faq summary {
  position: relative;
  padding-right: 2rem;
}

.faq-list summary::after,
.mini-faq summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0.15em;
  font-size: 0.7em;
  color: var(--ochre);
  font-style: normal;
  font-family: var(--font-body);
}

.faq-list details[open] summary::after,
.mini-faq details[open] summary::after {
  content: "–";
}

.slabs {
  display: grid;
  gap: 0;
}

.slab:last-child {
  border-bottom: 0;
}

.slab-copy h2 {
  margin-bottom: 1rem;
}

.pullquote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
}

.serial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.essay-card .mark {
  position: absolute;
  top: 0.7rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--ochre);
  letter-spacing: 0.12em;
}

.essay-card h3 {
  position: relative;
  margin-top: 1.4rem;
  max-width: 16ch;
}

.essay-card p {
  position: relative;
  font-size: 0.95rem;
  max-width: 28ch;
}

.mini-faq details {
  border-bottom: var(--hairline);
  padding: 1.15rem 0;
}

.mini-faq summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  cursor: pointer;
  list-style: none;
}

.mini-faq summary::-webkit-details-marker {
  display: none;
}

.mini-faq details p {
  margin-top: 0.85rem;
  max-width: var(--measure);
}

.cta-hybrid-copy blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
}

.letter-block {
  max-width: 40rem;
  margin-inline: auto;
}

.letter-block .lede::first-letter {
  font-family: var(--font-display);
  font-size: 4.4rem;
  float: left;
  line-height: 0.75;
  padding-right: 0.45rem;
  padding-top: 0.2rem;
  color: var(--ochre);
}

.aside-note {
  font-size: 12px;
  line-height: 1.55;
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: var(--hairline);
  max-width: 32rem;
}

.page-intro {
  padding: 5rem 0 3.5rem;
}

.threads {
  display: grid;
  gap: 0;
}

.thread {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: var(--hairline);
}

.thread-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ochre);
}

.portrait-letter {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: start;
}

.portrait-letter img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border: var(--hairline);
}

.signoff {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
}

.contact-stack {
  max-width: 40rem;
  margin-inline: auto;
}

.address-block {
  margin-bottom: 2.5rem;
}

.address-block p {
  margin-bottom: 0.35rem;
}

.map-frame {
  margin-top: 3rem;
  border: var(--hairline);
  height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: hue-rotate(175deg) saturate(0.5) brightness(0.88);
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #071014;
  background: #f7f2e8;
  color: #071014;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field-error {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: #7a2e12;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.consent input {
  margin-top: 0.25rem;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-banner:empty,
.form-success:empty {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
}

.form-banner:not(:empty),
.form-success:not(:empty) {
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  border: var(--hairline);
}

.faq-list details {
  padding: 1.35rem 0;
  border-bottom: var(--hairline);
}

.faq-list summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p,
.faq-list details li {
  font-family: var(--font-body);
}

.legal-doc {
  max-width: var(--measure);
}

.legal-doc h2 {
  margin-top: 2.4rem;
}

.site-footer {
  padding: 3.5rem 0 2.2rem;
  border-top: var(--hairline);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  font-style: italic;
  font-variation-settings: "opsz" 72, "WONK" 0.9;
}

.footer-legal a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-disclaimer {
  max-width: 46rem;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: var(--hairline);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 1.1rem 0;
  border-top: var(--hairline);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.cookie-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 1.2rem;
  align-items: center;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-panel {
  margin-top: 0.9rem;
}

.cookie-banner.is-hidden,
.cookies-ok .cookie-banner {
  height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
}

.essay-long {
  padding: 2.2rem 0;
  border-bottom: var(--hairline);
  scroll-margin-top: 5.5rem;
}

.essay-long:last-of-type {
  border-bottom: 0;
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.crumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.crumbs li:not(:last-child)::after {
  content: " / ";
  color: var(--ochre);
}

.err-hero h1 {
  max-width: 16ch;
}

.place-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.duo-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .duo-photos,
  .place-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .hero-spine {
    display: none;
  }

  .hero-copy {
    grid-column: 1;
    max-width: none;
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
    padding: 2.2rem 0 1.5rem;
    padding-left: 0;
  }

  .hero-display {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .hero-photo {
    grid-column: 1;
    grid-row: auto;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto 2.2rem;
    justify-self: stretch;
  }

  .hero-photo img,
  .hero-photo::after {
    height: 42vh;
  }

  .hero-photo figcaption {
    position: static;
    margin-top: 0.55rem;
    text-align: right;
  }

  .slab:nth-child(even) > div:first-child {
    order: 0;
  }

  .civic-spine {
    grid-template-columns: 1fr 1fr;
  }

  .civic-spine span:nth-child(2) {
    border-right: 0;
  }

  .civic-spine span:nth-child(1),
  .civic-spine span:nth-child(2) {
    border-bottom: var(--hairline);
  }

  .slab,
  .cta-hybrid,
  .portrait-letter,
  .footer-grid,
  .serial-grid,
  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .nav-open {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto auto;
    background: #071014;
    color: #ede6d8;
    width: min(100%, 22rem);
    height: 100vh;
    padding: 1.5rem;
    border-left: var(--hairline);
    transform: translateX(100%);
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .nav-close {
    display: inline-flex;
    margin-bottom: 1.5rem;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
