:root {
  --black-room: #050504;
  --deep-black: #000000;
  --charcoal: #171615;
  --paper-dark: #24211d;
  --bone: #d8d0bd;
  --aged-paper: #c6b68f;
  --dust: #8b877e;
  --cold-blue: #8d98aa;
  --night-green: #5fa51b;
  --ritual-amber: #c66a24;
  --red-glow: #e21b12;
  --violet: #6c3aa7;
  --max: 1220px;
  --gutter: clamp(20px, 4vw, 64px);
  --title: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow-stage: 0 34px 90px rgba(0, 0, 0, 0.72);
  --shadow-hard: 18px 24px 0 rgba(0, 0, 0, 0.56);
  --spot-x: 50vw;
  --spot-y: 50vh;
  --spot-size: 360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black-room);
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: var(--black-room);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 106, 36, 0.08), transparent 28rem),
    radial-gradient(circle at 85% 24%, rgba(95, 165, 27, 0.06), transparent 26rem),
    linear-gradient(180deg, var(--black-room), #090806 36%, #030303 100%),
    var(--black-room);
  color: var(--bone);
  font-family: var(--body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: rgba(226, 27, 18, 0.55);
  color: #fff;
}

.grain,
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.grain {
  opacity: 0.21;
  mix-blend-mode: screen;
  background:
    repeating-radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 7px);
  filter: contrast(170%);
}

.spotlight {
  opacity: 0;
  transition: opacity 400ms ease;
  background: radial-gradient(
    circle var(--spot-size) at var(--spot-x) var(--spot-y),
    rgba(216, 208, 189, 0.13),
    rgba(198, 106, 36, 0.05) 26%,
    transparent 67%
  );
  mix-blend-mode: screen;
}

body.has-pointer .spotlight {
  opacity: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  gap: 16px;
  background: var(--deep-black);
  color: var(--bone);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font: 11px var(--mono);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader__mark {
  width: 48px;
  height: auto;
  opacity: 0.82;
  filter: invert(1) grayscale(1) contrast(1.35);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  color: #f3eee2;
  transition: background 300ms ease, border-color 300ms ease, transform 400ms ease;
  border-bottom: 1px solid rgba(216, 208, 189, 0);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 4, 0.72);
  border-bottom-color: rgba(216, 208, 189, 0.14);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 52px;
  display: grid;
  place-items: center;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 4px 4px;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(12px);
  transform: translate(12px, 8px);
  z-index: -1;
}

.brand-mark img {
  width: 34px;
  height: auto;
  filter: invert(1) grayscale(1) contrast(1.2) drop-shadow(8px 10px 8px rgba(0, 0, 0, 0.7));
  opacity: 0.86;
}

.shadow-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.shadow-nav a {
  position: relative;
  padding: 8px 0;
  text-shadow: 10px 14px 0 rgba(0, 0, 0, 0.62);
}

.shadow-nav a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8px;
  right: -8px;
  top: 56%;
  height: 9px;
  background: rgba(198, 182, 143, 0.16);
  transform: scaleX(0) rotate(-1.4deg);
  transform-origin: left;
  transition: transform 260ms ease, background 260ms ease;
}

.shadow-nav a:hover::before,
.shadow-nav a:focus-visible::before {
  transform: scaleX(1) rotate(-1.4deg);
  background: rgba(226, 27, 18, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 208, 189, 0.32);
  border-radius: 999px;
  background: rgba(5, 5, 4, 0.68);
  padding: 0;
}

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

.threshold {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px var(--gutter) 72px;
  overflow: hidden;
}

.threshold__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.threshold__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.92));
}

.threshold__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 42%;
  opacity: 0.75;
  filter: contrast(1.08) saturate(0.74);
  transform: scale(1.04);
}

.threshold__content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  font: 700 11px/1.3 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(216, 208, 189, 0.72);
}

.threshold h1 {
  margin: 0;
  max-width: 11ch;
  color: #f8f3e9;
  font-family: var(--title);
  font-size: clamp(58px, 11vw, 164px);
  line-height: 0.86;
  font-weight: 800;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.72),
    22px 34px 0 rgba(0, 0, 0, 0.45);
}

.threshold p:not(.eyebrow) {
  max-width: 550px;
  margin: 30px 0 0;
  color: rgba(248, 243, 233, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(216, 208, 189, 0.34);
  background:
    linear-gradient(90deg, rgba(216, 208, 189, 0.08), rgba(216, 208, 189, 0.02)),
    rgba(0, 0, 0, 0.28);
  color: #f6efe3;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(226, 27, 18, 0.76);
  box-shadow: 0 0 24px rgba(226, 27, 18, 0.18), var(--shadow-hard);
}

.button--primary {
  border-color: rgba(198, 106, 36, 0.72);
  background: rgba(198, 106, 36, 0.16);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 3px solid rgba(216, 208, 189, 0.7);
  border-bottom: 3px solid rgba(216, 208, 189, 0.7);
  transform: translateX(-50%) rotate(45deg);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { opacity: 0.32; transform: translate(-50%, -2px) rotate(45deg); }
  50% { opacity: 0.8; transform: translate(-50%, 6px) rotate(45deg); }
}

.paper-field span {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  padding: 4px 44px;
  color: rgba(216, 208, 189, 0.18);
  border-top: 1px solid rgba(216, 208, 189, 0.12);
  border-bottom: 1px solid rgba(216, 208, 189, 0.08);
  font: 700 10px var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(var(--r));
  animation: drift var(--d) ease-in-out infinite alternate;
}

@keyframes drift {
  from { translate: 0 0; }
  to { translate: 14px -18px; }
}

.section,
.project-room {
  position: relative;
  padding: clamp(88px, 12vw, 170px) var(--gutter);
}

.section::before,
.project-room::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(216, 208, 189, 0.3), transparent),
    repeating-linear-gradient(90deg, rgba(198, 182, 143, 0.2) 0 20px, transparent 20px 34px);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
  gap: clamp(38px, 7vw, 110px);
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.statement h2,
.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(34px, 5.2vw, 78px);
  line-height: 1.02;
  color: #f3ecdf;
  font-weight: 800;
}

.statement__body {
  color: rgba(216, 208, 189, 0.78);
  max-width: 520px;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(42px, 7vw, 84px);
}

.section-heading h2 {
  max-width: 850px;
}

.project-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.project-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  background: #000;
  isolation: isolate;
  box-shadow: var(--shadow-stage);
  transform-origin: top center;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), filter 320ms ease;
}

.project-card:nth-child(even) {
  margin-top: 44px;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -42px;
  width: 1px;
  height: 86px;
  background: rgba(216, 208, 189, 0.22);
  z-index: 2;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 60% 26%, var(--accent, rgba(198, 106, 36, 0.18)), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.78;
  transition: opacity 260ms ease;
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1);
  transition: transform 800ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
}

.project-card strong {
  font-family: var(--title);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.98;
  color: #fff8ea;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.86);
}

.project-card em,
.project-card__meta {
  display: block;
  color: rgba(248, 243, 233, 0.72);
  font-style: normal;
  font-size: 13px;
}

.project-card__meta {
  margin-bottom: 10px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-10px) rotate(0.4deg);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.15);
}

.project-card--amber { --accent: rgba(198, 106, 36, 0.42); }
.project-card--paper { --accent: rgba(226, 27, 18, 0.26); }
.project-card--violet { --accent: rgba(108, 58, 167, 0.4); }
.project-card--cold { --accent: rgba(141, 152, 170, 0.35); }

.project-room {
  overflow: hidden;
}

.project-room--amber {
  background: radial-gradient(circle at 70% 20%, rgba(198, 106, 36, 0.16), transparent 35rem);
}

.project-room--paper {
  background:
    repeating-linear-gradient(90deg, rgba(198, 182, 143, 0.04) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 18% 35%, rgba(226, 27, 18, 0.11), transparent 30rem);
}

.project-room--violet {
  background: radial-gradient(circle at 82% 18%, rgba(108, 58, 167, 0.2), transparent 34rem);
}

.project-room--cold {
  background: radial-gradient(circle at 25% 20%, rgba(141, 152, 170, 0.16), transparent 34rem);
}

.room-hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.room-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-stage);
  filter: contrast(1.04) saturate(0.88);
}

.project-room--violet .room-hero img {
  filter: contrast(1.06) saturate(0.82) hue-rotate(6deg);
}

.project-room--cold .room-hero img {
  filter: contrast(1.08) saturate(0.72);
}

.room-hero h2 {
  margin: 0;
  color: #fff7ec;
  font-family: var(--title);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.9;
  text-shadow: 20px 30px 0 rgba(0, 0, 0, 0.46);
}

.room-meta {
  margin: 22px 0 0;
  color: rgba(216, 208, 189, 0.72);
  font: 700 11px/1.6 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-body {
  max-width: var(--max);
  margin: clamp(36px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(26px, 5vw, 68px);
}

.archive-label {
  align-self: start;
  padding: 18px 18px 20px;
  border: 1px solid rgba(216, 208, 189, 0.28);
  background:
    linear-gradient(90deg, rgba(198, 182, 143, 0.11), rgba(198, 182, 143, 0.03)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 14px 20px 0 rgba(0, 0, 0, 0.4);
}

.archive-label span {
  display: block;
  margin-bottom: 10px;
  color: rgba(216, 208, 189, 0.64);
  font: 700 10px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-label p {
  margin: 0;
  color: rgba(248, 243, 233, 0.82);
  font-size: 14px;
}

.room-copy {
  max-width: 720px;
  color: rgba(216, 208, 189, 0.8);
  font-size: clamp(17px, 1.4vw, 20px);
}

.room-copy p:first-child {
  margin-top: 0;
}

.gallery {
  max-width: var(--max);
  margin: clamp(42px, 7vw, 86px) auto 0;
  display: grid;
  gap: 18px;
}

.gallery--hanging {
  grid-template-columns: 0.9fr 1.15fr 0.85fr 1fr;
  align-items: start;
}

.gallery--paper,
.gallery--stair {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery--cold {
  grid-template-columns: 1.3fr 0.95fr 0.95fr;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: zoom-in;
  box-shadow: var(--shadow-stage);
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 27, 18, 0.28), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44));
  mix-blend-mode: screen;
  transition: opacity 260ms ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.82);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: contrast(1.1) saturate(1.02);
}

.gallery--hanging .gallery-item:nth-child(1) { height: 520px; margin-top: 54px; }
.gallery--hanging .gallery-item:nth-child(2) { height: 620px; }
.gallery--hanging .gallery-item:nth-child(3) { height: 520px; margin-top: 96px; }
.gallery--hanging .gallery-item:nth-child(4) { height: 580px; margin-top: 28px; }

.gallery--paper .gallery-item:nth-child(odd),
.gallery--stair .gallery-item:nth-child(even) {
  margin-top: 48px;
}

.archive {
  background:
    linear-gradient(180deg, rgba(198, 182, 143, 0.04), transparent),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(216, 208, 189, 0.028) 42px 43px);
}

.archive-wall {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid rgba(216, 208, 189, 0.24);
}

.archive-wall a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(216, 208, 189, 0.18);
  transition: color 220ms ease, padding-left 220ms ease, background 220ms ease;
}

.archive-wall span {
  color: rgba(216, 208, 189, 0.58);
  font: 700 11px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-wall strong {
  font-family: var(--title);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.archive-wall em {
  color: rgba(216, 208, 189, 0.66);
  font-style: normal;
  font-size: 13px;
}

.archive-wall a:hover,
.archive-wall a:focus-visible {
  padding-left: 18px;
  color: #fff7ec;
  background: linear-gradient(90deg, rgba(226, 27, 18, 0.12), transparent 55%);
}

.about {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image::after {
  content: "";
  position: absolute;
  top: 9%;
  right: -24px;
  width: 70px;
  height: 72%;
  border-right: 1px solid rgba(216, 208, 189, 0.28);
  background:
    repeating-linear-gradient(90deg, rgba(216, 208, 189, 0.13) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(0deg, rgba(216, 208, 189, 0.08) 0 2px, transparent 2px 10px);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.about__image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  box-shadow: var(--shadow-stage);
}

.about__copy {
  max-width: 720px;
}

.about__copy p {
  color: rgba(216, 208, 189, 0.8);
  font-size: 17px;
}

.contact {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(226, 27, 18, 0.16), transparent 22rem),
    radial-gradient(circle at 42% 48%, rgba(198, 106, 36, 0.12), transparent 28rem);
}

.contact__panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(216, 208, 189, 0.3);
  background: rgba(0, 0, 0, 0.44);
  box-shadow: var(--shadow-stage);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  min-width: 130px;
  padding: 12px 18px;
  border: 1px solid rgba(216, 208, 189, 0.28);
  color: #fff8ec;
  font-weight: 750;
  text-align: center;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(226, 27, 18, 0.8);
  box-shadow: 0 0 28px rgba(226, 27, 18, 0.2);
  transform: translateY(-2px);
}

.note {
  margin: 24px 0 0;
  color: rgba(216, 208, 189, 0.58);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  margin: 0;
  width: min(1180px, 100%);
  max-height: 90vh;
  display: grid;
  gap: 14px;
}

.lightbox img {
  justify-self: center;
  max-height: 82vh;
  width: auto;
  box-shadow: var(--shadow-stage);
}

.lightbox figcaption {
  color: rgba(216, 208, 189, 0.76);
  font: 700 12px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(216, 208, 189, 0.32);
  background: rgba(5, 5, 4, 0.7);
  padding: 9px 14px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .project-grid,
  .gallery--paper,
  .gallery--stair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card:nth-child(even),
  .gallery--paper .gallery-item:nth-child(odd),
  .gallery--stair .gallery-item:nth-child(even) {
    margin-top: 0;
  }

  .project-card {
    min-height: 460px;
  }

  .room-hero,
  .statement,
  .room-body,
  .about {
    grid-template-columns: 1fr;
  }

  .gallery--hanging,
  .gallery--cold {
    grid-template-columns: 1fr 1fr;
  }

  .gallery--hanging .gallery-item:nth-child(n) {
    height: auto;
    margin-top: 0;
  }

  .gallery-item img {
    min-height: 360px;
  }

  .archive-wall a {
    grid-template-columns: 80px 1fr;
  }

  .archive-wall em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --spot-size: 0;
  }

  .spotlight,
  .paper-field {
    display: none;
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 35;
  }

  .shadow-nav {
    position: fixed;
    inset: 0;
    z-index: 34;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 84px 28px;
    background:
      radial-gradient(circle at 60% 40%, rgba(226, 27, 18, 0.14), transparent 18rem),
      rgba(0, 0, 0, 0.94);
    transform: translateX(100%);
    transition: transform 320ms ease;
  }

  body.nav-open .shadow-nav {
    transform: translateX(0);
  }

  .shadow-nav a {
    font-family: var(--title);
    font-size: 42px;
    line-height: 1;
  }

  .threshold {
    min-height: 92vh;
    padding: 110px 20px 70px;
  }

  .threshold h1 {
    font-size: clamp(56px, 19vw, 98px);
    max-width: 8ch;
  }

  .threshold p:not(.eyebrow) {
    font-size: 16px;
  }

  .section,
  .project-room {
    padding: 80px 20px;
  }

  .project-grid,
  .gallery--hanging,
  .gallery--paper,
  .gallery--stair,
  .gallery--cold {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 420px;
  }

  .room-hero h2,
  .statement h2,
  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(34px, 12vw, 58px);
  }

  .room-hero img {
    aspect-ratio: 4 / 3;
  }

  .archive-wall a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .archive-wall em {
    grid-column: auto;
  }

  .gallery-item img {
    min-height: 0;
    max-height: 620px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
