: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: var(--bg);
  color: var(--ink);
  font-family:
    Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  letter-spacing: 0;
}

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;
  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 / cover 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;
}

.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: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 34px;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  gap: 8px;
  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-show a,
.text-link {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

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

.intro-band {
  background:
    linear-gradient(90deg, rgba(217, 22, 47, 0.2), transparent 36%),
    #101010;
}

.intro-grid,
.content-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,
.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;
}

.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:
    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%),
    var(--gallery-photo) center / cover no-repeat,
    #101313;
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  background:
    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.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  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;
}

.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(3, minmax(0, 1fr));
  gap: 12px;
}

.member-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  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-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 190px;
  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 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-initial {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 170, 85, 0.44);
  background: rgba(216, 170, 85, 0.08);
  color: var(--amber);
  font-size: 14px;
  font-weight: 950;
}

.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: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.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: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.score-flow li {
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.05);
  padding: 16px;
}

.score-flow span {
  display: block;
  margin-bottom: 10px;
  color: rgba(141, 13, 34, 0.72);
  font-size: 12px;
  font-weight: 950;
}

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

.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) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

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

  .next-show {
    right: 18px;
    bottom: 20px;
  }

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

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

  .member-card,
  .member-card.wide {
    grid-column: auto;
    min-height: 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;
  }
}
