:root {
  --bg: #060606;
  --bg-rail: #131313;
  --bg-drawer: rgba(10, 10, 10, 0.97);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.09);
  --accent: #79de5a;
  --rail-width: 104px;
  --frame-gap: 18px;
  --frame-inset-top: var(--frame-gap);
  --frame-inset-right: var(--frame-gap);
  --frame-inset-bottom: var(--frame-gap);
  --frame-inset-left: var(--frame-gap);
  --section-width: min(1220px, calc(100vw - var(--rail-width) - (var(--frame-gap) * 2)));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  background: #050505;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100svh;
}

.social-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--rail-width);
  padding: 24px 0 30px;
  background: var(--bg-rail);
  border-right: 1px solid var(--line-soft);
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  animation: socialRailEnter 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

@keyframes socialRailEnter {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rail-logo {
  width: 44px;
  height: 44px;
}

.rail-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.social-links {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 64px;
}

.social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
}

.social-link i {
  width: 28px;
  font-size: 28px;
  line-height: 1;
}

.social-link--profile {
  width: 52px;
  height: 52px;
  overflow: visible;
}

.social-link__avatar {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.social-link__badge {
  position: absolute;
  right: -3px;
  bottom: -5px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: rgba(12, 12, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.social-link__badge i {
  width: auto;
  font-size: 13px;
  line-height: 1;
}

.social-link--profile:hover .social-link__badge,
.social-link--profile:focus-visible .social-link__badge {
  color: var(--accent);
  transform: translate(1px, -1px);
}

.rail-index {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: auto;
}

.rail-index-number {
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.rail-index-lines {
  display: grid;
  gap: 10px;
}

.rail-index-lines i {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.rail-index-lines i.is-active {
  width: 30px;
  background: #ffffff;
}

.page-frame {
  position: fixed;
  top: var(--frame-inset-top);
  right: var(--frame-inset-right);
  bottom: var(--frame-inset-bottom);
  left: var(--frame-inset-left);
  z-index: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  pointer-events: none;
}

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

.frame-media,
.video-fallback,
.frame-media iframe,
.frame-shade,
.frame-grain {
  position: absolute;
  inset: 0;
}

.video-fallback {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.18), rgba(4, 4, 4, 0.65)),
    linear-gradient(120deg, rgba(118, 72, 29, 0.48), rgba(18, 18, 18, 0.42));
}

.frame-media iframe {
  top: 50%;
  left: 50%;
  width: min(
    calc(100vw - var(--frame-inset-left) - var(--frame-inset-right)),
    calc((100svh - var(--frame-inset-top) - var(--frame-inset-bottom)) * 16 / 9)
  );
  height: min(
    calc(100svh - var(--frame-inset-top) - var(--frame-inset-bottom)),
    calc((100vw - var(--frame-inset-left) - var(--frame-inset-right)) * 9 / 16)
  );
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.8;
  pointer-events: none;
  filter: saturate(0.86) contrast(0.92) brightness(0.54);
}

.frame-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.06) 24%, rgba(0, 0, 0, 0.12) 100%);
}

.frame-grain {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.92) 0.55px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.menu-button {
  position: fixed;
  top: 30px;
  right: 28px;
  z-index: 50;
  display: grid;
  place-items: center;
  gap: 7px;
  width: 64px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 38px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-content {
  position: relative;
  z-index: 2;
  margin-left: var(--rail-width);
  padding: var(--frame-gap);
}

.hero-section,
.content-section {
  width: 100%;
  max-width: var(--section-width);
  margin: 0 auto;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - (var(--frame-gap) * 2));
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.hero-logo {
  width: clamp(150px, 18vw, 240px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 16px rgba(0, 0, 0, 0.16),
    0 20px 80px rgba(0, 0, 0, 0.34);
}

.hero-subtitle,
.section-label,
.drawer-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.drawer-link,
.disc-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3.2rem, 7.8vw, 5.6rem);
  font-weight: 800;
}

.content-section {
  position: relative;
  padding: clamp(56px, 9vw, 96px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 800;
}

.news-layout {
  display: grid;
  gap: clamp(32px, 5vw, 46px);
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.news-copy {
  gap: 14px;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px clamp(18px, 2.4vw, 34px);
  padding-bottom: 8px;
}

.news-tabs__button {
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.35s ease;
}

.news-tabs__button:hover,
.news-tabs__button:focus-visible,
.news-tabs__button.is-active {
  color: #fff;
  transform: translateY(-2px);
}

.news-slider {
  width: 100%;
}

.news-slider__viewport {
  overflow: hidden;
}

.news-slider__track {
  display: flex;
  transition: transform 0.82s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.news-panel {
  flex: 0 0 100%;
  min-width: 0;
}

.news-list {
  display: grid;
}

.news-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.news-item__link {
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 24px) 0;
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(0);
  transition: color 0.7s cubic-bezier(0.33, 1, 0.68, 1), transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-item__link:hover,
.news-item__link:focus-visible {
  color: #fff;
  transform: translateX(12px);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.news-item__date {
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.94rem, 1.16vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.news-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  color: #121212;
  background: #f3f3f3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-item__title {
  min-width: 0;
  color: inherit;
  line-height: 1.85;
}

.section-feed {
  display: grid;
  gap: 28px;
  padding-top: 10px;
}

.feed-item {
  display: grid;
  gap: 10px;
}

.feed-item__link {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feed-item__link:hover,
.feed-item__link:focus-visible {
  color: var(--accent);
  border-color: rgba(121, 222, 90, 0.36);
  transform: translateX(4px);
}

.feed-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.feed-text,
.profile-texts p,
.drawer-socials a,
.drawer-note p,
.disc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.feature-release {
  max-width: 260px;
}

.release-cover {
  display: grid;
  place-items: center;
  min-height: 144px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.74), rgba(18, 67, 76, 0.74)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.release-cover span {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.release-cover small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.section-arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.section-arrow span {
  position: relative;
  display: block;
  width: 170px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.section-arrow span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.profile-section {
  display: grid;
  gap: 28px;
}

.profile-head {
  display: grid;
  gap: 16px;
}

.profile-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: min(52vw, 460px);
  background:
    linear-gradient(135deg, rgba(14, 19, 23, 0.74), rgba(143, 92, 40, 0.4)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-visual--has-image {
  background: #040404;
}

.profile-visual__image,
.profile-visual__shade {
  position: absolute;
  inset: 0;
}

.profile-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-visual__shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.18));
}

.profile-visual-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.profile-visual-copy img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-texts {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

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

.member-card {
  display: grid;
  gap: 16px;
  align-content: end;
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.member-card span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.member-card strong {
  font-size: 1.04rem;
  font-weight: 700;
}

.color-white {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.color-green {
  background: linear-gradient(180deg, rgba(73, 143, 72, 0.18), rgba(255, 255, 255, 0.04));
}

.color-orange {
  background: linear-gradient(180deg, rgba(197, 126, 65, 0.18), rgba(255, 255, 255, 0.04));
}

.color-blue {
  background: linear-gradient(180deg, rgba(76, 118, 197, 0.18), rgba(255, 255, 255, 0.04));
}

.discography-slider {
  position: relative;
  margin-top: 34px;
}

.discography-slider__viewport {
  overflow: hidden;
  padding: 0 clamp(52px, 6vw, 84px);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.discography-slider__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.4vw, 28px);
  transition: transform 0.48s ease;
  will-change: transform;
}

.disc-slide {
  flex: 0 0 min(27vw, 320px);
  opacity: 0.42;
  transform: scale(0.88);
  transition: transform 0.48s ease, opacity 0.48s ease, filter 0.48s ease;
}

.disc-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.disc-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.disc-card > a {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: 100%;
}

.disc-card span {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.disc-art {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.disc-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disc-art span {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.disc-card-green .disc-art {
  background: linear-gradient(135deg, #d2ff35, #1f9d53);
  color: #071102;
}

.disc-card-white .disc-art {
  background: linear-gradient(135deg, #f6f0f8, #d8d3f4);
  color: #1d1621;
}

.disc-card-pearl .disc-art {
  background: linear-gradient(135deg, #efe8dc, #d1c0b2);
  color: #2e251f;
}

.disc-card-dark .disc-art {
  background: linear-gradient(135deg, #171717, #464646);
  color: #f5f5f5;
}

.disc-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.section-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.section-actions--left {
  justify-content: flex-start;
}

.section-actions--center {
  justify-content: center;
}

.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.22);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.section-button:hover,
.section-button:focus-visible {
  color: #050505;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.discography-slider__nav,
.movie-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.64);
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.discography-slider__nav:hover,
.discography-slider__nav:focus-visible,
.movie-slider__nav:hover,
.movie-slider__nav:focus-visible {
  background: rgba(0, 0, 0, 0.82);
}

.discography-slider__nav:focus-visible,
.movie-slider__nav:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.discography-slider__nav[disabled],
.movie-slider__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}

.discography-slider__nav--prev {
  left: 0;
}

.discography-slider__nav--next {
  right: 0;
}

.discography-slider__nav-symbol,
.movie-slider__nav-symbol {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.movie-section {
  overflow: hidden;
}

.movie-slider {
  position: relative;
  margin-top: 34px;
}

.movie-slider__viewport {
  overflow: hidden;
  padding: 0 clamp(52px, 6vw, 84px);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.discography-slider.is-dragging .discography-slider__viewport,
.movie-slider.is-dragging .movie-slider__viewport {
  cursor: grabbing;
}

.movie-slider__track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  transition: transform 0.48s ease;
  will-change: transform;
}

.movie-slide {
  flex: 0 0 min(72vw, 860px);
  opacity: 0.34;
  filter: saturate(0.72) brightness(0.74);
  transform: scale(0.86);
  transition: transform 0.48s ease, opacity 0.48s ease, filter 0.48s ease;
}

.movie-slide.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.movie-slide__link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.movie-slide__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.movie-slide__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.16));
}

.movie-slide__badge {
  position: absolute;
  left: clamp(18px, 2.6vw, 30px);
  bottom: clamp(18px, 2.6vw, 28px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.movie-slide__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(82px, 8vw, 116px);
  aspect-ratio: 1;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.movie-slide__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.movie-slider__nav--prev {
  left: 0;
}

.movie-slider__nav--next {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 54;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  align-items: stretch;
  padding: clamp(22px, 3.2vw, 34px) clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 118, 50, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(4, 17, 7, 0.98));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition:
    opacity 0.28s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.62s;
  overflow: hidden auto;
}

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

.site-drawer::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 20%),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.03), transparent 18%);
}

.site-drawer::after {
  content: none;
}

.drawer-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(18px, 3vw, 26px);
  width: 100%;
  min-height: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.drawer-panel {
  opacity: 0;
  transform: translate3d(42px, 0, 0);
  transition:
    opacity 0.5s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-panel {
  transition-delay: 0.1s;
}

.drawer-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: right;
}

.drawer-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-height: 0;
  padding-top: clamp(6px, 0vw, 16px);
}

.drawer-nav-group {
  display: grid;
  justify-items: end;
  gap: 18px;
  width: min(100%, 700px);
  margin-top: 50px;
}

.drawer-nav {
  display: grid;
  justify-items: end;
  gap: clamp(6px, 1vw, 12px);
  margin-bottom: 20px;
}

.drawer-link {
  position: relative;
  width: auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(3.5rem, 4vw, 3.6rem);
  line-height: 0.96;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: right;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link:hover,
.drawer-link:focus-visible {
  opacity: 0.74;
  transform: translateX(-8px);
}

.drawer-link.is-active {
  opacity: 1;
}

.drawer-meta {
  display: grid;
  justify-items: end;
  width: 100%;
}

.drawer-block {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.drawer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.drawer-social-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  transition: opacity 0.3s ease, transform 0.35s ease, background-color 0.3s ease;
}

.drawer-social-icon i {
  font-size: 1.55rem;
  line-height: 1;
}

.drawer-social-icon:hover,
.drawer-social-icon:focus-visible {
  opacity: 0.78;
  transform: translateX(-6px);
}

body.menu-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .site-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

body.menu-open .drawer-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .drawer-panel {
    gap: 32px;
  }

  .drawer-nav-group {
    width: 100%;
    margin-top: 24px;
  }

  .drawer-nav {
    width: 100%;
  }

  .drawer-link {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .drawer-meta {
    margin-top: 28px;
  }

  .news-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-tabs {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .news-item__link {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .disc-slide {
    flex-basis: min(38vw, 320px);
  }

  .movie-slide {
    flex-basis: min(78vw, 700px);
  }
}

@media (max-width: 760px) {
  :root {
    --rail-width: 0px;
    --frame-gap: 12px;
    --frame-inset-top: 12px;
    --frame-inset-right: 12px;
    --frame-inset-bottom: 94px;
    --frame-inset-left: 12px;
    --section-width: calc(100vw - 24px);
  }

  .frame-media iframe {
    width: calc((100svh - var(--frame-inset-top) - var(--frame-inset-bottom)) * 16 / 9);
    height: calc(100svh - var(--frame-inset-top) - var(--frame-inset-bottom));
  }

  .social-rail {
    inset: auto 12px 12px 12px;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    height: 72px;
    padding: 0 18px;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    opacity: 1;
    transform: none;
    animation: none;
  }

  .social-links {
    grid-auto-flow: column;
    grid-auto-columns: min-content;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link i {
    font-size: 22px;
  }

  .social-link--profile {
    width: 40px;
    height: 40px;
  }

  .social-link__avatar {
    width: 34px;
    height: 34px;
  }

  .social-link__badge {
    right: -2px;
    bottom: -4px;
    width: 18px;
    height: 18px;
  }

  .social-link__badge i {
    font-size: 10px;
  }

  .rail-index {
    display: none;
  }

  .menu-button {
    top: 20px;
    right: 18px;
    width: 52px;
    height: 42px;
  }

  .menu-button span {
    width: 30px;
  }

  .page-content {
    margin-left: 0;
    padding: 12px 12px 94px;
  }

  .hero-section {
    min-height: calc(100svh - 106px);
  }

  .hero-logo {
    width: 140px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .content-section {
    padding: 42px 0;
  }

  .section-title {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .news-layout {
    gap: 28px;
  }

  .news-tabs {
    gap: 10px 18px;
  }

  .news-tabs__button {
    font-size: 0.96rem;
  }

  .news-item__link {
    padding: 16px 0;
  }

  .news-item__meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-item__category {
    min-height: 24px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .discography-slider {
    margin-top: 28px;
  }

  .discography-slider__viewport {
    padding: 0 28px;
  }

  .disc-slide {
    flex-basis: calc(100vw - 164px);
    max-width: 280px;
  }

  .movie-slider {
    margin-top: 28px;
  }

  .movie-slider__viewport {
    padding: 0 28px;
  }

  .movie-slide {
    flex-basis: calc(100vw - 104px);
    opacity: 0.52;
    transform: scale(0.92);
  }

  .movie-slide__link {
    border-radius: 22px;
  }

  .movie-slide__badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .movie-slide__play {
    width: 76px;
    border-width: 6px;
  }

  .movie-slide__play::before {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }

  .movie-slider__nav {
    width: 46px;
    height: 46px;
  }

  .discography-slider__nav {
    width: 46px;
    height: 46px;
  }

  .site-drawer {
    padding: 22px 24px 28px;
  }

  .drawer-inner {
    width: 100%;
    min-height: 0;
    padding: 0;
    gap: 24px;
  }

  .drawer-panel {
    gap: 24px;
  }

  .drawer-nav-group {
    width: 100%;
    margin-top: 24px;
    gap: 14px;
  }

  .drawer-link {
    font-size: clamp(3.1rem, 10vw, 4.9rem);
  }

  .drawer-meta {
    margin-top: 28px;
  }

  .drawer-social-icon {
    width: 48px;
    height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* WordPress templates */

.default-template-section {
  display: grid;
  gap: clamp(28px, 5vw, 40px);
}

.archive-stack {
  display: grid;
  gap: 22px;
}

.post-card {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.post-card__link {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: stretch;
}

.post-card__media {
  min-height: 220px;
}

.post-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px 24px 24px 0;
}

.post-card__eyebrow {
  margin: 0;
  color: rgba(121, 222, 90, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.entry-header {
  display: grid;
  gap: 14px;
}

.entry-meta {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discography-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.discography-meta span,
.discography-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.entry-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.9;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.2em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.entry-content a,
.feed-text a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

.entry-content blockquote {
  margin-left: 0;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
}

.entry-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entry-taxonomies a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination {
  margin-top: 8px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.86);
}

.pagination .current {
  background: rgba(255, 255, 255, 0.1);
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
}

.search-field,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: #fff;
  font: inherit;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
}

.search-field {
  flex: 1 1 320px;
}

.search-submit,
.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.content-none {
  max-width: 720px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.24);
}

.comments-area {
  gap: 20px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.comment-body {
  padding: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.24);
}

.comment-meta {
  margin-bottom: 12px;
}

.comment-author,
.comment-metadata {
  color: var(--muted);
}

.comment-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.comment-respond {
  max-width: 760px;
}

.comment-form {
  display: grid;
  gap: 14px;
}

.comment-form label {
  display: inline-block;
  margin-bottom: 6px;
}

@media (max-width: 760px) {
  .section-actions,
  .section-actions--left,
  .section-actions--center,
  .entry-actions {
    justify-content: flex-start;
  }

  .section-button {
    width: 100%;
  }

  .post-card__link {
    grid-template-columns: 1fr;
  }

  .post-card__body {
    padding: 0 18px 18px;
  }

  .entry-content {
    max-width: none;
  }
}
