:root {
  --bg: #050505;
  --panel: #0c0c0c;
  --panel-2: #141414;
  --fg: #f5f1e8;
  --muted: #a5a0aa;
  --line: rgba(245, 241, 232, 0.16);
  --accent: #c7a86b;
  --accent-2: #c7a86b;
  --gold-soft: rgba(199, 168, 107, .24);
  --glass: rgba(14, 14, 14, .72);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --glow: 0 0 32px rgba(199, 168, 107, .2), 0 0 80px rgba(199, 168, 107, .07);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at var(--spot-x, 58%) var(--spot-y, 36%), rgba(199, 168, 107, .09), transparent 26rem),
    radial-gradient(circle at 18% 12%, rgba(199, 168, 107, .035), transparent 25rem),
    linear-gradient(180deg, #050505 0%, #090909 52%, #030303 100%);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(199, 168, 107, .18) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1.4px);
  background-size: 24px 24px, 42px 42px;
  background-position: 0 0, 10px 16px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.45) 58%, rgba(0,0,0,.16));
  opacity: .38;
}

body::after {
  content: "";
  position: fixed;
  left: -12vw;
  right: -12vw;
  bottom: -34vh;
  height: 68vh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 28% 40%, rgba(199, 168, 107, .13), transparent 44%),
    radial-gradient(ellipse at 70% 26%, rgba(199, 168, 107, .06), transparent 34%),
    linear-gradient(90deg, transparent, rgba(199,168,107,.05), transparent);
  filter: blur(34px);
  transform: rotate(-3deg);
  opacity: .78;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-media {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.045);
  will-change: transform;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--accent);
  color: #111;
  padding: .75rem 1rem;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.028), rgba(255,255,255,.028) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 50% 0%, rgba(199,168,107,.08), transparent 34rem);
  mix-blend-mode: screen;
  opacity: .35;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(12, 9, 18, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,168,107,.42);
  border-radius: 12px;
  background: rgba(199,168,107,.08);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(199,168,107,.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 13px;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--fg);
  border-color: rgba(199,168,107,.3);
  background: rgba(255,255,255,.055);
  box-shadow: 0 0 24px rgba(199,168,107,.09);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #101010;
}

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

.hero {
  min-height: calc(100vh - 92px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: 30px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -10vw;
  top: 26%;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,168,107,.5), transparent);
  transform: rotate(-12deg);
  opacity: .55;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  letter-spacing: 0;
  line-height: .94;
}

h1 {
  font-size: clamp(3.35rem, 7.15vw, 6.85rem);
  max-width: 760px;
  margin-bottom: 24px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 12px;
}

.lead {
  max-width: 640px;
  color: #d8d1c4;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.65;
}

.hero-copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -18px -28px -18px -18px;
  z-index: -1;
  background: radial-gradient(circle at 45% 35%, rgba(5,5,5,.9), transparent 68%);
  pointer-events: none;
}

.hero-copy .lead {
  max-width: 610px;
}

.hero-copy h1 {
  max-width: 720px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  border-color: rgba(199,168,107,.42);
}

.button.primary {
  background: var(--accent);
  color: #0b0b0b;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 24px rgba(199,168,107,.2);
}

.button.ghost {
  background: rgba(255,255,255,.055);
}

.hero-visual {
  min-height: 640px;
  position: relative;
}

.portrait-frame,
.story-frame {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.portrait-frame {
  inset: 0 12% 16% 0;
}

.story-frame {
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 5;
  border-color: rgba(199, 168, 107, .42);
  box-shadow: var(--shadow), 0 0 54px rgba(199,168,107,.11);
  animation: floatFrame 8s ease-in-out infinite;
}

@keyframes floatFrame {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(.6deg); }
}

.story-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(5,5,5,.72);
  color: var(--fg);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.ticker {
  overflow: hidden;
  display: flex;
  gap: 42px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  color: #f5f1e8;
  background: linear-gradient(90deg, #9e8453, #d8bb7b, #9e8453);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  animation: drift 18s linear infinite;
}

@keyframes drift {
  to { transform: translateX(-220px); }
}

.section,
.page-hero,
.about-layout,
.timeline,
.gallery,
.award-board,
.contact-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.text-stack {
  color: #cec8bd;
  font-size: 1.08rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.award,
.gallery-note,
.contact-link {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(12,12,12,.82);
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.feature-card span,
.award span {
  color: var(--accent);
  font-weight: 900;
}

.feature-card p,
.award p,
.gallery-note p {
  color: var(--muted);
  line-height: 1.65;
}

.selected-work {
  padding-top: 20px;
}

.nft-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.nft-section::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 50px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(199,168,107,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(199,168,107,.025), 0 0 0 36px rgba(199,168,107,.02);
  pointer-events: none;
}

.nft-intro,
.nft-stats {
  position: relative;
  z-index: 1;
}

.nft-intro h2 {
  max-width: 620px;
  margin-bottom: 24px;
}

.nft-intro .lead {
  max-width: 560px;
}

.nft-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.nft-stat {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(199,168,107,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.nft-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(199,168,107,.44);
  box-shadow: var(--glow);
}

.nft-stat-label,
.nft-source {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nft-stat strong {
  color: var(--fg);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .95;
}

.featured-stat strong {
  color: var(--accent);
}

.nft-stat small {
  color: #bdb6a9;
  font-size: .84rem;
  line-height: 1.45;
}

.nft-source {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  letter-spacing: .04em;
  text-transform: none;
}

.nft-source a {
  color: var(--accent);
  margin-left: 6px;
}

.work-strip,
.gallery {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 14px;
}

.work-tile,
.gallery-item {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: var(--panel);
}

.work-tile.tall,
.gallery-item.large {
  min-height: 560px;
  grid-row: span 2;
}

.work-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-weight: 900;
  font-size: 1.28rem;
}

.work-tile::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.82));
}

.work-tile img,
.gallery-item img {
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
  filter: saturate(.82) contrast(1.08);
}

.work-tile:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.12);
}

.work-tile.quiet {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(199,168,107,.12), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(199,168,107,.07), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.055) 1px, transparent 1px, transparent 11px),
    #111111;
}

.work-tile.quiet span,
.work-tile.quiet p {
  position: static;
}

.work-tile.quiet p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 90px 0 70px;
}

.page-hero h1 {
  max-width: 980px;
}

.gallery {
  padding-bottom: 110px;
  align-items: stretch;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.gallery-item span {
  color: var(--muted);
}

.gallery-note {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-note.dark {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.055) 1px, transparent 1px, transparent 9px),
    #0b0b0b;
}

.project-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 110px;
}

.project-card {
  position: relative;
  min-height: 480px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 70px rgba(0,0,0,.28);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.project-card.wide {
  grid-column: span 2;
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(.82) contrast(1.08);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 8%, rgba(0,0,0,.86) 100%);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(199,168,107,.24), transparent 26%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.12);
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(199,168,107,.5);
  box-shadow: var(--shadow), var(--glow);
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: .72;
}

.project-card span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.project-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 760px;
}

.project-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: #d7d0c4;
  line-height: 1.55;
}

.project-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: 48px 0 90px;
}

.project-hero figure {
  margin: 0;
  height: min(68vh, 620px);
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 64px rgba(199,168,107,.1);
}

.project-hero figure img {
  height: 100%;
  object-fit: cover;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
}

.project-statement {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto 90px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-left: 2px solid var(--accent);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(199,168,107,.1), transparent 34%),
    linear-gradient(90deg, rgba(199,168,107,.04), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.project-statement p:not(.eyebrow) {
  color: #ddd6ca;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

.project-statement span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.project-gallery {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 110px;
  columns: 3 280px;
  column-gap: 14px;
}

.project-photo {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  position: relative;
  break-inside: avoid;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
}

.project-photo.featured {
  min-height: 420px;
}

.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.project-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.project-photo:hover img,
.project-photo:focus-within img {
  transform: scale(1.025);
  filter: contrast(1.08);
}

.project-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 5px 7px;
  background: rgba(0,0,0,.62);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.92);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: min(96vw, 1600px);
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #101010;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

.about-layout {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: 40px 0 90px;
}

.about-image {
  aspect-ratio: 1 / 1.25;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-copy p:not(.eyebrow) {
  color: #d5cfc4;
  font-size: 1.07rem;
  line-height: 1.8;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding-bottom: 110px;
}

.timeline article {
  min-height: 220px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.timeline span {
  color: var(--accent);
  font-weight: 900;
}

.timeline p {
  margin-top: 50px;
  color: #d3cdc0;
  line-height: 1.55;
}

.award-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 110px;
}

.award h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 18px 0;
}

.contact-panel {
  min-height: calc(100vh - 180px);
  padding: 110px 0;
}

.contact-panel h1 {
  max-width: 1050px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.contact-link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(199,168,107,.45);
}

.contact-link span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}

.contact-link strong {
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--fg);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

body.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: 76px;
    width: min(310px, calc(100vw - 32px));
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: rgba(9,9,9,.96);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .split,
  .about-layout,
  .work-strip,
  .gallery,
  .award-board,
  .contact-links,
  .project-index,
  .project-hero,
  .nft-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .project-card.wide {
    grid-column: auto;
  }

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

  .project-hero {
    min-height: auto;
  }

  .project-hero figure {
    height: 440px;
    min-height: 0;
  }

  .nft-section {
    padding-top: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .timeline article {
    min-height: 150px;
  }

  .timeline p {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    max-width: 130px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-visual {
    min-height: 450px;
  }

  .portrait-frame {
    inset: 0 0 22% 0;
  }

  .story-frame {
    width: 72%;
  }

  .gallery-item.large,
  .work-tile.tall,
  .work-tile,
  .gallery-item,
  .project-card {
    min-height: 360px;
  }

  .project-statement {
    padding: 24px;
  }

  .project-hero figure {
    height: 360px;
  }

  .nft-stats {
    grid-template-columns: 1fr;
  }

  .nft-section::before {
    right: -50px;
    top: 26px;
    width: 130px;
    height: 130px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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

/* Editorial portfolio layout: a quiet rail, oversized type, and image-led pacing. */
body {
  padding-left: 248px;
  background:
    radial-gradient(circle at 76% 42%, rgba(199,168,107,.055), transparent 32rem),
    linear-gradient(135deg, #050505 0%, #0a0a0a 52%, #030303 100%);
}

body::before {
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 100% 88px;
  opacity: .2;
}

body::after {
  left: 38%;
  right: -10vw;
  bottom: -18vh;
  height: 48vh;
  background: radial-gradient(ellipse at 50% 50%, rgba(199,168,107,.11), transparent 62%);
  filter: blur(52px);
  opacity: .5;
}

.site-header {
  position: fixed;
  inset: 18px auto 18px 18px;
  width: 202px;
  margin: 0;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 58px;
  border-radius: 14px;
  background: rgba(9,9,9,.86);
  border-color: rgba(199,168,107,.18);
  box-shadow: 18px 0 80px rgba(0,0,0,.34);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -1px;
  width: 1px;
  height: 76%;
  background: linear-gradient(transparent, var(--accent), transparent);
  opacity: .65;
}

.brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.brand span {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  font-size: 1.05rem;
}

.brand strong {
  font-size: .92rem;
  letter-spacing: .01em;
}

.site-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.site-nav a {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: rgba(199,168,107,.28);
  background: rgba(199,168,107,.07);
  box-shadow: inset 3px 0 0 var(--accent);
}

.hero,
.section,
.page-hero,
.about-layout,
.timeline,
.gallery,
.award-board,
.contact-panel,
.project-index,
.project-hero,
.project-gallery {
  width: min(1360px, calc(100vw - 280px));
}

.hero {
  min-height: 100vh;
  grid-template-columns: minmax(360px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(46px, 7vw, 120px);
  padding: 56px 0 72px;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy::after {
  inset: -40px -80px -40px -30px;
  background: radial-gradient(circle at 35% 40%, rgba(0,0,0,.92), transparent 68%);
}

h1 {
  font-size: clamp(4.6rem, 8.2vw, 9.4rem);
  line-height: .86;
}

.hero-visual {
  min-height: calc(100vh - 128px);
}

.portrait-frame,
.story-frame {
  border-radius: 4px;
}

.portrait-frame {
  inset: 2% 9% 8% 0;
}

.story-frame {
  right: 1%;
  bottom: 3%;
  width: 35%;
  border-color: rgba(199,168,107,.62);
  box-shadow: var(--shadow), 0 0 48px rgba(199,168,107,.14);
}

.story-frame figcaption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: rgba(0,0,0,.82);
  color: var(--accent);
  border-top: 1px solid rgba(199,168,107,.34);
}

.ticker {
  margin-left: -248px;
  padding-left: 248px;
  background: var(--accent);
  color: #080808;
  border-color: var(--accent);
  letter-spacing: .08em;
}

.section {
  padding: 132px 0;
}

.split {
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(44px, 9vw, 150px);
}

.feature-card,
.award,
.gallery-note,
.contact-link,
.nft-stat {
  border-radius: 4px;
  background: #0d0d0d;
}

.work-strip,
.gallery,
.project-index {
  gap: 10px;
}

.work-tile,
.gallery-item,
.project-card,
.project-photo {
  border-radius: 4px;
}

.project-index {
  grid-template-columns: repeat(12, 1fr);
}

.project-card,
.project-card.wide {
  grid-column: span 4;
  min-height: 560px;
  padding: 28px;
}

.project-card:nth-child(1),
.project-card:nth-child(4) {
  grid-column: span 6;
  min-height: 660px;
}

.project-card h2 {
  font-size: clamp(2.6rem, 4vw, 5.4rem);
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.page-hero {
  padding: 120px 0 80px;
}

.page-hero h1 {
  max-width: 1100px;
}

.about-layout {
  min-height: 100vh;
  grid-template-columns: .62fr 1fr;
  gap: clamp(50px, 9vw, 150px);
}

.about-image {
  border-radius: 4px;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.contact-panel {
  padding: 150px 0;
}

.contact-links {
  grid-template-columns: repeat(4, 1fr);
}

.project-hero {
  min-height: 100vh;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 130px);
  padding: 64px 0 100px;
}

.project-hero figure {
  height: min(78vh, 820px);
  min-height: 620px;
  border-radius: 4px;
}

.project-statement {
  width: min(1080px, calc(100vw - 360px));
  border-radius: 4px;
}

@media (max-width: 920px) {
  body { padding-left: 0; }

  .site-header {
    position: relative;
    inset: auto;
    width: min(100% - 32px, 1180px);
    min-height: 0;
    margin: 16px auto 0;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    border-radius: 14px;
  }

  .site-header::after { display: none; }
  .brand { flex-direction: row; align-items: center; gap: 12px; }
  .brand span { width: 42px; height: 42px; border-radius: 4px; }
  .site-nav { flex-direction: column; }
  .hero,
  .section,
  .page-hero,
  .about-layout,
  .timeline,
  .gallery,
  .award-board,
  .contact-panel,
  .project-index,
  .project-hero,
  .project-gallery { width: min(100% - 32px, 1180px); }
  .hero { min-height: auto; padding-top: 72px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(4rem, 14vw, 7rem); }
  .hero-visual { min-height: 620px; }
  .ticker { margin-left: 0; padding-left: 0; }
  .section { padding: 88px 0; }
  .project-index { grid-template-columns: 1fr; }
  .project-card,
  .project-card.wide,
  .project-card:nth-child(1),
  .project-card:nth-child(4) { grid-column: auto; min-height: 480px; }
  .project-hero { min-height: auto; padding-top: 72px; grid-template-columns: 1fr; }
  .project-hero figure { height: 540px; min-height: 0; }
  .project-statement { width: min(100% - 32px, 940px); }
  .contact-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(3.1rem, 13vw, 4.5rem); max-width: 100%; }
  .hero-visual { min-height: 470px; }
  .portrait-frame { inset: 0 0 18% 0; }
  .story-frame { width: 57%; }
  .project-hero figure { height: 390px; }
  .contact-links { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
}

/* Full-bleed cinematic structure. */
body {
  padding-left: 0;
  background: #050505;
}

body::before {
  background-image: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 120px 100%;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.5), transparent 70%);
  opacity: .18;
}

body::after {
  left: 0;
  right: 0;
  bottom: -22vh;
  height: 58vh;
  background: radial-gradient(ellipse at 50% 50%, rgba(199,168,107,.08), transparent 62%);
  filter: blur(56px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: 86px;
  margin: 0;
  padding: 18px clamp(22px, 5vw, 80px);
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.78), rgba(5,5,5,.12));
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.site-header::after { display: none; }
.brand { flex-direction: row; align-items: center; gap: 12px; }
.brand span { width: 42px; height: 42px; border-radius: 50%; font-size: .9rem; }
.brand strong { font-size: .92rem; letter-spacing: .02em; }
.site-nav { flex-direction: row; align-items: center; gap: 2px; }
.site-nav a {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: rgba(199,168,107,.32);
  background: rgba(199,168,107,.08);
  box-shadow: none;
}

main { z-index: 2; }
.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.46) 46%, rgba(0,0,0,.1) 100%),
    linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 42%);
  transform: none;
  opacity: 1;
}

.hero-copy {
  position: absolute;
  left: clamp(22px, 10vw, 170px);
  bottom: clamp(72px, 12vh, 150px);
  z-index: 3;
  width: min(760px, calc(100% - 44px));
  max-width: none;
}

.hero-copy::after { display: none; }
.hero-copy h1 { max-width: 760px; font-size: clamp(4.35rem, 7vw, 7.2rem); }
.hero-copy .lead { max-width: 560px; color: #e2ddd2; }

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
}

.portrait-frame {
  inset: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.portrait-frame img { filter: saturate(.12) contrast(1.16); }
.story-frame {
  right: clamp(22px, 8vw, 140px);
  bottom: clamp(42px, 8vh, 100px);
  width: clamp(160px, 18vw, 280px);
  border-radius: 3px;
  border-color: rgba(199,168,107,.72);
  box-shadow: 0 26px 80px rgba(0,0,0,.58), 0 0 0 1px rgba(199,168,107,.14);
}

.story-frame figcaption { padding: 10px 12px; font-size: .68rem; }
.hero-actions { margin-top: 30px; }
.button { border-radius: 999px; min-height: 46px; padding-inline: 20px; }

.ticker {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 18px 0;
  border-block: 1px solid rgba(199,168,107,.28);
  background: #b99b61;
  color: #090909;
  font-size: .72rem;
  letter-spacing: .12em;
}

.section,
.page-hero,
.about-layout,
.timeline,
.gallery,
.award-board,
.contact-panel,
.project-index,
.project-hero,
.project-gallery { width: min(1240px, calc(100% - 48px)); }

.section { padding: clamp(84px, 12vw, 170px) 0; }
.split { grid-template-columns: .65fr 1.35fr; gap: clamp(36px, 10vw, 170px); }
.feature-grid { grid-template-columns: repeat(3, 1fr); gap: 0; border-block: 1px solid var(--line); }
.feature-card { border-width: 0 1px 0 0; border-radius: 0; background: transparent; padding: 32px 28px; }
.feature-card:last-child { border-right: 0; }
.work-strip { grid-template-columns: 1.1fr .9fr .9fr; gap: 10px; }
.work-tile, .gallery-item { border-radius: 0; }
.work-tile.tall, .gallery-item.large { min-height: 620px; }

.selected-work .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.selected-work h2 { max-width: 760px; }

.page-hero { padding: 170px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1100px; }
.project-index { grid-template-columns: repeat(2, 1fr); gap: 10px; padding-top: 54px; }
.project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { grid-column: auto; min-height: 610px; border-radius: 0; padding: 30px; }
.project-card:nth-child(3n) { min-height: 470px; }
.project-card h2 { font-size: clamp(2.6rem, 5vw, 6rem); }
.project-card:hover, .project-card:focus-visible { transform: translateY(-6px) scale(.995); }

.about-layout { min-height: 100svh; padding: 130px 0 100px; grid-template-columns: .68fr 1.32fr; gap: clamp(42px, 9vw, 150px); }
.about-image { border-radius: 0; }
.timeline { grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.timeline article { min-height: 240px; border-width: 0 1px 0 0; background: transparent; }
.timeline article:last-child { border-right: 0; }
.contact-panel { min-height: 100svh; padding: 180px 0 120px; }
.contact-links { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.contact-link { border-radius: 0; min-height: 190px; background: transparent; }

.project-hero { min-height: 100svh; padding: 130px 0 90px; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 9vw, 150px); }
.project-hero figure { height: min(76svh, 820px); min-height: 580px; border-radius: 0; }
.project-statement { width: min(980px, calc(100% - 48px)); border-radius: 0; margin-bottom: 120px; }
.project-gallery { columns: 3 280px; column-gap: 10px; }
.project-photo { border-radius: 0; }

.site-footer { width: min(1240px, calc(100% - 48px)); }

@media (max-width: 920px) {
  .site-header { position: fixed; inset: 0 0 auto 0; width: 100%; height: 74px; margin: 0; padding: 12px 16px; border-radius: 0; }
  .hero { min-height: 100svh; }
  .hero-copy { left: 22px; bottom: 72px; width: calc(100% - 44px); }
  .hero-visual { min-height: 0; }
  .portrait-frame { inset: 0; }
  .story-frame { right: 20px; bottom: 58px; width: 34%; }
  .section, .page-hero, .about-layout, .timeline, .gallery, .award-board, .contact-panel, .project-index, .project-hero, .project-gallery { width: min(100% - 32px, 1180px); }
  .feature-grid, .work-strip, .split, .about-layout, .project-hero { grid-template-columns: 1fr; }
  .feature-card { border-width: 0 0 1px; }
  .feature-card:last-child { border-bottom: 0; }
  .work-tile.tall, .gallery-item.large, .project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 460px; }
  .project-index { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-links { grid-template-columns: repeat(2, 1fr); }
  .project-hero { min-height: auto; padding-top: 110px; }
  .project-hero figure { height: 520px; min-height: 0; }
}

@media (max-width: 560px) {
  .site-nav a { padding-inline: 9px; font-size: .62rem; }
  .brand strong { display: none; }
  .hero-copy { bottom: 52px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .hero-copy .lead { font-size: .96rem; line-height: 1.5; }
  .story-frame { top: 92px; right: 16px; bottom: auto; width: 31%; opacity: .72; }
  .contact-links, .timeline { grid-template-columns: 1fr; }
  .project-hero figure { height: 390px; }
}

.nft-section {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: start;
}

.nft-stats {
  grid-template-columns: repeat(3, 1fr);
}

.nft-stats .nft-stat:first-child {
  grid-column: span 3;
  min-height: 120px;
}

.nft-stats .nft-stat:first-child strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  letter-spacing: -.02em;
}

.nft-art-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.nft-art-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  isolation: isolate;
  background: #0c0c0c;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.nft-art-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
}

.nft-art-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.nft-art-card:hover,
.nft-art-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(0,0,0,.38), 0 0 24px rgba(199,168,107,.12);
}

.nft-art-card:hover img,
.nft-art-card:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}

.nft-art-index,
.nft-art-card strong,
.nft-art-card small {
  position: relative;
  z-index: 1;
}

.nft-art-index {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.nft-art-card strong {
  color: var(--fg);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: .95;
}

.nft-art-card small {
  color: #d5cfc4;
  font-size: .72rem;
  line-height: 1.35;
}

.featured-art {
  grid-column: span 2;
}

@media (max-width: 920px) {
  .nft-section { grid-template-columns: 1fr; }
  .nft-stats { grid-template-columns: repeat(3, 1fr); }
  .nft-art-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-art { grid-column: span 2; }
}

@media (max-width: 560px) {
  .nft-stats { grid-template-columns: 1fr; }
  .nft-stats .nft-stat:first-child { grid-column: auto; }
  .nft-art-grid { grid-template-columns: 1fr; }
  .featured-art { grid-column: auto; }
  .nft-art-card { min-height: 430px; }
}

/* Archive museum layout: a complete catalogue-led visual system. */
:root {
  --archive-black: #080808;
  --archive-panel: #101010;
  --archive-paper: #e8e2d6;
  --archive-gold: #c7a86b;
  --archive-line: rgba(232, 226, 214, .18);
  --archive-muted: #9b978f;
}

body {
  padding-left: 0;
  background: var(--archive-black);
  color: var(--archive-paper);
  overflow-x: hidden;
}

.grain { opacity: .035; }
.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  height: 76px;
  margin: 0;
  padding: 0 clamp(20px, 4vw, 64px);
  border: 0;
  border-bottom: 1px solid var(--archive-line);
  border-radius: 0;
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(16px);
}

.brand { gap: 12px; }
.brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--archive-gold);
  color: var(--archive-gold);
  font-size: .68rem;
  letter-spacing: .1em;
}
.brand strong { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { gap: clamp(16px, 3vw, 42px); }
.site-nav a { color: var(--archive-muted); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--archive-gold); }

.hero {
  width: min(1380px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 144px) 0 clamp(84px, 12vw, 170px);
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: center;
}
.hero-copy { position: static; width: auto; max-width: 650px; }
.eyebrow, .nft-intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--archive-gold);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--archive-gold); }
.hero-copy h1 {
  max-width: 650px;
  margin: 24px 0 28px;
  color: var(--archive-paper);
  font-size: clamp(3.6rem, 7.5vw, 8.7rem);
  letter-spacing: -.045em;
  line-height: .86;
}
.hero-copy .lead { max-width: 480px; color: var(--archive-muted); font-size: 1rem; line-height: 1.65; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.button { border-radius: 0; min-height: 44px; padding: 0 18px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.button.primary { background: var(--archive-gold); color: #111; }
.button.ghost { border-color: var(--archive-line); color: var(--archive-paper); }
.button:hover { transform: translateY(-2px); }

.hero-visual { position: relative; min-height: clamp(520px, 52vw, 720px); }
.portrait-frame { position: absolute; inset: 0 15% 10% 0; border: 1px solid var(--archive-line); border-radius: 0; background: var(--archive-panel); }
.portrait-frame img { filter: grayscale(100%) contrast(1.08); }
.story-frame { right: 0; bottom: 0; width: 35%; border: 1px solid var(--archive-gold); border-radius: 0; background: var(--archive-black); transform: rotate(3deg); }
.story-frame img { aspect-ratio: .78; object-fit: cover; }
.story-frame figcaption { padding: 9px 10px 11px; color: var(--archive-gold); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual::before { content: "01 / 06"; position: absolute; right: 1%; top: -28px; color: var(--archive-muted); font: 700 .62rem/1 Inter, sans-serif; letter-spacing: .18em; }

.ticker { margin: 0; padding: 14px clamp(24px, 4vw, 64px); border-block: 1px solid var(--archive-line); background: transparent; color: var(--archive-gold); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; }
.section, .page-hero, .about-layout, .timeline, .gallery, .award-board, .contact-panel, .project-index, .project-hero, .project-gallery { width: min(1380px, calc(100% - 48px)); }
.section { padding: clamp(92px, 12vw, 168px) 0; }
.section-heading { border-top: 1px solid var(--archive-line); padding-top: 16px; }
.section-heading h2, .nft-intro h2 { max-width: 700px; margin-top: 22px; font-size: clamp(2.7rem, 6vw, 6.6rem); letter-spacing: -.045em; line-height: .9; }
.section-heading p { color: var(--archive-muted); }

.feature-grid, .timeline { border-color: var(--archive-line); }
.feature-card, .timeline article { border-color: var(--archive-line); background: transparent; border-radius: 0; }
.feature-card h3 { color: var(--archive-gold); font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; }
.feature-card p, .timeline p { color: var(--archive-muted); }
.work-strip { grid-template-columns: 1.45fr .72fr .9fr; gap: 12px; }
.work-tile, .gallery-item { border: 1px solid var(--archive-line); border-radius: 0; filter: grayscale(.2); }
.work-tile.tall, .gallery-item.large { min-height: 560px; }
.work-tile:hover, .gallery-item:hover { border-color: var(--archive-gold); transform: translateY(-5px); }

.nft-section { display: grid; grid-template-columns: .62fr 1.38fr; gap: 36px clamp(36px, 8vw, 130px); border-top: 1px solid var(--archive-line); }
.nft-intro { position: sticky; top: 108px; align-self: start; }
.nft-intro h2 { font-size: clamp(2.8rem, 5vw, 5.8rem); }
.nft-intro .lead { color: var(--archive-muted); }
.nft-stats { grid-column: 2; grid-row: 1; align-self: end; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--archive-line); background: var(--archive-line); }
.nft-stats .nft-stat:first-child { grid-column: span 2; min-height: 130px; }
.nft-stat { min-height: 112px; border: 0; border-radius: 0; background: var(--archive-panel); }
.nft-stat strong { color: var(--archive-paper); }
.nft-stat-label { color: var(--archive-gold); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.nft-stat small, .nft-source { color: var(--archive-muted); }
.nft-source { grid-column: 1 / -1; padding: 14px 18px; margin: 0; background: var(--archive-black); font-size: .7rem; }
.nft-source a { color: var(--archive-gold); }
.nft-art-grid { grid-column: 2; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 0; }
.nft-art-card { min-height: 390px; border: 1px solid var(--archive-line); border-radius: 0; padding: 18px; }
.nft-art-card:nth-child(1), .nft-art-card:nth-child(4) { min-height: 500px; }
.nft-art-card::after { background: linear-gradient(180deg, transparent 24%, rgba(0,0,0,.92)); }
.nft-art-card img { filter: saturate(.7) contrast(1.08); }
.nft-art-card strong { font-size: clamp(1.6rem, 3vw, 2.7rem); }
.nft-art-card small { color: var(--archive-gold); }
.nft-art-index { color: var(--archive-gold); }

.page-hero { padding: clamp(82px, 11vw, 150px) 0 48px; border-bottom: 1px solid var(--archive-line); }
.page-hero h1 { max-width: 900px; font-size: clamp(4rem, 10vw, 10rem); letter-spacing: -.06em; line-height: .82; }
.project-index { grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 54px 0 120px; }
.project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { grid-column: auto; min-height: 520px; border: 1px solid var(--archive-line); border-radius: 0; padding: 24px; }
.project-card:nth-child(3n) { min-height: 420px; }
.project-card h2 { font-size: clamp(2rem, 3.8vw, 4.4rem); }
.project-card:hover, .project-card:focus-visible { border-color: var(--archive-gold); transform: translateY(-6px); }
.about-layout { min-height: auto; padding: 100px 0 130px; }
.about-image, .project-hero figure, .project-photo { border: 1px solid var(--archive-line); border-radius: 0; }
.contact-panel { min-height: auto; padding: 110px 0 150px; }
.contact-link { min-height: 170px; border: 1px solid var(--archive-line); border-radius: 0; background: transparent; }
.contact-link:hover { border-color: var(--archive-gold); }
.project-hero { min-height: auto; padding: 100px 0 90px; }
.project-hero figure { height: min(70svh, 760px); min-height: 520px; }
.project-statement { border: 1px solid var(--archive-line); border-radius: 0; }
.project-gallery { columns: 3 280px; column-gap: 12px; padding-bottom: 100px; }
.site-footer { width: min(1380px, calc(100% - 48px)); border-top: 1px solid var(--archive-line); }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 70px; padding-top: 86px; }
  .hero-visual { min-height: 620px; }
  .nft-section { grid-template-columns: 1fr; }
  .nft-intro { position: static; }
  .nft-stats, .nft-art-grid { grid-column: 1; }
  .project-index { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 450px; }
}

@media (max-width: 560px) {
  .site-header { height: 68px; padding-inline: 16px; }
  .site-nav { gap: 8px; }
  .site-nav a { padding-inline: 6px; font-size: .57rem; }
  .brand strong { display: none; }
  .hero, .section, .page-hero, .about-layout, .timeline, .gallery, .award-board, .contact-panel, .project-index, .project-hero, .project-gallery, .site-footer { width: calc(100% - 32px); }
  .hero { padding-top: 72px; gap: 48px; }
  .hero-copy h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-visual { min-height: 480px; }
  .story-frame { width: 38%; }
  .nft-stats, .nft-art-grid, .project-index { grid-template-columns: 1fr; }
  .nft-stats .nft-stat:first-child { grid-column: auto; }
  .nft-art-card, .nft-art-card:nth-child(1), .nft-art-card:nth-child(4) { min-height: 420px; }
  .project-index { padding-top: 32px; }
  .project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 390px; }
  .project-hero { padding-top: 72px; }
  .project-hero figure { height: 390px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual, .story-frame, .work-tile, .gallery-item, .project-card, .nft-art-card { transition: none !important; transform: none !important; }
}

/* Darkroom direction: image-first documentary archive with vertical navigation. */
@media (min-width: 921px) {
  body { padding-left: 92px; }
  .site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 92px;
    height: 100vh;
    padding: 22px 0;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--archive-line);
    border-bottom: 0;
    background: #080808;
  }
  .brand { flex-direction: column; gap: 10px; }
  .brand strong { writing-mode: vertical-rl; transform: rotate(180deg); font-size: .58rem; }
  .site-nav { flex-direction: column; gap: 28px; }
  .site-nav a { writing-mode: vertical-rl; transform: rotate(180deg); padding: 8px 0; }
  .nav-toggle { display: none; }
}

body {
  background-color: #070707;
  background-image: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 25% 100%;
}
html, body { overflow-x: hidden; }
.ticker { overflow: hidden; }
.site-header { box-shadow: none; }
.brand span { border-radius: 50%; }
.hero {
  width: min(1480px, calc(100% - 72px));
  min-height: calc(100svh - 76px);
  padding: clamp(42px, 5vw, 80px) 0;
  grid-template-columns: minmax(240px, .52fr) minmax(520px, 1.48fr);
  gap: clamp(28px, 5vw, 72px);
}
.hero-copy { align-self: end; padding-bottom: 3vh; }
.hero-copy h1 {
  max-width: 510px;
  margin: 22px 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.7rem, 5vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .88;
  text-transform: uppercase;
}
.hero-copy .lead { max-width: 390px; font-size: .86rem; line-height: 1.55; }
.eyebrow { font-size: .59rem; letter-spacing: .24em; }
.hero-actions { margin-top: 24px; }
.button { min-height: 40px; padding-inline: 14px; font-size: .58rem; }
.button.primary { background: transparent; border-color: var(--archive-gold); color: var(--archive-gold); }
.button.primary:hover { background: var(--archive-gold); color: #080808; }
.button.ghost { border-color: rgba(232,226,214,.3); }
.hero-visual { min-height: calc(100svh - 160px); }
.portrait-frame { inset: 0 0 0 0; border-color: rgba(232,226,214,.28); }
.portrait-frame img { object-position: center 22%; filter: grayscale(100%) contrast(1.15); }
.story-frame { right: 24px; bottom: 24px; width: clamp(140px, 16vw, 220px); transform: none; }
.hero-visual::before { top: 10px; right: 14px; z-index: 2; }
.ticker { padding: 10px clamp(24px, 4vw, 64px); font-size: .55rem; background: #0d0d0d; }

.section { padding-block: clamp(76px, 9vw, 130px); }
.section-heading h2, .nft-intro h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .92;
  text-transform: uppercase;
}
.section-heading p { max-width: 420px; font-size: .78rem; }
.selected-work .section-heading { margin-bottom: 22px; }
.work-strip { grid-template-columns: 1.2fr .8fr .8fr; gap: 4px; }
.work-tile, .gallery-item { border-color: rgba(232,226,214,.24); }
.work-tile::after { background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.76)); }
.work-tile span { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.work-tile strong { font-family: Inter, system-ui, sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: -.02em; text-transform: uppercase; }

.nft-section { background: #090909; }
.nft-intro { padding-top: 10px; }
.nft-intro h2 { font-size: clamp(2.2rem, 4.2vw, 5rem); }
.nft-intro .lead { max-width: 390px; font-size: .8rem; }
.nft-stats { border: 0; background: transparent; }
.nft-stat { min-height: 94px; padding: 16px; background: #101010; }
.nft-stat strong { font-family: Inter, system-ui, sans-serif; font-weight: 500; }
.nft-art-grid { gap: 4px; }
.nft-art-card, .nft-art-card:nth-child(1), .nft-art-card:nth-child(4) { min-height: 340px; border-color: rgba(232,226,214,.22); }
.nft-art-card:hover, .nft-art-card:focus-visible { transform: none; border-color: var(--archive-gold); }
.nft-art-card strong { font-family: Inter, system-ui, sans-serif; font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 500; letter-spacing: -.04em; text-transform: uppercase; }

.page-hero h1 { font-family: Inter, system-ui, sans-serif; font-weight: 500; text-transform: uppercase; }
.project-index { grid-template-columns: repeat(4, 1fr); gap: 4px; }
.project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 420px; padding: 18px; border-color: rgba(232,226,214,.22); }
.project-card:nth-child(3n) { min-height: 420px; }
.project-card h2 { font-family: Inter, system-ui, sans-serif; font-size: clamp(1.3rem, 2.2vw, 2.5rem); font-weight: 500; letter-spacing: -.05em; text-transform: uppercase; }
.project-card p { max-width: 240px; font-size: .72rem; }
.project-card:hover { transform: none; background-position: center; }
.project-hero { grid-template-columns: .45fr 1.55fr; }
.project-hero h1 { font-family: Inter, system-ui, sans-serif; font-size: clamp(2.6rem, 5vw, 6rem); font-weight: 500; text-transform: uppercase; }
.project-hero figure { height: min(78svh, 840px); }
.project-gallery { columns: 4 220px; column-gap: 4px; }
.project-photo { margin-bottom: 4px; }
.site-footer { padding-block: 18px; font-size: .58rem; }

@media (max-width: 920px) {
  body { padding-left: 0; background-size: 50% 100%; }
  .hero { width: calc(100% - 32px); min-height: auto; padding-top: 72px; grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-copy h1 { max-width: 620px; font-size: clamp(2.8rem, 10vw, 5.5rem); }
  .hero-visual { min-height: 620px; }
  .project-index { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 4.1rem); }
  .hero-copy .lead { font-size: .82rem; }
  .hero-visual { min-height: 470px; }
  .story-frame { right: 10px; bottom: 10px; width: 36%; }
  .project-index { grid-template-columns: 1fr; }
  .project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 360px; }
  .nft-art-card, .nft-art-card:nth-child(1), .nft-art-card:nth-child(4) { min-height: 350px; }
}

/* Editorial archive modules. */
.archive-intelligence {
  border-top: 1px solid var(--archive-line);
}
.archive-intelligence .section-heading {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 32px;
  margin-bottom: 58px;
}
.archive-intelligence .section-heading h2 { max-width: 780px; margin-top: 0; }
.archive-intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--archive-line);
  border-bottom: 1px solid var(--archive-line);
}
.archive-feature {
  min-height: 320px;
  padding: 24px 26px 34px;
  border-right: 1px solid var(--archive-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.archive-feature:last-child { border-right: 0; }
.archive-number { color: var(--archive-gold); font: 700 .62rem/1 Inter, sans-serif; letter-spacing: .2em; }
.archive-feature h3 { margin: 40px 0 14px; font-size: clamp(1.2rem, 2vw, 2.1rem); font-weight: 500; letter-spacing: -.05em; text-transform: uppercase; }
.archive-feature p { max-width: 320px; margin: 0; color: var(--archive-muted); font-size: .78rem; line-height: 1.65; }

.field-record {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: clamp(42px, 9vw, 150px);
  align-items: center;
}
.field-record-image { position: relative; border: 1px solid var(--archive-line); }
.field-record-image img { display: block; width: 100%; aspect-ratio: .84; object-fit: cover; filter: grayscale(.45) contrast(1.08); }
.field-record-image span { position: absolute; right: 14px; bottom: 12px; color: var(--archive-gold); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.field-record-copy h2 { max-width: 620px; margin: 24px 0 30px; font-size: clamp(2.4rem, 5vw, 5.8rem); font-weight: 500; letter-spacing: -.07em; line-height: .9; text-transform: uppercase; }
.field-record-copy p:not(.eyebrow) { max-width: 520px; color: var(--archive-muted); font-size: .86rem; line-height: 1.7; }
.text-link { display: inline-flex; gap: 16px; align-items: center; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid var(--archive-gold); color: var(--archive-gold); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.text-link span { font-size: 1rem; transition: transform 200ms ease; }
.text-link:hover span { transform: translate(4px, -4px); }

.archive-facts { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px, 10vw, 170px); border-block: 1px solid var(--archive-line); }
.archive-facts-intro p:not(.eyebrow) { max-width: 240px; color: var(--archive-muted); font-size: .8rem; line-height: 1.6; }
.facts-list { margin: 0; border-top: 1px solid var(--archive-line); }
.facts-list div { display: grid; grid-template-columns: .45fr 1.55fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--archive-line); }
.facts-list dt { color: var(--archive-gold); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.facts-list dd { margin: 0; color: var(--archive-paper); font-size: .84rem; }

.closing-statement { padding-block: clamp(96px, 15vw, 220px); text-align: center; }
.closing-statement .eyebrow { justify-content: center; }
.closing-statement h2 { margin: 30px auto 42px; font-size: clamp(4rem, 12vw, 13rem); font-weight: 500; letter-spacing: -.09em; line-height: .78; text-transform: uppercase; }
.closing-statement .button { display: inline-flex; }

@media (max-width: 920px) {
  .archive-intelligence .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .archive-intelligence .section-heading h2 { margin-top: 0; }
  .field-record, .archive-facts { grid-template-columns: 1fr; gap: 48px; }
  .field-record-image { max-width: 640px; }
  .archive-facts { gap: 28px; }
}

@media (max-width: 560px) {
  .archive-intelligence-grid { grid-template-columns: 1fr; }
  .archive-feature { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--archive-line); }
  .archive-feature:last-child { border-bottom: 0; }
  .field-record-copy h2 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .facts-list div { grid-template-columns: 1fr; gap: 8px; }
  .closing-statement h2 { font-size: clamp(3.4rem, 16vw, 6rem); }
}

/* Horizontal studio system: a complete navigation and page composition reset. */
body { padding-left: 0; background-image: none; background-color: #080808; }
main { padding-top: 78px; }
@media (min-width: 921px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: 78px;
    padding: 0 clamp(22px, 4vw, 64px);
    flex-direction: row;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--archive-line);
    background: rgba(8, 8, 8, .9);
    backdrop-filter: blur(18px);
  }
  .brand { flex-direction: row; gap: 12px; }
  .brand strong { writing-mode: horizontal-tb; transform: none; font-size: .68rem; }
  .site-nav { flex-direction: row; gap: clamp(18px, 3vw, 44px); }
  .site-nav a { writing-mode: horizontal-tb; transform: none; padding: 10px 0; }
  .site-nav a::after { content: "/"; margin-left: 16px; color: rgba(232,226,214,.26); }
  .site-nav a:last-child::after { content: ""; margin: 0; }
  .nav-toggle { display: none; }
}

.hero {
  width: min(1500px, calc(100% - 72px));
  min-height: calc(100svh - 78px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(36px, 5vw, 72px);
}
.hero-visual { grid-column: 1; grid-row: 1; min-height: min(78svh, 760px); }
.hero-copy { grid-column: 2; grid-row: 1; align-self: center; padding: 0; }
.portrait-frame { inset: 0 12% 0 0; }
.story-frame { right: 0; bottom: 7%; width: clamp(150px, 18vw, 250px); }
.hero-copy h1 { max-width: 460px; font-size: clamp(2.5rem, 4.8vw, 6.2rem); }
.hero-copy .lead { max-width: 360px; }
.hero-visual::before { top: 18px; right: 16px; }
.ticker { padding-inline: clamp(22px, 4vw, 64px); }

.section { width: min(1500px, calc(100% - 72px)); }
.selected-work .section-heading { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 30px; }
.selected-work .section-heading h2 { margin-top: 0; }
.work-strip { grid-template-columns: 1.1fr 1.1fr .8fr; min-height: 560px; }
.work-tile.tall, .gallery-item.large { min-height: 560px; }
.archive-intelligence .section-heading { grid-template-columns: .65fr 1.35fr; }
.field-record { grid-template-columns: 1.15fr .85fr; }
.field-record-image { order: 2; }
.field-record-copy { order: 1; }
.archive-facts { grid-template-columns: .5fr 1.5fr; }
.closing-statement h2 { font-size: clamp(4rem, 10vw, 11rem); }

.page-hero { width: min(1500px, calc(100% - 72px)); padding-top: clamp(72px, 9vw, 130px); }
.project-index { width: min(1500px, calc(100% - 72px)); grid-template-columns: repeat(3, 1fr); }
.project-hero, .project-gallery { width: min(1500px, calc(100% - 72px)); }
.about-layout, .contact-panel, .timeline { width: min(1500px, calc(100% - 72px)); }
.about-layout { grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 140px); }
.about-copy h1 { font-size: clamp(2.6rem, 5vw, 6rem); }
.project-hero { grid-template-columns: .72fr 1.28fr; }
.project-hero figure { height: min(72svh, 780px); }
.project-gallery { columns: 3 280px; }
.site-footer { width: min(1500px, calc(100% - 72px)); }

@media (max-width: 920px) {
  main { padding-top: 68px; }
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: 68px;
    padding: 0 16px;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--archive-line);
  }
  .brand { flex-direction: row; }
  .brand strong { writing-mode: horizontal-tb; transform: none; display: block; }
  .site-nav { flex-direction: row; gap: 10px; }
  .site-nav a { writing-mode: horizontal-tb; transform: none; padding-inline: 6px; }
  .site-nav a::after { display: none; }
  .hero, .section, .page-hero, .project-index, .project-hero, .project-gallery, .about-layout, .contact-panel, .timeline, .site-footer { width: calc(100% - 32px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding-top: 56px; }
  .hero-copy, .hero-visual { grid-column: auto; grid-row: auto; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 610px; }
  .selected-work .section-heading, .archive-intelligence .section-heading { grid-template-columns: 1fr; }
  .field-record { grid-template-columns: 1fr; }
  .field-record-image, .field-record-copy { order: initial; }
  .project-index { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand strong { display: none; }
  .site-nav { gap: 4px; }
  .site-nav a { font-size: .55rem; padding-inline: 5px; }
  .hero { padding-top: 42px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .hero-visual { min-height: 470px; }
  .story-frame { width: 38%; }
  .work-strip, .project-index { grid-template-columns: 1fr; }
  .work-tile.tall, .gallery-item.large, .project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 390px; }
  .facts-list div { grid-template-columns: 1fr; }
}

/* Sharp menu system: square geometry, hard edges, and graphic navigation blocks. */
.brand span,
.site-nav a,
.nav-toggle,
.site-nav a[aria-current="page"] {
  border-radius: 0;
}
.brand span {
  width: 36px;
  height: 36px;
  border: 1px solid var(--archive-gold);
  background: #0b0b0b;
}
.site-nav {
  align-items: stretch;
  gap: 0;
  border-left: 1px solid var(--archive-line);
}
.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border-right: 1px solid var(--archive-line);
  color: var(--archive-muted);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.site-nav a::after { display: none !important; }
.site-nav a:hover,
.site-nav a:focus-visible {
  background: #151515;
  color: var(--archive-paper);
}
.site-nav a[aria-current="page"] {
  background: var(--archive-gold);
  color: #090909;
  border-color: var(--archive-gold);
}
.site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #090909;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--archive-line);
  background: #0b0b0b;
}
.nav-toggle:hover { border-color: var(--archive-gold); }
.nav-toggle span { width: 18px; height: 1px; background: var(--archive-paper); }

@media (max-width: 920px) {
  .site-header { padding-inline: 16px; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--archive-line);
    background: #090909;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    min-height: 54px;
    padding: 0 16px;
    border-right: 1px solid var(--archive-line);
    border-bottom: 1px solid var(--archive-line);
  }
  .site-nav a:nth-child(2n) { border-right: 0; }
  .site-nav a:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .brand span { width: 34px; height: 34px; }
  .site-nav { left: 12px; right: 12px; }
  .site-nav a { padding-inline: 12px; font-size: .56rem; }
}

/* Refined hero slider, quieter type scale, and a more useful contact composition. */
.hero-copy h1 { font-size: clamp(2.25rem, 4vw, 5.2rem); line-height: .92; }
.section-heading h2, .field-record-copy h2 { font-size: clamp(1.85rem, 3.4vw, 4.2rem); }
.page-hero h1, .about-copy h1 { font-size: clamp(3rem, 7vw, 7.8rem); }
.closing-statement h2 { font-size: clamp(3.4rem, 8vw, 9rem); }
.story-frame.slider-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) rotate(2deg);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), visibility 700ms var(--ease);
}
.story-frame.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(0deg);
}
.hero-visual::after {
  content: "01 / 03";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  color: var(--archive-gold);
  font-size: .56rem;
  letter-spacing: .16em;
}
.contact-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  column-gap: clamp(42px, 8vw, 140px);
  align-items: end;
  min-height: calc(100svh - 78px);
  padding-block: clamp(76px, 10vw, 140px);
}
.contact-panel > .eyebrow { grid-column: 1; }
.contact-panel > h1 { grid-column: 1; max-width: 520px; margin: 24px 0 0; font-size: clamp(2.2rem, 4vw, 5rem); line-height: .95; }
.contact-note { grid-column: 1; max-width: 380px; margin: 24px 0 0; color: var(--archive-muted); font-size: .78rem; line-height: 1.65; }
.contact-links { grid-column: 2; grid-row: 1 / span 3; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.contact-link { min-height: 190px; padding: 20px; border: 1px solid var(--archive-line); border-radius: 0; background: #0e0e0e; }
.contact-link:hover { background: var(--archive-gold); color: #090909; }
.contact-link:hover span, .contact-link:hover strong { color: #090909; }
.contact-link strong { font-size: clamp(1rem, 1.8vw, 1.45rem); }

@media (max-width: 920px) {
  .contact-panel { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .contact-panel > .eyebrow, .contact-panel > h1, .contact-note, .contact-links { grid-column: 1; }
  .contact-links { grid-row: auto; margin-top: 48px; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3.6rem); }
  .page-hero h1, .about-copy h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .story-frame.slider-slide { width: 38%; }
  .contact-panel > h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .contact-links { grid-template-columns: 1fr; }
  .contact-link { min-height: 130px; }
}

/* Unified header frame: one continuous horizontal surface. */
.site-header {
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: 64px;
  padding: 0;
  border: 1px solid rgba(232,226,214,.26);
  border-radius: 0;
  background: rgba(9,9,9,.96);
  box-shadow: 0 16px 40px rgba(0,0,0,.26);
}
.brand {
  height: 100%;
  padding: 0 18px;
  border-right: 1px solid var(--archive-line);
}
.site-nav { height: 100%; border-left: 0; }
.site-nav a { height: 100%; min-height: 0; }
main { padding-top: 92px; }

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 56px;
    padding: 0 12px;
  }
  .brand { padding: 0; border-right: 0; }
  main { padding-top: 78px; }
  .site-nav { top: 66px; left: 0; right: 0; height: auto; }
}

/* Final layout polish: edge-to-edge header, centered work grid, compact contact row. */
.site-header { top: 0; left: 0; width: 100%; height: 64px; }
main { padding-top: 86px; }
.project-index { width: min(1260px, calc(100% - 72px)); margin-inline: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-card, .project-card.wide, .project-card:nth-child(1), .project-card:nth-child(4) { min-height: 430px; }
.contact-links { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.contact-link { min-height: 156px; padding: 18px; justify-content: space-between; }
.contact-icon { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--archive-gold); color: var(--archive-gold); font-size: .9rem; line-height: 1; }
.contact-link > span:not(.contact-icon) { color: var(--archive-gold); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-link strong { max-width: 100%; overflow-wrap: anywhere; font-size: clamp(.76rem, 1vw, 1rem); line-height: 1.25; white-space: normal; }

@media (max-width: 920px) {
  .site-header { top: 0; left: 0; width: 100%; height: 56px; }
  main { padding-top: 72px; }
  .project-index { width: calc(100% - 48px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .contact-links { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .contact-link { min-height: 142px; padding: 14px; }
}

@media (max-width: 560px) {
  .site-header { top: 0; left: 0; width: 100%; }
  main { padding-top: 72px; }
  .project-index { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr; gap: 6px; }
  .contact-link { min-height: 118px; }
}

/* Final readability and alignment pass. */
.ticker { display: flex; width: 100%; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 62px); padding-inline: 24px; text-align: center; }
.ticker span { display: inline-flex; align-items: center; white-space: nowrap; }
.project-card img, .work-tile img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-link:hover, .contact-link:hover * { color: #090909 !important; }
.contact-link:hover .contact-icon { border-color: #090909; }
.hero-copy h1 { font-size: clamp(2.05rem, 3.2vw, 4.3rem); }
.page-hero h1, .about-copy h1 { font-size: clamp(2.4rem, 5vw, 5.3rem); line-height: .92; }
.section-heading h2, .field-record-copy h2 { font-size: clamp(1.7rem, 3vw, 3.6rem); }
.contact-panel > h1 { font-size: clamp(2rem, 3.2vw, 3.9rem); }
.closing-statement h2 { font-size: clamp(3rem, 7vw, 8rem); }

@media (min-width: 921px) {
  .site-nav { position: absolute; left: 50%; margin-left: 0; transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .ticker { gap: 14px 24px; flex-wrap: wrap; }
  .page-hero h1, .about-copy h1 { font-size: clamp(2.3rem, 7vw, 4.5rem); }
}

@media (max-width: 560px) {
  .ticker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px 16px; }
  .ticker span { justify-content: center; font-size: .5rem; }
  .hero-copy h1 { font-size: clamp(1.95rem, 9vw, 3.3rem); }
  .page-hero h1, .about-copy h1 { font-size: clamp(2.1rem, 10vw, 4rem); }
  .contact-panel > h1 { font-size: clamp(1.9rem, 9vw, 3.2rem); }
}

/* Exhibition slider: full-frame images, captions, progress, and direct controls. */
.hero-visual { min-height: min(78svh, 760px); }
.hero-visual::before, .hero-visual::after { display: none; }
.hero-slider {
  position: absolute;
  inset: 0 0 42px;
  overflow: hidden;
  border: 1px solid rgba(232,226,214,.28);
  background: #0d0d0d;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
}
.hero-slider .slider-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);
  transition: opacity 700ms var(--ease), transform 1000ms var(--ease), visibility 700ms var(--ease);
}
.hero-slider .slider-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slider .slider-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.08); }
.hero-slider .slider-slide figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 40px);
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  display: grid;
  gap: 8px;
}
.hero-slider .slider-slide figcaption span { color: #d8b978; font-size: .6rem; letter-spacing: .16em; text-shadow: 0 1px 12px rgba(0,0,0,.9); text-transform: uppercase; }
.hero-slider .slider-slide figcaption strong { max-width: 560px; color: #f1ece2 !important; font-size: clamp(1.3rem, 2.5vw, 2.6rem); font-weight: 500; letter-spacing: -.05em; line-height: .98; text-shadow: 0 2px 18px rgba(0,0,0,.95); text-transform: uppercase; }
.slider-bar { position: absolute; right: 0; bottom: 0; left: 0; z-index: 4; display: flex; align-items: center; height: 42px; border: 1px solid var(--archive-line); border-top: 0; background: #0b0b0b; }
.slider-control { width: 42px; height: 100%; border: 0; border-right: 1px solid var(--archive-line); background: transparent; color: var(--archive-paper); font-size: 1.05rem; cursor: pointer; }
.slider-control:hover { background: var(--archive-gold); color: #080808; }
.slider-progress { width: 76px; color: var(--archive-gold); font-size: .58rem; letter-spacing: .15em; text-align: center; }
.slider-dots { display: flex; gap: 6px; margin-left: auto; padding: 0 14px; }
.slider-dot { width: 20px; height: 4px; border: 0; background: rgba(232,226,214,.28); cursor: pointer; }
.slider-dot.is-active, .slider-dot:hover { background: var(--archive-gold); }

@media (max-width: 920px) {
  .hero-visual { min-height: 620px; }
}
@media (max-width: 560px) {
  .hero-visual { min-height: 470px; }
  .hero-slider { inset: 0 0 40px; }
  .hero-slider .slider-slide figcaption strong { font-size: 1.1rem; }
  .slider-bar { height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider .slider-slide { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .story-frame.slider-slide { transition: none; }
}

.about-record {
  border-top: 1px solid var(--archive-line);
}
.image-credit { display: block; padding: 10px 12px; color: var(--archive-muted); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
.about-record .section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 32px;
  margin-bottom: 54px;
}
.about-record .section-heading h2 { max-width: 760px; margin-top: 0; }
.about-record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--archive-line);
}
.record-card {
  min-height: 250px;
  padding: 22px;
  border-right: 1px solid var(--archive-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.record-card:last-child { border-right: 0; }
.record-card span { color: var(--archive-gold); font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; }
.record-card strong { max-width: 220px; color: var(--archive-paper); font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 500; letter-spacing: -.05em; line-height: .98; text-transform: uppercase; }
.record-card p { max-width: 230px; margin: 0; color: var(--archive-muted); font-size: .76rem; line-height: 1.55; }

/* Turn the professional record into a numbered archive of tactile cards. */
.about-record-grid {
  counter-reset: record;
  gap: 10px;
  border: 0;
}

.record-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  counter-increment: record;
  border: 1px solid rgba(199,168,107,.24);
  background:
    linear-gradient(145deg, rgba(199,168,107,.09), transparent 34%),
    #0d0d0d;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.record-card::before {
  content: "0" counter(record);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(199,168,107,.58);
  font-size: .62rem;
  letter-spacing: .16em;
}

.record-card::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--archive-gold);
  font-size: 1rem;
  transition: transform 240ms var(--ease), color 240ms var(--ease);
}

.record-card:hover,
.record-card:focus-within {
  z-index: 1;
  border-color: var(--archive-gold);
  background:
    linear-gradient(145deg, rgba(199,168,107,.18), transparent 42%),
    #11100d;
  box-shadow: 0 18px 42px rgba(0,0,0,.28), 0 0 26px rgba(199,168,107,.08);
  transform: translateY(-5px);
}

.record-card:hover::after,
.record-card:focus-within::after {
  color: var(--archive-paper);
  transform: translate(3px, -3px);
}

.record-card span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(199,168,107,.38);
}

.record-card strong {
  max-width: 250px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: .98;
}

.record-card p { max-width: 245px; }

/* Formal editorial variant for the About record cards. */
.about-record-grid {
  gap: 0;
  border-block: 1px solid rgba(199,168,107,.34);
}

.record-card {
  min-height: 255px;
  padding: 24px 22px 22px;
  border: 0;
  border-right: 1px solid rgba(232,226,214,.13);
  border-bottom: 1px solid rgba(232,226,214,.13);
  background: #0b0b0b;
  box-shadow: none;
  transform: none;
  transition: background 220ms ease, border-color 220ms ease;
}

.record-card:nth-child(4n) { border-right: 0; }
.record-card:nth-last-child(-n + 2) { border-bottom: 0; }

.record-card::before {
  top: 24px;
  right: 22px;
  color: rgba(199,168,107,.72);
  font-size: .56rem;
  font-weight: 600;
}

.record-card::after {
  content: "";
  right: auto;
  left: 22px;
  bottom: 22px;
  width: 28px;
  height: 1px;
  background: var(--archive-gold);
  font-size: 0;
  transform: none;
}

.record-card:hover,
.record-card:focus-within {
  border-color: rgba(199,168,107,.42);
  background: #10100f;
  box-shadow: inset 0 2px 0 var(--archive-gold);
  transform: none;
}

.record-card:hover::after,
.record-card:focus-within::after {
  color: inherit;
  transform: none;
}

.record-card span {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(199,168,107,.3);
  font-size: .56rem;
  letter-spacing: .2em;
}

.record-card strong {
  max-width: 230px;
  margin-top: 20px;
  color: var(--archive-paper);
  font-size: clamp(1.15rem, 1.6vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.record-card p {
  max-width: 235px;
  font-size: .72rem;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .record-card { min-height: 235px; }
  .record-card:nth-child(2n) { border-right: 0; }
  .record-card:nth-child(4n) { border-right: 0; }
  .record-card:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(232,226,214,.13); }
  .record-card:nth-last-child(-n + 2) { border-bottom: 0; }
}

/* A warmer return to the original archive-card character, with cleaner polish. */
.about-record-grid {
  gap: 10px;
  border: 0;
}

.record-card,
.record-card:nth-child(4n),
.record-card:nth-child(2n),
.record-card:nth-last-child(-n + 2) {
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(199,168,107,.25);
  background:
    linear-gradient(145deg, rgba(199,168,107,.1), transparent 36%),
    #0d0d0d;
  box-shadow: none;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.record-card::before {
  top: 18px;
  right: 18px;
  color: rgba(199,168,107,.64);
  font-size: .6rem;
}

.record-card::after {
  content: "↗";
  right: 18px;
  left: auto;
  bottom: 18px;
  width: auto;
  height: auto;
  background: none;
  color: var(--archive-gold);
  font-size: 1rem;
  transform: none;
  transition: transform 240ms var(--ease), color 240ms var(--ease);
}

.record-card:hover,
.record-card:focus-within {
  border-color: var(--archive-gold);
  background:
    linear-gradient(145deg, rgba(199,168,107,.18), transparent 42%),
    #11100d;
  box-shadow: 0 16px 36px rgba(0,0,0,.26), 0 0 24px rgba(199,168,107,.08);
  transform: translateY(-4px);
}

.record-card:hover::after,
.record-card:focus-within::after {
  color: var(--archive-paper);
  transform: translate(3px, -3px);
}

.record-card span {
  padding-bottom: 8px;
  border-bottom-color: rgba(199,168,107,.38);
}

.record-card strong {
  margin-top: 0;
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
}

/* Restore the original About card treatment requested by the artist. */
.about-record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--archive-line);
}

.record-card,
.record-card:nth-child(4n),
.record-card:nth-child(2n),
.record-card:nth-last-child(-n + 2) {
  min-height: 250px;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--archive-line);
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}

.record-card:last-child { border-right: 0; }
.record-card::before,
.record-card::after { content: none; }
.record-card span {
  padding: 0;
  border: 0;
  color: var(--archive-gold);
  font-size: .6rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.record-card strong {
  max-width: 220px;
  margin-top: 0;
  color: var(--archive-paper);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .98;
  text-transform: uppercase;
}
.record-card p {
  max-width: 230px;
  margin: 0;
  color: var(--archive-muted);
  font-size: .76rem;
  line-height: 1.55;
}

/* Give About and Contact the same confident headline scale as the home page. */
.about-copy h1 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .9;
}

.contact-panel > h1 {
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  line-height: .92;
}

.about-copy h1,
.about-record .section-heading h2,
.contact-panel > h1 {
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .about-copy h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
  .contact-panel > h1 { font-size: clamp(2.7rem, 7vw, 4.8rem); }
}

@media (max-width: 560px) {
  .about-copy h1 { font-size: clamp(2.25rem, 10vw, 3.8rem); }
  .contact-panel > h1 { font-size: clamp(2.3rem, 10vw, 3.7rem); }
}

@media (max-width: 920px) {
  .about-record-grid { grid-template-columns: repeat(2, 1fr); }
  .record-card,
  .record-card:nth-child(4n),
  .record-card:nth-child(2n) { border-right: 1px solid var(--archive-line); }
  .record-card:nth-child(2n) { border-right: 0; }
  .record-card:nth-child(-n + 2) { border-bottom: 1px solid var(--archive-line); }
}

@media (max-width: 560px) {
  .about-record-grid { grid-template-columns: 1fr; }
  .record-card,
  .record-card:nth-child(2n),
  .record-card:nth-child(-n + 2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--archive-line);
  }
  .record-card:last-child { border-bottom: 0; }
}

@media (max-width: 920px) {
  .about-record .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .about-record-grid { grid-template-columns: repeat(2, 1fr); }
  .record-card:nth-child(2n) { border-right: 0; }
  .record-card:nth-child(-n + 2) { border-bottom: 1px solid var(--archive-line); }
}

@media (max-width: 560px) {
  .about-record-grid { grid-template-columns: 1fr; }
  .record-card, .record-card:nth-child(-n + 2) { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--archive-line); }
  .record-card:last-child { border-bottom: 0; }
}

/* Keep the artist visible in the first frame while the slider carries the archive. */
.hero-portrait {
  width: 300px;
  height: 300px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid var(--archive-gold);
  background: #121212;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}

/* The slider uses the compact sans display face; page headings follow it. */
.hero-copy h1,
.page-hero h1,
.about-copy h1,
.contact-panel > h1,
.project-hero h1,
.section-heading h2,
.field-record-copy h2,
.closing-statement h2,
.award h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 560px) {
  .hero-portrait { width: 124px; height: 124px; margin-bottom: 18px; }
}

/* Selected Projects is a complete six-piece archive: three cards per row. */
.selected-work .work-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
}

.selected-work .work-tile,
.selected-work .work-tile.tall {
  position: relative;
  min-height: 390px;
  aspect-ratio: 4 / 5;
  grid-row: auto;
  isolation: isolate;
}

.selected-work .work-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.selected-work .work-tile span {
  bottom: 58px;
  left: 18px;
  right: 18px;
  font-size: clamp(.9rem, 1.3vw, 1.2rem);
  line-height: 1.05;
}

.selected-work .work-tile p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: rgba(232,226,214,.72);
  font-size: .72rem;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .selected-work .work-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .selected-work .work-strip { grid-template-columns: 1fr; gap: 12px; }
  .selected-work .work-tile,
  .selected-work .work-tile.tall { min-height: 360px; }
}

/* Let each project photograph define its own height; featured figures must not
   reserve a black strip below an image with a shorter natural ratio. */
.project-photo,
.project-photo.featured {
  min-height: 0;
}

.project-photo .lightbox-trigger,
.project-photo .lightbox-trigger img {
  display: block;
}

/* Final header treatment: a strong editorial masthead with a restrained gold rule. */
.site-header {
  border-color: rgba(199,168,107,.42);
  background: linear-gradient(180deg, rgba(18,18,18,.98), rgba(8,8,8,.96));
  box-shadow: 0 12px 34px rgba(0,0,0,.42), 0 1px 0 rgba(199,168,107,.16);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  right: 18px;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--archive-gold) 18%, var(--archive-gold) 82%, transparent);
  opacity: .9;
}

.brand {
  position: relative;
  z-index: 3;
  gap: 12px;
}

.brand span {
  width: 42px;
  height: 42px;
  border-color: var(--archive-gold);
  background: #090909;
  color: var(--archive-paper);
  box-shadow: inset 0 0 0 3px rgba(199,168,107,.08), 0 0 18px rgba(199,168,107,.12);
  font-size: .78rem;
  letter-spacing: .08em;
}

.brand strong {
  color: var(--archive-paper);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav {
  z-index: 3;
  border-left-color: rgba(199,168,107,.22);
}

.site-nav a {
  min-width: 92px;
  justify-content: center;
  border-right-color: rgba(199,168,107,.22);
  font-weight: 600;
  letter-spacing: .2em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #1b1a17;
  color: var(--archive-gold);
  box-shadow: inset 0 -2px 0 var(--archive-gold);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 #090909, 0 0 22px rgba(199,168,107,.16);
}

@media (max-width: 920px) {
  .site-nav a { min-width: 0; }
}

@media (min-width: 921px) {
  .hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 36px;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 1fr);
    gap: clamp(24px, 3vw, 48px);
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  .brand span {
    width: 50px;
    height: 50px;
    font-size: .84rem;
  }

  .hero-visual {
    width: calc(100% + 36px);
    margin-left: -36px;
  }
}

/* Force slider media to cover the complete frame instead of exposing its black canvas. */
.hero-visual {
  position: relative;
}

.hero-slider {
  position: absolute;
  overflow: hidden;
}

.hero-slider .slider-slide,
.hero-slider .slider-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slider-slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 920px) {
  .brand { position: relative; left: auto; top: auto; transform: none; }
  .brand span { width: 44px; height: 44px; }
}

/* Final hero slider framing: the photo owns the whole frame; controls float over it. */
.hero-visual {
  overflow: hidden;
  background: transparent;
}

.hero::before {
  display: none !important;
}

.hero-slider {
  inset: 0 !important;
  border: 0;
  background: transparent;
}

.hero-slider .slider-slide {
  overflow: hidden;
  background: transparent;
}

.hero-slider .slider-slide img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover !important;
  object-position: center center;
  filter: saturate(.9) contrast(1.02) brightness(1.08);
}

.hero-slider::after {
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.42));
}

.slider-bar {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 44px;
  border: 1px solid rgba(216,185,120,.36);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
}

.slider-control {
  background: rgba(0,0,0,.18);
}

@media (min-width: 921px) {
  .hero {
    min-height: calc(100svh - 64px);
    align-items: stretch;
    padding-left: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-visual {
    width: calc(100% + 72px);
    min-height: calc(100svh - 64px);
    margin-left: -72px;
  }

  .hero-copy {
    align-self: center;
  }
}

.contact-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: clamp(260px, 28vw, 390px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--archive-line);
  background: #0d0d0d;
}

.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.08);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.contact-image::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  pointer-events: none;
}

.contact-image:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.1);
}

.contact-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--archive-gold);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-panel .contact-links {
  grid-column: 2;
  grid-row: 3;
  margin-top: 14px;
}

/* Clean slider overlay: no black frame on the photo, with captions breathing inward. */
.hero-slider::after {
  display: none !important;
}

.hero-slider .slider-slide figcaption {
  left: clamp(76px, 8vw, 132px);
  right: clamp(28px, 4vw, 70px);
  bottom: clamp(72px, 8vh, 118px);
}

.slider-bar {
  left: clamp(76px, 8vw, 132px);
  right: clamp(28px, 4vw, 70px);
  bottom: 28px;
  width: auto;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.slider-control {
  border: 0;
  background: transparent;
  color: var(--archive-gold);
}

.slider-control:hover {
  background: transparent;
  color: var(--archive-paper);
}

.slider-progress {
  text-align: left;
}

.hero-slider .slider-slide figcaption span,
.hero-slider .slider-slide figcaption strong,
.slider-progress,
.slider-control {
  color: #fff !important;
}

.slider-dot.is-active,
.slider-dot:hover {
  background: #fff;
}

@media (max-width: 560px) {
  .hero-slider .slider-slide figcaption,
  .slider-bar {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 920px) {
  .contact-image {
    grid-column: 1;
    grid-row: auto;
    min-height: 360px;
    margin-top: 42px;
  }

  .contact-panel .contact-links {
    grid-column: 1;
    grid-row: auto;
    margin-top: 24px;
  }
}

