:root {
  --paper: #f3f0e8;
  --paper-bright: #fbfaf6;
  --ink: #111111;
  --ink-soft: #3e3b36;
  --line: rgba(17, 17, 17, 0.24);
  --line-strong: #111111;
  --violet: #6c3bff;
  --acid: #d8ff3e;
  --coral: #ff5c46;
  --mint: #20d09a;
  --white: #ffffff;
  --black: #080808;
  --shell: 1320px;
  --header-height: 74px;
  --display: "Inter Tight", "Noto Sans KR", system-ui, sans-serif;
  --body: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 360ms;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-dialog-open,
body.is-menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
video,
svg,
iframe {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-160%);
  transition: transform var(--duration) var(--ease);
}

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

.site-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 10vw, 168px);
}

.micro-label,
.section-index,
.project-entry__meta,
.career-case__meta,
.art-caption {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(243, 240, 232, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color var(--duration) var(--ease-standard), background-color var(--duration) var(--ease-standard);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 240, 232, 0.96);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 2fr 4fr 6fr;
  align-items: center;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.wordmark > span {
  font-size: 25px;
}

.wordmark small {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--mint);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(32, 208, 154, 0.16);
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
}

.primary-nav a {
  position: relative;
  padding-block: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(54px, 7vw, 112px));
  border-bottom: 1px solid var(--line-strong);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
}

.hero__copy {
  grid-column: 1 / span 8;
  padding-block: 36px 64px;
}

.hero__copy .micro-label {
  margin: 0 0 28px;
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.15vw, 104px);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero h1 b {
  font: inherit;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -0.04em;
  bottom: 0.05em;
  left: -0.03em;
  z-index: -1;
  height: 0.25em;
  background: var(--acid);
  transform: rotate(-1deg);
}

.hero__summary {
  max-width: 640px;
  margin: 40px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.72;
  word-break: keep-all;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform var(--duration) var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(4px, 3px);
}

.text-link--strong {
  font-weight: 600;
}

.hero__poster {
  position: relative;
  grid-column: 9 / -1;
  align-self: stretch;
  min-height: min(72vh, 700px);
  overflow: hidden;
  color: var(--white);
  background: var(--violet);
  border: 1px solid var(--ink);
}

.poster-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 42px 42px;
}

.poster-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.poster-type {
  position: absolute;
  inset: 7% 0 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(120px, 13vw, 220px);
  font-weight: 900;
  line-height: 0.54;
  letter-spacing: -0.15em;
  transform: translateX(-0.025em);
}

.poster-type span:nth-child(2) {
  color: var(--acid);
  -webkit-text-stroke: 2px var(--ink);
}

.poster-type span:nth-child(3) {
  align-self: flex-end;
  padding-right: 0.16em;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.poster-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
}

.poster-orbit--one {
  top: 28%;
  right: -18%;
  width: 74%;
  aspect-ratio: 1;
}

.poster-orbit--two {
  bottom: -15%;
  left: -18%;
  width: 64%;
  aspect-ratio: 1;
  border-color: var(--acid);
}

.poster-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.7);
}

.poster-caption strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.poster-caption span {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.hero-foot {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  gap: 20px;
  align-items: end;
  min-height: 96px;
  margin-top: 30px;
  padding-block: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot__scroll {
  text-align: right;
}

.hero-foot__scroll span {
  display: inline-block;
  margin-left: 8px;
  animation: scroll-cue 1.4s var(--ease) infinite alternate;
}

@keyframes scroll-cue {
  to { transform: translateY(5px); }
}

/* Moving role line */
.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-bottom: 1px solid var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker__track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker__track i {
  font-size: 13px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Section index */
.section-index {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

.section-index span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-index p {
  margin: 0;
}

.section-index--horizontal {
  flex-direction: row;
  align-items: baseline;
  gap: 14px;
}

.section-index--light {
  color: rgba(255,255,255,.82);
}

/* About */
.about {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 20px;
}

.about__grid > .section-index {
  grid-column: 1 / span 2;
}

.about__statement {
  grid-column: 3 / span 7;
}

.about__statement .micro-label {
  margin: 0 0 22px;
}

.about__statement h2,
.work-heading h2,
.range-heading h2,
.timeline-intro h2,
.lab-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.6vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
  word-break: keep-all;
}

.about__body {
  grid-column: 3 / span 5;
  padding-top: 58px;
}

.about__body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.9;
  word-break: keep-all;
}

.about__links {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}

.about__links a,
.about__links button {
  padding: 0 0 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.now-panel {
  grid-column: 9 / -1;
  grid-row: 1 / span 2;
  align-self: end;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.now-panel .micro-label {
  margin: 0 0 28px;
  color: var(--acid);
}

.now-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.now-panel li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.now-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.now-panel li span {
  color: var(--acid);
  font-family: var(--mono);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(80px, 9vw, 132px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.number-item {
  min-height: 178px;
  padding: 24px 24px 28px;
  border-right: 1px solid var(--ink);
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 4.1vw, 66px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.number-item p {
  max-width: 220px;
  margin: 38px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* Work */
.work {
  background: var(--paper);
}

.work-heading,
.product-work-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 20px;
  align-items: end;
  padding-bottom: clamp(72px, 8vw, 112px);
  border-bottom: 1px solid var(--ink);
}

.work-heading h2,
.product-work-heading h2 {
  font-size: clamp(52px, 6.2vw, 92px);
}

.work-heading > p,
.product-work-heading > p,
.range-heading > p,
.lab-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.project-list {
  display: grid;
}

.project-entry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  padding-block: clamp(72px, 8vw, 116px);
  border-bottom: 1px solid var(--ink);
}

.project-entry__media {
  position: relative;
  grid-column: 1 / span 7;
  align-self: start;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  padding: 0;
  background: var(--project-surface);
  border: 1px solid var(--ink);
  cursor: pointer;
  text-align: left;
}

.project-entry__media > img,
.project-entry__media > video,
.project-entry__media > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.project-entry__open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  transform: translateY(70px);
  transition: transform var(--duration) var(--ease);
}

.project-entry__media:hover .project-entry__open,
.project-entry__media:focus-visible .project-entry__open {
  transform: translateY(0);
}

.project-entry__open b {
  font-size: 16px;
}

.project-entry__copy {
  grid-column: 8 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 0 0 clamp(12px, 2vw, 34px);
}

.project-entry--reverse .project-entry__media {
  grid-column: 6 / -1;
  grid-row: 1;
}

.project-entry--reverse .project-entry__copy {
  grid-column: 1 / span 5;
  grid-row: 1;
  padding: 4px clamp(12px, 2vw, 34px) 0 0;
}

.project-entry__meta {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.project-entry__meta span:last-child {
  text-align: right;
}

.project-entry h3 {
  margin: 38px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.project-entry__subtitle {
  margin: 8px 0 0;
  color: var(--project-accent);
  font-family: var(--display);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 600;
  line-height: 1.3;
}

.project-entry__summary {
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.82;
  word-break: keep-all;
}

.project-entry__role {
  width: 100%;
  margin-top: auto;
  padding-top: 38px;
}

.project-entry__role small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.project-entry__role p {
  margin: 7px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  text-transform: uppercase;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.case-link span {
  transition: transform var(--duration) var(--ease);
}

.case-link:hover span,
.case-link:focus-visible span {
  transform: translate(4px, -4px);
}

/* Original abstract project art */
.project-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--project-surface);
}

.project-art--dialog {
  min-height: min(70vh, 720px);
}

.project-art .art-caption {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 5;
  color: currentColor;
  font-size: 9px;
}

.art-grid,
.mnf-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 48px 48px;
}

.project-art--hmit {
  color: var(--white);
  background: var(--project-surface);
}

.project-art--hmit::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -14%;
  width: 55%;
  aspect-ratio: 1;
  background: var(--project-accent);
  border-radius: 50%;
  filter: blur(1px);
}

.project-art--hmit::after {
  content: "";
  position: absolute;
  bottom: -26%;
  left: -12%;
  width: 55%;
  aspect-ratio: 1;
  border: 2px solid var(--project-accent-alt);
  border-radius: 50%;
}

.hmit-score {
  position: absolute;
  top: 18%;
  right: 8%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 24%;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--project-accent-alt);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.hmit-score strong {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 88px);
  line-height: .9;
  letter-spacing: -.08em;
}

.hmit-score span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.hmit-line {
  position: absolute;
  right: 5%;
  bottom: 10%;
  left: 5%;
  z-index: 3;
  width: 90%;
  height: 60%;
  overflow: visible;
}

.hmit-line path {
  fill: none;
  stroke: var(--project-accent-alt);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hmit-line .hmit-line__ghost {
  stroke: rgba(255,255,255,.35);
  stroke-width: 12;
}

.hmit-nodes {
  position: absolute;
  right: 4%;
  bottom: 4%;
  left: 4%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.project-art--seozest {
  color: var(--ink);
  background: var(--project-accent-alt);
}

.project-art--seozest::before {
  content: "";
  position: absolute;
  inset: 16% 0 auto 42%;
  height: 66%;
  background: var(--project-accent);
  transform: rotate(7deg);
}

.seo-type {
  position: absolute;
  inset: 17% 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 110px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.09em;
}

.seo-type span:nth-child(2) {
  margin-left: 16%;
  color: var(--white);
  -webkit-text-stroke: 1px var(--ink);
}

.seo-type span:nth-child(3) {
  align-self: flex-end;
}

.seo-flow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .06em;
}

.seo-flow i {
  flex: 1;
  height: 1px;
  background: currentColor;
}

.project-art--nightmine {
  color: var(--acid);
  background: var(--project-surface);
}

.project-art--nightmine::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 6%;
  width: 24%;
  aspect-ratio: 1;
  border: 1px solid var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(108,59,255,.12), 0 0 0 64px rgba(108,59,255,.06);
}

.radar-bars {
  position: absolute;
  right: 7%;
  bottom: 9%;
  left: 7%;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 2.8%;
  height: 68%;
}

.radar-bars span {
  flex: 1;
  height: var(--h);
  background: currentColor;
  border: 1px solid var(--ink);
  opacity: calc(.35 + var(--i) * .06);
}

.radar-line {
  position: absolute;
  right: 5%;
  bottom: 10%;
  left: 5%;
  z-index: 3;
  width: 90%;
  height: 70%;
  overflow: visible;
}

.radar-line path {
  fill: none;
  stroke: var(--violet);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.radar-delta {
  position: absolute;
  top: 20%;
  left: 8%;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--white);
}

.radar-delta span {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: -.08em;
}

.radar-delta strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
}

.project-art--landauction {
  color: var(--white);
  background: var(--project-surface);
}

.project-art--landauction::before {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -26%;
  width: 54%;
  aspect-ratio: 1;
  background: var(--project-accent-alt);
  border-radius: 50%;
  opacity: .9;
}

.auction-map {
  position: absolute;
  top: 11%;
  left: 7%;
  width: 58%;
  height: 79%;
}

.auction-map path {
  fill: rgba(32,208,154,.18);
  stroke: var(--project-accent);
  stroke-width: 3;
}

.auction-map circle {
  fill: var(--project-accent-alt);
  stroke: var(--ink);
  stroke-width: 2;
}

.auction-score {
  position: absolute;
  right: 6%;
  bottom: 11%;
  z-index: 3;
  display: grid;
  width: 27%;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--ink);
}

.auction-score small,
.auction-score span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auction-score strong {
  margin-block: 8px;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  line-height: .9;
  letter-spacing: -.08em;
}

.project-art--mnf {
  color: var(--project-accent);
  background: var(--project-surface);
}

.mnf-chart {
  position: absolute;
  right: 4%;
  bottom: 14%;
  left: 4%;
  z-index: 2;
  width: 92%;
  height: 72%;
  overflow: visible;
}

.mnf-area {
  fill: color-mix(in srgb, var(--project-accent) 18%, transparent);
}

.mnf-line {
  fill: none;
  stroke: var(--project-accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mnf-status {
  position: absolute;
  right: 4%;
  bottom: 5%;
  left: 4%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.3);
}

.mnf-status span {
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}


/* Career archive */
.career-work {
  padding-bottom: 0;
}

.career-category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 18;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(243, 240, 232, .96);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(14px);
}

.career-category-nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-right: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.career-category-nav a:last-child {
  border-right: 0;
}

.career-category-nav a span {
  color: var(--violet);
  font-weight: 600;
}

.career-category-nav a:hover,
.career-category-nav a:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.career-group {
  scroll-margin-top: calc(var(--header-height) + 78px);
  padding-block: clamp(72px, 8vw, 116px);
  border-bottom: 1px solid var(--ink);
}

.career-group__header {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 20px;
  align-items: end;
  padding-bottom: clamp(42px, 5vw, 72px);
}

.career-group__header > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--category-accent);
  font-family: var(--mono);
}

.career-group__header > div:first-child span {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.05em;
}

.career-group__header p,
.career-group__header strong {
  margin: 0;
}

.career-group__header > div:first-child p {
  font-size: 9px;
  letter-spacing: .08em;
}

.career-group__header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.6vw, 82px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
}

.career-group__header > div:last-child {
  align-self: end;
  padding-left: 20px;
  border-left: 1px solid var(--ink);
}

.career-group__header > div:last-child strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.025em;
}

.career-group__header > div:last-child p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.career-group__stage-media {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: clamp(30px, 4vw, 54px) 0 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.career-group__stage-media img,
.career-group__stage-media iframe,
.career-group__stage-media video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.career-case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 74px) 20px;
  padding-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--ink);
}

.career-case {
  grid-column: span 6;
  display: grid;
  align-content: start;
  min-width: 0;
}

.career-case--featured {
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: clamp(16px, 2vw, 32px);
}

.career-case__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  padding: 0;
  background: var(--project-surface);
  border: 1px solid var(--ink);
  cursor: pointer;
  text-align: left;
}

.career-case--featured .career-case__media {
  grid-column: 1 / span 7;
  aspect-ratio: 1.38 / 1;
}

.career-case__body {
  padding-top: 22px;
}

.career-case--featured .career-case__body {
  grid-column: 8 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 0 0 clamp(14px, 2vw, 34px);
}

.career-case__open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  transform: translateY(58px);
  transition: transform var(--duration) var(--ease);
}

.career-case__media:hover .career-case__open,
.career-case__media:focus-visible .career-case__open {
  transform: translateY(0);
}

.career-case__meta {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
  width: 100%;
  padding-bottom: 12px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.career-case__meta span:last-child {
  text-align: right;
}

.career-case h4 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.058em;
}

.career-case--featured h4 {
  margin-top: 34px;
  font-size: clamp(48px, 5.2vw, 78px);
}

.career-case__subtitle {
  margin: 8px 0 0;
  color: var(--project-accent);
  font-family: var(--display);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 650;
  line-height: 1.35;
}

.career-case__summary {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
  word-break: keep-all;
}

.career-case__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.career-case--featured .career-case__facts {
  margin-top: auto;
  padding-top: 30px;
}

.career-case__facts p {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
  text-transform: uppercase;
}

.career-case__facts small {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: .08em;
}

/* Media contracts and graceful fallbacks */
.project-media,
.project-media__fallback,
.project-media img {
  width: 100%;
  height: 100%;
}

.project-media {
  position: relative;
  overflow: hidden;
  background: var(--project-surface);
}

.project-media__fallback,
.project-media img {
  position: absolute;
  inset: 0;
}

.project-media img {
  z-index: 2;
  object-fit: cover;
  object-position: var(--media-x, 50%) var(--media-y, 50%);
  opacity: 0;
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

.project-media.is-loaded img {
  opacity: 1;
}

.project-media.is-missing img {
  display: none;
}

.career-case__media:hover .project-media.is-loaded img,
.career-case__media:focus-visible .project-media.is-loaded img {
  transform: scale(1.025);
}

/* Generic, non-deceptive archive art for media still being curated */
.career-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  background: var(--project-surface);
  isolation: isolate;
}

.career-art::before {
  content: "";
  position: absolute;
  inset: auto -7% -28% auto;
  width: 58%;
  aspect-ratio: 1;
  background: var(--project-accent);
  border-radius: 50%;
  opacity: .92;
  z-index: -1;
}

.career-art::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 8%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid var(--project-accent);
  border-radius: 50%;
  opacity: .65;
  z-index: -1;
}

.career-art__grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 42px 42px;
}

.career-art__category,
.career-art__index,
.career-art__footer {
  position: absolute;
  z-index: 3;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-art__category {
  top: 20px;
  left: 20px;
}

.career-art__index {
  top: 20px;
  right: 20px;
  color: var(--project-accent);
}

.career-art__signal {
  position: absolute;
  top: 18%;
  right: 9%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 68px;
}

.career-art__signal i {
  display: block;
  aspect-ratio: 1;
  background: var(--project-accent);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.career-art__signal i:nth-child(2) {
  opacity: .58;
}

.career-art__signal i:nth-child(3) {
  opacity: .28;
}

.career-art__client {
  position: absolute;
  top: 47%;
  left: 6%;
  z-index: 3;
  max-width: 56%;
  margin: 0;
  color: var(--project-accent);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-art__title {
  position: absolute;
  right: 6%;
  bottom: 17%;
  left: 6%;
  z-index: 3;
  display: grid;
  max-width: 88%;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.08em;
  text-wrap: balance;
}

.career-art__title small {
  margin-top: 12px;
  color: var(--project-accent);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-art__footer {
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 1px solid currentColor;
}

.career-art--atl::before,
.career-art--gaming::before,
.career-art--gaming-alt::before {
  width: 76%;
  border-radius: 0;
  transform: rotate(-13deg);
}

.career-art--btl::after,
.career-art--event::after {
  box-shadow: 0 0 0 38px color-mix(in srgb, var(--project-accent) 18%, transparent), 0 0 0 78px color-mix(in srgb, var(--project-accent) 8%, transparent);
}

.career-art--product,
.career-art--product-alt,
.career-art--fragrance,
.career-art--social {
  color: var(--ink);
  background: var(--project-accent-alt, var(--paper-bright));
}

.career-art--product::before,
.career-art--product-alt::before,
.career-art--fragrance::before,
.career-art--social::before {
  width: 44%;
  border-radius: 0;
}

.career-art--seo::after,
.career-art--seo-alt::after {
  width: 66%;
  aspect-ratio: 2.4 / 1;
  border-radius: 0;
  box-shadow: 0 38px 0 -1px color-mix(in srgb, var(--project-accent) 65%, transparent), 0 76px 0 -1px color-mix(in srgb, var(--project-accent) 35%, transparent);
}

.career-art--branding::before,
.career-art--automotive::before,
.career-art--eyewear::before {
  inset: -16% -6% auto auto;
  width: 64%;
  border-radius: 50% 0 50% 50%;
}

/* Product Lab: a clearly separate, technical second chapter */
.product-work {
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.42);
}

.product-work-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 20px;
  align-items: end;
  padding-bottom: clamp(72px, 8vw, 112px);
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.product-work-heading > p {
  color: rgba(255,255,255,.68);
}

.product-work .project-entry {
  border-bottom-color: rgba(255,255,255,.42);
}

.product-work .project-entry__media {
  border-color: rgba(255,255,255,.68);
}

.product-work .project-entry__meta {
  color: rgba(255,255,255,.62);
  border-bottom-color: rgba(255,255,255,.28);
}

.product-work .project-entry__summary {
  color: rgba(255,255,255,.7);
}

.product-work .project-entry__role {
  color: rgba(255,255,255,.9);
}

.product-work .case-link {
  color: var(--white);
}

.product-work .project-entry__subtitle {
  color: var(--project-accent);
}

.product-work .project-entry__open {
  color: var(--ink);
}

.dialog-facts--career {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Working range */
.range {
  color: var(--white);
  background: var(--violet);
  border-block: 1px solid var(--ink);
}

.range-heading,
.lab-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 20px;
  align-items: end;
  padding-bottom: clamp(70px, 8vw, 112px);
}

.range-heading h2,
.lab-heading h2 {
  font-size: clamp(52px, 6.3vw, 94px);
}

.range-heading > p,
.lab-heading > p {
  color: rgba(255,255,255,.78);
}

.range-list {
  border-top: 1px solid rgba(255,255,255,.6);
}

.range-item {
  display: grid;
  grid-template-columns: 1fr 4fr 4fr 3fr;
  gap: 20px;
  align-items: center;
  min-height: 154px;
  padding-block: 28px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease), padding-inline var(--duration) var(--ease);
}

.range-item:hover {
  padding-inline: 22px;
  color: var(--ink);
  background: var(--acid);
}

.range-item__index {
  font-family: var(--mono);
  font-size: 13px;
}

.range-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
}

.range-item > p {
  margin: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.range-item > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.range-item > div span {
  padding: 6px 8px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Timeline */
.timeline-section {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--ink);
}

.timeline-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.timeline-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  grid-column: 1 / span 5;
  align-self: start;
}

.timeline-intro h2 {
  margin-top: 44px;
}

.timeline-intro > p {
  max-width: 400px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.career-list {
  grid-column: 7 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.career-item {
  display: grid;
  grid-template-columns: 1.5fr 4.5fr;
  gap: 20px;
  padding-block: 34px 38px;
  border-bottom: 1px solid var(--ink);
}

.career-item time {
  font-family: var(--mono);
  font-size: 11px;
}

.career-item__company {
  margin: 0 0 6px;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.career-item div > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
  word-break: keep-all;
}

/* Lab */
.lab {
  color: var(--white);
  background: var(--black);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.principle-card {
  min-height: 350px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.45);
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card > span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 12px;
}

.principle-card h3 {
  max-width: 290px;
  margin: 116px 0 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.3vw, 50px);
  line-height: .98;
  letter-spacing: -.055em;
}

.principle-card p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.lab-github {
  display: grid;
  grid-template-columns: 6fr 5fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease), padding-inline var(--duration) var(--ease);
}

.lab-github:hover,
.lab-github:focus-visible {
  padding-inline: 22px;
  color: var(--ink);
  background: var(--acid);
}

.lab-github span:first-child {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lab-github strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
}

.lab-github span:last-child {
  font-size: 30px;
  text-align: right;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-top: 1px solid var(--ink);
}

.contact::after {
  content: "YOU.";
  position: absolute;
  right: -0.055em;
  bottom: -.16em;
  z-index: 0;
  color: rgba(17,17,17,.06);
  font-family: var(--display);
  font-size: clamp(220px, 35vw, 560px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.12em;
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  min-height: 82svh;
  padding-block: clamp(90px, 10vw, 152px) 28px;
}

.contact .micro-label {
  margin: 0 0 40px;
}

.contact h2 {
  max-width: 1150px;
  font-size: clamp(62px, 8.3vw, 126px);
  line-height: .91;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
}

.contact-email {
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.copy-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--acid);
  background: var(--ink);
}

.copy-button--dark {
  color: var(--white);
  border-color: var(--white);
}

.copy-button--dark:hover,
.copy-button--dark:focus-visible {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.contact__meta {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact__meta span:nth-child(2) {
  text-align: center;
}

.contact__meta span:last-child {
  text-align: right;
}

/* Dialogs */
dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(4px);
}

.project-dialog {
  width: min(100%, 1600px);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  color: var(--ink);
  background: var(--paper-bright);
}

.project-dialog__inner {
  position: relative;
  min-height: 100%;
}

.dialog-close {
  position: sticky;
  top: 18px;
  z-index: 30;
  float: right;
  min-width: 92px;
  min-height: 44px;
  margin: 18px 18px -62px 0;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--white);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dialog-hero {
  height: min(78vh, 780px);
  background: var(--ink);
}

.dialog-hero > img,
.dialog-hero > video,
.dialog-hero > iframe,
.dialog-hero > .project-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.dialog-body {
  width: min(calc(100% - 64px), 1180px);
  margin-inline: auto;
  padding-block: clamp(64px, 8vw, 120px) 100px;
}

.dialog-body > header {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--ink);
}

.dialog-body > header .micro-label {
  margin: 6px 0 0;
}

.dialog-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 120px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.075em;
}

.dialog-summary {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.dialog-facts {
  display: grid;
  grid-template-columns: 2fr 2fr 8fr;
  gap: 20px;
  padding-block: 28px 60px;
  border-bottom: 1px solid var(--ink);
}

.dialog-facts div {
  display: grid;
  gap: 10px;
}

.dialog-facts small,
.dialog-section > span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.dialog-facts strong {
  font-size: 13px;
  line-height: 1.6;
}

.dialog-section {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 20px;
  padding-block: 56px;
  border-bottom: 1px solid var(--ink);
}

.dialog-section h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
}

.dialog-section p,
.dialog-section ul {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.dialog-section ul {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.dialog-section li {
  position: relative;
  padding-left: 24px;
}

.dialog-section li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-family: var(--mono);
}

.dialog-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.dialog-stack span {
  padding: 8px 11px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.dialog-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 56px;
}

.dialog-gallery {
  padding-top: 72px;
}

.dialog-gallery > header {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}

.dialog-gallery > header span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.dialog-gallery h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
}

.dialog-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.dialog-gallery figure {
  margin: 0;
}

.dialog-gallery img,
.dialog-gallery video,
.dialog-gallery iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.dialog-gallery figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
}

.dialog-links > a,
.dialog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.dialog-links > a {
  color: var(--white);
  background: var(--ink);
}

.dialog-link--inactive {
  color: var(--ink-soft);
  border-style: dashed;
}

.dialog-link small {
  font-size: 8px;
  letter-spacing: .06em;
}

.contact-dialog {
  width: min(calc(100% - 32px), 720px);
  max-width: none;
  color: var(--white);
  background: var(--violet);
  border: 1px solid var(--white);
}

.contact-dialog__inner {
  position: relative;
  min-height: 580px;
  padding: 54px;
}

.contact-dialog .dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  float: none;
  margin: 16px;
}

.contact-dialog .micro-label {
  margin: 0 0 70px;
  color: var(--acid);
}

.contact-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 86px);
  line-height: .9;
  letter-spacing: -.065em;
}

.contact-dialog__email {
  display: block;
  width: fit-content;
  margin-top: 64px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -.04em;
}

.contact-dialog .copy-button {
  margin-top: 24px;
}

.copy-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
}

/* Tablet */
@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 3fr 4fr 5fr;
  }

  .hero__copy {
    grid-column: 1 / span 7;
  }

  .hero__poster {
    grid-column: 8 / -1;
  }

  .about__statement {
    grid-column: 3 / span 8;
  }

  .about__body {
    grid-column: 3 / span 6;
  }

  .now-panel {
    grid-column: 9 / -1;
  }

  .work-heading,
  .product-work-heading,
  .range-heading,
  .lab-heading {
    grid-template-columns: 2fr 7fr 3fr;
  }

  .project-entry__media {
    grid-column: 1 / span 7;
  }

  .project-entry__copy {
    grid-column: 8 / -1;
  }

  .project-entry--reverse .project-entry__media {
    grid-column: 6 / -1;
  }

  .project-entry--reverse .project-entry__copy {
    grid-column: 1 / span 5;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 86px;
  }

  .site-header {
    background: rgba(243, 240, 232, .96);
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .wordmark small,
  .header-status {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 88px 24px 32px;
    color: var(--ink);
    background: var(--acid);
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform 500ms var(--ease), visibility 500ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    width: 100%;
    padding-block: 10px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--display);
    font-size: clamp(42px, 15vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.065em;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__poster {
    grid-column: 1;
  }

  .hero__copy {
    padding-block: 38px 42px;
  }

  .hero__copy .micro-label {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 12.7vw, 58px);
    line-height: .95;
  }

  .hero-title-last b {
    display: block;
  }

  .hero__summary {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .hero__poster {
    min-height: 520px;
    margin-bottom: 16px;
  }

  .poster-type {
    font-size: clamp(150px, 48vw, 210px);
  }

  .hero-foot {
    grid-template-columns: 1fr 1fr;
    min-height: 82px;
    margin-top: 0;
  }

  .hero-foot p:nth-child(2) {
    text-align: right;
  }

  .hero-foot__scroll {
    display: none;
  }

  .ticker__track span {
    padding-block: 13px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__grid > .section-index,
  .about__statement,
  .about__body,
  .now-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .section-index {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
  }

  .about__statement h2,
  .work-heading h2,
  .product-work-heading h2,
  .range-heading h2,
  .timeline-intro h2,
  .lab-heading h2,
  .contact h2 {
    font-size: clamp(44px, 12vw, 62px);
    line-height: .99;
  }

  .about__body {
    padding-top: 10px;
  }

  .now-panel {
    margin-top: 36px;
  }

  .number-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  .number-item {
    min-height: 158px;
    padding: 20px;
  }

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .number-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

  .number-item p {
    margin-top: 28px;
  }

  .work-heading,
  .product-work-heading,
  .range-heading,
  .lab-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-bottom: 60px;
  }

  .work-heading > p,
  .product-work-heading > p,
  .range-heading > p,
  .lab-heading > p {
    max-width: 520px;
  }

  .career-category-nav {
    top: var(--header-height);
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .career-category-nav::-webkit-scrollbar {
    display: none;
  }

  .career-category-nav a {
    flex: 0 0 auto;
    min-width: 148px;
    min-height: 58px;
  }

  .career-group {
    padding-block: 70px;
  }

  .career-group__header {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 44px;
  }

  .career-group__header > div:last-child {
    padding: 18px 0 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .career-case-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 44px;
  }

  .career-case,
  .career-case--featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .career-case--featured .career-case__media,
  .career-case--featured .career-case__body {
    grid-column: 1;
  }

  .career-case--featured .career-case__body {
    padding: 22px 0 0;
  }

  .career-case__media,
  .career-case--featured .career-case__media {
    aspect-ratio: 1.14 / 1;
  }

  .career-case__open {
    transform: none;
  }

  .career-case h4,
  .career-case--featured h4 {
    margin-top: 24px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .career-case--featured .career-case__facts {
    margin-top: 24px;
    padding-top: 18px;
  }

  .career-art {
    min-height: 360px;
  }

  .career-art__title {
    font-size: clamp(44px, 15vw, 70px);
  }

  .project-entry,
  .project-entry--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 62px;
  }

  .project-entry__media,
  .project-entry__copy,
  .project-entry--reverse .project-entry__media,
  .project-entry--reverse .project-entry__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .project-entry__media {
    aspect-ratio: 1.1 / 1;
  }

  .project-entry__copy,
  .project-entry--reverse .project-entry__copy {
    padding: 0;
  }

  .project-entry h3 {
    margin-top: 28px;
    font-size: clamp(42px, 12vw, 62px);
  }

  .project-entry__role {
    margin-top: 30px;
    padding-top: 0;
  }

  .project-entry__open {
    transform: none;
  }

  .project-art {
    min-height: 400px;
  }

  .project-art--dialog {
    min-height: 480px;
  }

  .range-item {
    grid-template-columns: 44px 1fr;
    gap: 12px 8px;
    padding-block: 28px;
  }

  .range-item h3 {
    font-size: 36px;
  }

  .range-item > p,
  .range-item > div {
    grid-column: 2;
  }

  .range-item:hover {
    padding-inline: 12px;
  }

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

  .timeline-intro,
  .career-list {
    grid-column: 1;
  }

  .timeline-intro {
    position: static;
    margin-bottom: 56px;
  }

  .timeline-intro h2 {
    margin-top: 32px;
  }

  .career-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.45);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .principle-card h3 {
    margin-top: 80px;
  }

  .lab-github {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-block: 28px;
  }

  .lab-github span:first-child {
    grid-column: 1 / -1;
  }

  .lab-github:hover,
  .lab-github:focus-visible {
    padding-inline: 12px;
  }

  .contact__inner {
    min-height: 760px;
  }

  .contact__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 44px;
  }

  .contact-email {
    font-size: clamp(24px, 7.6vw, 38px);
    overflow-wrap: anywhere;
  }

  .contact__meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact__meta span:nth-child(2),
  .contact__meta span:last-child {
    text-align: left;
  }

  .project-dialog {
    width: 100%;
  }

  .dialog-hero {
    height: 60vh;
    min-height: 480px;
  }

  .dialog-body {
    width: min(calc(100% - 32px), 1180px);
    padding-block: 60px 80px;
  }

  .dialog-body > header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 48px;
  }

  .dialog-body h2 {
    font-size: clamp(58px, 17vw, 84px);
  }

  .dialog-facts {
    grid-template-columns: 1fr 1fr;
  }

  .dialog-facts--career {
    grid-template-columns: 1fr 1fr;
  }

  .dialog-facts div:last-child {
    grid-column: 1 / -1;
  }

  .dialog-section {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding-block: 44px;
  }

  .dialog-section h3 {
    font-size: 34px;
  }

  .dialog-section p,
  .dialog-section ul {
    font-size: 15px;
  }

  .dialog-links {
    grid-template-columns: 1fr;
  }

  .dialog-gallery > header,
  .dialog-gallery__grid {
    grid-template-columns: 1fr;
  }

  .contact-dialog__inner {
    min-height: 560px;
    padding: 36px 24px;
  }

  .contact-dialog .micro-label {
    margin-top: 32px;
    margin-bottom: 70px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__poster {
    min-height: 470px;
  }

  .career-case__meta {
    grid-template-columns: 38px 1fr;
  }

  .career-case__meta span:last-child {
    grid-column: 2;
    text-align: left;
  }

  .project-entry__meta {
    grid-template-columns: 28px 1fr;
  }

  .project-entry__meta span:last-child {
    grid-column: 2;
    text-align: left;
  }

  .project-art {
    min-height: 350px;
  }

  .seo-type {
    font-size: 54px;
  }

  .hmit-score {
    width: 32%;
  }

  .auction-score {
    width: 34%;
    padding: 14px;
  }
}

@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;
  }

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

  .ticker__track {
    animation: none;
  }
}
