* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --ink: #f5f1eb;
  --muted: #bdb4aa;
  --paper: #11100f;
  --charcoal: #171717;
  --line: rgba(245, 241, 235, 0.18);
  --accent: #c9a46a;
  --red: #8f2f2f;
  --green: #61745b;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.65;
}

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(17, 16, 15, 0.72);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 172px;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 96svh;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(17, 16, 15, 0.78), rgba(17, 16, 15, 0.28) 44%, rgba(17, 16, 15, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 56% 42%;
  position: absolute;
  width: 100%;
}

.hero-copy {
  display: grid;
  gap: 20px;
  left: clamp(20px, 7vw, 96px);
  max-width: min(720px, calc(100vw - 40px));
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 9vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 8px;
}

.lead {
  color: var(--ink);
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.42;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a,
.filter-button,
.work-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-actions a:hover,
.filter-button:hover,
.filter-button.is-active,
.work-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.scroll-cue {
  bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  text-transform: uppercase;
  z-index: 1;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 54px clamp(20px, 5vw, 70px);
}

.intro-band p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.8vw, 48px);
  line-height: 1.22;
  margin: 0;
  max-width: 1040px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(76px, 11vw, 132px) clamp(18px, 4vw, 28px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  background: transparent;
  cursor: pointer;
}

.works-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.work-card img {
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.work-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.meta-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  text-transform: uppercase;
}

.pill {
  background: rgba(201, 164, 106, 0.12);
  border: 1px solid rgba(201, 164, 106, 0.42);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  padding: 4px 8px;
}

.work-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.collection-grid,
.timeline-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-item,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.collection-item p,
.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.statement-section {
  background: #e8e0d5;
  color: #15120f;
  padding: clamp(78px, 12vw, 150px) clamp(20px, 5vw, 70px);
}

.statement-inner {
  margin: 0 auto;
  max-width: 1040px;
}

.statement-inner .eyebrow {
  color: var(--red);
}

blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.13;
  margin: 0 0 clamp(28px, 5vw, 54px);
}

.statement-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.statement-copy p {
  color: rgba(21, 18, 15, 0.78);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.9;
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 48px);
}

.work-dialog {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  max-height: min(92svh, 980px);
  max-width: min(1120px, calc(100vw - 28px));
  padding: 0;
  width: 100%;
}

.work-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-close {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  cursor: pointer;
  font-size: 24px;
  height: 42px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 2;
}

.dialog-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  max-height: min(92svh, 980px);
  overflow: auto;
}

.dialog-media {
  background: #050505;
}

.dialog-media img {
  display: block;
  height: 100%;
  max-height: min(92svh, 980px);
  object-fit: contain;
  width: 100%;
}

.dialog-text {
  padding: clamp(24px, 5vw, 54px);
}

.dialog-text p {
  color: var(--muted);
}

.detail-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
}

.detail-list div {
  display: grid;
  gap: 2px;
}

.detail-list dt {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-list dd {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-copy {
    top: 57%;
  }

  .works-grid,
  .collection-grid,
  .timeline-list,
  .about-layout,
  .dialog-content {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    max-height: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 116px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 92svh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(17, 16, 15, 0.34), rgba(17, 16, 15, 0.82));
  }

  .hero-image {
    object-position: 55% 38%;
  }

  .hero-copy {
    bottom: 72px;
    left: 20px;
    right: 20px;
    top: auto;
    transform: none;
  }

  .lead {
    font-size: 19px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Archive direction: quiet paper, precise records, restrained portrait presence. */
:root {
  color-scheme: light;
  --ink: #302c27;
  --muted: #71685f;
  --paper: #f4efe7;
  --surface: #fbf8f1;
  --charcoal: #181614;
  --line: rgba(48, 44, 39, 0.18);
  --soft-line: rgba(48, 44, 39, 0.1);
  --accent: #8b7760;
  --red: #762f2a;
  --max: 1240px;
}

html {
  scroll-padding-top: 86px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Serif CJK JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  line-height: 1.78;
}

.site-header {
  align-items: center;
  background: rgba(244, 239, 231, 0.92);
  border-bottom: 1px solid var(--soft-line);
  color: var(--ink);
  padding: 16px clamp(18px, 4vw, 52px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.brand small,
.site-nav,
.eyebrow,
.intro-band,
.toolbar,
.meta-row,
.pill,
.work-link,
.detail-list dt,
.record-list dt,
.site-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.brand small,
.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72svh;
  overflow: visible;
  padding: clamp(94px, 10vw, 128px) clamp(18px, 4vw, 28px) clamp(32px, 5vw, 58px);
  position: relative;
}

.hero::after {
  display: none;
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  left: auto;
  max-width: 760px;
  position: relative;
  top: auto;
  transform: none;
  z-index: 1;
}

.hero-copy .eyebrow {
  color: var(--muted);
}

.hero h1 {
  color: var(--ink);
  font-family: "Noto Serif CJK JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
}

.lead {
  color: var(--ink);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.hero-note {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.95;
  max-width: 690px;
}

.hero-plate {
  justify-self: end;
  margin: 0;
  max-width: 390px;
  width: 100%;
}

.hero-image {
  aspect-ratio: 4 / 5;
  background: #ddd5ca;
  display: block;
  height: auto;
  inset: auto;
  object-fit: cover;
  object-position: 54% 42%;
  position: static;
  width: 100%;
}

.hero-plate figcaption {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-top: 12px;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: none;
  min-height: 0;
  padding: 0 clamp(18px, 4vw, 52px);
}

.intro-band a {
  border-right: 1px solid var(--soft-line);
  display: grid;
  gap: 2px;
  min-height: 128px;
  padding: 28px clamp(16px, 3vw, 30px);
}

.intro-band a:first-child {
  border-left: 1px solid var(--soft-line);
}

.intro-band span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.intro-band strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.25;
}

.intro-band small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  padding: clamp(74px, 10vw, 128px) clamp(18px, 4vw, 28px);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 52px);
  max-width: 820px;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
}

h2,
h3 {
  color: var(--ink);
  font-family: "Noto Serif CJK JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5.6vw, 72px);
  margin-bottom: 0;
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.section-heading > p:not(.eyebrow),
.work-card p,
.collection-item p,
.timeline-item p,
.about-copy p,
.dialog-text p {
  color: var(--muted);
}

.toolbar {
  gap: 8px;
  margin-bottom: 32px;
}

.filter-button,
.work-link {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  min-height: 38px;
  padding: 7px 14px;
}

.filter-button:hover,
.filter-button.is-active,
.work-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.works-grid {
  gap: clamp(30px, 4vw, 56px) clamp(18px, 3vw, 36px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.work-card img {
  aspect-ratio: 4 / 5;
  background: #d8d0c5;
  filter: saturate(0.92);
}

.work-card-body {
  border-bottom: 1px solid var(--soft-line);
  gap: 10px;
  padding: 18px 0 24px;
}

.meta-row {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.pill {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  padding: 0;
}

.work-card p {
  font-size: 14px;
  line-height: 1.75;
}

.collection-grid,
.timeline-list {
  gap: 0;
  grid-template-columns: 1fr;
}

.collection-item,
.timeline-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  padding: 24px 0;
}

.collection-item h3,
.timeline-item h3 {
  margin: 0;
}

.collection-item p:not(.eyebrow),
.timeline-item p:not(.eyebrow) {
  align-self: center;
  font-size: 15px;
}

.collection-item .eyebrow,
.timeline-item .eyebrow {
  grid-row: 1 / span 3;
}

.statement-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  padding: clamp(76px, 11vw, 138px) clamp(20px, 5vw, 70px);
}

.statement-inner .eyebrow {
  color: var(--red);
}

blockquote {
  color: var(--ink);
  font-family: "Noto Serif CJK JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.24;
  max-width: 1000px;
}

.statement-copy p {
  color: rgba(48, 44, 39, 0.78);
}

.about-layout {
  align-items: start;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
}

.about-copy p {
  font-size: clamp(16px, 1.45vw, 18px);
}

.cv-section,
.prints-section {
  border-top: 1px solid var(--line);
}

.record-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.record-list div {
  border-bottom: 1px solid var(--soft-line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  padding: 20px 0;
}

.record-list dt {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.record-list dd {
  color: var(--ink);
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.work-dialog {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.dialog-close {
  background: var(--ink);
  color: var(--surface);
}

.dialog-media {
  background: #141211;
}

.dialog-text {
  background: var(--surface);
}

.detail-list {
  border-top-color: var(--line);
}

.detail-list dd {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-plate {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 126px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    gap: 8px 10px;
    justify-content: flex-start;
  }

  .hero {
    gap: 24px;
    padding-bottom: 22px;
    padding-top: 122px;
  }

  .hero-copy {
    bottom: auto;
    gap: 14px;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 55% 38%;
  }

  .hero-plate figcaption {
    margin-top: 8px;
  }

  .intro-band {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .intro-band a,
  .intro-band a:first-child {
    border-left: 0;
    min-height: 116px;
  }

  .intro-band a:nth-child(odd) {
    border-left: 0;
  }

  .intro-band a:nth-child(even) {
    border-right: 0;
  }

  .works-grid,
  .collection-item,
  .timeline-item,
  .about-layout,
  .record-list div,
  .dialog-content {
    grid-template-columns: 1fr;
  }

  .dialog-content {
    max-height: 92svh;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-band a {
    border-right: 0;
  }
}


.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  display: inline-flex;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  padding-bottom: 3px;
  width: fit-content;
}

.edition-page {
  padding-top: 86px;
}

.edition-hero {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(86px, 12vw, 150px) clamp(18px, 4vw, 28px) clamp(48px, 8vw, 88px);
}

.edition-hero h1 {
  color: var(--ink);
  font-family: "Noto Serif CJK JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.edition-section {
  border-top: 1px solid var(--line);
}

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

.edition-grid article {
  border-top: 1px solid var(--soft-line);
  display: grid;
  gap: 12px;
  padding: clamp(24px, 5vw, 48px) clamp(0px, 3vw, 36px) clamp(28px, 5vw, 54px) 0;
}

.edition-grid article:nth-child(1),
.edition-grid article:nth-child(2) {
  border-top: 0;
}

.edition-grid h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.edition-grid p,
.edition-note p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.9;
  margin: 0;
  max-width: 760px;
}

.edition-note {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
}

@media (max-width: 760px) {
  .edition-page {
    padding-top: 126px;
  }

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

  .edition-grid article:nth-child(2) {
    border-top: 1px solid var(--soft-line);
  }
}
