:root {
  --paper: #f5f4f0;
  --paper-deep: #ebeae5;
  --ink: #181918;
  --muted: #50534f;
  --line: #d5d5cf;
  --sage: #64746d;
  --mineral: #31515a;
  --shell: #fdfdfb;
  --shadow: 0 18px 60px rgba(24, 25, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  box-shadow: 0 10px 30px rgba(40, 38, 33, 0.04);
}

.brand,
.nav,
.hero-actions,
.contact-links,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav {
  gap: clamp(8px, 1.45vw, 22px);
  font-family: Lato, Arial, sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.nav a,
.text-link,
.footer a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  text-underline-offset: 4px;
}

.nav a,
.text-link {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--mineral);
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--ink);
  opacity: 0.45;
}

.hero {
  min-height: min(780px, calc(100vh - 73px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 96px);
  padding-top: clamp(44px, 7vw, 92px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.hero::before {
  display: none;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 10px;
  font-size: 82px;
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  margin-bottom: 28px;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.35;
}

.no-break {
  white-space: nowrap;
}

.phrase-heading,
.phrase-copy,
.compact-heading {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

.phrase-segment {
  display: inline-block;
  white-space: nowrap;
}

.compact-heading {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

.title-ja {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--mineral);
  font-size: 18px;
  line-height: 1.75;
}

.hero-statement {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 17px;
  text-wrap: pretty;
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.2;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button-link:hover {
  transform: translateY(-1px);
}

.button-link.primary {
  background: var(--ink);
  color: var(--shell);
}

.button-link.primary:hover {
  background: var(--mineral);
  border-color: var(--mineral);
}

.button-link.secondary {
  background: rgba(251, 250, 247, 0.36);
  color: var(--ink);
}

.button-link.secondary:hover {
  background: var(--shell);
  border-color: var(--mineral);
  color: var(--mineral);
}

.button-link.compact {
  min-height: 40px;
  padding: 9px 18px;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 540px;
}

.hero-image {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  pointer-events: none;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.hero-image figcaption {
  position: absolute;
  bottom: 36px;
  left: 36px;
  margin: 0;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.profile-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

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

.news-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-list article {
  background: color-mix(in srgb, var(--paper) 84%, var(--shell));
  padding: clamp(22px, 3vw, 32px);
}

.news-list time,
.news-list h3,
.news-type {
  font-family: Lato, Arial, sans-serif;
}

.news-list time {
  display: block;
  margin-bottom: 10px;
  color: var(--mineral);
  font-size: 12px;
}

.news-type {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.news-list h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-top: 20px;
  object-fit: contain;
  background: var(--shell);
  border: 1px solid var(--line);
}

.news-image-button,
.archive-news summary {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--mineral);
  cursor: pointer;
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-image-button {
  margin-top: 20px;
  padding: 0 0 5px;
}

.archive-news {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.48);
}

.archive-news summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 18px 22px;
}

.archive-news summary::-webkit-details-marker {
  display: none;
}

.archive-news summary::after {
  content: "+";
  color: var(--muted);
  font-size: 16px;
}

.archive-news[open] summary::after {
  content: "-";
}

.archive-news-list {
  border-inline: 0;
  border-bottom: 0;
}

.news-preview {
  display: none;
  position: relative;
  margin: 24px 0 0;
  padding: 18px;
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.news-preview.is-visible {
  display: block;
  animation: previewIn 0.36s ease both;
}

.news-preview img {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  background: var(--paper);
}

.news-preview figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.news-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-family: Lato, Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
}

@keyframes previewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-list p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 86%, var(--muted));
  font-size: 14px;
  line-height: 1.8;
}

.featured-works {
  border-top: 1px solid var(--line);
  padding-top: clamp(64px, 8vw, 104px);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.featured-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(12px, 2vw, 20px);
  background: rgba(251, 250, 247, 0.58);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(40, 38, 33, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--mineral) 50%, var(--line));
  box-shadow: 0 24px 70px rgba(40, 38, 33, 0.1);
}

.featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--shell);
}

.featured-card-copy {
  display: grid;
  gap: 5px;
}

.featured-card-copy span {
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.featured-card-copy p,
.featured-card-copy small {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 82%, var(--muted));
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.6;
}

.featured-card-copy small {
  color: var(--mineral);
  text-transform: uppercase;
}

.profile-photo {
  margin: 34px 0 0;
  border: 1px solid var(--line);
  background: var(--shell);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.body-text {
  max-width: 620px;
  color: color-mix(in srgb, var(--ink) 93%, var(--muted));
  font-size: 16px;
  font-weight: 430;
  text-wrap: pretty;
}

.profile-summary {
  margin-bottom: 34px;
  padding: 26px;
  background: rgba(251, 250, 247, 0.58);
  border: 1px solid var(--line);
  box-shadow: 0 16px 52px rgba(40, 38, 33, 0.06);
}

.profile-summary .section-label {
  margin-bottom: 16px;
}

.profile-summary p:last-child {
  margin-bottom: 0;
}

.english-note {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  line-height: 1.8;
}

.quiet-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%),
    var(--paper-deep);
  border-block: 1px solid var(--line);
}

.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
}

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.work-grid,
.two-column {
  display: grid;
  gap: 22px;
}

.work-card {
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(40, 38, 33, 0.08);
}

.work-card p {
  margin: 0;
  padding: 18px 20px 20px;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.drawing-reveal {
  width: min(820px, 100%);
  margin: 0 auto;
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.concept-grid,
.achievement-strip,
.process-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.concept-grid {
  width: min(1120px, 100%);
  margin: 36px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept-grid article,
.achievement-strip button,
.process-steps article {
  background: color-mix(in srgb, var(--paper) 82%, var(--shell));
  padding: clamp(20px, 3vw, 30px);
}

.concept-grid span,
.achievement-strip span,
.process-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--mineral);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.concept-grid h3,
.process-steps h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.concept-grid p,
.achievement-strip p,
.process-steps p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-size: 14px;
  line-height: 1.85;
}

.documentary {
  width: min(1180px, calc(100% - 40px));
}

.documentary .section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.documentary-intro {
  max-width: 740px;
  margin: 20px 0 0;
  color: color-mix(in srgb, var(--ink) 90%, var(--muted));
  font-size: 16px;
  line-height: 2;
  text-wrap: pretty;
}

.documentary-film {
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.7), rgba(251, 250, 247, 0.42)),
    var(--shell);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(40, 38, 33, 0.1);
}

.documentary-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #171614;
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--ink));
  object-fit: contain;
}

.documentary-youtube-link {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.documentary-youtube-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 500ms ease;
}

.documentary-youtube-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 14, 0.12);
  transition: background-color 500ms ease;
}

.documentary-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(17, 16, 14, 0.56);
  transform: translate(-50%, -50%);
  transition: background-color 400ms ease, transform 400ms ease;
}

.documentary-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
  transform: translate(-40%, -50%);
}

.documentary-watch-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.96);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.documentary-youtube-link:hover::after,
.documentary-youtube-link:focus-visible::after {
  background: rgba(17, 16, 14, 0.22);
}

.documentary-youtube-link:hover .documentary-play,
.documentary-youtube-link:focus-visible .documentary-play {
  background: rgba(17, 16, 14, 0.72);
  transform: translate(-50%, -50%) scale(1.04);
}

.documentary-film figcaption {
  margin-top: 14px;
  color: color-mix(in srgb, var(--ink) 72%, var(--muted));
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.achievement-strip button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.achievement-strip button:hover,
.achievement-strip button:focus-visible {
  background: var(--shell);
  color: var(--mineral);
  outline: 0;
}

.reveal-stage {
  position: relative;
}

.reveal-stage img {
  display: block;
  width: 100%;
}

.reveal-stage .reveal-color {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
  animation: revealColor 8s ease-in-out infinite;
}

.drawing-reveal figcaption {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes revealColor {
  0%,
  18% {
    clip-path: inset(0 100% 0 0);
  }

  58%,
  86% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 100% 0 0);
  }
}

.history,
.works,
.process-section,
.media-section {
  border-top: 1px solid var(--line);
}

.achievement-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 46px;
}

.history-kicker {
  margin: -10px 0 14px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, padding-inline 0.25s ease;
}

.timeline li.is-open {
  padding-inline: 18px;
  background: rgba(251, 250, 247, 0.52);
}

.timeline time {
  color: var(--mineral);
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.timeline button {
  position: relative;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  padding: 0;
  padding-right: 44px;
  text-align: left;
}

.timeline > li > button::before {
  content: "+";
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--mineral);
  font-family: Lato, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.timeline > li > button.is-active::before {
  transform: rotate(45deg);
}

.timeline > li > button::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 8px;
  background: currentColor;
  transition: width 0.35s ease;
}

.timeline > li > button:hover::after,
.timeline > li > button:focus-visible::after,
.timeline > li > button.is-active::after {
  width: 100%;
}

.timeline-title,
.timeline-summary {
  display: block;
}

.timeline-title {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.85;
}

.timeline-summary {
  margin-top: 4px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.history-preview {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  grid-column: 2;
  margin: 0;
  opacity: 0;
  filter: blur(10px);
  overflow: hidden;
  transition: grid-template-rows 0.45s ease, opacity 0.45s ease, filter 0.45s ease, margin 0.45s ease;
}

.history-preview.is-visible {
  grid-template-rows: 1fr;
  margin-top: 24px;
  opacity: 1;
  filter: blur(0);
}

.history-preview-inner {
  min-height: 0;
}

.history-detail-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 36px 0 1.2em;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-size: 14px;
  line-height: 1.8;
}

.history-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
}

.history-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-family: Lato, Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(38, 34, 28, 0.08);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.history-close:hover {
  border-color: color-mix(in srgb, var(--ink) 36%, transparent);
  background: rgba(251, 250, 247, 0.94);
  transform: translateY(-1px);
}

.history-close::before,
.history-close::after {
  content: none;
}

.history-preview-grid figure {
  margin: 0;
}

.history-preview-grid img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  overflow: hidden;
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.history-preview-grid figcaption {
  padding: 14px 0 0;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

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

.work-card img {
  display: block;
  width: 100%;
  max-height: 860px;
  object-fit: contain;
  background: var(--shell);
}

.works-page {
  padding-top: clamp(40px, 6vw, 72px);
}

.works-page h1 {
  font-size: 72px;
}

.works-lead {
  max-width: 760px;
  margin-bottom: 44px;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.works-gallery-heading {
  grid-column: 1 / -1;
  padding-top: clamp(28px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.works-gallery-heading h2 {
  margin: 0;
  font-size: 43px;
}

.works-gallery .work-card img {
  height: auto;
  max-height: none;
  object-fit: contain;
  padding: clamp(14px, 3vw, 36px);
}

.work-card-body {
  padding: 0 20px 22px;
}

.work-card .work-title {
  padding: 0;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.work-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.work-card dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

.work-card dt,
.work-card dd {
  margin: 0;
}

.work-card dd {
  color: color-mix(in srgb, var(--ink) 92%, var(--muted));
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 13px;
  font-weight: 500;
}

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

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 56px;
}

.process-media {
  border-top: 0;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: start;
}

.two-column article {
  padding-right: clamp(0px, 4vw, 60px);
}

.media-frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--shell);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-video-shell {
  position: relative;
  margin-bottom: 24px;
}

.media-video-shell .media-frame {
  margin-bottom: 0;
}

.media-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(251, 250, 247, 0.72);
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.78);
  box-shadow: 0 18px 54px rgba(40, 38, 33, 0.18);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.media-play-badge::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
}

.media-video-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px 6px;
  border: 1px solid rgba(251, 250, 247, 0.62);
  background: rgba(40, 38, 33, 0.56);
  color: var(--shell);
  font-family: Lato, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity 0.28s ease;
}

.media-video-shell.is-playing .media-play-badge,
.media-video-shell.is-playing .media-video-label {
  opacity: 0;
}

.contact-intro {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.contact-response {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

video.media-frame {
  object-fit: contain;
}

.works-load-more {
  margin: 46px auto 0;
}

.works-load-more[hidden] {
  display: none;
}

.contact-links {
  margin-top: 28px;
  align-items: stretch;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-family: Lato, Arial, sans-serif;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Lato, Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
}

.instagram-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.youtube-icon {
  border-radius: 8px;
}

.youtube-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  margin-left: 2px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--shell);
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
  padding: 14px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--mineral);
  box-shadow: 0 0 0 3px rgba(73, 108, 119, 0.12);
  outline: 0;
}

.contact-form select {
  min-height: 54px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--shell);
  cursor: pointer;
  font: inherit;
  padding: 11px 28px;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-form button:hover {
  background: transparent;
  color: var(--ink);
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .hero,
  .profile-grid,
  .contact,
  .work-grid,
  .two-column,
  .featured-grid,
  .news-list,
  .concept-grid,
  .achievement-strip,
  .process-steps,
  .works-gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image {
    max-width: 440px;
  }

  .button-link {
    min-height: 48px;
  }

  .timeline li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }

  .history-preview {
    grid-column: 1 / -1;
  }

  .history-preview-grid {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .works-gallery .work-card img {
    padding: 16px;
  }

  .work-card-body {
    padding: 0 15px 18px;
  }

  .work-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 520px) {
  .section {
    width: min(100% - 28px, 1120px);
    padding: 64px 0;
  }

  .section::before {
    width: 48px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 27px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-statement {
    font-size: 26px;
  }

  .hero {
    gap: 36px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-copy .body-text,
  .profile-summary .body-text,
  .contact-intro {
    font-size: 16px;
  }

  .nav a {
    font-size: 12px;
  }

  .site-header .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
  }

  .work-card img {
    min-height: 260px;
    height: 320px;
  }

  .works-gallery .work-card img {
    height: auto;
    min-height: 0;
    padding: 10px;
  }

  .works-page h1 {
    font-size: 42px;
  }

  .works-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-card .work-title {
    font-size: 12px;
    line-height: 1.55;
  }

  .work-card dl {
    gap: 7px;
  }

  .work-card dl div {
    font-size: 10px;
  }

  .work-card dd {
    font-size: 12px;
  }

  .media-play-badge {
    width: 58px;
    height: 58px;
  }

  .media-play-badge::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .media-video-label {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

}

@media (max-width: 380px) {
  .works-gallery {
    grid-template-columns: 1fr;
  }
}

/* Refined editorial presentation */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--shell);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--mineral);
  outline-offset: 4px;
}

img,
video {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  min-height: 72px;
  padding: 14px clamp(24px, 4vw, 64px);
  background: rgba(245, 244, 240, 0.94);
  border-bottom-color: rgba(24, 25, 24, 0.12);
  box-shadow: none;
}

.brand {
  flex: 0 0 auto;
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 0;
}

.nav {
  gap: clamp(13px, 1.55vw, 24px);
  font-size: 11px;
}

.nav a {
  min-height: 42px;
  border-bottom-color: transparent;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  border-bottom-color: currentColor;
  color: var(--mineral);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(1160px, calc(100% - 48px));
  padding: 112px 0;
}

.section::before {
  width: 56px;
  background: var(--mineral);
  opacity: 0.72;
}

.section-label,
.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

h1 {
  font-size: 82px;
  line-height: 1.08;
}

h2 {
  font-size: 43px;
  line-height: 1.42;
  text-wrap: pretty;
}

.hero {
  min-height: min(720px, calc(100svh - 72px));
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 72px;
  padding-top: 54px;
  padding-bottom: 76px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.title-ja {
  margin-bottom: 22px;
  color: var(--mineral);
  font-size: 17px;
}

.hero-statement {
  max-width: 520px;
  font-size: 34px;
  line-height: 1.5;
  text-wrap: pretty;
}

.lead {
  max-width: 560px;
  font-size: 17px;
  line-height: 2;
}

.button-link {
  min-height: 48px;
  padding-inline: 24px;
  font-weight: 600;
}

.hero-visual {
  min-height: 0;
}

.hero-image {
  width: min(100%, 610px);
  padding: 22px 22px 54px;
  border-color: rgba(24, 25, 24, 0.16);
  box-shadow: 0 28px 90px rgba(24, 25, 24, 0.1);
}

.hero-image::before {
  content: none;
}

.hero-image img {
  background: #fff;
}

.hero-transition {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero-image .hero-transition img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-transition .hero-line {
  z-index: 0;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
}

.hero-transition .hero-complete {
  z-index: 1;
  opacity: 0;
  transform: scale(1.014);
  transform-origin: 72% 35%;
  filter: grayscale(0.74) brightness(1.08) blur(1.5px);
  animation: heroColorBloom 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes heroColorBloom {
  0%,
  15% {
    opacity: 0;
    transform: scale(1.014);
    filter: grayscale(0.74) brightness(1.08) blur(1.5px);
  }

  46%,
  82% {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0) brightness(1) blur(0);
  }

  96%,
  100% {
    opacity: 0;
    transform: scale(1.008);
    filter: grayscale(0.35) brightness(1.04) blur(0.7px);
  }
}

.hero-image figcaption {
  bottom: 17px;
  left: 22px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
}

.section-head {
  margin-bottom: 46px;
}

.featured-grid {
  gap: 30px;
}

.featured-card {
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.featured-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.featured-card img {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover img {
  border-color: var(--mineral);
  box-shadow: 0 18px 54px rgba(24, 25, 24, 0.08);
}

.featured-card-copy span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.news-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  background: transparent;
  border: 0;
}

.news-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 24px;
  align-content: start;
  padding: 27px 0 30px;
  background: transparent;
  border-top: 1px solid var(--line);
}

.news-list time {
  grid-row: 1 / span 3;
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.news-type {
  margin: 0 0 9px;
  color: var(--mineral);
  font-size: 10px;
  font-weight: 700;
}

.news-list h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
}

.news-image-button {
  grid-column: 2;
  justify-self: start;
  min-height: 38px;
  margin-top: 11px;
}

.archive-news {
  margin-top: 26px;
}

.profile-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.profile-grid > div:first-child h2 {
  max-width: 10em;
  margin-bottom: 36px;
}

.profile-photo {
  margin-top: 0;
  box-shadow: 0 22px 70px rgba(24, 25, 24, 0.09);
}

.profile-summary {
  margin: 0;
  padding: 0 0 0 30px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  box-shadow: none;
}

.body-text,
.profile-summary {
  color: var(--ink);
  font-size: 16px;
  line-height: 2.05;
}

.english-note {
  color: var(--muted);
  font-size: 13px;
}

.quiet-band {
  padding-inline: max(24px, calc((100vw - 1160px) / 2));
  background: var(--paper-deep);
}

.drawing-reveal {
  border-color: rgba(24, 25, 24, 0.16);
  box-shadow: 0 22px 70px rgba(24, 25, 24, 0.09);
}

.concept-grid,
.process-steps {
  gap: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.concept-grid article,
.process-steps article {
  padding: 28px 30px 32px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-grid article:last-child,
.process-steps article:last-child {
  border-right: 0;
}

.concept-grid p,
.process-steps p {
  color: var(--muted);
}

.documentary {
  width: min(1160px, calc(100% - 48px));
}

.documentary-film {
  padding: 12px;
  background: #111;
  border-color: #111;
  box-shadow: 0 28px 90px rgba(24, 25, 24, 0.14);
}

.documentary-film figcaption {
  padding: 2px 4px 0;
  color: rgba(255, 255, 255, 0.72);
}

.timeline li {
  grid-template-columns: 132px minmax(0, 1fr);
  padding: 27px 0;
}

.timeline li.is-open {
  padding-inline: 20px;
  background: rgba(253, 253, 251, 0.62);
}

.timeline-title {
  font-size: 16px;
}

.timeline-summary {
  color: var(--muted);
}

.history-close,
.news-preview-close {
  width: 34px;
  height: 34px;
  min-height: 34px;
  background: rgba(253, 253, 251, 0.94);
  border: 1px solid rgba(24, 25, 24, 0.22);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(24, 25, 24, 0.1);
  font-size: 16px;
}

.works {
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--ink);
  color: var(--shell);
  border-top: 0;
}

.works::before {
  content: none;
}

.works-cta-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 82px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.works .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.works h2 {
  margin: 0;
}

.works-cta-link {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--shell);
}

.works-cta-link:hover {
  background: var(--shell);
  color: var(--ink);
}

.shop-section {
  width: 100%;
  background: #efefec;
  border-bottom: 1px solid var(--line);
}

.shop-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 104px;
}

.shop-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: stretch;
}

.shop-title-block {
  align-self: center;
}

.shop-title-block h2 {
  margin-bottom: 0;
}

.shop-storefront {
  display: flex;
  min-height: 470px;
  padding: clamp(34px, 5vw, 60px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--ink);
  color: var(--shell);
}

.shop-storefront-label {
  margin-bottom: 28px;
  color: rgba(253, 253, 251, 0.64);
  font-family: Lato, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-storefront strong {
  margin-bottom: 30px;
  font-family: Lato, Arial, sans-serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.94;
}

.shop-storefront p {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(253, 253, 251, 0.78);
  font-size: 15px;
  line-height: 1.95;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

.shop-link {
  width: fit-content;
  gap: 16px;
}

.shop-storefront .shop-link {
  background: var(--shell);
  border-color: var(--shell);
  color: var(--ink);
}

.shop-storefront .shop-link:hover {
  background: transparent;
  color: var(--shell);
}

.shop-storefront small {
  margin-top: 24px;
  color: rgba(253, 253, 251, 0.56);
  font-size: 10px;
  line-height: 1.8;
}

.process-steps {
  margin-bottom: 0;
}

.media-frame {
  border-color: rgba(24, 25, 24, 0.16);
  box-shadow: 0 18px 60px rgba(24, 25, 24, 0.08);
}

.contact {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 52px;
  background: rgba(253, 253, 251, 0.92);
  border-color: rgba(24, 25, 24, 0.22);
}

.contact-form button {
  min-height: 48px;
  font-weight: 600;
}

.contact-response a {
  color: var(--ink);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-links a {
  min-height: 64px;
  color: var(--ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.contact-links a:hover {
  padding-left: 6px;
  color: var(--mineral);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.works-page {
  width: min(1240px, calc(100% - 48px));
  padding-top: 86px;
}

.works-page h1 {
  font-size: 72px;
}

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

.works-gallery .work-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.works-gallery .work-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  cursor: zoom-in;
  object-fit: contain;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.works-gallery .work-card img:hover,
.works-gallery .work-card img:focus-visible {
  border-color: var(--mineral);
  box-shadow: 0 18px 54px rgba(24, 25, 24, 0.08);
  transform: translateY(-2px);
}

.work-card-body {
  padding: 15px 2px 28px;
}

.work-card .work-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.work-card dl {
  margin: 0;
}

.work-card dl div:first-child {
  display: none;
}

.work-card dl div {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.work-card dd {
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 10px;
}

.work-lightbox {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 42px 50px 30px;
  background: rgba(253, 253, 251, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ink);
  overflow: auto;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
}

.work-lightbox::backdrop {
  background: rgba(11, 12, 11, 0.88);
  backdrop-filter: blur(5px);
}

.work-lightbox figure {
  display: grid;
  place-items: center;
  gap: 16px;
  margin: 0;
}

.work-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 150px);
  object-fit: contain;
}

.work-lightbox figcaption {
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.work-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .profile-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .profile-grid > div:first-child h2 {
    max-width: 13em;
  }

  .profile-photo {
    width: min(100%, 520px);
  }

  .profile-summary {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-left: auto;
    padding: 7px 0 7px 12px;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    font-family: Lato, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-toggle-icon {
    position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-icon::before {
    top: -6px;
  }

  .nav-toggle-icon::after {
    top: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    gap: 18px;
  }

  .site-header .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 10px 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    overflow: visible;
    background: rgba(245, 244, 240, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(24, 25, 24, 0.08);
  }

  .site-header .nav.is-open {
    display: grid;
  }

  .site-header .nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
  }

  .shop-heading {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .shop-storefront {
    width: 100%;
    min-height: 420px;
  }

  .hero-statement {
    font-size: 30px;
  }

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

  .concept-grid article:nth-child(2),
  .process-steps article:nth-child(2),
  .concept-grid article:last-child,
  .process-steps article:last-child {
    border-right: 0;
  }

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

@media (max-width: 760px) {
  .section {
    width: min(100% - 32px, 1160px);
    padding: 82px 0;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 42px;
  }

  .hero-statement {
    font-size: 27px;
  }

  .hero-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .featured-grid,
  .news-list,
  .profile-grid,
  .contact,
  .two-column {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    gap: 44px;
  }

  .news-list {
    column-gap: 0;
  }

  .profile-grid > div:first-child h2 {
    max-width: 13em;
  }

  .profile-photo {
    width: min(100%, 520px);
  }

  .profile-summary {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quiet-band {
    padding-inline: 16px;
  }

  .documentary {
    width: min(100% - 32px, 1160px);
  }

  .timeline li,
  .timeline li.is-open {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 24px 0;
  }

  .history-preview {
    grid-column: 1;
  }

  .works-cta-inner {
    width: min(100% - 32px, 1160px);
    padding: 64px 0 68px;
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-inner {
    width: min(100% - 32px, 1160px);
    padding: 80px 0 76px;
  }

  .process-media {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .two-column article {
    padding-right: 0;
  }

  .works-page {
    width: min(100% - 32px, 1240px);
  }

  .work-lightbox {
    width: calc(100% - 20px);
    padding: 42px 12px 22px;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand {
    font-size: 13px;
  }

  .site-header .nav {
    grid-template-columns: 1fr;
    padding: 6px 16px 16px;
  }

  .site-header .nav a {
    min-height: 45px;
    font-size: 11px;
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 28px;
  }

  .title-ja,
  .lead {
    font-size: 16px;
  }

  .hero-statement {
    font-size: 25px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button-link {
    width: 100%;
  }

  .hero-image {
    padding: 12px 12px 46px;
  }

  .hero-image figcaption {
    bottom: 13px;
    left: 13px;
  }

  .shop-inner {
    padding: 68px 0 66px;
  }

  .shop-heading {
    gap: 28px;
  }

  .shop-link {
    width: 100%;
  }

  .shop-storefront {
    min-height: 0;
    padding: 38px 24px 40px;
  }

  .shop-storefront strong {
    font-size: 52px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .section-head.split {
    gap: 8px;
  }

  .news-list article {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }

  .news-list time {
    grid-row: auto;
  }

  .news-image-button {
    grid-column: 1;
  }

  .concept-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .concept-grid article,
  .process-steps article {
    border-right: 0;
  }

  .documentary-film {
    padding: 6px;
  }

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

  .works-gallery .work-card img {
    padding: 12px;
  }

  .works-page h1 {
    font-size: 43px;
  }

  .contact-links a {
    min-height: 58px;
  }
}

/* Continuous editorial news stream */
.news-list {
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: 0;
}

.news-list article {
  grid-template-columns: 144px 112px minmax(0, 1fr) auto;
  column-gap: 24px;
  align-items: start;
  padding: 25px 0 27px;
  background: transparent;
  border-top: 1px solid var(--line);
}

.news-list time {
  grid-row: auto;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.news-type {
  margin: 2px 0 0;
  color: var(--mineral);
  font-size: 10px;
  font-weight: 700;
}

.news-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.news-image-button {
  grid-column: auto;
  min-height: 36px;
  margin: -5px 0 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.news-image-button:hover,
.news-image-button:focus-visible {
  border-color: var(--mineral);
  background: rgba(255, 255, 255, 0.7);
  color: var(--mineral);
}

.archive-news {
  margin: 0;
  border: 0;
  background: transparent;
}

.archive-news summary {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr) 38px;
  column-gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  list-style: none;
  text-transform: none;
  transition: color 0.2s ease;
}

.archive-news summary::after {
  content: none;
}

.archive-news summary:hover,
.archive-news summary:focus-visible {
  color: var(--mineral);
}

.archive-news-kicker {
  color: var(--mineral);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.archive-news-label {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 14px;
  font-weight: 500;
}

.archive-news-label-open {
  display: none;
}

.archive-news[open] .archive-news-label-closed {
  display: none;
}

.archive-news[open] .archive-news-label-open {
  display: inline;
}

.archive-news-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

.archive-news summary:hover .archive-news-icon,
.archive-news summary:focus-visible .archive-news-icon {
  border-color: var(--mineral);
}

.archive-news[open] .archive-news-icon {
  transform: rotate(180deg);
}

.archive-news[open] .archive-news-list {
  animation: archiveNewsIn 0.32s ease both;
}

.archive-news-list article:first-child {
  border-top-color: var(--line);
}

.news-list article > .news-preview {
  grid-column: 3 / -1;
  width: 100%;
  margin: 20px 0 0;
  padding: 12px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(24, 25, 24, 0.07);
}

.news-preview-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  align-items: start;
}

.news-preview img {
  width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
}

.news-preview-close {
  width: 30px;
  height: 30px;
  font-size: 15px;
}

.history-close {
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.72;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.history-close:hover,
.history-close:focus-visible {
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.timeline li.is-open {
  padding-inline: 0;
}

.timeline-title,
.history-detail-list li {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

/* Editorial career index */
.career-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
  margin-bottom: 46px;
}

.career-heading h2 {
  max-width: none;
  margin-bottom: 0;
  white-space: nowrap;
  text-wrap: nowrap;
}

.career-intro {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  line-break: strict;
  text-wrap: pretty;
}

.career-list {
  border-top: 1px solid var(--ink);
}

.career-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.career-entry-trigger {
  display: grid;
  grid-template-columns: 90px 160px minmax(0, 1fr) 72px;
  gap: 24px;
  align-items: start;
  width: 100%;
  min-height: 88px;
  padding: 25px 0 26px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.career-entry-trigger:hover,
.career-entry-trigger:focus-visible,
.career-entry-trigger.is-active {
  background: rgba(253, 253, 251, 0.72);
}

.career-entry-trigger:focus-visible {
  outline: 1px solid var(--mineral);
  outline-offset: -1px;
}

.career-year,
.career-kind,
.career-note,
.career-action {
  font-family: Lato, Arial, sans-serif;
}

.career-year {
  color: var(--mineral);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.career-kind {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

.career-main {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.career-title {
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
  transition: color 0.22s ease;
}

.career-entry-trigger.is-active .career-title {
  color: var(--mineral);
}

.career-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}

.career-action {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.career-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 12px;
  transition: border-color 0.22s ease, transform 0.25s ease;
}

.career-entry-trigger:hover .career-arrow,
.career-entry-trigger:focus-visible .career-arrow,
.career-entry-trigger.is-active .career-arrow {
  border-color: var(--mineral);
}

.career-entry-trigger.is-active .career-arrow {
  transform: rotate(180deg);
}

.career-entry .history-preview {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid transparent;
}

.career-entry .history-preview.is-visible {
  margin-top: 0;
  padding-bottom: 32px;
  border-top-color: var(--line);
}

.career-entry .history-preview-inner {
  position: relative;
  padding-top: 38px;
}

.career-entry .history-close {
  top: 8px;
  right: 0;
}

.career-entry .history-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.career-entry .history-preview-grid img {
  max-height: 660px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(24, 25, 24, 0.07);
}

@media (max-width: 900px) {
  .career-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .career-heading h2 {
    max-width: none;
  }

  .career-entry-trigger {
    grid-template-columns: 72px 140px minmax(0, 1fr) 64px;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .career-heading {
    margin-bottom: 34px;
  }

  .career-intro {
    font-size: 14px;
    line-height: 1.85;
  }

  .career-entry-trigger {
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 8px 14px;
    min-height: 0;
    padding: 21px 0 23px;
  }

  .career-year {
    grid-column: 1;
    grid-row: 1;
  }

  .career-kind {
    grid-column: 2;
    grid-row: 1;
  }

  .career-main {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .career-action {
    grid-column: 3;
    grid-row: 1;
  }

  .career-action > span:first-child {
    display: none;
  }

  .career-arrow {
    width: 28px;
    height: 28px;
  }

  .career-title {
    font-size: 15px;
    line-height: 1.75;
  }

  .career-title,
  .career-note {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: wrap;
  }

  .career-entry .history-preview-inner {
    padding-top: 36px;
  }

  .career-entry .history-preview-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes archiveNewsIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Artwork download deterrence. Public files are also delivered at web resolution. */
.works-gallery .work-card img,
.work-lightbox img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 720px) {
  .news-list article {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 8px;
    padding: 22px 0 24px;
  }

  .news-list time {
    grid-column: 1;
    grid-row: 1;
  }

  .news-type {
    grid-column: 2;
    grid-row: 1;
  }

  .news-list h3,
  .news-image-button,
  .news-list article > .news-preview {
    grid-column: 1 / -1;
  }

  .news-list h3 {
    grid-row: 2;
    font-size: 15px;
  }

  .news-image-button {
    grid-row: 3;
    justify-self: start;
    margin-top: 7px;
  }

  .news-list article > .news-preview {
    margin-top: 12px;
  }

  .news-preview-images {
    grid-template-columns: 1fr;
  }

  .archive-news summary {
    grid-template-columns: minmax(0, 1fr) 38px;
    column-gap: 14px;
  }

  .archive-news-kicker {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-stage .reveal-color {
    animation: none;
    clip-path: inset(0 0 0 50%);
  }

  .hero-transition .hero-complete {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

}

/* WORKS archive: quiet captions, exact project credits, and full artwork framing. */
.works-page .section-head {
  align-items: flex-end;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.works-page .section-label {
  margin-bottom: 12px;
}

.works-page h1 {
  margin-bottom: 0;
  font-family: Lato, Arial, sans-serif;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.95;
}

.works-gallery {
  align-items: start;
  gap: clamp(38px, 5vw, 68px) clamp(22px, 3vw, 34px);
}

.works-gallery .work-card img {
  display: block;
  padding: clamp(12px, 1.5vw, 20px);
  background: #fff;
  box-shadow: 0 12px 38px rgba(24, 25, 24, 0.045);
}

.works-gallery .work-card-body {
  padding: 16px 2px 0;
}

.works-gallery .work-card-body > p {
  padding: 0;
  text-transform: none;
}

.work-card .work-context {
  margin: 0 0 7px;
  color: var(--sage);
  font-family: Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.65;
}

.work-card .work-title {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

.work-card .work-medium {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .works-page {
    width: min(100% - 36px, 760px);
  }

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

@media (max-width: 560px) {
  .works-page {
    width: min(100% - 28px, 520px);
    padding-top: 62px;
  }

  .works-page .section-head {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 38px;
    padding-bottom: 20px;
  }

  .works-page h1 {
    font-size: 48px;
  }

  .works-gallery {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .works-gallery .work-card img {
    padding: 12px;
  }

  .work-card .work-context {
    font-size: 9px;
  }

  .work-card .work-title {
    font-size: 14px;
  }
}

/* Japanese line wrapping: keep phrases readable without forcing fixed breaks. */
.lead,
.body-text,
.documentary-intro,
.career-intro,
.career-title,
.news-list h3,
.contact-intro,
.work-card .work-context,
.work-card .work-title {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  h2,
  h3,
  .lead,
  .body-text,
  .documentary-intro,
  .career-intro,
  .career-title,
  .news-list h3,
  .contact-intro,
  .work-card .work-context,
  .work-card .work-title {
    word-break: auto-phrase;
  }
}

/* WORKS filters */
.works-filter {
  margin: 0 0 clamp(54px, 7vw, 84px);
  padding: 0 0 clamp(38px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

.works-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
}

.works-filter-kicker {
  margin: 0 0 5px;
  color: var(--sage);
  font-family: Lato, Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.works-filter h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.35;
}

.works-result-count {
  color: var(--muted);
  font-family: Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  white-space: nowrap;
}

.works-genre-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.works-genre-tabs button {
  min-height: 54px;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  cursor: pointer;
  font: 500 11px/1.45 Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  transition: background 0.22s ease, color 0.22s ease;
}

.works-genre-tabs button:last-child {
  border-right: 0;
}

.works-genre-tabs button:hover,
.works-genre-tabs button:focus-visible {
  background: color-mix(in srgb, var(--mineral) 7%, transparent);
  color: var(--ink);
}

.works-genre-tabs button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--shell);
}

.works-genre-tabs button:focus-visible,
.works-filter-field input:focus-visible,
.works-filter-field select:focus-visible,
.works-filter-reset:focus-visible {
  outline: 2px solid var(--mineral);
  outline-offset: 3px;
}

.works-filter-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.72fr) auto;
  align-items: end;
  gap: clamp(20px, 3vw, 38px);
}

.works-filter-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.works-filter-field > span {
  color: var(--muted);
  font-family: Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
}

.works-filter-field input,
.works-filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  font-size: 14px;
}

.works-filter-field input::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.works-filter-reset {
  min-height: 46px;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  font: 600 10px/1.4 Lato, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.works-filter-reset:hover:not(:disabled) {
  color: var(--mineral);
  border-color: var(--mineral);
}

.works-filter-reset:disabled {
  cursor: default;
  opacity: 0.32;
}

.works-empty {
  margin: 0;
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.works-gallery .work-card.is-filter-entering {
  animation: worksFilterIn 0.38s ease both;
}

@keyframes worksFilterIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .works-genre-tabs {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .works-genre-tabs button {
    flex: 0 0 auto;
    min-width: 146px;
    scroll-snap-align: start;
  }

  .works-filter-tools {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
  }

  .works-filter-reset {
    justify-self: start;
    min-width: 86px;
  }
}

@media (max-width: 560px) {
  .works-filter {
    margin-bottom: 48px;
    padding-bottom: 36px;
  }

  .works-filter-head {
    margin-bottom: 22px;
  }

  .works-filter h2 {
    font-size: 22px;
  }

  .works-genre-tabs {
    margin-right: -14px;
    margin-bottom: 26px;
  }

  .works-genre-tabs button {
    min-width: 136px;
    min-height: 50px;
    padding: 10px 12px;
  }

  .works-filter-tools {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .works-filter-field input,
  .works-filter-field select {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .career-title,
  .career-note {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: wrap;
  }
}

/* Quiet, one-time text entrances for the portfolio narrative. */
.text-reveal-target {
  opacity: 0;
}

.text-reveal-target.is-text-visible {
  opacity: 1;
  animation: galleryTextReveal 1650ms cubic-bezier(0.33, 0, 0.2, 1) var(--text-reveal-delay, 0ms) backwards;
}

@keyframes galleryTextReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 640px) {
  .text-reveal-target.is-text-visible {
    animation-duration: 1450ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-reveal-target,
  .text-reveal-target.is-text-visible {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
