:root {
  --color-background: #ffffff;
  --color-page: #f8faf9;
  --color-soft-surface: #f4f7f4;
  --color-paper: #fffdf8;
  --color-text: #2c3531;
  --color-muted: #6b7a6d;
  --color-border: #dde6dd;
  --color-border-strong: #aebdaf;
  --color-accent: #3f8f52;
  --color-accent-dark: #2f7842;
  --color-caution: #8a514c;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --space-page: clamp(18px, 4vw, 44px);
  --max-width: 1120px;
  --max-width-narrow: 720px;
  --radius-card: 3px;
  --radius-control: 999px;
  --grid-columns: 2;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-text);
  background: var(--color-page);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-text);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 8px 14px;
  color: #fff;
  background: var(--color-accent);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: static;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner,
.site-footer__inner,
.section__inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--space-page);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-block: 14px;
}

.site-brand {
  display: grid;
  gap: 1px;
  min-width: 0;
  color: var(--color-text);
  text-decoration: none;
}

.site-brand__title {
  font-family: var(--font-serif);
  font-size: 1.26rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.site-brand__sub {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.site-nav__link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-current {
  color: var(--color-text);
}

.site-nav__link.is-current {
  font-weight: 700;
}

.site-nav__link.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/logo-background.png") center / cover no-repeat;
  opacity: 0.6;;
  filter: saturate(0.72);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin-inline: auto;
  padding: clamp(46px, 6vw, 68px) var(--space-page) clamp(42px, 5vw, 58px);
  text-align: center;
}

.hero__title {
  margin: 0;
}

.hero__logo-frame {
  position: relative;
  display: block;
  width: min(100%, 760px);
  aspect-ratio: 84 / 29;
  margin-inline: auto;
  overflow: hidden;
}

.hero__logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 142.857%;
  max-width: none;
  height: auto;
  transform: translate(-15%, -26.866%);
}

.hero .hero__description {
  max-width: 34em;
  margin: 22px auto 26px;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.section {
  padding-block: clamp(48px, 7vw, 84px);
}

.section__inner--narrow {
  max-width: calc(var(--max-width-narrow) + (var(--space-page) * 2));
}

.section-label {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.45;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
}

h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.intro {
  background: var(--color-background);
}

.intro p,
.about-section p {
  font-size: 1.02rem;
  line-height: 2;
}

.text-link,
.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.62em;
  width: fit-content;
  max-width: 100%;
  color: var(--color-text);
  font-weight: 700;
}

.text-link {
  color: var(--color-accent);
  font-weight: 400;
}

.text-link::after,
.link-list a::after {
  content: "›";
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  color: var(--color-accent);
  text-align: center;
  line-height: 1.05;
  font-size: 1.08em;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  transform: translateY(0.02em);
}

.text-link::after {
  content: ">";
  width: auto;
  height: auto;
  border: 0;
  font-size: 0.9em;
  line-height: 1;
  transform: translateY(0.02em);
}

.text-link:hover,
.link-list a:hover {
  color: var(--color-accent);
}

.text-link:hover::after,
.link-list a:hover::after {
  background: #eef4ed;
  border-color: var(--color-accent);
}

.works {
  background: var(--color-page);
  border-top: 1px solid var(--color-border);
}

.works__inner {
  max-width: calc(var(--max-width-narrow) + (var(--space-page) * 2));
}

.works__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(107, 122, 109, 0.16);
}

.works__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.works-info-toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--color-accent-dark);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.works-info-toggle:hover,
.works-info-toggle[aria-expanded="true"] {
  background: var(--color-soft-surface);
}

.works-info-toggle__info {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.works-info-toggle__close {
  display: none;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
}

.works-info-toggle[aria-expanded="true"] .works-info-toggle__info {
  display: none;
}

.works-info-toggle[aria-expanded="true"] .works-info-toggle__close {
  display: block;
}

.works-info-panel {
  margin: 0 0 20px;
  padding: 16px 18px;
  background: var(--color-soft-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.works-info-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.works-info-panel dt {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.works-info-panel dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.filter-sentinel {
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}

.filter-panel {
  margin: 0 0 26px;
}

.filter-panel__inner {
  display: grid;
  padding-block: 10px 14px;
}

.filter-panel__bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-panel__count {
  margin: 0;
  color: var(--color-accent-dark);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}

.filter-panel__toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  justify-self: end;
  color: #78927c;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.filter-panel__toggle:hover {
  color: var(--color-accent-dark);
}

.filter-icon {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.filter-close {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
}

.filter-close::before,
.filter-close::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
}

.filter-close::before {
  transform: rotate(45deg);
}

.filter-close::after {
  transform: rotate(-45deg);
}

.filter-sticky.is-open .filter-icon {
  display: none;
}

.filter-sticky.is-open .filter-close {
  display: block;
}

.filter-sticky {
  display: none;
}

.result-count {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
}

.works__toolbar {
  margin-bottom: 18px;
}

.result-count--main {
  margin: 0;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  min-height: 36px;
  padding: 6px 16px;
  color: var(--color-muted);
  background: var(--color-background);
  border: 1px solid rgba(107, 122, 109, 0.22);
  border-radius: 999px;
  font: inherit;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.choice:hover,
.choice.is-active {
  color: var(--color-accent-dark);
  background: #e9f2e8;
  border-color: transparent;
}

.work-grid {
  display: grid;
  gap: 24px;
  overflow-anchor: none;
}

.work-card {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 32px);
  background: var(--color-background);
  border: 1px solid rgba(107, 122, 109, 0.14);
  border-radius: var(--radius-card);
}

.work-card__quote-group {
  position: relative;
  clear: both;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 16px;
  padding: 8px 0 0;
  background: #ffffff;
}

.work-card__quote {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 3.8vw, 1.42rem);
  font-weight: 700;
  line-height: 1.95;
  color: #1b211c;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.work-card__quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  white-space: pre-wrap;
}

.work-card__quote p::before,
.work-card__quote p::after {
  color: rgba(63, 143, 82, 0.28);
  font-family: var(--font-serif);
  font-size: 1.7em;
  font-weight: 500;
  line-height: 0;
}

.work-card__quote p::before {
  content: "“";
  margin-right: 0.2em;
  vertical-align: -0.15em;
}

.work-card__quote p::after {
  content: "”";
  margin-left: 0.2em;
  vertical-align: -0.28em;
}

.work-card__scene {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 12px 0 0;
  margin-left: auto;
  color: #526256;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: right;
  overflow-wrap: anywhere;
}

.work-card__genre {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 14px auto;
  padding: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: normal;
}

.work-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(107, 122, 109, 0.12);
}

.work-card__credits {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.work-card__credits summary {
  width: fit-content;
  color: var(--color-muted);
  cursor: pointer;
}

.work-card__credits summary:hover {
  color: var(--color-accent);
}

.credit-list {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
}

.credit-row {
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: 8px;
}

.credit-row dd {
  margin: 0;
  color: var(--color-text);
}

.credit-link {
  color: var(--color-accent);
}

.credit-link::after {
  content: " >";
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  width: fit-content;
  max-width: 100%;
  color: var(--color-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.work-link::after {
  content: ">";
  font-size: 0.86em;
  line-height: 1;
}

.work-link:hover {
  color: var(--color-accent);
}

.work-link--primary {
  padding: 9px 16px;
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
  border-radius: 3px;
}

.work-link--primary:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.work-link--secondary {
  color: var(--color-accent);
}

.book-icon {
  position: relative;
  width: 0.95em;
  height: 0.78em;
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.book-icon::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 50%;
  border-left: 1px solid currentColor;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card > .tag-list {
  margin-bottom: 18px;
}

.tag-list li {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.loading-message,
.empty-message,
.error-message {
  padding: 20px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.loading-message {
  color: var(--color-muted);
}

.error-message {
  display: grid;
  gap: 12px;
  justify-items: start;
  color: var(--color-caution);
}

.error-message p {
  margin: 0;
}

.retry-button {
  padding: 8px 14px;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid rgba(63, 143, 82, 0.32);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.retry-button:hover {
  color: var(--color-accent-dark);
  border-color: rgba(42, 103, 57, 0.45);
}

.page-hero {
  padding-block: 52px 56px;
  background: var(--color-soft-surface);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.page-hero .section__inner {
  max-width: calc(720px + (var(--space-page) * 2));
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0;
}

.about-section {
  background: var(--color-background);
}

.about-block__inner {
  position: relative;
  z-index: 1;
  max-width: calc(920px + (var(--space-page) * 2));
}

.about-block {
  position: relative;
  padding-block: 68px;
  background: var(--color-background);
}

.about-block--archive {
  overflow: hidden;
  background: #f1f5f0;
}

.archive-leaves {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 0;
  width: clamp(320px, 36vw, 540px);
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.about-block__head {
  min-width: 0;
}

.about-block__head h2 {
  margin-bottom: 26px;
  font-size: 1.7rem;
}

.about-block__body {
  min-width: 0;
}

.about-block--summary .about-block__body {
  display: grid;
  gap: 32px;
}

.about-section .about-lead {
  max-width: 44em;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.16rem;
  line-height: 2;
}

.about-summary__details {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.info-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.3em;
}

.overview-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(107, 122, 109, 0.16);
}

.overview-list div {
  display: grid;
  grid-template-columns: minmax(7em, 0.34fr) 1fr;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(107, 122, 109, 0.16);
}

.overview-list dt {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.overview-list dd {
  margin: 0;
}

.publication-info {
  padding-top: 12px;
  border-top: 1px solid rgba(107, 122, 109, 0.16);
}

.publication-info h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.publication-info p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.pending-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62em;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--color-accent);
  font-weight: 500;
}

.pending-link::after {
  content: ">";
  font-size: 0.9em;
  line-height: 1;
}

.pending-link span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.reference-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 122, 109, 0.14);
}

.reference-links p {
  margin: 0;
}

.reference-link-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-link-list .text-link {
  font-size: 0.88rem;
}

.text-link--placeholder {
  cursor: default;
}

.organizer-profile {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px 22px;
  align-items: start;
}

.organizer-profile__identity {
  display: contents;
}

.organizer-profile__identity > div {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.organizer-profile__identity p,
.organizer-profile__copy p {
  margin: 0;
}

.organizer-profile__copy {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  gap: 16px;
}

.organizer-profile__name {
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.65;
}

@media (min-width: 841px) {
  .organizer-profile__name {
    white-space: nowrap;
  }
}

.organizer-profile__description {
  max-width: 42em;
  font-size: 1rem !important;
  line-height: 1.85 !important;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48em;
  min-height: 28px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 500;
}

.social-link > span:first-child {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1;
}

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

.archive-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 28px 26px;
  background: var(--color-background);
  border: 1px solid rgba(107, 122, 109, 0.18);
  border-radius: var(--radius-card);
}

.archive-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.6;
}

.archive-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.archive-card__meta {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.archive-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.archive-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 500;
}

.archive-card__links a::after {
  content: ">";
  font-size: 0.86em;
  line-height: 1;
}

.organizer__logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 104px;
  height: 104px;
  display: block;
  object-fit: contain;
}

.site-footer {
  padding-block: 28px;
  color: var(--color-muted);
  background: #eef4ee;
  border-top: 1px solid rgba(107, 122, 109, 0.12);
}

.site-footer__inner {
  display: block;
  color: #637367;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  line-height: 1.8;
  padding-inline: 16px;
  text-align: center;
  overflow-wrap: anywhere;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .work-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .work-card {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 840px) {
  .about-summary__details {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .publication-info {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --space-page: clamp(16px, 5vw, 24px);
  }

  .site-header__inner {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-block: 14px;
    text-align: center;
  }

  .site-brand {
    justify-items: center;
  }

  .site-nav {
    justify-content: center;
    gap: 18px;
  }

  .page-hero {
    padding-block: 42px 46px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .about-block {
    padding-block: 52px;
  }

  .about-block__body,
  .about-block__head,
  .about-lead,
  .reference-links,
  .organizer-profile,
  .archive-card {
    min-width: 0;
  }

  .about-lead,
  .about-block__body > p,
  .reference-links p:not(.pending-link),
  .archive-card p:not(.pending-link) {
    width: 100%;
    max-width: 100%;
  }

  .about-summary__details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .overview-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .organizer-profile {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px 16px;
    align-items: start;
  }

  .organizer-profile__identity > div {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .organizer-profile__copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .organizer__logo {
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    height: 88px;
  }

  .archive-leaves {
    top: 0px;
    right: 0px;
    width: 280px;
    opacity: 0.19;
  }

  .social-list {
    display: flex;
    gap: 10px 18px;
  }

  .reference-link-list {
    display: grid;
    gap: 10px;
  }

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

  .archive-card {
    padding: 24px 22px;
  }

  .works__heading {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .works-info-panel dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .filter-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    display: block;
    color: var(--color-text);
    background: rgba(248, 250, 249, 0.94);
    border-bottom: 1px solid rgba(107, 122, 109, 0.12);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .filter-sticky.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .filter-sticky__inner {
    display: grid;
    gap: 0;
    width: min(100%, calc(var(--max-width-narrow) + (var(--space-page) * 2)));
    margin-inline: auto;
    padding: 8px var(--space-page);
  }

  .filter-sticky .filter-panel__bar {
    display: flex;
  }

  .filter-sticky .filter-panel__toggle {
    display: grid;
  }

  .filter-sticky__choices {
    display: none;
  }

  .filter-sticky.is-open .filter-sticky__choices {
    display: flex;
    padding-block: 4px 12px;
  }

  .filter-sticky.is-visible + .works__content .works__toolbar {
    visibility: hidden;
  }

  .work-card__actions {
    display: grid;
    justify-items: start;
  }

}

@media (max-width: 520px) {
  .site-brand__sub {
    font-size: 0.75rem;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section {
    padding-block: 44px;
  }

  .page-hero {
    padding-block: 42px 46px;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

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

  .hero .hero__description {
    max-width: 22em;
    margin-block: 18px 24px;
    font-size: 0.92rem;
    letter-spacing: 0;
  }

  .work-card {
    padding: 18px 16px;
  }

  .work-card__quote {
    font-size: 1.16rem;
    line-height: 1.8;
    max-width: 16.8em;
  }

  .work-card__scene,
  .work-card__genre {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }
}
