/*
Theme Name: SISYU Rebuild Mock
Theme URI: https://www.e-sisyu.com/
Author: Codex
Description: 紫舟公式サイト再構築検証用の軽量WordPressテーマ。現行サイトの印象を参考にした提案用モックです。
Version: 0.7.09
Text Domain: sisyu-rebuild
*/

:root {
  --bg: #f5f6f7;
  --paper: #ffffff;
  --ink: #111111;
  --current: #745399;
  --muted: #777777;
  --line: #dddddd;
  --header: 96px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Times New Roman", serif;
  --font-size-body: 16px;
  --font-size-label: 12px;
  --font-size-nav: 13px;
  --font-size-title: 44px;
  --font-size-heading: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  line-height: 1.8;
  letter-spacing: 0;
}
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 clamp(30px, 5vw, 80px);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: height .36s var(--ease), background .36s var(--ease);
}
.site-header.is-fixed {
  height: 70px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
}
.site-logo__mark {
  display: block;
  width: 76px;
  height: 37px;
  overflow: hidden;
}
.site-logo__mark img {
  display: block;
  width: 260px;
  max-width: none;
  transform: translate(-92px, -81px);
}
.site-logo__en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 64px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.site-header__nav a {
  position: relative;
  padding: 10px 0;
  transition: color .25s var(--ease);
}
.site-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-header__nav a.is-current { color: var(--current); }
.site-header__nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
  background: currentColor;
}
.header-work-search {
  display: flex;
  align-items: center;
  width: clamp(148px, 14vw, 210px);
  margin-right: clamp(18px, 2vw, 34px);
  border-bottom: 1px solid var(--line);
}
.header-work-search input {
  min-width: 0;
  width: 100%;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .04em;
}
.header-work-search input::placeholder { color: var(--muted); opacity: 1; }
.header-work-search button {
  flex: 0 0 auto;
  position: relative;
  width: 42px;
  height: 34px;
  border: 1px solid var(--muted);
  padding: 0;
  background: var(--muted);
  color: #fff;
}
.header-work-search button::before {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: '';
}
.header-work-search button::after {
  position: absolute;
  top: 20px;
  left: 23px;
  width: 8px;
  height: 2px;
  background: currentColor;
  content: '';
  transform: rotate(45deg);
}
.header-work-search button:hover,
.header-work-search button:focus-visible { background: var(--current); border-color: var(--current); color: #fff; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.header-language-switcher {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}
.header-language-switcher a,
.header-language-switcher .is-unavailable { transition: opacity .25s var(--ease); }
.header-language-switcher a:hover { opacity: .45; }
.header-language-switcher [aria-current="true"] { color: #666666; }
.header-language-switcher .is-unavailable { cursor: default; }
.menu-button {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 58px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.menu-button:focus { outline: 0; }
.menu-button__line {
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.menu-button__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.menu-button__label--close { display: none; }
.menu-button.is-open .menu-button__line { opacity: 0; transform: translateY(7px); }
.menu-button.is-open .menu-button__label--open { display: none; }
.menu-button.is-open .menu-button__label--close { display: block; }
.site-nav {
  position: fixed;
  z-index: 55;
  inset: 0;
  overflow-y: auto;
  visibility: hidden;
  padding: calc(var(--header) + clamp(54px, 7vw, 104px)) clamp(30px, 7.5vw, 120px) 46px;
  background: #f8f8f6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav__inner { width: min(100%, 1440px); margin: 0 auto; }
.site-nav__links { border-top: 1px solid var(--line); }
.site-nav__links a {
  display: flex;
  align-items: baseline;
  gap: clamp(24px, 4vw, 64px);
  min-height: clamp(76px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease), opacity .25s var(--ease);
}
.site-nav__links a:hover { padding-left: 16px; opacity: .6; }
.site-nav__links a.is-current { color: var(--current); }
.site-nav__label {
  font-family: var(--font-serif);
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}
.site-nav__translation {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.2vw, 17px);
  letter-spacing: .14em;
}
.site-nav__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: .08em;
}
.site-nav__search {
  display: none;
  margin-top: 32px;
}
.site-nav__search label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.site-nav__search > div { display: flex; border-bottom: 1px solid var(--ink); }
.site-nav__search input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 12px 0;
  background: transparent;
  font-size: 15px;
}
.site-nav__search button {
  flex: 0 0 auto;
  align-self: center;
  border: 1px solid var(--ink);
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.site-nav__footer a:hover { opacity: .5; }

.top-mainvisual {
  padding-top: var(--header);
  background: #fff;
}
.top-mainvisual__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.top-mainvisual__image {
  width: 100%;
  height: calc(100vh - var(--header) - 74px);
  min-height: 620px;
  object-fit: cover;
  object-position: center 48%;
  background: #fff;
  transform: scale(1.015);
  transition: transform 1.4s var(--ease);
}
.top-mainvisual.is-visible .top-mainvisual__image { transform: scale(1); }
.top-mainvisual__caption {
  display: grid;
  grid-template-columns: 126px minmax(260px, .38fr) 170px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 74px;
  padding: 0 70px;
  background: #f5f6f7;
}
.top-mainvisual__status {
  justify-self: start;
  margin: 0;
  padding: 11px 16px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
.top-mainvisual__caption h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.top-mainvisual__caption p {
  margin: 0;
  font-size: 12px;
}
.top-mainvisual__date,
.top-mainvisual__place {
  color: #333;
}

.hero { min-height: 100vh; padding-top: var(--header); background: #fff; }
.hero__link { position: relative; display: block; height: calc(100vh - var(--header)); min-height: 560px; overflow: hidden; }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}
.hero.is-visible .hero__image { transform: scale(1); }
.hero__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero__play::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 27px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid rgba(255,255,255,.9);
}
.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 180px minmax(220px, .38fr) 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 30px 60px;
  background: rgba(245,246,247,.94);
}
.hero__label, .section-kicker, .section-heading p, .page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero h1, .page-title h1, .profile-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.25;
}
.hero p { margin: 0; }

.top-section, .archive-page, .detail-page, .profile-page, .contact-page {
  width: min(1180px, calc(100% - 128px));
  margin: 0 auto;
}
.top-section { padding: 108px 0 86px; }
.top-list-section {
  width: min(1320px, calc(100% - 120px));
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0 auto 0 0;
  font-size: 24px;
  font-weight: 700;
}
.section-heading a, .text-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 45px;
}
.work-card { min-width: 0; }
.work-card a { display: block; }
.work-card img {
  width: 100%;
  aspect-ratio: 1 / .68;
  object-fit: cover;
  background: transparent;
  transition: opacity .32s var(--ease);
}
.work-card--tall img { aspect-ratio: .7 / 1; object-fit: contain; }
.work-card--wide { grid-column: span 2; }
.work-card--wide img { aspect-ratio: 2 / .7; }
.work-card a:hover img { opacity: .72; }
.work-card span { display: block; margin-top: 15px; font-size: 15px; line-height: 1.6; text-align: center; }
.work-card small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.source-link {
  display: inline-block;
  margin-top: 8px;
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.work-grid--home {
  gap: 46px 50px;
}
.work-grid--home .work-card img {
  aspect-ratio: 1 / .72;
}

.top-news-list {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  padding: 0 0 100px;
}
.top-news-list--press {
  padding-top: 18px;
}
.news-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.news-list--columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-list__item {
  display: grid;
  grid-template-columns: 110px 1fr minmax(220px, .5fr);
  gap: 28px;
  align-items: baseline;
  min-height: 86px;
  padding: 22px 28px;
  background: #fff;
  transition: opacity .28s var(--ease);
}
.news-list--columns .news-list__item {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  min-height: 190px;
}
.news-list__item:hover { opacity: .72; }
.news-list__item strong {
  color: #666;
  font-size: 11px;
  letter-spacing: .18em;
}
.news-list__item span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}
.news-list__item small {
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}

.split-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.split-news article {
  min-height: 300px;
  padding: 80px max(40px, 8vw);
  background: #fff;
}
.split-news h2 { margin: 12px 0 18px; font-size: 25px; font-weight: 400; }

.page-title { padding: 180px 0 54px; }
.page-title--compact { padding: 136px 0 30px; }
.page-title h1 { margin-top: 10px; }
.page-title > p:last-child { max-width: 640px; margin-top: 18px; color: var(--muted); letter-spacing: 0; font-weight: 400; }
.site-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(1180px, calc(100% - 128px));
  margin: 0 auto;
  padding-top: calc(var(--header) + 22px);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}
.site-breadcrumb a { color: var(--muted); text-decoration: none; }
.site-breadcrumb a:hover { color: var(--ink); }
.archive-page--works > .site-breadcrumb,
.archive-page--records > .site-breadcrumb,
.profile-page > .site-breadcrumb { width: 100%; }
.site-breadcrumb + .page-title { padding-top: 46px; }
.detail-page > .site-breadcrumb + .work-detail,
.detail-page > .site-breadcrumb + .archive-detail { padding-top: 54px; }
.archive-page--works {
  width: min(1180px, calc(100% - 128px));
}
.archive-page--works .page-title {
  padding: 108px 0 64px;
}
.archive-page--works .page-title--compact { padding: 104px 0 42px; }
.archive-page--works > .site-breadcrumb + .screen-reader-text + .editable-content--page,
.archive-page--works > .site-breadcrumb + .screen-reader-text + .works-search,
.archive-page--works > .site-breadcrumb + .screen-reader-text + .works-result-summary,
.archive-page--works > .site-breadcrumb + .screen-reader-text + .works-results {
  margin-top: 46px;
}
.archive-page--records > .site-breadcrumb + .screen-reader-text + .archive-filter-nav,
.archive-page--records > .site-breadcrumb + .screen-reader-text + .archive-list {
  margin-top: 16px;
}
.work-series-guide {
  margin: 46px 0 34px;
  border-top: 1px solid var(--line);
}
.work-series-guide--after-archive { margin-top: 80px; }
.work-series-guide > h2 {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
}
.work-series-guide__item {
  border-bottom: 1px solid var(--line);
}
.work-series-guide__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.work-series-guide__item summary::-webkit-details-marker { display: none; }
.work-series-guide__item summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 24px;
  color: var(--current);
  font-size: 22px;
  font-weight: 400;
}
.work-series-guide__item[open] summary::after { content: "−"; }
.work-series-guide__content {
  padding: 0 48px 28px 0;
}
.work-series-guide__content p {
  max-width: 760px;
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 2;
}
.work-series-guide__content p + p { margin-top: 12px; }
.page-title--lead-only { padding-bottom: 38px; }
.page-title--lead-only .page-title__lead { margin-top: 0; }
.archive-page--works .page-title p {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .52em;
}
.archive-page--works .page-title h1,
.archive-page--works .page-title__lead {
  display: none;
}
.category-nav {
  position: sticky;
  z-index: 2;
  top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
  padding: 20px 0;
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.category-nav a { color: var(--muted); }
.category-nav a[aria-current="true"] { color: var(--ink); }
.works-search {
  margin: -16px 0 42px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 26px 0 22px;
}
.works-search__form {
  display: grid;
  grid-template-columns: minmax(240px, 1.55fr) repeat(4, minmax(120px, 1fr)) auto;
  gap: 16px;
  align-items: end;
}
.works-search__form--simple {
  grid-template-columns: minmax(280px, 620px) auto;
}
.works-search__mobile-toggle { display: none; }
.works-search__mobile-close { display: none; }
.works-search--sticky {
  position: sticky;
  z-index: 25;
  top: 70px;
  margin-top: 0;
  padding: 14px 0;
  background: var(--bg);
}
.works-search__form label {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.works-search__form input,
.works-search__form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 0;
  padding: 8px 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.works-search__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  white-space: nowrap;
}
.works-search__actions button {
  min-height: 42px;
  border: 1px solid var(--ink);
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}
.works-search__actions a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.works-search__advanced-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.works-search__count {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.works-search__empty {
  grid-column: 1 / -1;
  margin: 20px 0 120px;
  color: var(--muted);
}
.works-result-summary {
  margin: -8px 0 30px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0 0 18px;
  scroll-margin-top: 110px;
}
.works-result-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.work-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}
.work-grid--archive { padding-bottom: 120px; }
.work-grid--archive.fade-in {
  opacity: 1;
  transform: none;
}
.work-grid--archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.work-grid__column {
  display: grid;
  gap: 38px;
  align-content: start;
}
.work-grid--archive .work-card {
  display: block;
  width: 100%;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}
.work-grid--archive .work-card[hidden] {
  display: none;
}
.work-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  background: #fff;
  overflow: hidden;
}
.work-card--horizontal .work-card__media,
.work-card--tall .work-card__media {
  aspect-ratio: 4 / 5;
}
.work-grid--archive .work-card__media img,
.work-grid--archive .work-card--tall .work-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
}
.work-grid--archive .work-card span {
  margin: 0;
  padding: 13px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}
.work-grid--archive .work-card small {
  display: block;
  padding-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}
.archive-page--records {
  padding-bottom: 120px;
}
.archive-filter-nav {
  position: sticky;
  top: 72px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 18px 0 28px;
  margin-bottom: 24px;
  background: rgba(247, 247, 247, .94);
  border-bottom: 1px solid var(--line);
}
.archive-filter-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.archive-filter-nav a[aria-current="true"] {
  color: var(--ink);
}
.archive-list {
  display: grid;
  gap: 1px;
  margin-bottom: 80px;
  background: var(--line);
}
.archive-card {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 44px;
  align-items: center;
  padding: 34px 0;
  background: var(--bg);
}
.archive-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #fff;
  overflow: hidden;
}
.archive-card__media img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}
.archive-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
}
.archive-card__body {
  min-width: 0;
  padding-right: 18px;
}
.archive-card__body h2 {
  margin: 6px 0 14px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}
.archive-card__body p {
  max-width: 720px;
  margin: 0;
  color: #444;
  line-height: 2;
}
.archive-card__meta {
  color: var(--muted) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.archive-card__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
.archive-page--news .archive-list {
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
}
.archive-page--news .archive-card {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.archive-page--news .archive-card__body {
  padding-right: 0;
}
.archive-card__excerpt {
  overflow: hidden;
  max-width: 680px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.archive-list__empty {
  margin: 0;
  padding: 48px 0;
  background: var(--bg);
  color: var(--muted);
}
.archive-pagination {
  padding-bottom: 0;
}
.archive-page--press .page-title {
  padding: 150px 0 44px;
}
.archive-page--press {
  width: min(760px, calc(100% - 72px));
}
.archive-page--press .page-title h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
}
.archive-page--press .archive-filter-nav {
  position: static;
  margin-bottom: 0;
  padding: 0 0 24px;
  background: transparent;
}
.press-list {
  margin-bottom: 80px;
  border-top: 1px solid var(--line);
}
.press-list__item {
  border-bottom: 1px solid var(--line);
}
.press-list__link {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 44px;
  padding: 30px 0 34px;
  color: var(--ink);
  text-decoration: none;
}
.press-list__link--with-image,
.press-list__link--without-image {
  grid-template-columns: minmax(150px, 210px) minmax(150px, 180px) minmax(0, 1fr);
  gap: 24px;
}
.press-list__link--without-image .press-list__info {
  grid-column: 2;
}
.press-list__link--without-image .press-list__main {
  grid-column: 3;
}
.press-list__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  background: #fff;
  overflow: hidden;
}
.press-list__media img {
  width: 100%;
  height: 100%;
  max-height: 168px;
  object-fit: contain;
}
.press-list__info p,
.press-list__main p,
.press-list__main h2 {
  margin: 0;
}
.press-list__genre {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.press-list__name {
  margin-top: 10px !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}
.press-list__date {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
.press-list__main h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}
.press-list__main p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 14px;
  color: #444;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.press-list__link:hover .press-list__main h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.works-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 0 120px;
}
.works-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 0 13px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.works-pagination .page-numbers.current {
  border-color: var(--ink);
  color: var(--ink);
}

.work-detail {
  display: block;
  padding: clamp(104px, 9vw, 128px) 0 96px;
}
.work-detail__header {
  max-width: 760px;
  margin: 0 auto 42px;
}
.detail-return {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.detail-return a::before { content: "← "; }
.work-detail__header h1 {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.35vw, 32px);
  font-weight: 400;
  line-height: 1.7;
}
.work-detail__summary {
  margin: 18px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}
.work-detail__code {
  display: inline-flex;
  margin: 18px 0 0;
  border: 1px solid rgba(0,0,0,.14);
  padding: 7px 10px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.work-detail__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1320px, calc(100vw - 64px));
  margin-left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding: clamp(16px, 2.2vw, 32px);
}
.work-detail__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: zoom-in;
}
.work-detail__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(82svh, 980px);
  object-fit: contain;
  transition: opacity .28s var(--ease);
}
.work-detail__image-link:hover img { opacity: .82; }
.work-detail--vertical .work-detail__media img {
  width: auto;
  height: min(82svh, 980px);
  max-width: 100%;
}
.work-detail__description {
  max-width: 780px;
  margin: 64px auto 0;
}
.work-section-label {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}
.work-facts {
  margin: 0 0 58px;
}
.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 44px;
  margin: 0;
}
.meta-list div {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  gap: 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.meta-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.meta-list dd {
  margin: 0;
  color: #222;
}
.work-video {
  margin: 0 0 62px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 22px 0 26px;
}
.work-video__label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.work-video__link {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.work-video__items {
  display: grid;
  gap: 18px;
}
.work-video__item {
  display: grid;
  gap: 10px;
}
.work-video__embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}
.work-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.work-video__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.work-contact {
  margin: 0 0 62px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 28px 0 32px;
}
.work-contact p:not(.work-section-label) {
  max-width: 620px;
  margin: 0;
  color: #444;
}
.work-contact__button {
  margin-top: 22px;
  background: var(--ink);
  color: #fff;
}
.work-contact__button--header {
  margin-top: 24px;
}
.page-contact-cta {
  margin: 0 0 110px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.page-contact-cta h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  line-break: strict;
  word-break: normal;
}
.page-contact-cta__button {
  margin-top: 26px;
  background: var(--ink);
  color: #fff;
}
.page-contact-cta__share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.page-contact-cta__share > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.page-contact-cta__share > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-contact-cta__share button {
  min-height: 38px;
  border: 1px solid var(--ink);
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.page-contact-cta__share button:hover { background: #fff; color: var(--ink); }
@media (max-width: 820px) {
  .page-contact-cta { margin-bottom: 74px; padding: 28px 0; }
  .page-contact-cta h2 { font-size: 20px; }
  .page-contact-cta__share { align-items: flex-start; flex-direction: column; }
}
.work-share {
  margin: 0 0 62px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0 0 28px;
}
.work-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work-share__links a,
.work-share__links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 0 14px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}
.work-share__links [hidden] {
  display: none !important;
}
.work-share__links a:hover,
.work-share__links button:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.work-story {
  margin-top: 0;
}
.editable-content--story {
  color: #222;
  font-size: 16px;
  line-height: 2.35;
  letter-spacing: .02em;
}
.editable-content--story p {
  max-width: 780px;
  margin: 0 0 2.2em;
}
.button-link, .contact-form button {
  display: inline-block;
  margin-top: 24px;
  border: 1px solid var(--ink);
  padding: 13px 24px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.page-contact-cta__button.button-link {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.page-contact-cta__button.button-link:hover {
  background: #fff;
  color: var(--ink);
}
.work-contact__button {
  background: var(--ink);
  color: #fff;
}
.work-contact__button:hover {
  background: #fff;
  color: var(--ink);
}
.related-section { padding: 0 0 96px; }
.work-grid--related { grid-template-columns: repeat(3, 1fr); }
.work-grid--related .work-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.work-grid--related .work-card__media img,
.work-grid--related .work-card--tall .work-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}
.related-section--records {
  padding-bottom: 82px;
}
.archive-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.archive-context-group {
  min-width: 0;
  padding: 26px 24px 28px;
  background: #fff;
}
.archive-context-group h3 {
  margin: 7px 0 22px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}
.archive-context-group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-context-group li {
  margin: 0;
}
.archive-context-card {
  display: grid;
  grid-template-columns: minmax(94px, 34%) minmax(0, 1fr);
  min-height: 100px;
  color: #333;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.archive-context-card:hover {
  border-color: var(--ink);
}
.archive-context-card--text-only {
  grid-template-columns: 1fr;
  min-height: 0;
}
.archive-context-card__media {
  min-width: 0;
  margin: 0;
  background: #f3f3f3;
}
.archive-context-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
}
.archive-context-card__body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  padding: 15px 16px;
}
.archive-context-card__body strong {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.archive-context-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.6;
}
.work-post-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 72px;
  background: var(--line);
}
.work-post-nav a {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 18px 22px;
  background: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
}
.work-post-nav__item {
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: stretch;
  padding: 0 !important;
}
.work-post-nav__media {
  margin: 0;
  background: #f2f2f2;
}
.work-post-nav__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
}
.work-post-nav__body {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 18px 20px;
}
.work-post-nav__body small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.work-post-nav__body strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.work-post-nav__all {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .12em;
}
.related-section--works .section-heading {
  margin-bottom: 28px;
}
.detail-page--record {
  width: min(1180px, calc(100% - 128px));
}
.archive-detail {
  padding: clamp(104px, 9vw, 128px) 0 96px;
}
.archive-detail__header {
  max-width: 760px;
  margin-bottom: 42px;
}
.archive-detail--news {
  width: min(760px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.archive-detail--news .archive-detail__header { max-width: none; }
.archive-detail__header h1 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.35;
}
.archive-detail__summary {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.archive-detail__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin-bottom: 52px;
  background: transparent;
}
.archive-detail__hero img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
}
.archive-detail__facts,
.archive-detail__content,
.archive-detail__article-image,
.archive-detail__video,
.archive-detail__gallery,
.archive-detail__legacy-works,
.archive-detail__contact,
.archive-detail__relations {
  margin-bottom: 58px;
}
.archive-detail__article-image {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.archive-detail__article-image img {
  display: block;
  width: 100%;
  height: auto;
}
.archive-detail__contact {
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 28px 0 32px;
}
.archive-detail__contact p:not(.work-section-label) {
  max-width: 620px;
  margin: 0;
  color: #444;
}
.archive-detail__facts .meta-list {
  margin-top: 18px;
}
.archive-detail--press .archive-detail__content p {
  margin-top: 0;
  margin-bottom: 0;
}
.archive-detail--press .archive-detail__content .wp-block-spacer {
  clear: both;
}
.artwork-lightbox {
  width: min(1200px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100svh - 48px);
  padding: 20px;
  border: 0;
  background: rgba(255,255,255,.98);
}
.artwork-lightbox::backdrop { background: rgba(0,0,0,.84); }
.artwork-lightbox img {
  max-width: 100%;
  max-height: calc(100svh - 88px);
  margin: 0 auto;
  object-fit: contain;
}
.artwork-lightbox__close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: rgba(0,0,0,.55);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.archive-gallery img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: contain;
  background: transparent;
}
.archive-legacy-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
  margin-top: 18px;
}
.archive-legacy-work {
  display: block;
  color: var(--ink);
}
.archive-legacy-work__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
}
.archive-legacy-work__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 820px;
}
.archive-legacy-work__title {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}
.archive-legacy-work__more {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.archive-relations {
  margin-bottom: 30px;
}
.archive-relations ul {
  display: grid;
  gap: 1px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}
.archive-relations li {
  margin: 0;
  background: #fff;
}
.archive-relations a {
  display: block;
  padding: 15px 18px;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
}
.archive-relations--works ul {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
}
.archive-relation-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
  margin-top: 18px;
}
.archive-relation-work {
  min-width: 0;
}
.archive-relation-work a {
  padding: 0;
  color: var(--ink);
}
.archive-relation-work__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
}
.archive-relation-work__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 820px;
}
.archive-relation-work__title {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}
.archive-relations__empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.archive-detail__back {
  margin: 0;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) 1fr;
  gap: 70px;
  align-items: center;
  padding: 180px 0 90px;
}
.profile-hero img { width: 100%; background: #fff; }
.profile-hero p:last-child { max-width: 620px; color: #444; }
.profile-current {
  padding: 0 0 110px;
}
.profile-current__images {
  display: grid;
  grid-template-columns: minmax(220px, 560px) minmax(160px, 240px);
  gap: 26px;
  align-items: start;
  margin-bottom: 46px;
}
.profile-current__main-image img {
  width: 100%;
  background: #fff;
}
.profile-current__side-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.profile-current__side-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}
.profile-current__side-images img:only-child { grid-column: 1 / -1; }
.profile-current__links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.profile-current__links img {
  width: auto;
  max-width: 190px;
  max-height: 64px;
}
.profile-current__links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.profile-current__links .profile-current__love-letter-logo {
  display: block;
  max-width: 150px;
  max-height: 72px;
}
.editable-content {
  color: #444;
}
.editable-content--page {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 110px;
}
.editable-content p {
  max-width: 650px;
  margin: 0 0 1.25em;
}
.editable-content--story p {
  max-width: 780px;
  margin-bottom: 2.2em;
}
.editable-content h2,
.editable-content h3 {
  margin: 2.2em 0 .8em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.45;
}
.editable-content h2 { font-size: 24px; }
.editable-content h3 { font-size: 18px; }
.editable-content ul {
  max-width: 760px;
  margin: 1.4em 0 1.6em;
  padding-left: 1.3em;
  list-style: disc;
}
.editable-content li {
  padding: .25em 0;
}
.editable-content strong {
  font-weight: 700;
  color: var(--muted);
}
.editable-content .wp-block-image {
  max-width: 980px;
  margin: 2.4em 0;
}
.editable-content .wp-block-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.editable-content .wp-block-image.aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.editable-content .wp-block-image figcaption,
.editable-content .wp-block-gallery figcaption {
  margin-top: .8em;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.editable-content .wp-block-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 980px;
  margin: 2.6em 0;
}
.editable-content .wp-block-column {
  min-width: 0;
}
.editable-content .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 980px;
  margin: 2.4em 0;
  padding: 0;
  list-style: none;
}
.editable-content .wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 1;
  margin: 0;
}
.editable-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2em 0;
}
.editable-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.editable-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--ink);
}
.editable-content .wp-block-separator {
  max-width: 980px;
  height: 1px;
  border: 0;
  margin: 3em 0;
  background: var(--line);
}
.editable-content--profile {
  max-width: 860px;
}
.editable-content--profile > h2:first-child {
  margin-top: 0;
  font-size: 28px;
}
.editable-content--profile > p:first-of-type strong {
  display: block;
  min-width: 0;
  margin-bottom: 1.7em;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .04em;
}
.content-band { border-top: 1px solid var(--line); padding: 54px 0 100px; }
.content-band h2 { margin: 0 0 20px; font-weight: 400; }
.content-band p { max-width: 760px; color: #444; }
.profile-list {
  border-top: 1px solid var(--line);
  padding: 54px 0 110px;
}
.profile-list h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
}
.profile-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.profile-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.profile-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) 1fr;
  gap: 70px;
  padding-bottom: 110px;
}
.contact-layout h2 {
  margin: 12px 0 18px;
  font-size: 25px;
  font-weight: 400;
}
.contact-layout--form-only {
  grid-template-columns: 1fr;
}
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 760px;
}
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
}
.contact-form label span {
  color: #8b3a2f;
  font-size: 10px;
  letter-spacing: .08em;
}
.contact-form__trap { display: none !important; }
.contact-form__notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.7;
}
.contact-form__notice--success { border-color: #769579; background: #f5faf5; }
.contact-form__notice--error { border-color: #a74e42; background: #fff7f5; }
.contact-work-context {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto 54px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 26px 0;
}
.contact-work-context dl {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0;
}
.contact-work-context div {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 18px;
}
.contact-work-context dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.contact-work-context dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}
.contact-work-context p:not(.work-section-label) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

/* v74 contemporary artist home */
.art-home {
  overflow: hidden;
  background: var(--paper);
}
.art-home h2,
.art-home h3 {
  letter-spacing: 0;
}
.art-kicker {
  margin: 0 0 22px;
  color: #6e6e6e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.art-hero {
  position: relative;
  padding-top: var(--header);
  background: #eceeef;
}
.art-hero__media {
  position: relative;
  display: block;
  height: calc(92svh - var(--header));
  min-height: 580px;
  overflow: hidden;
}
.art-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eceeef;
  transform: scale(1.018);
  transition: transform 1.6s var(--ease), opacity .5s ease;
}
.art-hero.is-visible .art-hero__media > img {
  transform: scale(1);
}
.art-hero__identity,
.art-hero__work {
  position: absolute;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .56);
}
.art-hero__identity {
  top: 58px;
  left: clamp(28px, 5.4vw, 86px);
}
.art-hero__identity p,
.art-hero__work p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.art-hero__identity h1 {
  display: grid;
  gap: 8px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1;
}
.art-hero__identity h1 span {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .34em;
}
.art-hero__work {
  right: clamp(28px, 5.4vw, 86px);
  bottom: 48px;
  max-width: min(440px, 42vw);
  text-align: right;
}
.art-hero__work strong {
  display: block;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.55;
}
.art-hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8svh;
  min-height: 48px;
  color: #555;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
}
.art-hero__scroll::after {
  content: "";
  width: 1px;
  height: 22px;
  margin-left: 16px;
  background: #999;
}
.art-intro {
  padding: clamp(110px, 16vw, 220px) 0;
  background: #fff;
}
.art-intro__inner {
  width: min(1050px, calc(100% - 120px));
  margin: 0 auto;
}
.art-intro h2,
.art-intro__content h2 {
  max-width: 920px;
  margin: 0 0 42px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1.5;
}
.art-intro > .art-intro__inner > p:last-child,
.art-intro__content > p {
  max-width: 760px;
  margin: 0;
  color: #4a4a4a;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 2.25;
}
.art-motion {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.65fr);
  align-items: center;
  gap: clamp(46px, 7vw, 120px);
  padding: clamp(80px, 10vw, 150px) max(40px, 6vw);
  color: #fff;
  background: #111;
}
.art-motion__copy {
  max-width: 470px;
}
.art-motion__copy .art-kicker {
  color: #aaa;
}
.art-motion__copy h2,
.art-section-heading h2,
.art-project__copy h2,
.art-contact h2 {
  margin: 0 0 28px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.5;
}
.art-motion__copy > p:last-child,
.art-section-heading > p:last-child,
.art-project__copy > p,
.art-contact > p {
  margin: 0;
  color: #aaa;
  font-size: 15px;
  line-height: 2;
}
.art-motion__player,
.art-motion > iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.art-motion__player {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: #222;
  cursor: pointer;
}
.art-motion__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .35s ease, transform .7s var(--ease);
}
.art-motion__player:hover img {
  opacity: .62;
  transform: scale(1.018);
}
.art-motion__player strong {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-size: 11px;
  letter-spacing: .12em;
}
.art-motion__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.art-motion__play::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}
.art-dimension,
.art-selected,
.art-now {
  width: min(1440px, calc(100% - 120px));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 176px) 0;
}
.art-section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}
.art-section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}
.art-section-heading--row h2 {
  margin-bottom: 0;
}
.art-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}
.art-text-link::after {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.art-text-link:hover::after {
  width: 72px;
}
.art-dimension__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.art-dimension__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f0f0f0;
}
.art-dimension__item div {
  padding-top: 18px;
}
.art-dimension__item h3,
.art-selected__item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}
.art-dimension__item p,
.art-selected__item p {
  margin: 7px 0 0;
  color: #777;
  font-size: 11px;
}
.art-project {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: stretch;
  background: #eceeef;
}
.art-project__media {
  min-height: 640px;
}
.art-project__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.art-project__copy {
  align-self: center;
  padding: clamp(70px, 8vw, 130px);
}
.art-project__copy > p {
  color: #4e4e4e;
}
.art-selected {
  width: min(1560px, calc(100% - 80px));
}
.art-selected__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 40px;
}
.art-selected__item img {
  width: 100%;
  object-fit: contain;
  background: transparent;
  transition: opacity .3s ease;
}
.art-selected__item--landscape img {
  aspect-ratio: 4 / 3;
}
.art-selected__item--portrait img {
  aspect-ratio: 3 / 4;
}
.art-selected__item a:hover img {
  opacity: .72;
}
.art-selected__item h3 {
  margin-top: 18px;
}
.art-now {
  border-top: 1px solid #ddd;
}
.art-now__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}
.art-now__column-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #111;
}
.art-now__column-heading h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: .14em;
}
.art-now__column-heading a {
  color: #777;
  font-size: 10px;
  letter-spacing: .12em;
}
.art-now__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #ddd;
}
.art-now__item time {
  color: #777;
  font-size: 11px;
}
.art-now__item strong {
  font-size: 14px;
  line-height: 1.65;
}
.art-contact {
  padding: clamp(110px, 14vw, 200px) max(40px, 9vw);
  color: #fff;
  background: #111;
}
.art-contact .art-kicker,
.art-contact > p {
  color: #aaa;
}
.art-contact h2 {
  max-width: 900px;
  font-size: clamp(36px, 5.2vw, 76px);
}
.art-contact > p {
  max-width: 680px;
}
.art-contact > a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 46px;
  padding: 0 30px;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: color .3s ease, background .3s ease;
}
.art-contact > a:hover {
  color: #111;
  background: #fff;
}

@media (max-width: 980px) {
  .art-motion {
    grid-template-columns: 1fr;
  }
  .art-motion__copy {
    max-width: 680px;
  }
  .art-dimension__grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .art-dimension__item:last-child {
    grid-column: 2;
  }
  .art-project {
    grid-template-columns: 1fr;
  }
  .art-project__media {
    min-height: 0;
  }
  .art-project__media img {
    max-height: 680px;
  }
  .art-selected__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .art-hero__media {
    height: calc(88svh - var(--header));
    min-height: 520px;
  }
  .art-hero__identity {
    top: 34px;
    left: 22px;
  }
  .art-hero__identity h1 {
    font-size: 42px;
  }
  .art-hero__work {
    right: 22px;
    bottom: 28px;
    max-width: calc(100% - 44px);
  }
  .art-hero__scroll {
    height: 12svh;
  }
  .art-intro {
    padding: 92px 0 104px;
  }
  .art-intro__inner {
    width: min(100% - 44px, 680px);
  }
  .art-intro h2,
  .art-intro__content h2 {
    margin-bottom: 30px;
    font-size: 31px;
    line-height: 1.65;
  }
  .art-motion {
    gap: 46px;
    padding: 82px 22px;
  }
  .art-motion__copy h2,
  .art-section-heading h2,
  .art-project__copy h2 {
    font-size: 29px;
  }
  .art-motion__play {
    width: 58px;
    height: 58px;
  }
  .art-motion__play::after {
    top: 19px;
    left: 24px;
  }
  .art-motion__player strong {
    right: 14px;
    bottom: 12px;
    font-size: 9px;
  }
  .art-dimension,
  .art-selected,
  .art-now {
    width: min(100% - 44px, 760px);
    padding: 92px 0;
  }
  .art-section-heading {
    margin-bottom: 42px;
  }
  .art-section-heading--row {
    display: grid;
    gap: 24px;
  }
  .art-dimension__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .art-dimension__item:last-child {
    grid-column: auto;
  }
  .art-dimension__item img,
  .art-dimension__item:first-child img {
    aspect-ratio: auto;
    max-height: 520px;
    object-fit: contain;
  }
  .art-project__copy {
    padding: 70px 22px 82px;
  }
  .art-selected__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 16px;
  }
  .art-selected__item h3 {
    margin-top: 12px;
    font-size: 12px;
  }
  .art-now__columns {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .art-now__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .art-contact {
    padding: 98px 22px 112px;
  }
  .art-contact h2 {
    font-size: 36px;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.site-footer p { margin: 0; }
.site-footer__social { display: flex; align-items: center; gap: 16px; }
.site-footer__social a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.site-footer__social a:hover,
.site-footer__social a:focus-visible { opacity: .5; transform: translateY(-2px); }
.site-footer__social img { width: 20px; height: 20px; object-fit: contain; }

/* September review: clearer archive navigation and denser visual listings. */
.work-category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin: 42px 0 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.work-category-nav a { color: var(--ink); border-bottom: 1px solid transparent; padding-bottom: 5px; font-weight: 600; }
.work-category-nav a:hover,
.work-category-nav a[aria-current="page"] { color: var(--ink); border-color: var(--ink); }
.work-category-nav__search { margin-left: auto; font-weight: 700; }
.work-grid--archive { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 24px; }
.work-card__video {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.work-card__video + iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; }
.work-card__video .work-card__media { position: relative; }
.work-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17,17,17,.84);
  transform: translate(-50%, -50%);
}
.work-card__play::after {
  position: absolute;
  top: 15px;
  left: 20px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  content: "";
}
.works-commission-note { margin: 58px 0 90px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 14px; }
.art-expression__nav { display: flex; align-items: flex-end; gap: 28px; }
.art-expression__nav .art-expression__browse { flex: 1; }
.art-expression__find { flex: 0 0 auto; margin-bottom: 5px; }
.art-expression__works h3 { display: none; }
.art-exhibition__feature { grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.art-exhibition__media { min-height: 0; }
.art-exhibition__media img { aspect-ratio: 4 / 3; max-height: 390px; object-fit: contain; }
.art-exhibition__copy h3 { margin-top: 0; font-size: 24px; }
.art-exhibition__summary { max-width: 620px; margin: 18px 0 26px; color: #444; font-size: 13px; line-height: 1.9; }
.art-profile__image { display: block; width: min(230px, 100%); margin-top: 26px; }
.art-profile__image img { width: 100%; max-height: 260px; object-fit: contain; object-position: left center; }
.art-contact > p { font-size: 13px; }
.site-footer { padding-top: 22px; padding-bottom: 22px; }
.page-contact-cta__icon { display: inline-grid !important; width: 48px; min-width: 48px; height: 48px; padding: 0 !important; place-items: center; font-size: 18px !important; line-height: 1; }
.page-contact-cta__icon .lucide {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.archive-detail--news .editable-content--story { font-size: 14px; line-height: 2.05; }
.archive-page--press { width: min(1180px, calc(100% - 128px)); }
.press-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 24px; margin: 0 0 80px; }
.press-grid__item { min-width: 0; }
.press-grid__link { display: block; }
.press-grid__media { display: flex; align-items: center; justify-content: center; aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.press-grid__media img { width: 100%; height: 100%; object-fit: contain; transition: opacity .25s ease; }
.press-grid__link:hover .press-grid__media img { opacity: .7; }
.press-grid__placeholder { width: 100%; height: 100%; background: #eceeef; }
.press-grid__body { padding-top: 14px; }
.press-grid__body p,
.press-grid__body h2 { margin: 0; }
.press-grid__name { font-size: 12px; font-weight: 700; line-height: 1.6; }
.press-grid__date { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.press-grid__body h2 { margin-top: 8px; font-size: 13px; font-weight: 400; line-height: 1.65; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .site-logo { min-width: 110px; }
  .site-header__nav { gap: 18px; margin-right: 30px; font-size: 13px; }
}

@media (max-width: 1020px) {
  .site-header__nav { display: none; }
  .header-work-search { margin-left: auto; }
  .site-header__actions { margin-left: 20px; }
}

@media (max-width: 820px) {
  :root { --header: 60px; }
  body { font-size: 13px; }
  .site-header { height: var(--header); padding: 0 22px; }
  .site-logo { min-width: 0; gap: 8px; }
  .site-logo__mark { width: 66px; height: 32px; }
  .site-logo__mark img { width: 230px; transform: translate(-82px, -72px); }
  .site-logo__en { font-size: 9px; }
  .site-header__nav { display: none; }
  .header-work-search { display: none; }
  .site-header__actions { margin-left: auto; gap: 22px; }
  .header-language-switcher { gap: 9px; font-size: 11px; }
  .menu-button {
    gap: 6px;
    min-width: 42px;
  }
  .menu-button__line { width: 32px; }
  .menu-button__label { font-size: 9px; }
  .site-nav {
    padding: calc(var(--header) + 48px) 22px 32px;
    /* Avoid Safari briefly repainting menu text twice during overlay animation. */
    transform: none;
    transition: none;
  }
  .site-nav.is-open {
    transform: none;
    transition: none;
  }
  .site-nav__links a { gap: 14px; min-height: 74px; transition: none; }
  .site-nav__search { display: block; }
  .site-nav__label { font-size: clamp(27px, 9vw, 40px); }
  .site-nav__translation { font-size: 13px; letter-spacing: .1em; }
  .site-nav__footer { margin-top: 32px; font-size: 12px; }
  .top-mainvisual__image {
    height: calc(100svh - var(--header) - 132px);
    min-height: 520px;
    object-position: 58% 52%;
  }
  .top-mainvisual__caption {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 132px;
    padding: 18px 24px;
  }
  .top-mainvisual__status {
    padding: 8px 11px;
    font-size: 9px;
  }
  .top-mainvisual__caption h1 { font-size: 16px; }
  .top-mainvisual__caption p { font-size: 11px; }
  .hero__link { min-height: 540px; }
  .hero__caption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 96px 24px 26px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72));
  }
  .hero__caption p, .hero__label { color: #fff; }
  .hero h1 { font-size: 20px; }
  .hero__caption p:last-child { width: min(320px, calc(100vw - 48px)); }
  .top-section, .archive-page, .detail-page, .profile-page, .contact-page,
  .top-list-section, .top-news-list { width: min(100% - 42px, 760px); }
  .archive-page--works { width: min(100% - 32px, 760px); }
  .top-section { padding: 58px 0; }
  .section-heading { display: grid; gap: 8px; }
  .work-grid, .work-grid--related { grid-template-columns: 1fr 1fr; gap: 34px 18px; }
  .work-grid--home { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: span 2; }
  .work-card span { font-size: 13px; }
  .split-news { grid-template-columns: 1fr; }
  .split-news article { min-height: 0; padding: 54px 24px; }
  .top-news-list { padding-bottom: 64px; }
  .news-list__item,
  .news-list--columns,
  .news-list--columns .news-list__item {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 0;
  }
  .news-list__item { padding: 20px; }
  .page-title { padding-top: 112px; }
  .page-title--compact { padding: 92px 0 24px; }
  .archive-page--works .page-title { padding: 92px 0 42px; }
  .archive-page--works .page-title p { font-size: 13px; letter-spacing: .32em; }
  .editable-content--page { width: min(100% - 40px, 1120px); padding-bottom: 74px; }
  .category-nav { top: 60px; gap: 16px; overflow-x: auto; flex-wrap: nowrap; }
  .works-search {
    margin: -18px 0 30px;
    padding: 22px 0 18px;
  }
  .works-search__mobile-toggle {
    display: none;
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--ink);
    padding: 0 14px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: left;
  }
  .works-search__mobile-close {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid var(--line);
    padding: 0 14px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
  }
  .works-search:not(.works-search--sticky) .works-search__mobile-close { display: none; }
  .works-search--sticky.is-collapsed {
    padding: 8px 0;
  }
  .works-search--sticky.is-collapsed .works-search__mobile-toggle {
    display: block;
  }
  .works-search--sticky.is-collapsed .works-search__form {
    display: none;
  }
  .works-search__form {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .works-search__form input,
  .works-search__form select,
  .works-search__actions button {
    min-height: 44px;
  }
  .works-search__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .works-search__actions button {
    width: 100%;
  }
  .works-search--sticky {
    top: var(--header);
    padding: 10px 0;
    max-height: calc(100svh - var(--header) - 12px);
    overflow-y: auto;
  }
  .works-search--sticky .works-search__form--simple {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .works-search--sticky .works-search__form--simple .works-search__keyword label {
    display: none;
  }
  .works-search--sticky .works-search__form--simple .works-search__actions {
    flex-direction: row;
    min-height: 44px;
  }
  .works-search--sticky .works-search__form--simple .works-search__actions button {
    width: auto;
    padding: 0 16px;
  }
  .works-search__count {
    font-size: 11px;
    letter-spacing: .04em;
  }
  .work-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
  .work-grid--archive .work-card--horizontal .work-card__media { aspect-ratio: 1 / 1; }
  .work-grid--archive .work-card--tall .work-card__media { aspect-ratio: 4 / 5; }
  .work-grid__column { gap: 18px; }
  .work-grid--archive .work-card { margin: 0; }
  .work-grid--archive .work-card span { padding: 9px 0 0; font-size: 11px; }
  .archive-page--records {
    padding-bottom: 74px;
  }
  .archive-filter-nav {
    top: 60px;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    padding: 14px 0 22px;
    margin-bottom: 18px;
  }
  .archive-filter-nav a {
    flex: 0 0 auto;
    font-size: 11px;
    white-space: nowrap;
  }
  .archive-list {
    margin-bottom: 54px;
  }
  .archive-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }
  .archive-card__media {
    min-height: 0;
  }
  .archive-card__media img {
    max-height: 340px;
  }
  .archive-card__body {
    padding: 0 4px;
  }
  .archive-card__body h2 {
    font-size: 18px;
  }
  .archive-card__body p {
    font-size: 13px;
  }
  .archive-card__excerpt {
    max-width: 100%;
  }
  .archive-page--press .page-title {
    padding: 104px 0 34px;
  }
  .archive-page--press .page-title h1 {
    font-size: 28px;
  }
  .archive-page--press .archive-filter-nav {
    padding-bottom: 18px;
  }
  .press-list {
    margin-bottom: 54px;
  }
  .press-list__link {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 28px;
  }
  .press-list__link--with-image {
    grid-template-columns: 1fr;
  }
  .press-list__link--without-image .press-list__info,
  .press-list__link--without-image .press-list__main {
    grid-column: auto;
  }
  .press-list__media {
    min-height: 0;
    max-width: 360px;
  }
  .press-list__media img {
    max-height: none;
  }
  .press-list__name {
    font-size: 14px;
  }
  .press-list__main h2 {
    font-size: 18px;
  }
  .press-list__main p {
    font-size: 13px;
    -webkit-line-clamp: 5;
  }
  .works-pagination {
    gap: 7px;
    padding-bottom: 74px;
  }
  .works-pagination .page-numbers {
    min-width: 38px;
    min-height: 38px;
    padding: 0 11px;
  }
  .work-detail, .profile-hero { grid-template-columns: 1fr; gap: 34px; padding-top: 110px; }
  .work-detail__header { margin-bottom: 32px; }
  .work-detail__header h1 { font-size: clamp(24px, 7vw, 30px); }
  .work-detail__media {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 12px;
    transform: none;
  }
  .work-detail--vertical .work-detail__media img { width: auto; height: auto; max-height: none; }
  .work-detail__description { margin-top: 38px; }
  .work-detail__summary { font-size: 12px; }
  .work-detail__code { font-size: 10px; }
  .meta-list { grid-template-columns: 1fr; gap: 12px; }
  .meta-list div { grid-template-columns: 5.8em 1fr; }
  .editable-content--story { font-size: 15px; line-height: 2.15; }
  .editable-content .wp-block-columns { flex-direction: column; gap: 24px; margin: 2em 0; }
  .editable-content .wp-block-gallery { gap: 12px; }
  .editable-content .wp-block-buttons { gap: 10px; }
  .editable-content .wp-block-button__link { width: 100%; min-height: 42px; padding: 11px 18px; }
  .work-facts, .work-video, .work-contact, .work-share { margin-bottom: 44px; }
  .work-video__items,
  .work-video__links,
  .work-share__links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .work-video__link,
  .work-share__links a,
  .work-contact__button {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .related-section--records {
    padding-bottom: 54px;
  }
  .archive-context-grid {
    grid-template-columns: 1fr;
  }
  .archive-context-group {
    padding: 22px 18px 24px;
  }
  .archive-context-group h3 {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .archive-context-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .archive-context-card__media img {
    min-height: 96px;
  }
  .archive-context-card__body {
    padding: 13px 14px;
  }
  .work-post-nav {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }
  .work-post-nav a {
    min-height: 74px;
    padding: 16px;
  }
  .work-post-nav__item {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 0 !important;
  }
  .work-post-nav__media img {
    min-height: 88px;
  }
  .work-post-nav__body {
    padding: 14px 16px;
  }
  .detail-page--record {
    width: min(100% - 44px, 980px);
  }
  .archive-detail {
    padding: 110px 0 74px;
  }
  .archive-detail__header {
    margin-bottom: 32px;
  }
  .archive-detail__header h1 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .archive-detail__summary {
    font-size: 12px;
    line-height: 1.8;
  }
  .archive-detail__hero {
    min-height: 0;
    margin-bottom: 44px;
  }
  .archive-detail__hero img {
    max-height: none;
  }
  .archive-detail__facts,
  .archive-detail__content,
  .archive-detail__gallery,
  .archive-detail__contact,
  .archive-detail__relations {
    margin-bottom: 44px;
  }
  .archive-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .archive-legacy-work-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .archive-relation-work-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .archive-legacy-work__media img {
    max-height: none;
  }
  .archive-relation-work__media img {
    max-height: none;
  }
  .archive-relations a {
    padding: 14px 15px;
  }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; padding-bottom: 74px; }
  .contact-work-context {
    width: min(100% - 40px, 1120px);
    margin-bottom: 38px;
  }
  .contact-work-context div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .profile-list li { grid-template-columns: 80px 1fr; gap: 16px; }
  .profile-hero img { max-width: 320px; }
  .profile-current { padding-bottom: 74px; }
  .profile-current__images { grid-template-columns: 1fr; gap: 22px; margin-bottom: 44px; }
  .profile-current__main-image img { max-width: 420px; }
  .profile-current__side-images { max-width: 420px; }
  .profile-current__links { align-items: flex-start; flex-direction: column; gap: 18px; }
.site-footer { display: grid; padding: 28px 22px; }
  .work-category-nav { flex-wrap: nowrap; overflow-x: auto; gap: 20px; margin: 30px 0 38px; }
  .work-category-nav a { flex: 0 0 auto; }
  .work-category-nav__search { margin-left: 10px; }
  .work-grid--archive,
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 16px; }
  .archive-page--press { width: min(100% - 32px, 760px); }
  .art-expression__nav { display: block; }
  .art-expression__find { display: inline-block; margin-top: 22px; }
  .art-exhibition__copy h3 { font-size: 21px; }
  .art-profile__image { width: 170px; }
  .site-footer { padding-top: 20px; padding-bottom: 20px; }
}

/* Home: curated practice, archive, and activity overview. */
.art-expression,
.art-exhibition,
.art-media,
.art-profile {
  width: min(1180px, calc(100% - 128px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 104px) 0;
}
.art-hero {
  position: relative;
  padding-top: var(--header);
  background: #eceeef;
}
.art-hero__slides {
  position: relative;
  width: 100%;
  height: clamp(500px, calc(100svh - var(--header) - 76px), 760px);
  margin: 0 auto;
  overflow: hidden;
}
.art-hero__image {
  display: block;
  position: absolute;
  inset: 0;
  background: #eceeef;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}
.art-hero__image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.art-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: none;
}
.art-hero__image.is-active img { transform: none; }
.art-hero__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 108px;
  padding: 30px clamp(32px, 4.2vw, 64px) 24px;
  align-items: flex-start;
  gap: 30px;
  background: rgba(245, 246, 247, .96);
  color: var(--ink);
  text-shadow: none;
  transform: none;
}
.art-hero__caption small {
  position: absolute;
  top: -38px;
  left: clamp(32px, 4.2vw, 64px);
  min-width: 92px;
  padding: 12px 14px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
}
.art-hero__caption strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}
.art-hero__caption > span {
  min-width: 0;
  overflow: hidden;
  padding-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .art-hero__image img { transform: none; transition: none; }
}
.art-hero__controls {
  position: relative;
  z-index: 2;
  right: auto;
  bottom: auto;
  justify-content: center;
  width: 100%;
  padding: 18px 0 22px;
  display: flex;
  gap: 9px;
}
.art-hero__indicator {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.art-hero__indicator::before {
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  border-radius: 50%;
  background: rgba(17, 17, 17, .18);
  content: "";
  transition: background-color .2s ease;
}
.art-hero__indicator.is-active::before,
.art-hero__indicator:hover::before,
.art-hero__indicator:focus-visible::before { background: #111; }
.art-hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0 0 3px;
  place-items: center;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.art-hero__arrow:hover,
.art-hero__arrow:focus-visible { background: #fff; }
.art-hero__arrow--prev { left: 0; }
.art-hero__arrow--next { right: 0; }
.art-hero__overlay {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 5.4vw, 86px);
  bottom: clamp(34px, 5vw, 74px);
  max-width: calc(100% - 56px);
  padding: 14px 18px 16px;
  background: rgba(17, 17, 17, .58);
  color: #fff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .56);
}
.art-hero__overlay p { margin: 0 0 10px; font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.art-hero__overlay h1 { margin: 0; font-size: clamp(40px, 5.2vw, 72px); font-weight: 400; line-height: 1; }
.art-hero-news {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.art-hero-news__inner {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  width: min(1180px, calc(100% - 128px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  gap: 28px;
}
.art-hero-news__label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.art-hero-news a {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 22px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.art-hero-news time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.art-hero-news strong {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.art-hero-news a > span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  text-align: right;
}
.art-hero-news a:hover strong,
.art-hero-news a:focus-visible strong { text-decoration: underline; text-underline-offset: 4px; }
.art-expression,
.art-media { border-top: 1px solid var(--line); }
.art-expression h2,
.art-exhibition h2,
.art-media h2,
.art-profile h2 {
  margin: 12px 0 0;
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.38;
}
.art-expression__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 54px;
}
.art-expression__group { min-width: 0; }
.art-expression__group > header {
  border-top: 1px solid var(--ink);
  padding: 14px 0 24px;
}
.art-expression__group > header p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.art-expression__group > header span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.art-expression__works { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 25px; }
.art-expression__works article { min-width: 0; }
.art-expression__works img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fff; }
.art-expression__works h3 { margin: 10px 0 0; font-family: var(--font-serif); font-size: 16px; font-weight: 400; line-height: 1.55; }
.art-expression__works small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.art-expression__all { display: inline-flex; margin-top: 52px; }
.art-expression__browse {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 38px;
}
.art-expression__browse a {
  border-bottom: 1px solid var(--line);
  padding: 0 0 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.art-expression__browse a:hover { color: var(--ink); border-color: var(--ink); }
.art-exhibition { background: #fff; }
.art-exhibition__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  margin: 48px 0 36px;
}
.art-exhibition__media { display: block; min-height: 320px; background: #f2f2f2; }
.art-exhibition__media img { width: 100%; height: 100%; max-height: 620px; object-fit: contain; }
.art-exhibition__copy h3 { margin: 12px 0 22px; font-size: clamp(25px, 3vw, 43px); font-weight: 400; line-height: 1.45; }
.art-exhibition__copy > p:first-child,
.art-exhibition__date,
.art-exhibition__place { margin: 0; color: var(--muted); line-height: 1.8; }
.art-exhibition__place { margin-bottom: 30px; }
.art-media__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 8vw, 140px); margin-top: 46px; }
.art-media__columns--single { grid-template-columns: minmax(0, 1fr); }
.art-media__column { border-top: 1px solid var(--ink); }
.art-media__column h3 { margin: 0; font-size: 14px; }
.art-media__item time { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.art-media__item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--ink); }
.art-media__item strong { font-size: 14px; line-height: 1.65; }
.art-profile { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr); gap: clamp(36px, 10vw, 180px); border-top: 1px solid var(--line); }
.art-profile > div:last-child p { margin: 0 0 34px; color: #444; line-height: 2; }

@media (max-width: 820px) {
  .art-expression,
  .art-exhibition,
  .art-media,
  .art-profile { width: min(100% - 44px, 760px); padding: 72px 0; }
  .art-expression__grid,
  .art-media__columns,
  .art-profile,
  .art-exhibition__feature { grid-template-columns: 1fr; gap: 44px; }
  .art-expression__browse { gap: 10px 16px; margin-top: 28px; }
  .art-expression__works { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .art-expression__works h3 { font-size: 12px; }
  .art-hero__slides { height: clamp(380px, calc(100svh - var(--header) - 116px), 560px); }
  .art-hero__caption {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 108px;
    flex-direction: column;
    gap: 4px;
    padding: 24px 22px 16px;
    transform: none;
  }
  .art-hero__caption small { top: -34px; left: 22px; min-width: 82px; padding: 10px 12px; }
  .art-hero__caption strong { font-size: 16px; }
  .art-hero__caption > span { padding-top: 0; font-size: 10px; }
  .site-breadcrumb { width: min(100% - 44px, 760px); padding-top: calc(var(--header) + 16px); }
  .archive-page--works > .site-breadcrumb,
  .archive-page--records > .site-breadcrumb { width: 100%; }
  .site-breadcrumb + .page-title { padding-top: 34px; }
  .art-hero__overlay { left: 22px; bottom: 28px; max-width: calc(100% - 44px); padding: 12px 14px 14px; }
  .art-hero-news__inner {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 760px);
    min-height: 0;
    padding: 18px 0;
    gap: 10px;
  }
  .art-hero-news a { grid-template-columns: 92px minmax(0, 1fr) 18px; gap: 12px; }
  .art-hero-news strong { font-size: 14px; }
  .art-exhibition__media { min-height: 0; }
  .art-exhibition__media img { max-height: 460px; }
  .art-media__item { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 1480px) and (min-width: 821px) {
  .works-search__form { grid-template-columns: minmax(220px, 1.7fr) repeat(3, minmax(150px, 1fr)); }
  .works-search__actions { grid-column: auto / span 2; }
}

/* Typography scale: display text is quiet and editorial; reading text stays practical. */
button,
input,
select,
textarea { font: inherit; }
.eyebrow,
.art-kicker,
.archive-context-group h3,
.contact-form label {
  font-size: var(--font-size-label);
  letter-spacing: .14em;
}
.hero h1,
.page-title h1,
.profile-hero h1,
.work-detail__header h1,
.archive-detail__header h1 {
  font-family: var(--font-serif);
  font-size: var(--font-size-title);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
.section-heading h2,
.content-band h2,
.contact-layout h2,
.editable-content h2,
.art-intro h2,
.art-intro__content h2,
.art-expression h2,
.art-exhibition h2,
.art-media h2,
.art-profile h2,
.art-contact h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-heading);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.editable-content,
.archive-detail__content,
.work-detail__content,
.contact-layout,
.art-profile > div:last-child p {
  font-size: var(--font-size-body);
  line-height: 2;
}
.work-card span,
.archive-card__body h2,
.press-list__main h2,
.art-expression__works h3,
.art-media__item strong {
  font-size: 16px;
  line-height: 1.65;
}
.art-hero__overlay h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  letter-spacing: 0;
}
.art-expression h2,
.art-exhibition h2,
.art-media h2,
.art-profile h2 { font-size: 36px; }
.art-exhibition__copy h3 { font-family: var(--font-serif); font-size: 34px; }

@media (max-width: 820px) {
  :root {
    --font-size-title: 32px;
    --font-size-heading: 29px;
  }
  body { font-size: 16px; line-height: 1.8; }
  .site-nav { font-size: 14px; }
  .art-hero__overlay h1 { font-size: 44px; }
  .art-expression h2,
  .art-exhibition h2,
  .art-media h2,
  .art-profile h2 { font-size: 28px; }
  .art-exhibition__copy h3 { font-size: 27px; }
  .archive-detail--news .archive-detail__header h1 {
    font-size: clamp(22px, 6vw, 26px);
    line-height: 1.5;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }
  .work-card span,
  .archive-card__body h2,
  .press-list__main h2,
  .art-expression__works h3,
  .art-media__item strong { font-size: 15px; }
}

/* Keep the TOP introduction deliberately narrow and calm. */
.art-intro { padding: clamp(88px, 10vw, 144px) 0; }
.art-intro__inner,
.art-intro__content {
  width: min(1180px, calc(100% - 128px));
  margin: 0 auto;
}
.art-intro h2,
.art-intro__content h2 {
  max-width: 18em;
  margin: 14px 0 30px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .04em;
}
.art-intro > .art-intro__inner > p:last-child,
.art-intro__content > p {
  max-width: 34em;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: .01em;
}
@media (max-width: 820px) {
  .art-intro { padding: 76px 0; }
  .art-intro__inner,
  .art-intro__content { width: min(100% - 44px, 760px); }
  .art-intro h2,
  .art-intro__content h2 { margin-bottom: 24px; font-size: 32px; line-height: 1.48; }
  .art-intro > .art-intro__inner > p:last-child,
  .art-intro__content > p { font-size: 16px; line-height: 1.9; }
}

/* Prevent media from exceeding a phone viewport while preserving each work's ratio. */
@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .work-grid,
  .work-grid--archive,
  .work-grid--related,
  .work-grid__column,
  .work-detail,
  .archive-gallery,
  .archive-relation-work-grid,
  .archive-legacy-work-grid {
    min-width: 0;
  }

  .work-card,
  .work-card a,
  .work-card__media,
  .work-detail__media,
  .work-detail__image-link,
  .archive-detail__hero,
  .archive-gallery figure,
  .editable-content .wp-block-image,
  .editable-content .wp-block-gallery,
  .editable-content .wp-block-gallery figure.wp-block-image {
    max-width: 100%;
    min-width: 0;
  }

  .work-detail__media,
  .work-detail__image-link,
  .archive-detail__hero,
  .editable-content .wp-block-image {
    margin-inline: 0;
  }

  .work-detail__media img,
  .work-detail--vertical .work-detail__media img,
  .work-detail__image-link img,
  .archive-detail__hero img,
  .archive-gallery img,
  .editable-content .wp-block-image img,
  .editable-content .wp-block-gallery img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* Final review overrides must remain last in the cascade. */
.work-grid--archive { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 24px; }
.art-expression__works h3 { display: none; }
.art-exhibition__feature { grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.art-exhibition__media { min-height: 0; }
.art-exhibition__media img { aspect-ratio: 4 / 3; max-height: 390px; object-fit: contain; }
.art-exhibition__copy h3 { margin-top: 0; font-size: 24px; }
.art-profile__image { display: block; width: min(230px, 100%); margin-top: 26px; }
.art-profile__image img { width: 100%; max-height: 260px; object-fit: contain; object-position: left center; }
@media (max-width: 820px) {
  .work-grid--archive,
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 16px; }
  .art-exhibition__feature { grid-template-columns: 1fr; gap: 30px; }
  .art-profile__image { width: 170px; }
}

.art-hero__video {
  display: block;
  width: 100%;
  height: clamp(500px, calc(100svh - var(--header) - 76px), 760px);
  object-fit: cover;
  background: #111;
}
.profile-current__images { grid-template-columns: minmax(220px, 420px) minmax(160px, 220px); }
.profile-current__main-image img { max-height: 520px; object-fit: contain; object-position: left top; }
.art-contact { padding-top: 72px; padding-bottom: 72px; }
.work-detail__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.work-detail__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(82svh, 980px);
  object-fit: contain;
}
.page-contact-cta__primary,
.art-contact__primary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.page-contact-cta__primary .page-contact-cta__button { margin-top: 0; }
.page-contact-cta__message,
.art-contact__primary p {
  max-width: none;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
}
.art-contact__primary .page-contact-cta__icon {
  flex: 0 0 48px;
  background: var(--ink);
  color: #fff;
}
.art-expression__browse { margin-top: 22px; }
.art-expression__grid { margin-top: 34px; }
.art-profile { gap: clamp(28px, 5vw, 72px); }
.art-profile > div:last-child p { margin-bottom: 20px; }
.works-search--after-results { margin-top: 72px; }
.archive-detail--news .archive-detail__header h1 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.5;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
@media (max-width: 820px) {
  .art-hero__video { height: clamp(380px, calc(100svh - var(--header) - 116px), 560px); }
  .profile-current__main-image img { max-width: 320px; }
  .page-contact-cta__primary,
  .art-contact__primary { align-items: flex-start; }
  .page-contact-cta__message,
  .art-contact__primary p { font-size: 15px; }
  .art-expression__grid { margin-top: 28px; }
  .art-profile { gap: 28px; }
  .works-search--after-results { margin-top: 52px; }
  .archive-detail--news .archive-detail__header h1 { font-size: clamp(22px, 6vw, 26px); }
}

/* Pre-launch review: archive clarity and responsive alignment. */
.site-logo__mark { mix-blend-mode: normal; }

.art-exhibition { border-top: 1px solid var(--line); }
.art-expression__group > header p {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .1em;
}
.art-expression__group > header span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--ink);
  line-height: 1.4;
}
.text-link::after {
  content: "→";
  font-size: 1.1em;
  line-height: 1;
}
.art-profile {
  align-items: center;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
}
.art-profile__image { margin-top: 18px; }
.art-profile > div:last-child p { max-width: 34em; }

.work-grid--archive {
  margin-bottom: 42px;
  padding-bottom: 0;
}
.works-results-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 0 42px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 20px;
  scroll-margin-top: 110px;
}
.works-result-summary {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.works-pagination { padding-bottom: 0; }
.work-series-guide--after-archive { margin-top: 44px; }
.works-search__form {
  grid-template-columns: minmax(240px, 1.55fr) repeat(2, minmax(150px, 1fr)) auto;
}

.profile-current__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 168px));
  align-items: center;
  gap: 22px;
}
.profile-current__links img,
.profile-current__links .profile-current__love-letter-logo {
  width: 100%;
  max-width: none;
  height: 72px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.page-contact-cta { margin-bottom: 56px; }
.page-contact-cta__primary { align-items: center; }
.page-contact-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}
.page-contact-cta__actions .page-contact-cta__icon {
  display: inline-flex !important;
  flex: 0 0 62px;
  width: 62px;
  min-width: 62px;
  height: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--ink);
  padding: 6px 4px !important;
  background: var(--ink);
  color: #fff;
}
.page-contact-cta__actions .page-contact-cta__icon:hover,
.page-contact-cta__actions .page-contact-cta__icon:focus-visible {
  background: #fff;
  color: var(--ink);
}
.page-contact-cta__actions .page-contact-cta__icon .lucide {
  width: 17px;
  height: 17px;
}
.page-contact-cta__actions .page-contact-cta__icon span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-contact-cta__message { min-width: 0; }

.archive-detail--news,
.archive-detail--news .archive-detail__content,
.archive-detail--news .editable-content,
.archive-detail--news .editable-content > * {
  min-width: 0;
  max-width: 100%;
}
.archive-detail--news .editable-content p,
.archive-detail--news .editable-content li,
.archive-detail--news .archive-detail__header h1 {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Keep one-line KOTONOHA excerpts inside their grid track on small screens. */
.archive-page--news .archive-card,
.archive-page--news .archive-card__body,
.archive-page--news .archive-card__excerpt {
  min-width: 0;
}
.archive-page--news .archive-card__excerpt { max-width: 100%; }

@media (max-width: 1480px) and (min-width: 821px) {
  .works-search__form { grid-template-columns: minmax(220px, 1.7fr) repeat(2, minmax(150px, 1fr)); }
  .works-search__actions { grid-column: auto; }
}

@media (max-width: 820px) {
  .art-expression__group > header p { font-size: 14px; }
  .art-expression__group > header span { font-size: 12px; }
  .art-profile { align-items: start; }
  .art-profile__image { margin-top: 0; }
  .art-contact { padding-right: 0; padding-left: 0; }
  .works-results-footer { margin-bottom: 34px; }
  .works-result-summary { font-size: 11px; letter-spacing: .04em; }
  .work-series-guide--after-archive { margin-top: 34px; }
  .profile-current__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    gap: 14px;
  }
  .profile-current__links img,
  .profile-current__links .profile-current__love-letter-logo { height: 58px; }
  .page-contact-cta { margin-bottom: 42px; }
  .page-contact-cta__primary { align-items: flex-start; flex-direction: column; }
  .page-contact-cta__actions { width: 100%; }
  .page-contact-cta__actions .page-contact-cta__icon { flex: 1 1 0; width: auto; }
  .page-contact-cta__message { font-size: 15px; }
  .archive-detail--news { width: 100%; }
}
