:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0a0b;
  --panel: #131315;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f5f1ed;
  --muted: #aaa5a2;
  --accent: #c81023;
  --accent-deep: #690711;
  --accent-hot: #ff263b;
  --accent-2: #f2f2f2;
  --steel: #b9b2ad;
  --shadow: rgba(0, 0, 0, 0.68);
  --max: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 54px),
    radial-gradient(circle at 18% 0%, rgba(200, 16, 35, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), #050505 44rem),
    var(--bg);
  font-family:
    Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body.is-flyer-modal-open,
body.is-goods-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(5, 5, 5, 0.42);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(118px, 13vw, 185px);
  height: 48px;
}

.brand-mark img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.18));
}

.brand-mark--footer {
  width: min(260px, 72vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.menu-button__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 34px) clamp(20px, 5vw, 76px) 38px;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: url("assets/lumieres-artist-photo.jpg");
  background-position: center 38%;
  background-size: cover;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.52) 34%, rgba(5, 5, 5, 0.2) 66%, rgba(5, 5, 5, 0.74)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.02) 42%, #050505 100%);
}

.hero__content {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 1;
}

.hero__logo {
  width: min(430px, 88vw);
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.25))
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.8));
}

.hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #f1ece8;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  text-shadow: 0 2px 18px #000;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 48px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(200, 16, 35, 0.28), transparent 70%);
  opacity: 0.74;
}

.button::after {
  content: ">";
  margin-left: 12px;
  color: currentColor;
}

.button--primary {
  background:
    linear-gradient(135deg, var(--accent-hot), var(--accent-deep) 72%),
    var(--accent);
  border-color: rgba(255, 38, 59, 0.78);
  color: #fff;
  box-shadow:
    0 18px 42px rgba(105, 7, 17, 0.38),
    inset 0 0 24px rgba(0, 0, 0, 0.48);
}

.button--primary:hover,
.button--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.hero-alert {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: 42px;
  width: min(380px, calc(100% - 40px));
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero-alert span,
.hero-alert a,
.release__type,
.live-card__body p,
.site-footer p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-alert strong {
  display: block;
  margin: 5px 0 8px;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.hero-alert a {
  color: var(--accent-2);
}

.section {
  scroll-margin-top: var(--header-h);
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.section--news {
  padding-bottom: clamp(42px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(105, 7, 17, 0.16), rgba(5, 5, 5, 0.92) 74%),
    #050505;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.section__head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.text-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.news-list {
  width: min(780px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 38%),
    rgba(8, 8, 9, 0.68);
  border-top: 1px solid var(--line-strong);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
}

.section--news .section__head {
  width: min(780px, 100%);
}

.news-item {
  display: grid;
  grid-template-columns: 124px 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding-inline: clamp(16px, 2.5vw, 26px);
  border-bottom: 1px solid var(--line);
}

.news-item time,
.news-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  min-height: 28px;
  border: 1px solid var(--line);
  background: rgba(200, 16, 35, 0.08);
  color: var(--accent-2);
}

.news-item a {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
}

.news-item a:hover {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 38, 59, 0.44);
}

.release {
  display: grid;
  grid-template-columns: minmax(250px, 430px) minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  background:
    linear-gradient(120deg, rgba(200, 16, 35, 0.18), transparent 45%),
    linear-gradient(180deg, #080808, #050505);
}

.flyer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 650px);
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.54) 48%, rgba(5, 5, 5, 0.92)),
    url("assets/lumieres-shido-flyer.jpg") center 34% / cover;
}

.flyer::before,
.flyer::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.flyer::before {
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 48px),
    radial-gradient(circle at 28% 48%, rgba(200, 16, 35, 0.34), transparent 24rem);
  mix-blend-mode: screen;
  opacity: 0.52;
}

.flyer::after {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 44px rgba(200, 16, 35, 0.16);
}

.flyer__visual {
  position: relative;
  z-index: 1;
}

.flyer-card {
  position: relative;
  display: block;
  width: min(420px, 100%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.34);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.68),
    0 0 42px rgba(200, 16, 35, 0.34);
}

.flyer-card::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 30px rgba(200, 16, 35, 0.16);
}

.flyer-card img {
  width: 100%;
  aspect-ratio: 595 / 842;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.flyer-card:hover img,
.flyer-card:focus-visible img {
  filter: contrast(1.12) saturate(1.12);
  transform: scale(1.025);
}

.flyer-card:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 5px;
}

.flyer__content {
  position: relative;
  z-index: 1;
}

.flyer__content p:not(.eyebrow, .release__type) {
  max-width: 46ch;
  margin: 24px 0 0;
  color: #eee7e1;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 800;
}

.flyer__content h2 {
  max-width: 100%;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  text-transform: none;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.24),
    0 0 34px rgba(200, 16, 35, 0.46),
    0 16px 36px #000;
}

.release__art {
  position: relative;
  border: 1px solid var(--line-strong);
  box-shadow: 0 26px 80px var(--shadow);
}

.release__art::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.release__art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release__content p:not(.eyebrow, .release__type) {
  max-width: 56ch;
  margin: 24px 0 0;
  color: #d7d2ce;
}

.release__content h2,
.movie__copy h2 {
  max-width: 100%;
  font-size: clamp(2.8rem, 4.3vw, 4.25rem);
  overflow-wrap: anywhere;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.store-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
  min-height: 40px;
  padding: 9px 15px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.2), transparent 58%),
    rgba(8, 8, 9, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  color: #efe9e4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(105, 7, 17, 0.28);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.store-links a::before,
.listen-links a::before,
.footer-links a::before,
.footer-links button::before,
.member-card__links a::before {
  position: absolute;
  inset: 3px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-links a:hover {
  background:
    linear-gradient(135deg, rgba(255, 38, 59, 0.36), transparent 58%),
    rgba(15, 15, 17, 0.96);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  transform: translateY(-2px);
}

.listen-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin-top: 18px;
}

.listen-links a {
  position: relative;
  isolation: isolate;
  min-height: 58px;
  padding: 14px 15px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(155deg, rgba(200, 16, 35, 0.22), rgba(10, 10, 11, 0.12) 42%),
    rgba(10, 10, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  color: #f6f2ef;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 26px rgba(105, 7, 17, 0.34),
    0 12px 34px rgba(0, 0, 0, 0.26);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.listen-links a span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-shadow: 0 0 16px rgba(255, 38, 59, 0.42);
}

.listen-links a:hover {
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.28), transparent 58%),
    rgba(17, 17, 19, 0.95);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 32px rgba(200, 16, 35, 0.34),
    0 18px 38px rgba(105, 7, 17, 0.32);
  transform: translateY(-2px);
}

.quick-links {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 52%, rgba(5, 5, 5, 0.96)),
    url("assets/lumieres-artist-photo.jpg") center 42% / cover;
}

.quick-links::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(200, 16, 35, 0.16), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 46px);
}

.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.quick-link-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(120deg, rgba(200, 16, 35, 0.28), rgba(6, 6, 7, 0.88) 62%),
    rgba(8, 8, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  color: #fff;
  font: inherit;
  font-size: clamp(1.06rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 38px rgba(105, 7, 17, 0.34),
    0 22px 56px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-link-card--goods {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(255, 38, 59, 0.42), rgba(64, 4, 9, 0.9) 48%, rgba(6, 6, 7, 0.92)),
    rgba(8, 8, 9, 0.92);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 46px rgba(200, 16, 35, 0.44),
    0 22px 60px rgba(105, 7, 17, 0.32);
}

.quick-link-card::before {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-link-card::after {
  position: absolute;
  right: 20px;
  bottom: 17px;
  content: ">";
  color: var(--accent-hot);
  font-size: 1.2rem;
  text-shadow: 0 0 18px rgba(255, 38, 59, 0.54);
}

.quick-link-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-shadow: 0 0 18px rgba(255, 38, 59, 0.44);
}

.quick-link-card--goods span {
  color: #fff;
}

.quick-link-card:hover,
.quick-link-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(120deg, rgba(255, 38, 59, 0.36), rgba(12, 12, 14, 0.94) 62%);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
}

.quick-link-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 4px;
}

.movie {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(105, 7, 17, 0.26), transparent 38%),
    radial-gradient(circle at 72% 48%, rgba(200, 16, 35, 0.22), transparent 28rem),
    #050505;
}

.movie__copy p:not(.eyebrow) {
  max-width: 42ch;
  margin: 22px 0 0;
  color: #d7d2ce;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.32);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow:
    0 30px 96px var(--shadow),
    0 0 42px rgba(105, 7, 17, 0.34);
}

.video-frame::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
  border: 0;
}

.live {
  background: var(--bg-soft);
}

.live-grid {
  display: grid;
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.live-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 112px;
  align-items: stretch;
  min-height: 156px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(200, 16, 35, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(200, 16, 35, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.24);
}

.live-card::after {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-card--soon {
  background:
    linear-gradient(90deg, rgba(200, 16, 35, 0.14), transparent),
    var(--panel);
}

.live-card__date {
  display: grid;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.2), rgba(5, 5, 5, 0.1)),
    rgba(5, 5, 5, 0.28);
  border-right: 1px solid var(--line);
}

.live-card__date span {
  color: var(--accent-hot);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(255, 38, 59, 0.5),
    0 5px 22px #000;
}

.live-card__date small {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-card__body {
  padding: 28px 30px;
}

.live-card__body h3 {
  margin: 4px 0 16px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.live-card__body dl {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
}

.live-card__body div {
  display: flex;
  gap: 7px;
}

.live-card__body dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-card__body dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.live-card__info {
  max-width: 62ch;
  margin: 18px 0 0;
  color: #d7d2ce;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.85;
  text-transform: none;
  white-space: pre-line;
}

.live-card__link {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.16), transparent 52%),
    rgba(5, 5, 5, 0.18);
  border-left: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.live-card__link:hover {
  background:
    linear-gradient(135deg, var(--accent-hot), var(--accent-deep)),
    var(--accent);
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.live-card__link.is-disabled {
  color: rgba(245, 241, 237, 0.42);
  pointer-events: none;
}

.profile {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(200, 16, 35, 0.14), transparent 35%),
    #050505;
}

.profile::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 45%, rgba(5, 5, 5, 0.98)),
    url("assets/lumieres-artist-photo.jpg") center / cover;
  opacity: 0.36;
  filter: grayscale(0.2) contrast(1.18) saturate(0.9);
}

.section__head--stacked {
  display: block;
}

.profile__body {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 74px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: center;
}

.profile__body p {
  margin: 0;
  color: #d7d2ce;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.profile-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 82px var(--shadow);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.member-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  width: min(var(--max), 100%);
  margin: clamp(30px, 5vw, 56px) auto 0;
}

.member-card {
  position: relative;
  --member-focus-x: center;
  --member-shift-y: -5%;
  --member-scale: 1.12;
  min-height: clamp(360px, 29vw, 480px);
  overflow: hidden;
  isolation: isolate;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(105, 7, 17, 0.18);
}

.member-card::before,
.member-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.member-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 28%, rgba(0, 0, 0, 0.9)),
    linear-gradient(110deg, rgba(200, 16, 35, 0.34), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 42px);
}

.member-card::after {
  z-index: 3;
  margin: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 22px rgba(200, 16, 35, 0.16);
  opacity: 0.74;
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--member-focus-x) top;
  filter: saturate(0.92) contrast(1.06);
  transform: translateY(var(--member-shift-y)) scale(var(--member-scale));
  transform-origin: var(--member-focus-x) top;
  transition: transform 520ms ease, filter 520ms ease;
}

.member-card:hover img {
  filter: saturate(1.08) contrast(1.12);
  transform: translateY(var(--member-shift-y)) scale(calc(var(--member-scale) + 0.045));
}

.member-card--seiei {
  --member-focus-x: 48%;
  --member-shift-y: -5%;
  --member-scale: 1.14;
}

.member-card--tetz {
  --member-focus-x: 52%;
  --member-shift-y: -8%;
  --member-scale: 1.17;
}

.member-card--yoshiki {
  --member-focus-x: 62%;
  --member-shift-y: -5%;
  --member-scale: 1.16;
}

.member-card--nek {
  --member-focus-x: 47%;
  --member-shift-y: -7%;
  --member-scale: 1.16;
}

.member-card--ataru {
  --member-focus-x: 52%;
  --member-shift-y: -6%;
  --member-scale: 1.16;
}

.member-card__overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.member-card p {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  line-height: 1.05;
  text-shadow: 0 10px 28px #000;
}

.member-card h3 span {
  display: block;
  margin-top: 7px;
  color: rgba(245, 241, 237, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-card__links {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 7px;
  margin: 0;
}

.member-card__links a {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.18), transparent 58%),
    rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(245, 241, 237, 0.82);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.member-card__links a:hover {
  background:
    linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.member-card__links a::before {
  border-radius: inherit;
}

.social-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.social-icon--x::before {
  position: absolute;
  inset: -4px 0 0;
  content: "X";
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.social-icon--instagram {
  border: 3px solid currentColor;
  border-radius: 7px;
}

.social-icon--instagram::before,
.social-icon--instagram::after {
  position: absolute;
  content: "";
}

.social-icon--instagram::before {
  inset: 3px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.social-icon--instagram::after {
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.social-icon--youtube {
  width: 24px;
  height: 17px;
  background: currentColor;
  border-radius: 5px;
}

.social-icon--youtube::before {
  position: absolute;
  top: 4px;
  left: 9px;
  width: 0;
  height: 0;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #050505;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 38px;
  padding: 8px 13px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.16), transparent 60%),
    rgba(10, 10, 11, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  color: rgba(245, 241, 237, 0.76);
  font: inherit;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.footer-links__icon {
  width: 44px;
  padding-inline: 0;
  clip-path: none;
  border-radius: 999px;
}

.footer-links__icon::before {
  border-radius: inherit;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links button:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 38, 59, 0.3), transparent 60%),
    rgba(18, 18, 20, 0.96);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-links button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.76);
  outline-offset: 3px;
}

.flyer-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  overflow: hidden;
  visibility: hidden;
  opacity: 1;
  pointer-events: none;
  transition: visibility 0s linear 760ms;
}

.flyer-modal.is-open,
.flyer-modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.flyer-modal::before,
.flyer-modal::after {
  position: absolute;
  inset: -22%;
  z-index: 3;
  pointer-events: none;
  content: "";
  opacity: 0;
  filter: blur(34px);
  mix-blend-mode: screen;
  transform: translate3d(-8%, 8%, 0) scale(1.22) rotate(-6deg);
}

.flyer-modal::before {
  background:
    radial-gradient(ellipse at 18% 70%, rgba(255, 255, 255, 0.72), transparent 32%),
    radial-gradient(ellipse at 48% 45%, rgba(238, 238, 238, 0.58), transparent 38%),
    radial-gradient(ellipse at 74% 28%, rgba(170, 170, 170, 0.42), transparent 34%),
    radial-gradient(ellipse at 90% 78%, rgba(200, 16, 35, 0.24), transparent 26%);
}

.flyer-modal::after {
  background:
    linear-gradient(100deg, transparent 0 12%, rgba(255, 255, 255, 0.36) 28%, transparent 46% 54%, rgba(225, 225, 225, 0.26) 70%, transparent 88%),
    radial-gradient(ellipse at 34% 40%, rgba(255, 255, 255, 0.62), transparent 32%),
    radial-gradient(ellipse at 76% 55%, rgba(230, 230, 230, 0.46), transparent 38%),
    radial-gradient(ellipse at 48% 86%, rgba(200, 16, 35, 0.16), transparent 24%);
  transform: translate3d(9%, 1%, 0) scale(1.26) rotate(9deg);
}

.flyer-modal.is-ready::before {
  animation: mist-clear-a 4800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.flyer-modal.is-ready::after {
  animation: mist-clear-b 5600ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.flyer-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 50% 46%, rgba(200, 16, 35, 0.24), transparent 34rem),
    rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 760ms ease;
}

.flyer-modal.is-ready .flyer-modal__backdrop {
  opacity: 1;
}

.flyer-modal__dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  width: min(680px, 100%);
  max-height: calc(100svh - 36px);
  padding: clamp(18px, 3vw, 34px);
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(4, 4, 5, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.26);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow:
    0 0 0 1px rgba(200, 16, 35, 0.2),
    0 30px 110px rgba(0, 0, 0, 0.84),
    inset 0 0 54px rgba(105, 7, 17, 0.28);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(26px) scale(0.975);
  transition:
    opacity 900ms 760ms ease,
    filter 980ms 760ms ease,
    transform 980ms 760ms ease;
}

.flyer-modal.is-ready .flyer-modal__dialog {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.flyer-modal__dialog::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flyer-modal__dialog img {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.56),
    0 0 38px rgba(200, 16, 35, 0.32);
}

.goods-modal__dialog {
  width: min(780px, 100%);
}

.goods-modal__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.goods-modal__visual::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 38, 59, 0.24), transparent 24rem),
    linear-gradient(180deg, rgba(200, 16, 35, 0.16), transparent);
  filter: blur(20px);
}

.goods-modal__visual img {
  width: min(620px, 100%);
  max-height: min(74svh, 920px);
  margin: 0 auto;
  object-fit: contain;
}

.goods-modal__actions a:first-child {
  background:
    linear-gradient(135deg, rgba(255, 38, 59, 0.84), rgba(105, 7, 17, 0.86)),
    var(--accent);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 28px rgba(255, 38, 59, 0.2);
}

.flyer-modal__close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
}

.flyer-modal__close,
.flyer-modal__actions a,
.flyer-modal__actions button {
  min-height: 40px;
  padding: 9px 14px;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(200, 16, 35, 0.26), transparent 56%),
    rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flyer-modal__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.flyer-modal__actions a:hover,
.flyer-modal__actions button:hover,
.flyer-modal__close:hover {
  background:
    linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
  border-color: rgba(255, 255, 255, 0.55);
}

@keyframes mist-clear-a {
  0% {
    opacity: 1;
    transform: translate3d(-16%, 12%, 0) scale(1.34) rotate(-12deg);
  }

  28% {
    opacity: 0.96;
  }

  100% {
    opacity: 0.12;
    transform: translate3d(14%, -10%, 0) scale(1.68) rotate(7deg);
  }
}

@keyframes mist-clear-b {
  0% {
    opacity: 0.9;
    transform: translate3d(16%, 8%, 0) scale(1.28) rotate(12deg);
  }

  34% {
    opacity: 0.78;
  }

  100% {
    opacity: 0.08;
    transform: translate3d(-14%, -14%, 0) scale(1.72) rotate(-7deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flyer-modal,
  .flyer-modal__backdrop,
  .flyer-modal__dialog {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .flyer-modal.is-ready::before,
  .flyer-modal.is-ready::after {
    animation: none;
    opacity: 0.22;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .quick-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .brand-mark {
    width: 132px;
    height: 44px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-118%);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 84svh;
    padding-bottom: 112px;
  }

  .hero__media {
    background-position: center top;
  }

  .hero-alert {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 20px 0;
  }

  .release,
  .movie,
  .flyer,
  .profile__body {
    grid-template-columns: 1fr;
  }

  .flyer-card {
    width: min(360px, 100%);
  }

  .flyer-modal__dialog {
    grid-template-columns: 1fr;
  }

  .flyer-modal__dialog img {
    justify-self: center;
    width: min(390px, 100%);
  }

  .flyer-modal__actions {
    justify-content: stretch;
  }

  .flyer-modal__actions a,
  .flyer-modal__actions button {
    flex: 1 1 160px;
  }

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

  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    min-height: min(560px, 72vw);
    --member-shift-y: -2%;
    --member-scale: 1.06;
  }

  .release__art {
    width: min(430px, 100%);
  }

  .live-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .live-card__link {
    grid-column: 1 / -1;
    min-height: 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 118px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: calc(var(--header-h) + clamp(250px, 67vw, 340px) + 28px) 28px 34px;
  }

  .hero__media {
    top: var(--header-h);
    bottom: auto;
    height: clamp(250px, 67vw, 340px);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.18) 30%, rgba(5, 5, 5, 0.72) 54%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.42));
  }

  .hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hero__content {
    width: 100%;
  }

  .hero__actions {
    margin-top: 0;
  }

  .hero-alert {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero__actions,
  .store-links,
  .listen-links,
  .quick-link-grid {
    display: grid;
  }

  .button,
  .store-links a,
  .listen-links a,
  .quick-link-card {
    width: 100%;
  }

  .listen-links {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding-inline: 18px;
  }

  .section__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section h2 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .release__content h2,
  .movie__copy h2,
  .flyer__content h2 {
    max-width: none;
  }

  .flyer-modal {
    align-items: start;
  }

  .flyer-modal__dialog {
    max-height: calc(100svh - 24px);
    padding-top: 56px;
  }

  .goods-modal__visual img {
    max-height: 68svh;
  }

  .live-card {
    grid-template-columns: 1fr;
  }

  .live-card__date {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .live-card__body {
    padding: 24px 20px;
  }

  .member-directory {
    grid-template-columns: 1fr;
  }

  .member-card {
    min-height: min(560px, 132vw);
    --member-shift-y: 0%;
    --member-scale: 1.02;
  }
}
