@font-face{font-family:'Archivo';src:url('fonts/archivo-400_900.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap}

:root {
  --plaster: #F4F1EC;
  --slate: #243040;
  --day: #6E8FA8;
  --brass: #8B7843;
  --oxblood: #8C2F27;
  --avx: #FF4D00;
  --avx-ink: #14181F;
  --rule: rgba(36, 48, 64, 0.14);
  --mute: rgba(36, 48, 64, 0.78);
  --display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --avx-display: "Archivo", "Sora", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(14px, 2.2vw, 32px);
  --mast: 48px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--plaster);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-padding-top: var(--mast);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  background: var(--plaster);
  color: var(--mute);
  min-height: 100%;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--slate); color: var(--plaster); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--slate);
  color: var(--plaster);
  font-family: var(--mono);
  font-size: 12px;
}
.skip:focus { top: 12px; }

.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  height: var(--mast);
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--plaster) 92%, white);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--slate);
}
.brand img { width: 28px; height: 28px; object-fit: contain; }

nav {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--day);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
nav a:hover::after { transform: scaleX(1); }

.clock {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mute);
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--brass);
  color: var(--plaster);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.chip:hover { filter: brightness(1.06); }

main { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 1.8vw, 28px);
  align-items: stretch;
  height: calc(100svh - var(--mast));
  min-height: calc(100svh - var(--mast));
  max-height: calc(100svh - var(--mast));
  padding: 8px var(--pad) 10px;
  background: var(--plaster);
  overflow: hidden;
}

.hero-copy {
  grid-column: 1 / span 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 10px 8px 4px 0;
}

.hero-intro {
  flex: 0 0 auto;
}

.hero-notes {
  margin-top: 22px;
  padding-top: 0;
  max-width: 36em;
}

.notes-head {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.48;
  margin-bottom: 10px;
}

.notes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 2px solid var(--brass);
  padding-left: 14px;
}

.note dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 3px;
}

.note dd {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--mute);
}

.note-path dd > p:last-child {
  margin-top: 5px;
}

.note-vision dd {
  color: var(--slate);
}

.path-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.path-sep {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--brass);
}

.path-open {
  opacity: 0.55;
  border-bottom: 1px dashed rgba(36, 48, 64, 0.45);
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
  margin-bottom: 6px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--slate);
}
.hero h1 .line { display: block; }

.tag {
  font-size: clamp(15px, 1.2vw, 18px);
  margin-top: 10px;
  max-width: 28em;
  color: var(--slate);
  opacity: 0.78;
  line-height: 1.4;
}

.lede {
  max-width: 36em;
  margin-top: 8px;
  color: var(--mute);
  font-size: 15.5px;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.hero-meta a { text-transform: none; letter-spacing: 0.02em; }
.hero-meta a:hover { color: var(--day); }
.pill {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid var(--rule);
  color: var(--slate);
}

.hero-plan {
  grid-column: 6 / span 7;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: visible;
}

.plan {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: visible;
  color: var(--slate);
}

.plan-fill-hall { fill: rgba(36, 48, 64, 0.045); pointer-events: none; }
.plan-fill-studio { fill: rgba(244, 241, 236, 0.2); transition: fill 0.35s var(--ease); }
.plan-tint-studio { fill: var(--oxblood); opacity: 0.38; pointer-events: none; }
.plan-door-rug { fill: var(--oxblood); opacity: 0.22; pointer-events: none; }
.plan-fill-avx { fill: #243040; transition: fill 0.35s var(--ease); }
.plan-threshold { fill: #FF4D00; pointer-events: none; }
.plan-fill-lab { fill: url(#lab-hatch); transition: fill 0.35s var(--ease); }

.plan-hit { cursor: pointer; }
.plan-hit image { pointer-events: none; }
.plan-studio:hover .plan-fill-studio,
.plan-studio:focus-visible .plan-fill-studio { fill: rgba(140, 47, 39, 0.16); }
.plan-avx:hover .plan-fill-avx,
.plan-avx:focus-visible .plan-fill-avx { fill: #2f4158; }
.plan-lab:hover .plan-fill-lab,
.plan-lab:focus-visible .plan-fill-lab { fill: rgba(110, 143, 168, 0.2); }

.plan-lbl {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-anchor: middle;
  fill: var(--slate);
  pointer-events: none;
}
.plan-lbl-on-slate { fill: var(--plaster); font-size: 16px; letter-spacing: 0.22em; }
.plan-lbl-avx {
  font-family: var(--avx-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-anchor: middle;
  fill: var(--plaster);
  pointer-events: none;
}
.plan-hint {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-anchor: middle;
  fill: var(--slate);
  opacity: 0.55;
  pointer-events: none;
}
.plan-hint-on-slate { fill: var(--plaster); opacity: 0.7; letter-spacing: 0.22em; }
.plan-hint-lab { letter-spacing: 0.14em; font-size: 8.5px; }
.plan-hint-avx { letter-spacing: 0.2em; }
.plan-studio:hover .plan-hint { opacity: 0.9; }
.plan-quiet {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-anchor: middle;
  fill: var(--slate);
  opacity: 0.45;
  pointer-events: none;
}
.plan-furn rect {
  fill: none;
  stroke: #243040;
  stroke-width: 1.15;
  opacity: 0.38;
}
.plan-furn-dash { stroke-dasharray: 4 3; }
.plan-furn-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-anchor: middle;
  fill: var(--slate);
  opacity: 0.42;
  pointer-events: none;
}
.plan-dash { stroke-dasharray: 7 5; }
.plan-swing { opacity: 0.55; }


.from {
  min-height: 0;
  background: var(--plaster);
  color: var(--mute);
  padding: clamp(22px, 3.2vh, 36px) var(--pad) clamp(28px, 4vh, 48px);
  border-top: 1px solid var(--rule);
  overflow: hidden;
}
.from-in {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  column-gap: clamp(20px, 3.2vw, 48px);
  row-gap: 20px;
  align-items: start;
  max-width: 1280px;
}
.from-plate {
  min-width: 0;
  padding-bottom: 12px;
}
.from h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--slate);
}
.from-origin {
  margin-top: 10px;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.4;
  color: var(--slate);
  max-width: 14em;
}
.from-copy {
  min-width: 0;
  padding-top: 4px;
  border-top: 2px solid var(--brass);
}
.from-copy p {
  font-size: clamp(16px, 1.28vw, 19.5px);
  line-height: 1.58;
  max-width: 36em;
  color: var(--mute);
}
.from-copy p + p { margin-top: 1.1em; }
.from-sign {
  margin-top: 2.1em !important;
  font-family: var(--mono);
  font-size: 12px !important;
  letter-spacing: 0.06em;
  line-height: 1.7 !important;
  color: var(--slate);
}
.from-sign a { letter-spacing: 0.02em; }
.from-sign a:hover { color: var(--day); }
@media (max-width: 900px) {
  .from { min-height: 0; padding-top: 20px; padding-bottom: 28px; }
  .from-in { grid-template-columns: 1fr; column-gap: 0; }
  .from-copy { border-top: 2px solid var(--brass); }
}

.walk { position: relative; overflow: hidden; }

.walk-studio {
  min-height: calc(100svh - var(--mast));
  background:
    linear-gradient(105deg, rgba(140, 47, 39, 0.07) 0 14%, transparent 46%),
    linear-gradient(180deg, #EFEBE3 0%, var(--plaster) 42%, #E7E1D6 100%);
  color: var(--mute);
  display: flex;
  align-items: stretch;
}
.oxblood {
  flex: 0 0 22px;
  background: var(--oxblood);
}
.walk-studio .walk-in {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vh, 96px) clamp(28px, 6vw, 96px);
  min-width: 0;
  position: relative;
}
.walk-studio h2,
.walk-lab h2,
.operator h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--slate);
}
.walk-studio .lede { max-width: 34em; }

.room-ticks {
  list-style: none;
  margin-top: 28px;
  max-width: 38em;
  border-top: 1px solid var(--rule);
}
.room-ticks li {
  display: grid;
  grid-template-columns: 7.2em 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--mute);
}
.room-ticks span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
}

.host {
  display: block;
  margin-top: 36px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--slate);
  width: max-content;
  max-width: 100%;
}
.host:hover { color: var(--oxblood); }

.desk {
  margin-top: 48px;
  margin-bottom: 8px;
  width: min(100%, 920px);
}
.desk-top {
  display: block;
  height: 56px;
  background: linear-gradient(180deg, rgba(36, 48, 64, 0.03), rgba(36, 48, 64, 0.08));
  border-top: 1px solid rgba(36, 48, 64, 0.12);
}
.desk-edge {
  display: block;
  height: 4px;
  background: var(--slate);
  opacity: 0.55;
}

.go {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid var(--slate);
  color: var(--slate);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
  transition: background 0.35s var(--ease), color 0.35s;
}
.go:hover { background: var(--slate); color: var(--plaster); }

.walk-avx {
  min-height: 68svh;
  background: var(--avx-ink);
  color: #D8D4CC;
  display: flex;
  align-items: center;
  padding: clamp(40px, 7vh, 72px) var(--pad);
}
.walk-avx .walk-in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: clamp(28px, 5vw, 80px);
  row-gap: 36px;
  align-items: center;
  width: 100%;
}
.avx-story {
  max-width: 32em;
  min-width: 0;
}
.avx-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4F1EC;
  opacity: 0.42;
  margin-bottom: 10px;
}
.avx-label-vision {
  margin-top: 28px;
}
.avx-who {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F4F1EC;
  margin-bottom: 14px;
}
.avx-why {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
  color: #D8D4CC;
  max-width: 28em;
}
.avx-why + .avx-why {
  margin-top: 10px;
}
.avx-vision {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
  color: #EDEAE4;
  max-width: 28em;
}
.avx-in {
  width: min(640px, 100%);
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.avx-logo {
  display: block;
  width: min(420px, 100%);
  height: auto;
}
.avx-title {
  font-family: var(--avx-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #F4F1EC;
  line-height: 1;
}
.avx-line {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: #EDEAE4;
  max-width: 22em;
}
.go-avx {
  border-color: var(--avx);
  color: var(--avx);
}
.go-avx:hover { background: var(--avx); color: var(--avx-ink); }

.avx-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  width: 100%;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 77, 0, 0.35);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D8D4CC;
}
.avx-facts b {
  color: var(--avx);
  font-weight: 500;
  margin-right: 6px;
}

.walk-lab {
  min-height: calc(100svh - var(--mast));
  background: var(--plaster);
  padding: clamp(28px, 6vh, 64px) var(--pad);
  display: flex;
}
.lab-frame {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(32px, 7vh, 64px) clamp(28px, 6vw, 72px) clamp(28px, 6vw, 72px);
  border: 2px dashed rgba(36, 48, 64, 0.35);
  min-height: calc(100svh - var(--mast) - 80px);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 12px,
      rgba(110, 143, 168, 0.06) 12px 13px
    );
}
.lab-in {
  max-width: 40em;
}
.walk-lab .lede + .lede {
  margin-top: 10px;
}
.lab-note {
  margin-top: 16px;
  max-width: 34em;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--slate);
  opacity: 0.7;
}

.operator {
  padding: 48px var(--pad) 56px;
  background: var(--plaster);
  border-top: 1px solid var(--rule);
}
.operator h2 { margin-bottom: 28px; }

.ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ledger div {
  padding: 22px 28px;
  border-right: 1px solid var(--rule);
}
.ledger div:last-child { border-right: 0; }
.ledger dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--slate);
  opacity: 0.5;
  margin-bottom: 6px;
}
.ledger dd {
  font-size: 17px;
  color: var(--slate);
}
.ledger a:hover { color: var(--day); }

.op-note {
  margin-top: 18px;
  max-width: 40em;
  font-size: 14.5px;
  color: var(--mute);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px var(--pad) 28px;
  border-top: 1px solid var(--rule);
  background: var(--plaster);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mute);
}
footer a { letter-spacing: 0.02em; }
footer a:hover { color: var(--day); }

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
    row-gap: 8px;
    padding: 8px var(--pad) 12px;
  }
  .hero-copy, .hero-plan { grid-column: 1 / -1; }
  .hero-copy { justify-content: flex-start; height: auto; padding: 4px 0 0; }
  .hero-notes { margin-top: 22px; padding-top: 16px; }
  .plan { min-height: 54svh; height: 54svh; }
  .ledger { grid-template-columns: 1fr 1fr; }
  .ledger div:nth-child(2) { border-right: 0; }
}

@media (max-width: 980px) {
  .mast { grid-template-columns: auto 1fr auto; }
  .clock { display: none; }
}

@media (max-width: 860px) {
  .walk-avx .walk-in { grid-template-columns: 1fr; }
  .avx-in { justify-self: start; }
}

@media (max-width: 720px) {
  nav { display: none; }
  .mast { grid-template-columns: 1fr auto; }
  .chip { font-size: 9px; padding: 0 8px; }
  .oxblood { flex-basis: 12px; }
  .host { font-size: clamp(22px, 8vw, 40px); }
  .room-ticks li { grid-template-columns: 1fr; gap: 2px; }
  .ledger { grid-template-columns: 1fr; }
  .ledger div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .ledger div:last-child { border-bottom: 0; }
}

@media (max-height: 760px) and (min-width: 1041px) {
  .hero h1 { font-size: clamp(26px, 3.2vw, 42px); }
  .tag { margin-top: 6px; font-size: 14.5px; }
  .lede { margin-top: 6px; font-size: 14.5px; }
  .hero-meta { margin-top: 10px; }
  .hero-notes { padding-top: 10px; }
  .notes { gap: 8px; }
  .note dd { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero-intro,
  html.js .note,
  html.js .plan-mark { transform: none; }
}

html.js:not(.is-static):not(.is-in) .hero-intro { transform: translateX(-46vw); }
html.js:not(.is-static):not(.is-in) .note { transform: translateX(-36px); }
html.js:not(.is-static):not(.is-in) .plan-mark { transform: translateY(10px); }
