:root {
  --bg: #2d292c;
  --ink: #eaeaea;
  --muted: rgba(234,234,234,.62);
  --line: rgba(234,234,234,.16);
  --pad: clamp(22px, 4vw, 64px);
  --content: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.4;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url('assets/noise-10.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

main,
.site-nav,
.nox-anchor { position: relative; z-index: 1; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-nav {
  position: fixed;
  top: 22px;
  right: var(--pad);
  display: flex;
  gap: 26px;
  z-index: 90;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .35s ease, transform .35s ease;
}
.site-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
.site-nav a {
  color: rgba(234,234,234,.72);
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); }

.nox-anchor {
  position: fixed;
  left: var(--pad);
  bottom: 28px;
  width: 72px;
  height: 72px;
  z-index: 88;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease, filter .25s ease;
}
.nox-anchor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .64;
}
.nox-anchor.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
.nox-anchor:hover img {
  opacity: .95;
  filter: drop-shadow(0 0 9px rgba(255,255,255,.13));
}

.section {
  position: relative;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(48px, 7vh, 76px);
}
.hero-lockup {
  position: relative;
  width: clamp(300px, 34vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-lockup-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: .72;
  transition: filter .3s ease;
}
.hero-lockup::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg,
    transparent 38%,
    rgba(255,255,255,.05) 43%,
    rgba(255,255,255,.96) 50%,
    rgba(255,255,255,.07) 57%,
    transparent 62%);
  background-size: 320% 100%;
  background-position: 120% 0;
  -webkit-mask: url('assets/recon-lockup-white.svg') center / 100% 100% no-repeat;
  mask: url('assets/recon-lockup-white.svg') center / 100% 100% no-repeat;
  animation: heroWaveLTR 12s linear infinite;
}
@keyframes heroWaveLTR {
  0%,12% { background-position: 120% 0; }
  82%,100% { background-position: -20% 0; }
}
.hero-lockup-img:hover {
  filter: drop-shadow(0 0 10px rgba(255,255,255,.25));
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 400;
  opacity: .9;
}

.section-index,
.project-status,
.project-location {
  margin: 0;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-status strong {
  color: rgba(234,234,234,.94);
  font-weight: 600;
}

.practice {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(110px, 14vw, 210px);
}
.practice-grid {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) 1fr;
  gap: clamp(36px, 6vw, 96px);
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.practice-copy {
  max-width: 920px;
}
.practice-copy h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(26px, 3.1vw, 49px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 300;
}
.practice-copy p {
  margin: clamp(30px, 3vw, 46px) 0 0;
  max-width: 620px;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.45;
  color: rgba(234,234,234,.68);
}

.work {
  padding-top: 0;
  padding-bottom: clamp(100px, 13vw, 210px);
}
.section-header {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: stretch;
  margin-bottom: clamp(120px, 14vw, 220px);
}
.project-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 4px;
}
.project-meta h2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0 12px;
  max-width: 100%;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 400;
  overflow: hidden;
}
.project-name-long {
  font-size: clamp(31px, 3.35vw, 52px);
  letter-spacing: -.035em;
  white-space: nowrap;
}
.project-location { margin-bottom: 38px; }
.project-line {
  margin: 0;
  max-width: 520px;
  font-size: clamp(20px, 1.75vw, 29px);
  line-height: 1.18;
  font-weight: 300;
  opacity: .88;
}
.project-media {
  min-height: 690px;
  overflow: hidden;
  background: #111;
}
.nummi-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 55%;
  transform: scale(1.34);
  transform-origin: 32% 55%;
  filter: saturate(.72) contrast(1.04) brightness(.84);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.nummi-media:hover img {
  transform: scale(1.37);
  filter: saturate(.78) contrast(1.06) brightness(.88);
}

.project-reset {
  grid-template-columns: minmax(0, 1.26fr) minmax(0, .74fr);
}
.reset-meta { min-height: 760px; }
.reset-media {
  min-height: 760px;
  background: transparent;
  overflow: hidden;
  align-self: stretch;
}
.reset-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.94) contrast(1.02);
  transition: filter .65s ease;
}
.reset-media:hover img {
  filter: brightness(.985) contrast(1.025);
}

.contact {
  padding-top: clamp(30px, 4vw, 70px);
  padding-bottom: 30px;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) 1fr;
  gap: clamp(36px, 6vw, 96px);
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.contact h2 {
  margin: 0 0 46px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 400;
}
.contact-form {
  width: min(100%, 760px);
  display: grid;
  gap: 26px;
}
.contact-form label { display: grid; gap: 9px; }
.contact-form label span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(234,234,234,.28);
  border-radius: 0;
  padding: 12px 0 14px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: rgba(234,234,234,.75); }
.contact-form button {
  justify-self: start;
  margin-top: 8px;
  padding: 11px 22px;
  border: 1px solid rgba(234,234,234,.35);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.contact-form button:hover { border-color: rgba(234,234,234,.78); }
.honeypot { position: absolute; left: -9999px; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  min-height: 136px;
  margin-top: clamp(108px, 12vw, 180px);
  padding: 30px 0 24px 104px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-left {
  display: flex;
  align-items: flex-end;
  min-height: 56px;
  font-size: 11px;
  letter-spacing: .01em;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.x-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(234,234,234,.74);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.x-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: square;
}
.x-link:hover { color: var(--ink); }
.footer-domain {
  font-size: 14px;
  letter-spacing: .01em;
  color: rgba(234,234,234,.7);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1320px) and (min-width: 1201px) {
  .reset-meta,
  .reset-media {
    min-height: clamp(640px, 50vw, 690px);
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .project-reset {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-reset .project-meta {
    order: 1;
    min-height: auto;
  }
  .project-reset .project-media {
    order: 2;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .reset-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 900px) {
  .site-nav { top: 18px; }
  .practice-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .practice-copy { max-width: 760px; }
  .project,
  .project-reset {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-meta,
  .reset-meta { min-height: auto; }
  .project-nummi .project-meta,
  .project-reset .project-meta { order: 1; }
  .project-nummi .project-media,
  .project-reset .project-media { order: 2; }
  .project-media,
  .reset-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .nummi-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 32% 55%;
    transform: scale(1.42);
    transform-origin: 32% 55%;
  }
  .reset-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .project-name-long { white-space: normal; }
}

@media (max-width: 600px) {
  .site-nav { gap: 18px; font-size: 12px; }
  .nox-anchor {
    width: 54px;
    height: 54px;
    bottom: 22px;
  }
  .hero { gap: 42px; }
  .hero-lockup { width: min(84vw, 410px); }
  .hero-copy h1 { font-size: 18px; }
  .practice { padding-top: 52px; }
  .practice-copy h2 { font-size: 30px; }
  .project-meta h2 { font-size: 52px; }
  .project-name-long { font-size: 37px; }
  .nummi-media img,
  .nummi-media:hover img {
    object-position: 32% 68%;
    transform-origin: 32% 68%;
    transform: scale(1.66);
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    min-height: 168px;
    padding: 28px 0 30px 74px;
  }
  .footer-right {
    align-items: flex-start;
  }
  .x-link,
  .footer-domain { font-size: 13px; }
}

@media (orientation: landscape) and (max-width: 950px) and (max-height: 520px) {
  .nummi-media img,
  .nummi-media:hover img {
    object-position: 32% 66%;
    transform-origin: 32% 66%;
    transform: scale(1.62);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-nav { opacity: 1; transform: none; }
  .nox-anchor { transition: none; }
  .nummi-media img,
  .reset-media img,
  .hero-lockup-img { transition: none; }
  .hero-lockup::after { animation: none; opacity: 0; }
}
