:root {
  --bg: #000000;
  --ink: #ffffff;
  --muted: #8a8a8a;
  --dim: #767676;   /* 4.6:1 on black — passes WCAG AA for body text */
  --line: #1e1e1e;
  --line-strong: #383838;
  --max: 1320px;
  --gut: clamp(20px, 5vw, 64px);
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: #fff; color: #000; }

a { color: inherit; }

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

.display {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.92;
}

.label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.sr-only {
  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: -9999px; top: 0; z-index: 200;
  background: #fff; color: #000; padding: 12px 20px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------- Lockup: original T11 mark + live-text VENTURES ---------- */
.lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.lockup img { display: block; width: auto; height: 24px; }
.lockup .ventures {
  font-size: 10px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  padding-left: 12px; border-left: 1px solid var(--line-strong);
  line-height: 1;
}

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.bar {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.bar nav { display: flex; gap: clamp(20px, 3vw, 44px); }
.bar nav a {
  color: var(--muted); text-decoration: none;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500;
  transition: color .2s ease;
}
.bar nav a:hover { color: var(--ink); }

.menu-btn {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 10px 0 10px 20px;
  color: var(--ink);
}
.menu-btn span {
  display: block; width: 26px; height: 1px; background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-btn span + span { margin-top: 7px; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.overlay {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gut);
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  visibility: hidden;
}
body.menu-open .overlay { transform: none; visibility: visible; }
.overlay nav { display: flex; flex-direction: column; }
.overlay a {
  display: block;
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(34px, 11vw, 64px); line-height: 1;
  text-decoration: none; color: var(--ink);
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.overlay a:first-child { border-top: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vh, 96px));
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-mark { display: flex; align-items: flex-end; gap: 18px; }
.hero-mark img { display: block; width: auto; height: clamp(56px, 9vw, 96px); }
.hero-mark .ventures {
  font-size: clamp(11px, 1.3vw, 14px); font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 6px;
}

.hero h1 {
  margin-top: clamp(32px, 5.5vh, 64px);
  font-size: clamp(44px, 8.8vw, 132px);
  max-width: 16ch;
}

.hero-foot {
  margin-top: clamp(32px, 5vh, 56px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px; align-items: start;
}
.hero-foot p {
  color: var(--muted); font-weight: 300;
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 52ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
@media (min-width: 861px) { .cta-row { justify-content: flex-end; } }

.btn {
  display: inline-block; text-decoration: none;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500;
  padding: 17px 32px;
  border: 1px solid var(--ink);
  color: var(--ink); background: transparent;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: #000; }
.btn.ghost { border-color: var(--line-strong); color: var(--muted); }
.btn.ghost:hover { border-color: var(--ink); background: var(--ink); color: #000; }

.ticker {
  margin-top: clamp(36px, 6vh, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding-left: 0; padding-right: 0;
}
.ticker span {
  padding: 18px var(--gut);
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--dim); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ticker span + span { border-left: 1px solid var(--line); }

/* ---------- Section scaffolding ---------- */
section { border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }
.band { padding: clamp(80px, 12vh, 150px) 0; }
.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3.2fr);
  gap: clamp(28px, 5vw, 72px);
}
.cols > .label { align-self: start; }
@media (min-width: 861px) {
  .cols > .label { position: sticky; top: calc(var(--nav-h) + 40px); }
}

.lede {
  font-size: clamp(19px, 2.15vw, 30px);
  font-weight: 400; line-height: 1.38; letter-spacing: -0.01em;
  max-width: 30ch;
}
.sub {
  margin-top: 26px; max-width: 58ch;
  color: var(--muted); font-weight: 300; font-size: 16px;
}

/* ---------- Thesis ---------- */
.pillars {
  margin-top: clamp(56px, 8vh, 96px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  border-top: 1px solid var(--line-strong);
  padding: 26px clamp(18px, 2.2vw, 34px) 8px 0;
}
.pillar + .pillar { padding-left: clamp(18px, 2.2vw, 34px); border-left: 1px solid var(--line); }
.pillar .idx {
  font-size: 11px; letter-spacing: .24em; color: var(--dim);
  display: block; font-weight: 500;
}
.pillar h3 {
  font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(22px, 2.4vw, 34px);
  margin-top: 18px;
}
.pillar p {
  margin-top: 14px; color: var(--muted);
  font-size: 14.5px; font-weight: 300; max-width: 34ch;
}

/* ---------- Current venture ---------- */
.venture-name {
  font-size: clamp(42px, 9vw, 132px);
  margin-bottom: 10px;
}
.venture-body { max-width: 54ch; color: var(--muted); font-weight: 300; font-size: clamp(15px, 1.35vw, 18px); margin-top: 26px; }
.status {
  display: inline-flex; align-items: center; gap: 11px;
  margin-top: 34px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.status i {
  width: 7px; height: 7px; background: var(--ink); display: block;
  animation: blink 2.4s steps(1, end) infinite;
}
@keyframes blink { 0%, 60% { opacity: 1 } 61%, 100% { opacity: .18 } }
.venture-cta { margin-top: 44px; }

/* ---------- Model ---------- */
.model-head { font-size: clamp(32px, 5.2vw, 76px); }
.stages { margin-top: clamp(52px, 7vh, 84px); }
.stage {
  display: grid;
  grid-template-columns: 92px minmax(160px, 1.1fr) minmax(0, 2.4fr);
  gap: 24px; align-items: baseline;
  border-top: 1px solid var(--line);
  padding: clamp(24px, 3.4vh, 38px) 0;
  transition: padding-left .3s ease, border-color .3s ease;
}
.stage:last-child { border-bottom: 1px solid var(--line); }
.stage:hover { padding-left: 14px; border-color: var(--line-strong); }
.stage .idx { font-size: 11px; letter-spacing: .24em; color: var(--dim); font-weight: 500; }
.stage h3 {
  font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; font-size: clamp(24px, 3.2vw, 46px);
  line-height: 1; letter-spacing: .01em;
}
.stage p { color: var(--muted); font-weight: 300; font-size: 15.5px; max-width: 52ch; }

/* ---------- Statement ---------- */
.statement { padding: clamp(110px, 20vh, 220px) 0; }
.statement p {
  font-size: clamp(34px, 7.6vw, 116px);
  max-width: 17ch;
}
.statement .w {
  display: inline-block;
  opacity: 0; transform: translateY(0.22em);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.statement.in .w { opacity: 1; transform: none; }

/* ---------- Join / form ---------- */
.join-head .display { color: var(--ink); font-size: clamp(34px, 5.6vw, 82px); }
.join-head .copy { margin-top: 26px; max-width: 54ch; color: var(--muted); font-weight: 300; font-size: 16px; }
.roles {
  margin-top: 22px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}

form { margin-top: clamp(52px, 7vh, 80px); }
.fields {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line); padding-top: 10px;
}
.field { display: flex; flex-direction: column; padding: 26px 0 4px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 12px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit; font-size: 15px; font-weight: 300;
  color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding: 8px 0 12px;
  width: 100%; transition: border-color .25s ease;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: none; cursor: pointer; }
.field select option { background: #000; color: #fff; }
.field textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--ink); outline: none; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }
.field ::placeholder { color: var(--dim); }
.hp { position: absolute; left: -9999px; }

.submit-row {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
button.btn { cursor: pointer; font-family: inherit; }
.submit-note { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vh, 76px) 0 34px; }
.foot-top { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-start; }
.foot-id .descriptor {
  margin-top: 18px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.foot-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.foot-nav a {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s ease;
}
.foot-nav a:hover { color: var(--ink); }
.foot-bot {
  margin-top: clamp(48px, 7vh, 76px); padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stage { grid-template-columns: 72px minmax(140px, 1fr) minmax(0, 1.8fr); }
}
@media (max-width: 860px) {
  .bar nav { display: none; }
  .menu-btn { display: block; }
  .cols { grid-template-columns: 1fr; gap: 26px; }
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 24px 0 4px; }
  .pillar + .pillar { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .ticker .wrap { grid-template-columns: 1fr; }
  .ticker span { padding: 14px var(--gut); }
  .ticker span + span { border-left: 0; border-top: 1px solid var(--line); }
  .stage { grid-template-columns: 56px 1fr; row-gap: 14px; }
  .stage p { grid-column: 2 / -1; }
  .fields { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .lockup .ventures { letter-spacing: .26em; }
  .hero-mark { gap: 12px; }
}

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

/* ---------- About: definition rows ---------- */
.defs { margin-top: clamp(52px, 7vh, 84px); }
.def {
  display: grid;
  grid-template-columns: 92px minmax(150px, 1fr) minmax(0, 2.4fr);
  gap: 24px; align-items: baseline;
  border-top: 1px solid var(--line);
  padding: clamp(22px, 3vh, 34px) 0;
}
.def:last-child { border-bottom: 1px solid var(--line); }
.def .idx { font-size: 11px; letter-spacing: .24em; color: var(--dim); font-weight: 500; }
.def dt {
  font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1; letter-spacing: .01em;
}
.def dd { color: var(--muted); font-weight: 300; font-size: 15.5px; max-width: 52ch; }

/* ---------- About: studio address ---------- */
.studio-address {
  font-style: normal; font-weight: 300; font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.5; max-width: 30ch;
}
.studio-address .city { color: var(--muted); }

/* ---------- About: office gallery ---------- */
.gallery {
  margin-top: clamp(48px, 7vh, 80px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.plate { margin: 0; }
.plate.lead { grid-column: 1 / -1; }
.frame {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  background: #060606;
  display: flex; align-items: center; justify-content: center;
}
.gallery .plate:not(.lead) .frame { aspect-ratio: 3 / 4; }
.frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* the studio photos sit inside the monochrome system; colour returns on hover */
  filter: grayscale(1) contrast(1.04);
  transition: filter .5s ease;
}
.plate:hover .frame img { filter: none; }
.plate figcaption {
  margin-top: 12px;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--dim); font-weight: 500;
}

@media (max-width: 1080px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .def { grid-template-columns: 56px 1fr; row-gap: 12px; }
  .def dd { grid-column: 2 / -1; }
}

/* ---------- Utility pages (thanks, 404) ---------- */
body.page-utility { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
body.page-utility header { position: static; }
body.page-utility main {
  flex: 1; display: flex; align-items: center;
  padding: clamp(80px, 14vh, 180px) 0;
}
body.page-utility .label { display: block; margin-bottom: 34px; }
body.page-utility h1 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  line-height: .92; letter-spacing: -.005em; font-size: clamp(44px, 9vw, 132px);
}
body.page-utility .copy {
  margin-top: 30px; max-width: 48ch;
  color: var(--muted); font-weight: 300; font-size: 16px;
}
body.page-utility .btn { margin-top: 48px; }
body.page-utility footer { padding: 24px 0; }
body.page-utility footer .wrap {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}

/* ---------- Careers ---------- */
.role {
  margin-top: clamp(48px, 7vh, 80px);
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(28px, 4vh, 44px);
}
.role-title { font-size: clamp(28px, 4.4vw, 62px); }
.role-tags {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 0;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.role-tags span + span::before {
  content: ""; display: inline-block;
  width: 1px; height: 9px; background: var(--line-strong);
  margin: 0 16px; vertical-align: -1px;
}
.role-lede {
  margin-top: clamp(28px, 4vh, 40px); max-width: 62ch;
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 300; color: var(--muted);
}

.block { margin-top: clamp(40px, 5.5vh, 64px); }
.block > h3 {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-strong);
}
.block ul { list-style: none; margin-top: 4px; }
.block li {
  position: relative; padding: 18px 0 18px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted); font-weight: 300; font-size: 15.5px;
  max-width: 74ch;
}
.block li::before {
  content: ""; position: absolute; left: 0; top: 1.75em;
  width: 12px; height: 1px; background: var(--dim);
}
.block > p {
  margin-top: 20px; max-width: 68ch;
  color: var(--muted); font-weight: 300; font-size: 15.5px;
}
.block .note {
  margin-top: 22px; max-width: 68ch;
  color: var(--muted); font-weight: 300; font-size: 14px;
}

.block .pay {
  margin-top: 24px;
  font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(26px, 3.4vw, 46px);
  color: var(--ink);
}
.block .pay-sub { margin-top: 16px; color: var(--muted); font-weight: 300; font-size: 15.5px; max-width: 60ch; }

.apply { margin-top: clamp(44px, 6vh, 68px); padding-top: 34px; border-top: 1px solid var(--line); }

@media (max-width: 860px) {
  .role-tags { flex-direction: column; }
  .role-tags span + span::before { display: none; }
}
