@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lora:ital,wght@0,400;0,600;1,400&display=block");

:root {
  --paper: #f9f9f7;
  --ink: #111111;
  --muted: #e5e5e0;
  --soft: #f1f1ed;
  --dim: #525252;
  --red: #cc0000;
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23111111' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  border-radius: 0;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  min-height: 100vh;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 4px solid var(--ink);
  background: rgba(249, 249, 247, 0.96);
  transition: border-width 180ms ease-out;
}

.masthead__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 12px;
  transition: padding 180ms ease-out;
}

.works-page .masthead__inner {
  max-width: 1500px;
}

.edition {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 10px;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  transition: font-size 180ms ease-out;
}

.masthead.is-compact {
  border-bottom-width: 2px;
}

.masthead.is-compact .masthead__inner {
  padding-top: 6px;
  padding-bottom: 6px;
}

.masthead.is-compact .edition {
  display: none;
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

.masthead.is-compact .brand {
  font-size: clamp(26px, 3vw, 42px);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-link,
.button,
.filter-button {
  min-height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out, color 160ms ease-out;
}

.nav-link:hover,
.button:hover,
.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  transform: translate(-2px, -2px);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.newsprint-texture {
  position: relative;
}

.newsprint-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(0deg, transparent 98%, rgba(0, 0, 0, 0.025) 100%),
    linear-gradient(90deg, transparent 98%, rgba(0, 0, 0, 0.025) 100%);
  background-size: 3px 3px;
  opacity: 0.55;
}

.hero {
  border-bottom: 4px solid var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  border-left: 1px solid var(--ink);
}

.hero-copy,
.hero-side,
.paper-cell {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(249, 249, 247, 0.9);
}

.hero-copy {
  padding: clamp(26px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.red {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 900;
  line-height: 1;
}

h3 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.standfirst {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.55;
  text-align: justify;
}

.dropcap::first-letter {
  float: left;
  margin: 6px 9px 0 0;
  color: var(--red);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 68px;
  line-height: 0.75;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-side {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.portrait-panel {
  min-height: 360px;
  border-bottom: 1px solid var(--ink);
  background: var(--muted);
  overflow: hidden;
  position: relative;
}

.portrait-panel img,
.project-image img,
.print-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 200ms ease-out, transform 200ms ease-out;
}

.portrait-panel:hover img,
.project-card:hover img,
.feature-card:hover img,
.project-card:hover .print-art,
.portrait-panel:hover .print-art {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.caption {
  margin: 0;
  border-top: 1px solid var(--ink);
  padding: 8px 10px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.hero-skills {
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.hero-skills > .eyebrow {
  margin: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 12px;
}

.hero-skill {
  padding: 12px;
  border-bottom: 1px solid var(--ink);
}

.hero-skill:last-child {
  border-bottom: 0;
}

.hero-skill b {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
}

.hero-skill span {
  display: block;
  margin-top: 7px;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: 13px;
  line-height: 1.42;
}

.fact {
  min-height: 112px;
  border-right: 1px solid var(--ink);
  padding: 14px;
}

.fact:nth-child(2n) {
  border-right: 0;
}

.fact b {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.9;
}

.fact span {
  display: block;
  margin-top: 8px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  padding: 10px 0;
  animation: ticker 24s linear infinite;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  padding-right: 34px;
}

.ticker b {
  color: #ff4a4a;
}

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

.section {
  border-bottom: 4px solid var(--ink);
  padding: clamp(34px, 5vw, 58px) 0;
}

.skill-ledger-section {
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(260px, 7fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

.section-kicker {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-note {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  text-align: justify;
}

.swap-title {
  position: relative;
  cursor: default;
}

.swap-title span {
  display: inline-block;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.swap-title::after {
  content: attr(data-alt);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(0.22em);
  filter: blur(4px);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.section-header:hover .swap-title span {
  opacity: 0;
  transform: translateY(-0.18em);
  filter: blur(3px);
}

.section-header:hover .swap-title::after {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  background: var(--paper);
  color: var(--ink);
  padding: 0 0.22em 0.08em;
  font-size: 1.34em;
  line-height: 0.9;
}

.feature-grid,
.project-grid,
.skills-grid,
.awards-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.awards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.project-card,
.skill-card,
.award-card {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.feature-card,
.project-card {
  display: grid;
  min-height: 100%;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out;
}

.feature-card:hover,
.project-card:hover {
  background: var(--soft);
  box-shadow: 4px 4px 0 0 var(--ink);
  transform: translate(-2px, -2px);
}

.project-image,
.feature-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background:
    radial-gradient(#111 1px, transparent 1px),
    var(--muted);
  background-size: 16px 16px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card[href*="kanako-yock"] .project-image {
  aspect-ratio: 16 / 7.4;
}

.project-card[href*="dont-candy"] .project-image {
  background: var(--paper);
}

.project-card[href*="dont-candy"] .project-image img {
  box-sizing: border-box;
  padding: 10%;
  object-fit: contain;
}

.card-body,
.skill-card,
.award-card {
  padding: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag {
  border: 1px solid var(--ink);
  padding: 4px 6px;
  background: var(--paper);
}

.card-body p,
.detail-copy p,
.skill-card p,
.award-card p {
  margin: 12px 0 0;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
}

.inverted {
  background: var(--ink);
  color: var(--paper);
}

.inverted .container {
  border-left: 1px solid var(--paper);
}

.inverted .section-header,
.inverted .paper-cell {
  border-color: var(--paper);
}

.inverted .section-note,
.inverted .card-body p {
  color: #d7d7d0;
}

.inverted .button {
  border-color: var(--paper);
  color: var(--paper);
}

.inverted .button:hover {
  background: var(--paper);
  color: var(--ink);
}

.skill-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.meter {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
}

.meter span {
  height: 11px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.meter span.is-filled {
  background: var(--ink);
}

.works-hero {
  border-bottom: 4px solid var(--ink);
  padding: clamp(22px, 3vw, 36px) 0 18px;
}

.works-page .container {
  max-width: 1500px;
}

.works-title {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(250px, 5fr);
  gap: 28px;
  align-items: end;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.works-layout {
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.works-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 18px;
  position: sticky;
  top: 54px;
  z-index: 8;
  border-bottom: 4px solid var(--ink);
  padding: clamp(12px, 2vw, 22px);
  background: rgba(249, 249, 247, 0.96);
  scrollbar-width: thin;
}

.work-tile {
  flex: 0 0 clamp(104px, 8.2vw, 132px);
  min-height: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  grid-template-rows: 72px 58px;
  gap: 10px;
  justify-items: center;
  padding: 0;
  text-align: center;
}

.work-tile__image {
  width: 100%;
  height: 72px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  background: var(--muted);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
}

.work-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-tile__label {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--ink);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: clamp(11px, 0.85vw, 14px);
  line-height: 1.1;
}

.work-tile:hover .work-tile__image,
.work-tile.is-active .work-tile__image {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  transform: translate(-2px, -2px);
}

.work-tile:hover .work-tile__label,
.work-tile.is-active .work-tile__label {
  background: var(--ink);
  color: var(--paper);
}

.work-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.45fr);
  align-items: start;
  background: rgba(249, 249, 247, 0.92);
}

.detail-text {
  position: sticky;
  top: 104px;
  align-self: start;
  border-right: 1px solid var(--ink);
  background: rgba(249, 249, 247, 0.96);
}

.detail-heading,
.detail-section {
  border-bottom: 1px solid var(--ink);
  padding: clamp(20px, 3vw, 38px);
}

.detail-heading h2 {
  font-size: clamp(30px, 3.8vw, 54px);
}

.detail-intro,
.detail-section p:not(.eyebrow) {
  margin: 0;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  line-height: 1.62;
  text-align: justify;
}

.detail-intro {
  margin-top: 18px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.detail-figure {
  margin: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.detail-figure--lead {
  grid-column: 1 / -1;
}

.detail-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-figure figcaption {
  border-top: 1px solid var(--ink);
  padding: 8px 12px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-detail--underwater {
  display: block;
}

.underwater-article {
  background: rgba(249, 249, 247, 0.94);
}

.underwater-hero,
.underwater-split,
.underwater-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.underwater-hero,
.underwater-summary,
.underwater-copy,
.underwater-split,
.underwater-concept,
.underwater-section-title,
.underwater-pair {
  border-bottom: 1px solid var(--ink);
}

.underwater-title,
.underwater-summary,
.underwater-copy,
.underwater-split > div,
.underwater-concept > div,
.underwater-section-title,
.underwater-pair > div {
  padding: clamp(22px, 3.4vw, 48px);
}

.underwater-title {
  align-self: end;
  border-right: 1px solid var(--ink);
}

.underwater-title h2 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.88;
  text-transform: uppercase;
}

.underwater-title p,
.underwater-summary p,
.underwater-copy p,
.underwater-concept p,
.underwater-split p,
.underwater-pair p,
.land-title p,
.land-split p {
  margin: 14px 0 0;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.62;
  text-align: justify;
}

.underwater-copy h3 {
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.underwater-copy .eyebrow,
.underwater-concept .eyebrow,
.underwater-section-title .eyebrow,
.land-split .eyebrow {
  color: var(--ink);
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.underwater-hero figure,
.underwater-split figure,
.underwater-pair figure {
  margin: 0;
  min-height: 100%;
  border-left: 1px solid var(--ink);
  background: var(--paper);
}

.underwater-split--reverse figure {
  border-left: 0;
  border-right: 1px solid var(--ink);
}

.underwater-hero img,
.underwater-split img,
.underwater-pair img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.underwater-split img {
  object-fit: contain;
  padding: 18px;
  background: #f7f7f3;
}

.underwater-figure--crop img {
  height: clamp(360px, 42vw, 560px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.underwater-pair img {
  min-height: 300px;
}

.underwater-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: 0;
  max-width: none;
}

.underwater-summary p {
  max-width: 980px;
  margin-top: 0;
  padding: clamp(22px, 3.4vw, 48px);
}

.underwater-video {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 35vw, 560px);
  border-right: 1px solid var(--ink);
  background: var(--ink);
}

.underwater-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.underwater-list {
  max-width: 1280px;
}

.underwater-list strong {
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.35vw, 19px);
}

.underwater-pair strong {
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.underwater-concept {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.underwater-concept > div {
  border-right: 1px solid var(--ink);
}

.underwater-concept figure {
  margin: 0;
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.underwater-concept figure:nth-of-type(2n) {
  border-right: 0;
}

.underwater-concept__wide {
  border-top: 0;
}

.underwater-concept img {
  width: 100%;
  height: clamp(300px, 35vw, 520px);
  object-fit: cover;
  object-position: center;
}

.underwater-section-title h3 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
}

.underwater-section-title .eyebrow {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: 0.16em;
}

.underwater-pair > div {
  align-self: center;
}

.underwater-pair:nth-child(odd) figure {
  border-left: 0;
  border-right: 1px solid var(--ink);
}

.underwater-article figcaption {
  border-top: 1px solid var(--ink);
  padding: 8px 12px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.underwater-wide {
  margin: 0;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.underwater-wide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.underwater-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.underwater-duo figure {
  margin: 0;
  background: var(--paper);
}

.underwater-duo figure:first-child {
  border-right: 1px solid var(--ink);
}

.underwater-duo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.underwater-end {
  min-height: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.work-detail--land {
  display: block;
}

.land-article {
  background: rgba(249, 249, 247, 0.94);
}

.land-hero,
.land-split,
.land-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.land-hero figure,
.land-split figure,
.land-duo figure {
  margin: 0;
  background: var(--paper);
}

.land-hero figure,
.land-split > figure:first-child,
.land-duo figure:first-child {
  border-right: 1px solid var(--ink);
}

.land-title,
.land-split > div,
.land-document {
  padding: clamp(22px, 3.4vw, 48px);
}

.land-title {
  align-self: center;
}

.land-title h2 {
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 0.95;
}

.land-split strong {
  color: var(--ink);
  font-weight: 700;
}

.land-hero img,
.land-split > figure > img,
.land-duo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.land-split div figure {
  margin: 18px 0;
}

.land-split div figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
}

.land-mini-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.land-mini-duo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.land-video-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

.land-video-placeholder span {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.land-split--task > div {
  align-self: start;
}

.land-vertical-figure img {
  object-position: center top;
}

.land-final-hud {
  margin-top: 18px;
}

.land-final-hud img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
}

.land-task-figures {
  display: block;
  min-height: 0;
  padding: 0;
}

.land-task-figures img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.land-split > figure.land-task-figures > img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.land-small-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 8vw, 110px);
}

.land-small-steps img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.work-detail--auroch {
  display: block;
}

.auroch-article {
  background: rgba(249, 249, 247, 0.94);
}

.auroch-section-title {
  border-bottom: 1px solid var(--ink);
  padding: clamp(22px, 3.4vw, 48px);
}

.auroch-section-title .eyebrow {
  margin: 0;
  color: var(--ink);
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auroch-cover {
  border-bottom: 1px solid var(--ink);
  padding: clamp(22px, 3.4vw, 48px);
}

.auroch-cover p {
  max-width: 1180px;
  margin: 0 auto clamp(22px, 3vw, 44px);
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.62;
}

.auroch-cover figure {
  max-width: 1180px;
  margin: 0 auto;
}

.auroch-cover img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
}

.land-memory {
  margin: 0;
  position: relative;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.land-memory img {
  width: 100%;
  height: clamp(190px, 21vw, 300px);
  scale: 1.12;
  object-fit: cover;
  background: var(--paper);
  transition: transform 80ms linear;
  will-change: transform;
}

.auroch-memory img {
  height: clamp(210px, 24vw, 340px);
  scale: 1.16;
  object-fit: cover;
  object-position: center;
}

.auroch-cover img {
  height: clamp(420px, 48vw, 760px);
  object-fit: cover;
  object-position: center;
}

.auroch-cover figure {
  margin: 0;
}

.auroch-cover img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.work-detail--editorial {
  display: block;
}

.editorial-article {
  background: rgba(249, 249, 247, 0.94);
}

.editorial-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.editorial-copy article {
  padding: clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--ink);
}

.editorial-copy article:last-child {
  border-right: 0;
}

.editorial-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.62;
  text-align: justify;
}

.editorial-gallery,
.editorial-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-stack {
  grid-template-columns: 1fr;
}

.editorial-figure {
  margin: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.editorial-figure:nth-child(2n),
.editorial-stack .editorial-figure {
  border-right: 0;
}

.editorial-figure--lead {
  grid-column: auto;
}

.editorial-figure img {
  width: 100%;
  height: clamp(210px, 26vw, 420px);
  object-fit: contain;
  display: block;
}

.editorial-article--stack .editorial-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.work-detail--tea {
  display: block;
}

.tea-article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: rgba(249, 249, 247, 0.94);
}

.tea-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.tea-split > *:first-child {
  border-right: 1px solid var(--ink);
}

.tea-split figure {
  margin: 0;
  background: var(--paper);
  padding: clamp(16px, 2vw, 30px);
  display: grid;
  place-items: center;
}

.tea-split img {
  width: 100%;
  max-height: clamp(300px, 42vw, 660px);
  object-fit: contain;
  display: block;
}

.tea-split--hero img {
  max-height: clamp(250px, 28vw, 430px);
}

.tea-title {
  padding: clamp(22px, 3.4vw, 54px);
  align-self: center;
}

.tea-title h2 {
  margin: 16px 0 18px;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.tea-title p,
.tea-copy p {
  color: var(--dim);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.62;
  text-align: left;
}

.tea-copy {
  padding: clamp(18px, 2.6vw, 42px);
}

.tea-copy > p {
  margin: 0 0 12px;
}

.tea-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.tea-board img {
  box-shadow: none;
}

.work-detail--croquis {
  display: block;
}

.croquis-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
  border-bottom: 1px solid var(--ink);
  background: rgba(249, 249, 247, 0.94);
}

.croquis-intro > div,
.croquis-intro article {
  padding: clamp(18px, 2.6vw, 34px);
}

.croquis-intro > div:first-child {
  border-right: 1px solid var(--ink);
}

.croquis-intro__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.croquis-intro article + article {
  border-left: 1px solid var(--ink);
}

.croquis-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(46px, 5.8vw, 92px);
  line-height: 0.92;
}

.croquis-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--dim);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
  text-align: justify;
}

.croquis-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
}

.croquis-detail-duo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.croquis-detail-duo img,
.croquis-detail-gallery figure {
  border-right: 1px solid var(--ink);
}

.croquis-detail-duo img:nth-child(2n),
.croquis-detail-gallery figure:nth-child(4n) {
  border-right: 0;
}

.croquis-detail-duo img {
  width: 100%;
  height: clamp(190px, 18vw, 300px);
  object-fit: cover;
}

.croquis-detail-gallery figure {
  margin: 0;
  border-bottom: 1px solid var(--ink);
}

.croquis-detail-gallery figure img {
  width: 100%;
  height: clamp(260px, 30vw, 520px);
  object-fit: cover;
  display: block;
}

.croquis-detail-gallery figcaption {
  border-top: 1px solid var(--ink);
  padding: 8px 12px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-detail--kanako-yock .land-hero {
  align-items: stretch;
}

.work-detail--kanako-yock .land-title {
  padding: clamp(18px, 2.6vw, 38px);
  align-self: stretch;
}

.work-detail--kanako-yock .land-title h2 {
  font-size: clamp(48px, 6vw, 96px);
}

.work-detail--kanako-yock .land-hero figure img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #444;
}

.work-detail--dont-candy .land-hero figure:first-child {
  background: var(--paper);
}

.work-detail--dont-candy .land-hero figure:first-child img {
  box-sizing: border-box;
  height: clamp(170px, 20vw, 290px);
  min-height: 0;
  padding: clamp(14px, 3vw, 42px);
  object-fit: contain;
}

.work-detail--dont-candy .editorial-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
}

.work-detail--dont-candy .editorial-figure:first-child {
  grid-row: auto;
}

.work-detail--dont-candy .editorial-figure:first-child img {
  height: clamp(220px, 28vw, 420px);
  min-height: 0;
  object-fit: contain;
}

.work-detail--dont-candy .editorial-figure:not(:first-child) img {
  height: clamp(220px, 28vw, 420px);
  object-fit: contain;
}

.work-detail--mosquito-odyssey .editorial-figure img,
.work-detail--light-chaser .editorial-figure img,
.work-detail--cityplan-masters .editorial-figure img,
.work-detail--warplan .editorial-figure img,
.work-detail--skyward .editorial-figure img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.work-detail--dont-candy .editorial-figure:not(:first-child) img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.land-document {
  border-bottom: 1px solid var(--ink);
}

.land-document iframe {
  width: 100%;
  height: min(80vh, 980px);
  margin-top: 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.croquis-strip {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  overflow: hidden;
}

.croquis-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  min-width: 108%;
  transition: transform 80ms linear;
  will-change: transform;
}

.croquis-strip--single .croquis-row {
  grid-template-columns: repeat(16, minmax(160px, 1fr));
  min-width: 255%;
}

.croquis-row + .croquis-row {
  border-top: 1px solid var(--ink);
}

.croquis-row--reverse {
  margin-left: -8%;
}

.croquis-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  filter: none;
}

.contribution-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.contribution-list li {
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.gallery-strip img,
.gallery-strip .print-art {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-right: 1px solid var(--ink);
  filter: grayscale(1);
}

.footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  border-left: 1px solid var(--paper);
}

.footer-copy,
.footer-contact {
  border-right: 1px solid var(--paper);
  padding: clamp(24px, 4vw, 44px);
}

.footer a {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer p {
  margin: 18px 0 0;
  color: #d7d7d0;
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-header,
  .works-title,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero-grid,
  .works-layout,
  .footer-grid {
    border-left: 0;
  }

  .hero-copy,
  .hero-side,
  .footer-copy,
  .footer-contact {
    border-right: 0;
  }

  .feature-grid,
  .project-grid,
  .skills-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .project-card,
  .skill-card,
  .award-card {
    border-right: 1px solid var(--ink);
  }

  .work-detail {
    grid-template-columns: 1fr;
  }

  .underwater-hero,
  .underwater-split,
  .underwater-summary,
  .underwater-concept,
  .underwater-pair,
  .underwater-list,
  .underwater-duo,
  .land-hero,
  .land-split,
  .land-duo,
  .editorial-copy,
  .editorial-gallery,
  .editorial-stack,
  .tea-split,
  .work-detail--croquis,
  .croquis-intro,
  .croquis-intro__copy,
  .croquis-detail-gallery,
  .croquis-detail-duo {
    grid-template-columns: 1fr;
  }

  .tea-article {
    width: 100%;
  }

  .tea-split > *:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .croquis-intro > div:first-child,
  .croquis-intro article + article {
    border-right: 0;
    border-left: 0;
  }

  .croquis-intro article + article {
    border-top: 1px solid var(--ink);
  }

  .work-detail--dont-candy .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .work-detail--dont-candy .editorial-figure:first-child {
    grid-row: auto;
  }

  .detail-text {
    position: static;
    border-right: 0;
  }

  .underwater-title,
  .underwater-hero figure,
  .underwater-concept > div,
  .underwater-concept figure,
  .underwater-video,
  .underwater-split figure,
  .underwater-split--reverse figure,
  .underwater-pair figure,
  .underwater-pair:nth-child(odd) figure,
  .land-hero figure,
  .land-split > figure:first-child,
  .land-duo figure:first-child {
    border-left: 0;
    border-right: 0;
  }

  .underwater-list p:last-child {
    grid-column: auto;
  }

  .underwater-concept figure {
    border-top: 1px solid var(--ink);
  }

  .underwater-duo figure:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .land-hero figure,
  .land-split > figure:first-child,
  .land-duo figure:first-child {
    border-bottom: 1px solid var(--ink);
  }

  .editorial-copy article,
  .editorial-figure,
  .croquis-detail-duo img,
  .croquis-detail-gallery figure {
    border-right: 0;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .croquis-row {
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    min-width: 118%;
  }

  .croquis-strip--single .croquis-row {
    grid-template-columns: repeat(16, minmax(132px, 1fr));
    min-width: 350%;
  }
}

@media (max-width: 560px) {
  .masthead__inner,
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .masthead__inner {
    padding-top: 5px;
    padding-bottom: 6px;
  }

  .edition {
    display: none;
  }

  .brand-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    padding-top: 0;
  }

  .brand {
    font-size: 24px;
    line-height: 0.95;
  }

  .main-nav {
    flex-wrap: nowrap;
    gap: 4px;
  }

  h1 {
    font-size: 34px;
  }

  .nav-link,
  .button,
  .filter-button {
    width: auto;
    min-height: 26px;
    padding: 0 6px;
    font-size: 7px;
    letter-spacing: 0.04em;
  }

  .hero-actions,
  .filters {
    display: flex;
  }

  .works-list {
    gap: 12px;
    padding: 16px 14px;
  }

  .work-tile {
    flex-basis: 104px;
    grid-template-rows: 58px 48px;
    gap: 8px;
  }

  .work-tile__image {
    height: 58px;
  }

  .work-tile__label {
    min-height: 48px;
    padding: 5px 8px;
    font-size: 11px;
  }

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

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .croquis-row {
    grid-template-columns: repeat(6, minmax(118px, 1fr));
    min-width: 132%;
  }

  .croquis-strip--single .croquis-row {
    grid-template-columns: repeat(16, minmax(108px, 1fr));
    min-width: 430%;
  }

  .croquis-strip img {
    aspect-ratio: 3 / 4;
  }
}
