:root {
  --bg: #050505;
  --bg-deep: #020202;
  --surface: #0b0c09;
  --surface-2: #11120d;
  --surface-3: #171911;
  --text: #f4f5eb;
  --muted: #a1a398;
  --dim: #70736a;
  --acid: #eaff38;
  --acid-rgb: 234, 255, 56;
  --gold: #c7a66a;
  --gold-rgb: 199, 166, 106;
  --cyan: #55d7ff;
  --cyan-rgb: 85, 215, 255;
  --red: #ff4d47;
  --red-rgb: 255, 77, 71;
  --line: rgba(var(--acid-rgb), 0.2);
  --line-strong: rgba(var(--acid-rgb), 0.55);
  --page-accent: var(--acid);
  --page-accent-rgb: var(--acid-rgb);
  --max: 1440px;
  --header-h: 76px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.theme-gold {
  --page-accent: var(--gold);
  --page-accent-rgb: var(--gold-rgb);
  --line: rgba(var(--gold-rgb), 0.24);
  --line-strong: rgba(var(--gold-rgb), 0.62);
}

.theme-cyan {
  --page-accent: var(--cyan);
  --page-accent-rgb: var(--cyan-rgb);
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--acid-rgb), .055), transparent 28rem),
    radial-gradient(circle at 90% 44%, rgba(var(--cyan-rgb), .04), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--acid-rgb), .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--acid-rgb), .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.15) 78%, transparent);
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

::selection { background: var(--acid); color: #050505; }

.site-shell { position: relative; z-index: 1; min-height: 100vh; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 980px); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--acid);
  color: #050505;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .82);
  backdrop-filter: blur(16px) saturate(1.15);
}

.header-inner {
  width: min(calc(100% - 36px), var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--acid);
  color: var(--acid);
  background: #060606;
  box-shadow: inset 0 0 22px rgba(var(--acid-rgb), .05);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name em { color: var(--acid); font-style: normal; }

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--acid);
  transition: right .3s var(--ease);
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after { right: 0; }

.header-cta {
  flex: 0 0 auto;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #050505;
  padding: 10px 15px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.header-cta:hover,
.header-cta:focus-visible {
  background: transparent;
  color: var(--acid);
  box-shadow: 0 0 24px rgba(var(--acid-rgb), .15);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--acid);
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.is-open .menu-toggle span { opacity: 0; }
.site-header.is-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

main { display: block; }

.hero {
  position: relative;
  min-height: min(880px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero--compact { min-height: 670px; }

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.72) contrast(1.1) sepia(.24) saturate(.82) brightness(.74);
  transform: scale(1.012);
  transition: filter .65s ease, transform 1.1s var(--ease);
}
.hero-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,.97) 0%, rgba(5,5,5,.82) 35%, rgba(5,5,5,.28) 76%, rgba(5,5,5,.52) 100%),
    linear-gradient(to top, rgba(5,5,5,.98) 0%, rgba(5,5,5,.14) 70%);
}
.hero-art::after,
.art-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--page-accent-rgb), .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--page-accent-rgb), .18) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: screen;
  opacity: .46;
  transition: opacity .45s ease;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: clamp(100px, 14vh, 168px) 0 clamp(64px, 10vh, 108px);
}
.hero-copy { max-width: 990px; }
.hero-copy--narrow { max-width: 820px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 18px rgba(var(--page-accent-rgb), .65);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: .86;
  text-transform: uppercase;
}
.display--hero { margin-top: 22px; font-size: clamp(4.4rem, 11.5vw, 11rem); }
.display--xl { font-size: clamp(4rem, 9.5vw, 9rem); }
.display--lg { font-size: clamp(3rem, 7vw, 6.4rem); }
.display--md { font-size: clamp(2.45rem, 5vw, 4.8rem); }
.display--sm { font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: .92; }
.accent { color: var(--page-accent); text-shadow: 0 0 32px rgba(var(--page-accent-rgb), .18); }

.lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: #d1d3c9;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--page-accent);
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.button--primary { background: var(--page-accent); color: #050505; }
.button--primary:hover,
.button--primary:focus-visible { background: transparent; color: var(--page-accent); box-shadow: 0 0 28px rgba(var(--page-accent-rgb), .16); }
.button--ghost { border-color: rgba(255,255,255,.28); color: var(--text); background: rgba(5,5,5,.25); }
.button--ghost:hover,
.button--ghost:focus-visible { border-color: var(--page-accent); color: var(--page-accent); }
.button:hover { transform: translateY(-2px); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-meta span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-meta strong { color: var(--text); font-weight: 700; }

.status-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(11,12,9,.82);
}
.status-strip__inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-left: 1px solid var(--line);
}
.status-item:last-child { border-right: 1px solid var(--line); }
.status-item__index { color: var(--page-accent); font-family: var(--mono); font-size: 11px; }
.status-item__text { color: var(--muted); font-size: 13px; }
.status-item__text strong { display: block; color: var(--text); font-size: 14px; }

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--page-accent);
  color: #050505;
}
.marquee-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 11px 24px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.marquee-track span::after { content: "✦"; font-size: 14px; }

.section { padding: clamp(76px, 10vw, 150px) 0; border-bottom: 1px solid var(--line); }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--no-border { border-bottom: 0; }
.section--surface { background: rgba(12,13,10,.74); }
.section--accent { background: var(--page-accent); color: #050505; }
.section--accent .eyebrow { color: #050505; }
.section--accent .eyebrow::before { background: #050505; box-shadow: none; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 46px;
}
.section-head__copy { max-width: 760px; }
.section-kicker { color: var(--muted); max-width: 640px; margin: 20px 0 0; font-size: 17px; line-height: 1.75; }
.section-link { color: var(--page-accent); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10,11,8,.92);
  transition: border-color .3s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.project-card--flagship { grid-column: span 8; }
.project-card--secondary { grid-column: span 4; }
.project-card:hover,
.project-card:focus-within {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 70px rgba(0,0,0,.34);
}
.project-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #090909; }
.project-card--secondary .project-card__media { aspect-ratio: 4 / 5; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; }
.project-card__body { display: flex; flex: 1; flex-direction: column; padding: clamp(22px, 3vw, 38px); }
.project-card__topline { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project-card h3 { margin: 22px 0 0; font-family: var(--display); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.project-card--secondary h3 { font-size: clamp(2.35rem, 4vw, 4rem); }
.project-card p { margin: 20px 0 0; color: var(--muted); line-height: 1.72; }
.project-card__footer { margin-top: auto; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.project-card__link { color: var(--page-accent); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border: 1px solid currentColor;
  padding: 3px 8px;
  color: var(--page-accent);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge--gold { color: var(--gold); }
.badge--cyan { color: var(--cyan); }
.badge--red { color: var(--red); }

.art-card,
.art-frame { position: relative; overflow: hidden; background: #080808; }
.art-card img,
.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.72) contrast(1.14) sepia(.24) saturate(.88) brightness(.82);
  transform: scale(1.003);
  transition: filter .6s ease, transform .9s var(--ease);
}
.art-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--page-accent-rgb), .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--page-accent-rgb), .13) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .5;
  transition: opacity .45s ease;
}
.art-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(var(--page-accent-rgb), .16);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
}
.split--reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.split--reverse .split__media { order: -1; }
.split__media { min-width: 0; }
.split__media .art-card { aspect-ratio: 16 / 11; border: 1px solid var(--line); }
.copy p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.copy p + p { margin-top: 18px; }
.copy .actions { margin-top: 30px; }

.feature-list { margin-top: 34px; border-top: 1px solid var(--line); }
.feature-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list__index { color: var(--page-accent); font-family: var(--mono); font-size: 11px; }
.feature-list strong { display: block; font-size: 15px; }
.feature-list span:last-child { color: var(--muted); font-size: 14px; }

.cards-3,
.cards-4 {
  display: grid;
  gap: 16px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  min-height: 230px;
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(10,11,8,.88);
  transition: border-color .25s ease, transform .3s var(--ease), background .25s ease;
}
.info-card:hover { border-color: var(--line-strong); transform: translateY(-3px); background: rgba(15,16,11,.96); }
.info-card__number { color: var(--page-accent); font-family: var(--mono); font-size: 11px; }
.info-card h3 { margin: 38px 0 0; font-family: var(--display); font-size: 34px; font-weight: 400; line-height: .96; text-transform: uppercase; }
.info-card p { margin: 17px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.info-card__tag { position: absolute; right: 20px; top: 18px; color: var(--dim); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item { grid-column: span 4; margin: 0; min-width: 0; border: 1px solid var(--line); background: var(--surface); }
.gallery-item--wide { grid-column: span 8; }
.gallery-item--full { grid-column: 1 / -1; }
.gallery-item--portrait { grid-column: span 4; }
.gallery-item .art-card { aspect-ratio: 16 / 10; }
.gallery-item--portrait .art-card { aspect-ratio: 4 / 5; }
.gallery-item figcaption {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 12px;
}
.gallery-item figcaption strong { color: var(--text); font-size: 13px; }
.lightbox-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.callout {
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(var(--page-accent-rgb), .08), rgba(10,11,8,.9));
  padding: clamp(28px, 5vw, 64px);
}
.callout p { max-width: 800px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.callout__meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

.timeline { border-top: 1px solid var(--line); }
.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.3fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-row__tag { color: var(--page-accent); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.timeline-row h3 { margin: 0; font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.timeline-row p { margin: 0; color: var(--muted); line-height: 1.72; }

.quote-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: end;
}
.quote-band p { margin: 0; font-family: var(--display); font-size: clamp(3rem, 7vw, 7rem); line-height: .88; text-transform: uppercase; }
.quote-band__side { color: var(--muted); font-size: 17px; line-height: 1.75; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.contact-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(10,11,8,.88);
  transition: border-color .25s ease, transform .3s var(--ease);
}
.contact-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.contact-card__label { color: var(--page-accent); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card h2,
.contact-card h3 { margin: 32px 0 0; font-family: var(--display); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 400; line-height: .92; text-transform: uppercase; }
.contact-card p { margin: 18px 0 0; color: var(--muted); }
.contact-card__link { margin-top: auto; padding-top: 28px; color: var(--page-accent); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; word-break: break-word; text-transform: uppercase; }

.site-footer { background: #030303; border-top: 1px solid var(--line); }
.footer-main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  gap: 50px;
  padding: 70px 0;
}
.footer-brand { font-family: var(--display); font-size: 40px; line-height: .9; text-transform: uppercase; }
.footer-brand span { color: var(--acid); }
.footer-copy { max-width: 500px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.footer-title { color: var(--dim); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin-top: 20px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom__inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(16px);
}
.lightbox.is-open { display: grid; }
.lightbox__figure { max-width: min(1500px, 96vw); max-height: 92vh; margin: 0; }
.lightbox__image { max-width: 100%; max-height: 82vh; margin: auto; border: 1px solid var(--line-strong); object-fit: contain; }
.lightbox__caption { margin-top: 14px; color: var(--muted); text-align: center; font-size: 13px; }
.lightbox__close {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--acid);
  background: #050505;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 22px;
  cursor: pointer;
}

.notice {
  margin-top: 26px;
  border-left: 3px solid var(--page-accent);
  padding: 14px 18px;
  background: rgba(var(--page-accent-rgb), .06);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.notice strong { color: var(--text); }

.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .7s ease, transform .8s var(--ease); }

@media (hover: hover) and (pointer: fine) {
  .art-card:hover img,
  .art-card:focus-within img,
  .art-frame:hover img,
  .project-card:hover .art-card img,
  .project-card:focus-within .art-card img,
  .hero:hover .hero-art img {
    filter: none;
    transform: scale(1.035);
  }
  .art-card:hover::after,
  .art-card:focus-within::after,
  .project-card:hover .art-card::after,
  .hero:hover .hero-art::after { opacity: .22; }
}

@media (hover: none) and (pointer: coarse) {
  .art-card.is-mobile-active img,
  .art-frame.is-mobile-active img,
  .project-card.is-mobile-active .art-card img,
  .hero.is-mobile-active .hero-art img {
    filter: none;
    transform: scale(1.028);
  }
  .art-card.is-mobile-active::after,
  .project-card.is-mobile-active .art-card::after,
  .hero.is-mobile-active .hero-art::after { opacity: .22; }
  .art-card:active img,
  .project-card:active .art-card img { transform: scale(1.045); }
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1120px) {
  .header-cta { display: none; }
  .primary-nav { gap: 16px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .project-card--flagship { grid-column: span 7; }
  .project-card--secondary { grid-column: span 5; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .container, .container--narrow, .hero-content, .status-strip__inner, .footer-main, .footer-bottom__inner { width: min(calc(100% - 30px), var(--max)); }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    margin: 0;
    padding: 10px 15px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5,5,5,.98);
    box-shadow: 0 30px 50px rgba(0,0,0,.55);
  }
  .site-header.is-open .primary-nav { display: grid; }
  .primary-nav a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .primary-nav a::after { display: none; }
  .project-card--flagship, .project-card--secondary { grid-column: 1 / -1; }
  .project-card--secondary .project-card__media { aspect-ratio: 16 / 10; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 42px; }
  .split--reverse .split__media { order: initial; }
  .cards-3 { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--wide, .gallery-item--portrait { grid-column: span 6; }
  .gallery-item--full { grid-column: 1 / -1; }
  .timeline-row { grid-template-columns: 80px 1fr; }
  .timeline-row p { grid-column: 2; }
  .quote-band { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body::before { background-size: 46px 46px; }
  .header-inner { width: calc(100% - 24px); gap: 12px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: 760px; }
  .hero--compact { min-height: 690px; }
  .hero-art::before {
    background:
      linear-gradient(to top, rgba(5,5,5,.99) 4%, rgba(5,5,5,.78) 52%, rgba(5,5,5,.28) 100%),
      linear-gradient(to right, rgba(5,5,5,.72), rgba(5,5,5,.2));
  }
  .hero-art img { object-position: 58% center; }
  .display--hero { font-size: clamp(4.2rem, 22vw, 7.2rem); }
  .display--xl { font-size: clamp(3.8rem, 19vw, 6.2rem); }
  .display--lg { font-size: clamp(3.1rem, 16vw, 5.3rem); }
  .hero-content { padding-bottom: 48px; }
  .hero-meta { gap: 14px 20px; }
  .hero-meta span { flex-basis: calc(50% - 10px); }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .status-strip__inner { grid-template-columns: 1fr; }
  .status-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .status-item:last-child { border-bottom: 0; }
  .section-head { display: block; }
  .section-link { display: inline-block; margin-top: 22px; }
  .cards-4 { grid-template-columns: 1fr; }
  .info-card { min-height: 210px; }
  .gallery-grid { gap: 12px; }
  .gallery-item, .gallery-item--wide, .gallery-item--portrait, .gallery-item--full { grid-column: 1 / -1; }
  .gallery-item .art-card, .gallery-item--portrait .art-card { aspect-ratio: 16 / 10; }
  .gallery-item figcaption { min-height: 62px; }
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .timeline-row p { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom__inner { display: block; }
  .footer-bottom__inner span + span { display: block; margin-top: 12px; }
  .lightbox { padding: 14px; }
  .lightbox__close { right: 10px; top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .art-card img, .art-frame img, .hero-art img { transform: none !important; }
}

[id] { scroll-margin-top: calc(var(--header-h) + 22px); }

/* Defensive layout guards for narrow touch screens. */
ul, ol { margin: 0; padding: 0; list-style: none; }
.split > *, .project-grid > *, .gallery-grid > *, .cards-3 > *, .cards-4 > * { min-width: 0; }
.hero-art, .art-card, .art-frame, .marquee { contain: paint; }
.marquee { width: 100%; max-width: 100vw; overflow: clip; }
html, body, .site-shell { width: 100%; max-width: 100%; overflow-x: clip; }

/* 2026-08-01 refinement: more breathing room in display type */
.display {
  letter-spacing: .002em;
  line-height: .96;
  text-wrap: balance;
}
.display--hero { font-size: clamp(4rem, 9.2vw, 9.4rem); }
.display--xl { font-size: clamp(3.7rem, 7.7vw, 7.4rem); }
.display--lg { font-size: clamp(3rem, 5.8vw, 5.6rem); }
.display--md { font-size: clamp(2.45rem, 4.3vw, 4.35rem); }
.hero-copy { max-width: 1060px; }
.hero-copy--narrow { max-width: 900px; }

.job-list { display: grid; gap: 18px; }
.job-card { border: 1px solid var(--line); background: rgba(10,11,9,.88); padding: clamp(24px,4vw,48px); }
.job-card__meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.job-card__meta span { border:1px solid var(--line-strong); padding:7px 10px; color:var(--page-accent); font:700 10px/1 var(--mono); letter-spacing:.1em; text-transform:uppercase; }
.job-card h3 { margin:0; font-family:var(--display); font-size:clamp(2.2rem,4.5vw,4.6rem); font-weight:400; line-height:.98; text-transform:uppercase; }
.job-card h4 { margin:28px 0 10px; color:var(--page-accent); font:700 11px/1.3 var(--mono); letter-spacing:.12em; text-transform:uppercase; }
.job-card p { max-width:900px; margin:18px 0 0; color:var(--muted); }
.job-card ul { margin:12px 0 28px; padding-left:20px; color:#d1d3c9; }
.job-card li + li { margin-top:8px; }
.contact-simple { max-width:980px; padding-top:clamp(30px,5vw,70px); padding-bottom:clamp(30px,5vw,70px); }
.contact-simple p { max-width:760px; margin:28px 0 0; color:var(--muted); font-size:clamp(1rem,1.4vw,1.2rem); line-height:1.75; }
.contact-email { display:inline-block; margin-top:38px; color:var(--page-accent); font:700 clamp(1.1rem,2.5vw,2rem)/1.2 var(--mono); letter-spacing:.02em; word-break:break-word; }

@media (max-width: 720px) {
  .display { line-height: 1.01; }
  .display--hero { font-size: clamp(3.6rem, 17vw, 6rem); }
  .display--xl { font-size: clamp(3.35rem, 15vw, 5.5rem); }
  .display--lg { font-size: clamp(2.9rem, 13vw, 4.8rem); }
  .job-card { padding:24px 20px; }
  .job-card h3 { font-size:clamp(2.2rem,11vw,3.6rem); }
}
