:root {
  --bg: #ffffff;
  --ink: #111114;
  --muted: #60606a;
  --line: rgba(17, 17, 20, 0.14);
  --panel: #ffffff;
  --panel-2: #f3f3f1;
  --orange: #f26b21;
  --cyan: #007e9c;
  --red: #d9353f;
  --yellow: #c98b00;
  --dark: #050507;
  --light-shadow: 0 18px 55px rgba(17, 17, 20, 0.12);
  --dark-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-nav a,
.site-nav .nav-disabled {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav .nav-disabled {
  color: rgba(96, 96, 106, 0.54);
  cursor: default;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
}

.hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: saturate(0.94) contrast(1) brightness(1.02);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 64% 46%, rgba(255, 255, 255, 0.6), transparent 34%),
    radial-gradient(circle at 74% 24%, rgba(0, 126, 156, 0.16), transparent 34%),
    radial-gradient(circle at 86% 74%, rgba(242, 107, 33, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.18);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-self: center;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 62px;
  color: var(--ink);
}

.hero-main {
  text-align: center;
}

.hero-poster {
  display: block;
  width: min(100%, 390px);
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--light-shadow);
}

.hero-poster img {
  width: 100%;
  height: auto;
}

.hero-logo {
  width: min(780px, 100%);
  margin: 0 auto 22px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
}

.hero-copy,
.page-hero p,
.section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy {
  color: var(--muted);
  margin-inline: auto;
}

.hero .button-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
}

.hero .button-linkout {
  border-color: rgba(0, 126, 156, 0.4);
  color: var(--cyan);
  background: rgba(0, 126, 156, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
}

.button-ghost {
  background: rgba(17, 17, 20, 0.06);
}

.button-linkout {
  border-color: rgba(0, 126, 156, 0.4);
  color: var(--cyan);
  background: rgba(0, 126, 156, 0.08);
}

.button-disabled {
  color: rgba(96, 96, 106, 0.58);
  background: rgba(17, 17, 20, 0.035);
  cursor: default;
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.band-ink {
  background:
    linear-gradient(90deg, rgba(242, 107, 33, 0.1), transparent 42%),
    #f7f7f4;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
}

.section h2 {
  margin: 0;
  max-width: 760px;
  font-size: 2.2rem;
  line-height: 1.18;
}

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

.day-strip a {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111114;
  text-decoration: none;
  box-shadow: var(--light-shadow);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.day-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.day-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.day-strip a:hover,
.day-strip a:focus-visible {
  z-index: 2;
  border-color: rgba(0, 126, 156, 0.72);
  box-shadow: 0 18px 34px rgba(17, 17, 20, 0.2);
  transform: translateY(-6px);
}

.day-strip a:hover img,
.day-strip a:focus-visible img {
  transform: none;
}

.day-strip span {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.52);
}

.day-strip span small {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.day-strip .archive-image-card {
  background:
    linear-gradient(135deg, rgba(0, 126, 156, 0.38), transparent 54%),
    linear-gradient(315deg, rgba(242, 107, 33, 0.36), transparent 52%),
    #08080a;
}

.day-strip .archive-image-card img {
  top: 42%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 42%;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
  border-radius: 6px;
}

.day-strip .archive-image-card:hover img,
.day-strip .archive-image-card:focus-visible img {
  transform: translate(-50%, -50%);
}

.day-strip .archive-image-card span {
  align-self: end;
  padding-bottom: 24px;
  font-size: 2rem;
}

.day-strip .archive-image-card span small {
  font-size: 0.86rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.preview-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(242, 107, 33, 0.13), transparent 48%),
    linear-gradient(20deg, rgba(0, 126, 156, 0.1), transparent 58%),
    var(--panel);
  box-shadow: var(--light-shadow);
}

.preview-grid span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 950;
}

.preview-grid h3 {
  margin: 36px 0 12px;
  font-size: 1.9rem;
  line-height: 1;
}

.artist-marquee {
  --marquee-card-width: 154px;
  --marquee-gap: 14px;
  --marquee-offset: 7px;
  display: grid;
  gap: 16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
  padding: 10px 0 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  animation-duration: 82s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.marquee-row-forward .marquee-track {
  animation-name: marquee-left-to-right;
}

.marquee-row-reverse .marquee-track {
  animation-name: marquee-right-to-left;
}

.marquee-artist-card {
  flex: 0 0 var(--marquee-card-width);
  width: var(--marquee-card-width);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--light-shadow);
  text-decoration: none;
}

.marquee-artist-card .artist-art {
  aspect-ratio: 2 / 3;
}

.marquee-artist-card.has-photo .artist-art {
  background: #111114;
}

.marquee-artist-card.has-photo .artist-art::before,
.marquee-artist-card.has-photo .artist-art::after {
  display: none;
}

.marquee-artist-card .artist-photo {
  transition: transform 240ms ease;
}

.marquee-artist-card:hover .artist-photo,
.marquee-artist-card:focus-visible .artist-photo {
  transform: scale(1.04);
}

.marquee-artist-card[data-slug="catbeat-feat-gabu"] .artist-photo,
.marquee-artist-card[data-slug="silifra"] .artist-photo {
  object-fit: contain;
  object-position: center;
}

@keyframes marquee-right-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--marquee-offset)));
  }
}

@keyframes marquee-left-to-right {
  from {
    transform: translateX(calc(-50% - var(--marquee-offset)));
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .marquee-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .marquee-row::-webkit-scrollbar {
    display: none;
  }

  .marquee-track {
    animation: none;
  }
}

.content-section {
  background: #ffffff;
}

.content-section .section-inner {
  width: min(1240px, calc(100% - 40px));
}

.content-feature-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

.content-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid .content-card:nth-child(n + 5) {
  transform: translateX(calc(50% + 8px));
}

.content-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111114;
  box-shadow: var(--light-shadow);
}

a.content-card {
  color: inherit;
  text-decoration: none;
}

a.content-card:hover,
a.content-card:focus-visible {
  border-color: rgba(0, 126, 156, 0.46);
  outline: none;
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-card-soon {
  background:
    radial-gradient(circle at 28% 22%, rgba(0, 126, 156, 0.28), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(242, 107, 33, 0.2), transparent 34%),
    linear-gradient(145deg, #15151a, #050507);
}

.content-card-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/tenrock-square-logo.png") center / 42% no-repeat;
  opacity: 0.12;
}

.content-card-soon span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.45vw, 1.28rem);
  font-weight: 950;
}

.gallery-viewer-section {
  min-height: calc(100svh - 72px);
  background: #ffffff;
}

.gallery-viewer-section .section-inner {
  width: min(1240px, calc(100% - 40px));
}

.gallery-viewer-section h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.gallery-empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f7f7f8;
  font-size: 1.15rem;
  font-weight: 900;
}

.gallery-card {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111114;
  cursor: zoom-in;
  box-shadow: var(--light-shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

body[data-gallery="ten-logo"] .gallery-grid {
  display: block;
  column-width: 220px;
  column-gap: 14px;
}

body[data-gallery="ten-logo"] .gallery-card {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 14px;
  aspect-ratio: auto;
  break-inside: avoid;
  background: #0b0b0e;
}

body[data-gallery="ten-logo"] .gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body[data-gallery="ten-logo"] .gallery-card:hover img,
body[data-gallery="ten-logo"] .gallery-card:focus-visible img {
  transform: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card:focus-visible {
  border-color: var(--cyan);
  outline: 3px solid rgba(0, 126, 156, 0.2);
  outline-offset: 2px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 54px 22px 24px;
  background: rgba(5, 5, 7, 0.9);
}

.gallery-modal-figure {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.gallery-modal-figure img {
  max-width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--dark-shadow);
}

.gallery-modal-figure figcaption {
  color: #ffffff;
  font-weight: 900;
}

.kawasaki-section {
  min-height: calc(100svh - 72px);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 126, 156, 0.08), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(242, 107, 33, 0.08), transparent 24%),
    #ffffff;
}

.kawasaki-section .section-inner {
  width: min(1120px, calc(100% - 40px));
}

.kawasaki-section h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1;
}

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

.episode-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--light-shadow);
}

.episode-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111114;
  color: inherit;
  text-decoration: none;
}

.episode-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 30%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.episode-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.episode-thumbnail:hover::after,
.episode-thumbnail:focus-visible::after {
  opacity: 1;
}

.episode-thumbnail:hover img,
.episode-thumbnail:focus-visible img {
  transform: scale(1.03);
}

.episode-thumbnail:focus-visible {
  outline: 3px solid rgba(0, 126, 156, 0.24);
  outline-offset: 3px;
}

.episode-detail {
  min-width: 0;
}

.episode-detail h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  line-height: 1;
}

.episode-detail p {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.episode-artists {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.episode-artists li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 20, 0.035);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.15;
}

.episode-artists a {
  display: block;
  margin: -6px -9px;
  padding: 6px 9px;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.episode-artists a:hover,
.episode-artists a:focus-visible {
  background: rgba(0, 143, 168, 0.08);
  color: var(--cyan);
}

.episode-artists a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.gallery-modal-close,
.gallery-modal-nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus-visible,
.gallery-modal-close:hover,
.gallery-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

body.is-gallery-modal-open {
  overflow: hidden;
}

.map-section {
  padding-top: 76px;
  background: #ffffff;
}

.map-section .section-inner {
  width: min(1360px, calc(100% - 40px));
}

.map-section .section-heading {
  margin-bottom: 20px;
}

.map-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--light-shadow);
}

.map-figure img {
  width: 100%;
  height: auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 360px;
  margin: 0 auto;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.compact-hero {
  min-height: 340px;
}

.artist-tools {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

body[data-page="artists"] .artist-tools,
body[data-page="timetable"] .timetable-section {
  padding-top: 48px;
}

.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 10;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 26px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(17, 17, 20, 0.045);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.filter-button.is-active {
  border-color: var(--orange);
  color: #ffffff;
  background: var(--orange);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.artist-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--light-shadow);
}

.artist-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 24%, var(--tile-a), transparent 32%),
    linear-gradient(145deg, var(--tile-b), #08080b 66%);
}

.artist-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/tenrock-square-logo.png") center / 68% no-repeat;
  opacity: 0.13;
}

.artist-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 7, 0.76), transparent 52%);
}

.artist-card.has-photo .artist-art {
  aspect-ratio: 2 / 3;
  background: #111114;
}

.artist-card.has-photo .artist-art::before,
.artist-card.has-photo .artist-art::after {
  display: none;
}

.artist-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-card[data-slug="catbeat-feat-gabu"] .artist-photo,
.artist-card[data-slug="silifra"] .artist-photo {
  object-fit: contain;
  object-position: center;
}

.artist-initial {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 950;
}

.artist-body {
  padding: 14px;
}

.artist-day {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
}

.artist-name {
  display: block;
  min-height: 52px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.artist-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.artist-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 20, 0.04);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 950;
}

.artist-link img {
  width: 15px;
  height: 15px;
}

.artist-link span {
  line-height: 1;
}

.artist-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.artist-link.is-disabled {
  border-color: rgba(17, 17, 20, 0.12);
  background: rgba(17, 17, 20, 0.08);
  color: rgba(17, 17, 20, 0.34);
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.58;
}

.artist-link.is-disabled:hover {
  border-color: rgba(17, 17, 20, 0.12);
  color: rgba(17, 17, 20, 0.34);
}

.timetable-hero {
  min-height: 320px;
}

.timetable-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.lineup-day-column {
  justify-self: center;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--light-shadow);
  scroll-margin-top: 100px;
}

.lineup-day-head {
  min-height: 136px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(242, 107, 33, 0.16), transparent 56%),
    var(--panel-2);
}

.lineup-day-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lineup-day-head .lineup-day-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
}

.lineup-day-head .lineup-day-label em {
  color: var(--cyan);
  font-style: normal;
}

.lineup-day-head h2 {
  margin: 18px 0 8px;
  font-size: 2.1rem;
  line-height: 1;
}

.lineup-day-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.lineup-day-title-row h2 {
  margin: 0;
}

.timetable-day-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.timetable-day-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.timetable-day-switch.is-active {
  border-color: var(--orange);
  color: #ffffff;
  background: var(--orange);
}

.timetable-day-switch:not(.is-active):hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.timetable-day-body {
  padding: 14px;
  background: linear-gradient(180deg, rgba(17, 17, 20, 0.02), rgba(17, 17, 20, 0.05));
}

.timetable-sync-grid {
  display: grid;
  gap: 10px;
}

.timetable-sync-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.timetable-tent {
  --tent-color: var(--ink);
  --tent-soft: rgba(17, 17, 20, 0.06);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.timetable-main-slot {
  min-width: 0;
}

.timetable-okan-panel {
  min-width: 0;
}

.timetable-main-slot.is-continuation,
.timetable-okan-panel.is-continuation {
  border-left: 4px solid var(--tent-color);
}

.timetable-tent-red {
  --tent-color: var(--red);
  --tent-soft: rgba(217, 53, 63, 0.08);
}

.timetable-tent-blue {
  --tent-color: #28a7df;
  --tent-soft: rgba(40, 167, 223, 0.09);
}

.timetable-tent-green {
  --tent-color: #08a85a;
  --tent-soft: rgba(8, 168, 90, 0.09);
}

.timetable-tent-okan {
  --tent-color: #b56b13;
  --tent-soft: rgba(181, 107, 19, 0.11);
}

.timetable-tent h3 {
  margin: 0;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--tent-color);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.timetable-slot-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 16px 12px;
  list-style: none;
  background: linear-gradient(90deg, var(--tent-soft), transparent 48%);
}

.timetable-entry {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  position: relative;
  min-width: 0;
  padding: 6px 0;
}

.timetable-entry-time {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 28px;
  color: color-mix(in srgb, var(--tent-color) 88%, var(--ink));
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.25;
  white-space: nowrap;
}

.timetable-entry.has-time .timetable-entry-time {
  justify-items: start;
}

.timetable-entry:not(.has-time) .timetable-entry-time {
  align-self: stretch;
  place-items: center;
  min-height: 100%;
}

.timetable-entry:not(.has-time) .timetable-entry-time::before {
  content: "⌄\A⌄\A⌄";
  color: color-mix(in srgb, var(--tent-color) 58%, transparent);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 0.58;
  text-align: center;
  white-space: pre;
}

.timetable-entry-name {
  display: block;
  min-width: 0;
}

.timetable-artist-link,
.timetable-side-act,
.timetable-event {
  display: block;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.timetable-event {
  color: #9b6c00;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.timetable-dj-time {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  min-width: 0;
  flex-wrap: wrap;
}

.timetable-dj-time .timetable-event {
  display: inline-block;
}

.timetable-dj-link {
  display: inline-block;
}

.timetable-artist-link:hover {
  color: var(--tent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.timetable-entry.is-subheadliner {
  padding-top: 9px;
  padding-bottom: 9px;
}

.timetable-entry.is-subheadliner .timetable-artist-link {
  color: color-mix(in srgb, var(--ink) 82%, var(--tent-color));
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.18;
}

.timetable-entry.is-closer {
  padding-top: 14px;
  padding-bottom: 14px;
}

.timetable-entry.is-closer .timetable-artist-link {
  color: var(--tent-color);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.06;
}

.timetable-okan-slot {
  display: grid;
  min-width: 0;
}

.timetable-okan-slot:not(.has-okan) {
  min-height: 1px;
}

.archive-section {
  min-height: calc(100svh - 72px);
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 126, 156, 0.1), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(242, 107, 33, 0.09), transparent 28%),
    #ffffff;
}

.archive-inner {
  width: min(1040px, calc(100% - 40px));
}

.archive-heading {
  margin-bottom: 28px;
}

.archive-heading h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1;
}

.archive-day-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(720px, 100%);
  margin-bottom: 14px;
}

.archive-day-tab {
  min-height: 52px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 20, 0.045);
  color: var(--muted);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.archive-day-tab span {
  color: var(--cyan);
}

.archive-day-tab:hover,
.archive-day-tab:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 126, 156, 0.08);
}

.archive-day-tab.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
}

.archive-day-tab.is-active span {
  color: #ffffff;
}

.archive-player {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--light-shadow);
}

.archive-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #08080a;
}

.archive-player-frame iframe,
.archive-player-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
}

.archive-player-frame iframe {
  display: block;
}

.archive-player-frame iframe[hidden],
.archive-player-placeholder[hidden] {
  display: none;
}

.archive-player-placeholder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  place-content: center;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 126, 156, 0.24), transparent 48%),
    linear-gradient(315deg, rgba(242, 107, 33, 0.22), transparent 50%),
    #08080a;
  color: #ffffff;
}

.archive-player-placeholder img {
  width: clamp(76px, 12vw, 132px);
  border-radius: 6px;
}

.archive-player-placeholder p {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 950;
}

.archive-player-placeholder span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.archive-player-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 22px 20px;
}

.archive-player-meta p {
  margin: 0;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
}

.archive-player-meta h2 {
  margin: 0;
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.site-footer .footer-logo {
  width: min(360px, 46vw);
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  font-weight: 950;
  text-align: right;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 20, 0.04);
}

.footer-socials a:hover {
  border-color: var(--cyan);
  background: rgba(0, 126, 156, 0.08);
}

.footer-socials img {
  width: 22px;
  height: 22px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 18px;
  }

  .site-nav {
    width: 100%;
  }

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

  .hero-content {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 28px;
    width: min(100% - 36px, 1040px);
  }

  .hero-poster {
    width: min(100%, 290px);
  }

  .hero-logo {
    width: min(620px, 100%);
  }

  .split-layout,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    width: 128px;
    height: 128px;
  }

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

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

  .content-grid .content-card:nth-child(n + 5) {
    transform: none;
  }

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

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

  .artist-marquee {
    --marquee-card-width: 136px;
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .lineup-day-column {
    scroll-snap-align: unset;
  }

  .timetable-sync-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timetable-sync-row.has-okan-event {
    grid-template-columns: minmax(0, 1.32fr) minmax(140px, 0.68fr);
    gap: 8px;
  }

  .timetable-sync-row.has-okan-event .timetable-okan-slot {
    min-width: 0;
  }

  .timetable-sync-row.has-okan-event .timetable-okan-panel {
    min-width: 0;
  }

  .timetable-sync-row.has-okan-event .timetable-side-act {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .timetable-okan-slot:not(.has-okan) {
    display: none;
  }

  .filter-bar {
    top: 112px;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.52)),
      radial-gradient(circle at 74% 20%, rgba(0, 126, 156, 0.15), transparent 35%),
      radial-gradient(circle at 20% 82%, rgba(242, 107, 33, 0.16), transparent 34%),
      rgba(255, 255, 255, 0.2);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100% - 28px, 1120px);
    padding: 44px 0 46px;
  }

  .hero-poster {
    justify-self: center;
    width: min(86vw, 320px);
  }

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

  .hero-logo {
    margin-bottom: 22px;
  }

  .hero-actions,
  .section-heading,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  body[data-page="artists"] .artist-tools,
  body[data-page="timetable"] .timetable-section {
    padding-top: 32px;
  }

  .page-hero {
    min-height: auto;
    padding: 46px 0;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .preview-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .content-section .section-inner {
    width: min(100% - 28px, 1240px);
  }

  .content-feature-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .content-feature-grid {
    margin-bottom: 12px;
  }

  .gallery-viewer-section .section-inner {
    width: min(100% - 28px, 1240px);
  }

  .kawasaki-section .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .episode-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .episode-card {
    gap: 14px;
    padding: 12px;
  }

  .episode-artists {
    gap: 7px;
  }

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

  .gallery-modal {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 58px 14px 18px;
  }

  .gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-modal-prev {
    left: 10px;
  }

  .gallery-modal-next {
    right: 10px;
  }

  .gallery-modal-figure img {
    max-height: 76svh;
  }

  .artist-marquee {
    --marquee-card-width: 118px;
    --marquee-gap: 12px;
    --marquee-offset: 6px;
    gap: 12px;
  }

  .day-strip a {
    min-height: 220px;
  }

  .day-strip {
    grid-template-columns: 1fr;
  }

  .archive-inner {
    width: min(100% - 28px, 1040px);
  }

  .archive-heading {
    margin-bottom: 22px;
  }

  .archive-heading h1 {
    font-size: 2.25rem;
  }

  .archive-day-tabs {
    gap: 6px;
  }

  .archive-day-tab {
    min-height: 48px;
    padding: 7px 6px;
    font-size: 0.78rem;
  }

  .archive-player-placeholder {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 18px;
    text-align: center;
  }

  .archive-player-placeholder img {
    width: 70px;
  }

  .archive-player-placeholder p {
    font-size: 1.1rem;
  }

  .archive-player-placeholder span {
    font-size: 0.78rem;
  }

  .archive-player-meta {
    display: grid;
    gap: 5px;
    padding: 14px 16px 16px;
  }

  .archive-player-meta h2 {
    font-size: 1.12rem;
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
    width: auto;
  }

  .lineup-day-head {
    min-height: 122px;
    padding: 20px 18px 18px;
  }

  .lineup-day-head h2 {
    font-size: 1.58rem;
  }

  .lineup-day-title-row {
    align-items: stretch;
    gap: 12px;
    margin-top: 16px;
  }

  .timetable-day-switcher {
    justify-content: flex-start;
    width: 100%;
  }

  .timetable-day-switch {
    flex: 1 1 calc(33.333% - 6px);
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .timetable-day-body {
    gap: 12px;
    padding: 12px;
  }

  .timetable-slot-list {
    padding: 8px 10px 10px;
  }

  .timetable-entry {
    grid-template-columns: 4.05rem minmax(0, 1fr);
    gap: 10px;
    padding: 6px 0;
  }

  .timetable-entry-time {
    min-height: 24px;
    font-size: 0.68rem;
  }

  .timetable-entry:not(.has-time) .timetable-entry-time::before {
    font-size: 0.76rem;
  }

  .timetable-artist-link,
  .timetable-side-act,
  .timetable-event {
    font-size: 0.86rem;
  }

  .timetable-entry.is-subheadliner .timetable-artist-link {
    font-size: 0.98rem;
  }

  .timetable-entry.is-closer .timetable-artist-link {
    font-size: 1.22rem;
  }

  .timetable-sync-row.has-okan-event {
    grid-template-columns: minmax(0, 1.36fr) minmax(112px, 0.64fr);
    gap: 6px;
  }

  .timetable-sync-row.has-okan-event .timetable-slot-list {
    padding: 7px 8px 9px;
  }

  .timetable-sync-row.has-okan-event .timetable-entry {
    grid-template-columns: 2.95rem minmax(0, 1fr);
    gap: 6px;
    padding: 5px 0;
  }

  .timetable-sync-row.has-okan-event .timetable-entry-time {
    font-size: 0.58rem;
  }

  .timetable-sync-row.has-okan-event .timetable-artist-link,
  .timetable-sync-row.has-okan-event .timetable-side-act,
  .timetable-sync-row.has-okan-event .timetable-event {
    font-size: 0.74rem;
    line-height: 1.22;
  }

  .timetable-sync-row.has-okan-event .timetable-entry.is-subheadliner .timetable-artist-link {
    font-size: 0.86rem;
  }

  .timetable-sync-row.has-okan-event .timetable-entry.is-closer .timetable-artist-link {
    font-size: 0.92rem;
  }

  .site-footer .footer-logo {
    width: 100%;
  }

  .footer-content,
  .site-footer p {
    justify-items: start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}
