:root {
  color-scheme: dark;
  --bg: #070707;
  --ink: #f4f1ea;
  --muted: #b8b0a3;
  --line: rgba(244, 241, 234, 0.18);
  --red: #d9162f;
  --red-dark: #8d0d22;
  --amber: #d8aa55;
  --steel: #6c8791;
  --panel: rgba(18, 18, 18, 0.72);
  --max: 1160px;
  --hero-photo: url("./assets/photos/hero.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 170, 85, 0.09), transparent 24rem),
    radial-gradient(circle at 86% 34%, rgba(217, 22, 47, 0.075), transparent 28rem),
    radial-gradient(circle at 54% 86%, rgba(108, 135, 145, 0.07), transparent 32rem),
    linear-gradient(180deg, #070707 0%, #0d0d0d 42%, #070707 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family:
    Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, transparent 0 8.8rem, rgba(216, 170, 85, 0.08) 8.9rem 8.95rem, transparent 9.08rem),
    radial-gradient(circle at 18% 28%, transparent 0 12.2rem, rgba(244, 241, 234, 0.045) 12.28rem 12.34rem, transparent 12.48rem),
    radial-gradient(circle at 82% 64%, transparent 0 12.8rem, rgba(244, 241, 234, 0.056) 12.9rem 12.98rem, transparent 13.14rem),
    radial-gradient(circle at 82% 64%, transparent 0 17.8rem, rgba(108, 135, 145, 0.05) 17.9rem 17.98rem, transparent 18.16rem),
    repeating-linear-gradient(0deg, rgba(244, 241, 234, 0.038) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.028) 0 1px, transparent 1px 16px);
  opacity: 0.8;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(244, 241, 234, 0.12) 0 0.9px, transparent 1px),
    radial-gradient(circle, rgba(216, 170, 85, 0.1) 0 0.8px, transparent 0.95px);
  background-position:
    0 0,
    18px 22px;
  background-size:
    42px 42px,
    58px 58px;
  opacity: 0.34;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 0.86;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  color: rgba(244, 241, 234, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(24px, 5vw, 64px);
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 64px) 36px;
  isolation: isolate;
}

#stage-canvas,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

#stage-canvas {
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #050505;
}

.hero-photo {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 58%),
    var(--hero-photo) center 54% / 96% auto no-repeat;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(217, 22, 47, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.36) 54%, rgba(0, 0, 0, 0.74)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08) 42%);
}

.hero-content {
  width: min(820px, 100%);
  padding-bottom: clamp(44px, 10vh, 94px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 950;
  line-height: 0.95;
}

.lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(244, 241, 234, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions,
.event-card {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.mobile-hero-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  background: var(--red);
  color: white;
}

.button.primary:hover {
  background: #f01d39;
}

.button.secondary {
  border-color: rgba(244, 241, 234, 0.44);
  background: rgba(244, 241, 234, 0.04);
}

.button.secondary:hover {
  border-color: rgba(244, 241, 234, 0.84);
}

.button.light {
  border-color: rgba(7, 7, 7, 0.32);
  color: #070707;
}

.next-show {
  position: relative;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  gap: 8px;
  justify-self: end;
  border-left: 3px solid var(--red);
  background: rgba(0, 0, 0, 0.52);
  padding: 18px 20px;
  backdrop-filter: blur(12px);
}

.next-show .label {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.next-show time {
  color: white;
  font-size: 30px;
  font-weight: 950;
}

.next-show strong {
  font-size: 16px;
  line-height: 1.35;
}

.next-venue {
  color: rgba(244, 241, 234, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.next-show a,
.text-link {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.intro-band,
.news-section,
.content-section,
.archive-section,
.split-section,
.score-band,
.members-section,
.video-section,
.gallery-section {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 64px);
}

.intro-band {
  background:
    radial-gradient(circle at 86% 18%, transparent 0 9rem, rgba(244, 241, 234, 0.028) 9.05rem 9.1rem, transparent 9.2rem),
    linear-gradient(90deg, rgba(217, 22, 47, 0.2), transparent 36%),
    #101010;
}

.intro-grid,
.news-section,
.content-section,
.archive-section,
.split-section,
.video-section,
.gallery-section,
.score-band,
.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.04;
}

.intro-grid p,
.news-item p,
.archive-section .section-heading p,
.archive-entry p,
.video-copy p,
.gallery-section .section-heading p,
.score-band p,
.contact-panel p,
.works-section > div > p,
.commission-copy p,
.event-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.concept-line {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid rgba(244, 241, 234, 0.16);
  padding-top: 22px;
}

.concept-line span {
  display: inline;
  max-width: 100%;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2.9vw, 34px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-shadow: 0 0 22px rgba(216, 170, 85, 0.16);
  transform: skewX(-4deg);
}

.concept-line strong {
  color: rgba(244, 241, 234, 0.9);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
}

.news-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.news-heading h2 {
  margin-bottom: 0;
}

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

.news-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.news-item time {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
}

.news-item h3 {
  margin-bottom: 4px;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.32;
}

.news-item p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}

.news-item.featured {
  border-bottom-color: rgba(217, 22, 47, 0.42);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.video-section .video-link {
  grid-column: 2;
  justify-self: start;
}

.video-copy p {
  margin-bottom: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-video {
  border-color: rgba(216, 170, 85, 0.32);
}

.video-link {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.gallery-section .section-heading p {
  max-width: 520px;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, 18vw);
  gap: 12px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 180px;
  align-items: flex-end;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101313;
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 28% 24%, rgba(216, 170, 85, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(244, 241, 234, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.055) 0 1px, transparent 1px 18px);
  content: "";
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card figcaption {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 24px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-card {
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(18px, 3vw, 28px);
}

.event-card.featured {
  border-color: rgba(217, 22, 47, 0.62);
  background:
    linear-gradient(90deg, rgba(217, 22, 47, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.04);
}

.event-card time {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.event-card h3 {
  margin-bottom: 6px;
  font-size: clamp(20px, 3vw, 32px);
}

.event-card p {
  margin-bottom: 0;
}

.archive-section .section-heading p {
  max-width: 620px;
  margin-bottom: 0;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-entry {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(216, 170, 85, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.032);
  padding: clamp(20px, 3vw, 30px);
}

.archive-year {
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-body h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 34px);
}

.archive-special {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  border: 1px solid rgba(216, 170, 85, 0.62);
  border-right: 0;
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(216, 170, 85, 0.2), rgba(216, 170, 85, 0.08)),
    rgba(255, 255, 255, 0.025);
  padding: 7px 16px;
  color: #e8c77c;
  font-family: "Snell Roundhand", "Brush Script MT", "Apple Chancery", Georgia, serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  vertical-align: middle;
}

.archive-special::before,
.archive-special::after {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  content: "";
}

.archive-special::before {
  position: absolute;
  left: -12px;
  border-right: 12px solid rgba(216, 170, 85, 0.18);
}

.archive-special::after {
  position: absolute;
  right: -12px;
  border-left: 12px solid rgba(216, 170, 85, 0.18);
}

.archive-body p {
  margin-bottom: 0;
}

.archive-meta {
  margin: 0 0 14px;
}

.archive-meta div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  padding-top: 12px;
}

.archive-meta dt,
.archive-meta dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.archive-meta dt {
  color: var(--steel);
  font-weight: 950;
}

.archive-meta dd {
  color: rgba(244, 241, 234, 0.82);
}

.archive-program {
  margin-top: 18px;
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  padding-top: 16px;
}

.archive-program summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.archive-program summary::after {
  color: var(--red);
  content: "+";
  font-size: 18px;
  line-height: 1;
}

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

.program-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  font-family: "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.38fr);
  gap: 8px 18px;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  padding-top: 12px;
}

.program-list span {
  color: rgba(244, 241, 234, 0.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.program-list b {
  margin-left: 0.35em;
  color: var(--amber);
  font-size: 0.86em;
}

.program-list cite {
  color: var(--steel);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.program-list small {
  grid-column: 1 / -1;
  color: rgba(244, 241, 234, 0.62);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.75;
}

.program-list .program-break {
  display: block;
  color: rgba(216, 170, 85, 0.74);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-align: center;
}

.members-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 22, 47, 0.18), transparent 34%),
    linear-gradient(180deg, #0b0b0b, #111516);
}

.members-section .section-heading,
.member-grid {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.member-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #0d0f10;
  padding: 22px;
}

.member-card::after {
  position: absolute;
  right: -18px;
  bottom: -24px;
  color: rgba(244, 241, 234, 0.035);
  content: attr(data-number);
  font-size: 128px;
  font-weight: 950;
  line-height: 1;
}

.member-card.wide {
  grid-column: span 2;
}

.member-card.photo-card {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.member-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 160px;
  align-items: flex-end;
  justify-content: flex-end;
  margin: -22px -22px 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.92)),
    radial-gradient(circle at 24% 18%, rgba(216, 170, 85, 0.18), transparent 34%),
    var(--member-photo) center / cover no-repeat,
    #101313;
}

.member-photo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.04) 0 1px, transparent 1px 16px);
  content: "";
}

.member-photo.portrait {
  width: min(230px, 76%);
  min-height: 0;
  aspect-ratio: 3 / 4;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.photo-card .member-photo.portrait {
  width: 100%;
  margin: 0;
  grid-column: 1;
  grid-row: 1 / span 3;
}

.photo-card .member-head,
.photo-card > p,
.photo-card .member-profile {
  grid-column: 2;
}

.photo-card .member-head {
  margin-bottom: 14px;
}

.member-photo.portrait::before {
  opacity: 0.28;
}

.member-photo.portrait.okita {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.22)),
    radial-gradient(circle at 24% 18%, rgba(216, 170, 85, 0.18), transparent 34%),
    var(--member-photo) 36% 35% / 146% auto no-repeat,
    #101313;
}

.member-photo.portrait.terayama {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.16)),
    radial-gradient(circle at 24% 18%, rgba(216, 170, 85, 0.16), transparent 34%),
    var(--member-photo) center 32% / 100% auto no-repeat,
    #f2f3f5;
}

.member-photo.portrait.deto {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.12)),
    radial-gradient(circle at 74% 18%, rgba(216, 170, 85, 0.14), transparent 34%),
    var(--member-photo) center 31% / 94% auto no-repeat,
    #f6f4ef;
}

.member-photo.portrait.yokoo {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.18)),
    radial-gradient(circle at 78% 18%, rgba(216, 170, 85, 0.16), transparent 36%),
    var(--member-photo) 96% 6% / 106% auto no-repeat,
    #21110a;
}

.member-photo.portrait.isaka {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.16)),
    radial-gradient(circle at 50% 18%, rgba(216, 170, 85, 0.16), transparent 34%),
    var(--member-photo) center 30% / 126% auto no-repeat,
    #141414;
}

.member-photo.portrait.yamazaki {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.18)),
    radial-gradient(circle at 72% 20%, rgba(216, 170, 85, 0.14), transparent 36%),
    var(--member-photo) 66% 24% / 168% auto no-repeat,
    #21321d;
}

.member-photo.portrait.yasuda {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 15, 16, 0.14)),
    radial-gradient(circle at 50% 22%, rgba(216, 170, 85, 0.12), transparent 34%),
    var(--member-photo) center 46% / 126% auto no-repeat,
    #10141a;
}

.member-photo span {
  position: relative;
  z-index: 1;
  margin: 14px;
  border: 1px solid rgba(216, 170, 85, 0.44);
  background: rgba(7, 7, 7, 0.62);
  padding: 7px 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
}

.member-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.member-head h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.member-head p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.member-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.member-profile {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  padding-top: 14px;
}

.member-profile summary {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--amber);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  list-style: none;
}

.member-profile summary::-webkit-details-marker {
  display: none;
}

.member-profile summary::after {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(216, 170, 85, 0.32);
  color: var(--amber);
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.member-profile[open] summary::after {
  content: "-";
}

.member-profile p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.split-section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.works-section {
  align-items: start;
}

.works-section > div > p {
  margin-bottom: 0;
}

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

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

.commission-card .video-frame {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.commission-copy {
  padding: 18px;
}

.commission-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.22;
}

.work-subtitle {
  min-height: 0;
  margin: -2px 0 12px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.work-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.work-meta div {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 999px;
}

.work-meta dt,
.work-meta dd {
  margin: 0;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.work-meta dt {
  background: rgba(216, 170, 85, 0.13);
  color: var(--amber);
}

.work-meta dd {
  color: rgba(244, 241, 234, 0.86);
}

.commission-copy p {
  min-height: 74px;
  margin-bottom: 14px;
  font-size: 14px;
}

.commission-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.score-band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(216, 170, 85, 0.92), rgba(244, 241, 234, 0.92)),
    #d8aa55;
  color: #070707;
}

.score-band .section-kicker,
.score-band p {
  color: rgba(7, 7, 7, 0.7);
}

.score-copy {
  max-width: 820px;
}

.score-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.score-flow li {
  position: relative;
  border-left: 1px solid rgba(7, 7, 7, 0.18);
  padding: 0 18px;
}

.score-flow li:first-child {
  border-left: 0;
  padding-left: 0;
}

.score-flow span {
  display: block;
  margin-bottom: 8px;
  color: rgba(141, 13, 34, 0.68);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.score-flow strong {
  display: block;
  margin-bottom: 4px;
  color: #070707;
  font-size: 16px;
}

.score-flow p,
.score-actions p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.65;
}

.score-actions {
  display: grid;
  min-width: min(320px, 100%);
  gap: 12px;
  justify-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(217, 22, 47, 0.14), transparent 42%),
    var(--panel);
  padding: clamp(24px, 5vw, 52px);
}

.contact-panel p {
  max-width: 620px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 5vw, 64px) 44px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 780px) {
  body {
    background-attachment: scroll;
  }

  body::before,
  body::after {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46));
  }

  .main-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0 0 4px;
    color: rgba(244, 241, 234, 0.78);
    font-size: 11px;
    white-space: normal;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    border: 1px solid rgba(216, 170, 85, 0.28);
    border-radius: 2px;
    background:
      linear-gradient(135deg, rgba(216, 170, 85, 0.12), rgba(255, 255, 255, 0.03)),
      rgba(0, 0, 0, 0.34);
    box-shadow: inset 0 0 0 1px rgba(244, 241, 234, 0.035);
    padding: 7px 4px;
    color: rgba(244, 241, 234, 0.9);
    font-family:
      Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic",
      Meiryo, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88vh;
    padding-top: 125px;
  }

  .hero-photo {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 64%),
      var(--hero-photo) center 82% / 96% auto no-repeat;
    opacity: 0.68;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .hero .hero-actions {
    display: none;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(228, 218, 196, 0.14);
    border-bottom: 1px solid rgba(228, 218, 196, 0.14);
    background:
      linear-gradient(135deg, rgba(167, 34, 38, 0.22), rgba(0, 0, 0, 0) 52%),
      rgba(10, 10, 10, 0.96);
  }

  .mobile-hero-actions .button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .next-show {
    width: min(310px, 100%);
    justify-self: start;
    gap: 5px;
    border-left-width: 2px;
    background: rgba(0, 0, 0, 0.72);
    padding: 12px 14px;
    backdrop-filter: none;
  }

  .next-show .label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .next-show time {
    font-size: 22px;
  }

  .next-show strong {
    font-size: 13px;
    line-height: 1.3;
  }

  .next-venue,
  .next-show a {
    font-size: 12px;
  }

  .intro-grid,
  .news-section,
  .archive-entry,
  .split-section,
  .video-section,
  .member-grid,
  .commission-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .video-section .video-link {
    grid-column: auto;
  }

  .member-card,
  .member-card.wide {
    grid-column: auto;
    min-height: auto;
  }

  .member-card.photo-card {
    display: block;
  }

  .photo-card .member-photo.portrait {
    width: min(230px, 76%);
    margin: 0 auto 22px;
    grid-column: auto;
    grid-row: auto;
  }

  .photo-card .member-head,
  .photo-card > p,
  .photo-card .member-profile {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card.large,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .score-band,
  .event-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .score-flow li,
  .score-flow li:first-child {
    border-left: 1px solid rgba(7, 7, 7, 0.18);
    padding: 0 0 0 14px;
  }

  .program-list li {
    grid-template-columns: 1fr;
  }
}
