@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --bg: #041505;
  --bg-rail: rgba(6, 28, 10, 0.96);
  --bg-drawer: rgba(4, 20, 7, 0.97);
  --text: #f7fbf5;
  --muted: rgba(233, 241, 233, 0.72);
  --line: rgba(205, 222, 207, 0.16);
  --line-soft: rgba(169, 194, 171, 0.12);
  --accent: #37d44a;
  --accent-soft: rgba(55, 212, 74, 0.18);
  --surface: rgba(10, 36, 14, 0.58);
  --surface-strong: rgba(5, 22, 9, 0.84);
  --rail-width: 0px;
  --header-side-padding: clamp(18px, 2.8vw, 34px);
  --frame-gap: 0px;
  --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 - 80px));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  background: var(--bg);
  overflow-x: auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

.center {
	text-align: center;
}

.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;
}

@keyframes cln-flash {
  0% { opacity: 0; }
  10% { opacity: 0.56; }
  15% { opacity: 0.28; }
  38% { opacity: 0.36; }
  50% { opacity: 0.88; }
  56% { opacity: 0.32; }
  64% { opacity: 0.94; }
  70% { opacity: 0.44; }
  100% { opacity: 1; }
}

@keyframes cln-flash-shadow {
  0% { opacity: 0; }
  10% { opacity: 0.7; }
  15% { opacity: 0.28; }
  42% { opacity: 0.5; }
  52% { opacity: 0.86; }
  60% { opacity: 0.3; }
  68% { opacity: 0.8; }
  100% { opacity: 0; }
}

@keyframes cln-flicker {
  0% { opacity: 1; }
  4% { opacity: 0.9; }
  6% { opacity: 0.78; }
  8% { opacity: 0.96; }
  11% { opacity: 0.88; }
  14% { opacity: 0.98; }
  18% { opacity: 0.9; }
  21% { opacity: 1; }
  37% { opacity: 0.92; }
  38% { opacity: 0.58; }
  39% { opacity: 0.98; }
  46% { opacity: 0.93; }
  58% { opacity: 0.9; }
  60% { opacity: 1; }
  72% { opacity: 0.94; }
  95% { opacity: 0.96; }
  100% { opacity: 1; }
}

@keyframes cln-title-lift {
  0% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

@keyframes cln-menu-line-out {
  0% { transform: translateX(0); }
  22% { transform: translateX(112%); }
  100% { transform: translateX(112%); }
}

@keyframes cln-menu-line-in {
  0% { transform: translateX(-112%); }
  14% { transform: translateX(-112%); }
  36% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

@keyframes cln-drawer-sweep {
  0% { transform: translateX(-120%); opacity: 0; }
  26% { opacity: 0.9; }
  58% { opacity: 0.25; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes cln-scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  18% { opacity: 1; }
  52% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  53% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes cln-scroll-dot {
  0% { transform: translate(-50%, -8px); opacity: 0; }
  18% { opacity: 1; }
  72% { opacity: 1; }
  100% { transform: translate(-50%, var(--scroll-line-length, 54px)); opacity: 0; }
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 52;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.2vw, 30px);
  min-height: var(--header-height);
  padding: 18px var(--header-side-padding);
}


.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header__brand {
  flex: 0 0 auto;
}

.site-header__brand-title {
  margin: 0;
}

.site-header__logo {
  display: block;
  width: clamp(45px, 18vw, 45px);
  height: auto;
}

.logo-center {
  width: 30%;
  text-align: center;
}

.logo-center img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  filter: blur(18px) brightness(1.14);
  transform: scale(0.96);
  animation: logoCenterBloom 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

@keyframes logoCenterBloom {
  0% {
    opacity: 0;
    filter: blur(22px) brightness(1.18);
    transform: scale(0.94);
  }

  55% {
    opacity: 0.9;
    filter: blur(8px) brightness(1.08);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}

.hero-scroll-cue {
  --scroll-cue-delay: 1.28s;
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 12px;
  margin-top: clamp(4px, 1.8vh, 18px);
  padding: 2px 8px 0;
  color: rgba(247, 251, 245, 0.82);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
  opacity: 0;
  animation: cln-flash 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-cue-delay) forwards;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: #ffffff;
}

.hero-scroll-cue:focus-visible {
  outline: 1px solid rgba(55, 212, 74, 0.78);
  outline-offset: 8px;
}

.hero-scroll-cue__text {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 4px 0;
  text-shadow: 0 0 16px rgba(55, 212, 74, 0.34);
  animation: cln-flicker 3.1s linear calc(var(--scroll-cue-delay) + 0.22s) infinite;
}

.hero-scroll-cue__text::before {
  content: "";
  position: absolute;
  inset: 0 -18%;
  background: linear-gradient(90deg, transparent, rgba(55, 212, 74, 0.52), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
  animation: cln-drawer-sweep 2.3s ease-in-out calc(var(--scroll-cue-delay) + 0.18s) infinite;
}

.hero-scroll-cue__text::after {
  content: attr(data-text);
  position: absolute;
  inset: 4px 0 auto;
  color: var(--accent);
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  animation: cln-flash-shadow 1.1s ease calc(var(--scroll-cue-delay) + 0.08s) both;
}

.hero-scroll-cue__line {
  --scroll-line-length: clamp(42px, 7vh, 68px);
  position: relative;
  display: block;
  width: 1px;
  height: var(--scroll-line-length);
  overflow: hidden;
  background: rgba(247, 251, 245, 0.22);
}

.hero-scroll-cue__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(247, 251, 245, 0.96), var(--accent));
  box-shadow: 0 0 18px rgba(55, 212, 74, 0.72);
  transform: scaleY(0);
  transform-origin: top;
  animation: cln-scroll-line 1.86s cubic-bezier(0.68, 0, 0.32, 1) calc(var(--scroll-cue-delay) + 0.28s) infinite;
}

.hero-scroll-cue__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 14px rgba(55, 212, 74, 0.88), 0 0 24px rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -8px);
  animation: cln-scroll-dot 1.86s cubic-bezier(0.68, 0, 0.32, 1) calc(var(--scroll-cue-delay) + 0.28s) infinite;
}

.site-header__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  min-width: 0;
}

.site-header__nav-link {
  position: relative;
  padding: 6px 0;
  color: rgba(247, 251, 245, 0.8);
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-link.is-active {
  color: #fff;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-link.is-active::after {
  transform: scaleX(1);
}

.site-header__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease, transform 0.3s ease;
}

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

.site-header__social i {
  font-size: 1.15rem;
  line-height: 1;
}

.site-header__profiles {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__profile {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

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

.site-header__profile .social-link__badge {
  right: -2px;
  bottom: -3px;
  width: 18px;
  height: 18px;
}

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

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

.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;
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  animation: socialRailEnter 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

@media (min-width: 761px) {
  .social-rail {
    background: var(--bg-rail);
  }
}

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

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

h1 {
  margin: 0;
  padding: 0;
}

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

.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);
}


.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: var(--accent);
}

.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;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 58% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 18%, transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

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

.frame-media {
  z-index: 0;
}

.video-fallback {
  z-index: 1;
  background: radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.14), transparent 14%), linear-gradient(180deg, rgba(6, 29, 10, 0.16), rgba(3, 17, 6, 0.72)), linear-gradient(120deg, rgba(16, 70, 23, 0.44), rgba(4, 22, 8, 0.48));
  pointer-events: none;
  animation: cln-background-fadeout 1.3s ease 0.55s forwards;
}

.frame-media iframe {
  z-index: 0;
  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.88;
  pointer-events: none;
  filter: saturate(0.88) contrast(0.96) brightness(0.56);
}

.frame-media video {
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.88;
  pointer-events: none;
  filter: saturate(0.88) contrast(0.96) brightness(0.56);
}

.frame-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(1, 20, 5, 0.03) 0%, rgba(1, 28, 6, 0.14) 26%, rgba(1, 28, 6, 0.42) 72%, rgba(1, 28, 6, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 19, 4, 0.24), rgba(0, 24, 5, 0.04) 24%, rgba(0, 30, 7, 0.16) 100%);
}

.frame-grain {
  z-index: 3;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.92) 0.55px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 28%, #000 56%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 28%, #000 56%);
}

@keyframes cln-background-fadeout {
  0% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.menu-button {
  position: fixed;
  top: 30px;
  right: 28px;
  z-index: 56;
  display: none;
  width: 74px;
  height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button::before {
  content: "";
  position: absolute;
  inset: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.menu-button:hover::before,
.menu-button:focus-visible::before,
.menu-button[aria-expanded="true"]::before {
  border-color: rgba(55, 212, 74, 0.74);
  opacity: 1;
  transform: scale(1);
}

.menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 44px;
  height: 2.5px;
  overflow: hidden;
  background: rgba(247, 251, 245, 0.32);
  transform-origin: center;
  box-shadow: 0 0 14px rgba(55, 212, 74, 0.16);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s ease, opacity 0.3s ease;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  inset: -1px 0;
  background: var(--text);
  box-shadow: 0 0 12px rgba(55, 212, 74, 0.72);
}

.menu-button span::before {
  animation: cln-menu-line-out 2.8s cubic-bezier(0.45, 0.03, 0.52, 0.96) infinite;
}

.menu-button span::after {
  transform: translateX(-112%);
  background: var(--accent);
  animation: cln-menu-line-in 2.8s cubic-bezier(0.45, 0.03, 0.52, 0.96) infinite;
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 11px));
}

.menu-button span:nth-child(1)::before,
.menu-button span:nth-child(1)::after {
  animation-delay: 0.12s;
}

.menu-button span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-button span:nth-child(2)::before,
.menu-button span:nth-child(2)::after {
  animation-delay: 0.28s;
}

.menu-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 11px));
}

.menu-button span:nth-child(3)::before,
.menu-button span:nth-child(3)::after {
  animation-delay: 0.44s;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.3);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-button[aria-expanded="true"] span {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(55, 212, 74, 0.68);
}

.menu-button[aria-expanded="true"] span::before,
.menu-button[aria-expanded="true"] span::after {
  animation: none;
  transform: translateX(0);
}

.drawer-close span {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.site-footer {
  position: relative;
  z-index: 2;
  padding: 28px var(--header-side-padding) 40px;
  background: #000;
}

.site-footer__inner {
  width: min(100%, var(--section-width));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer__copyright {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 45;
  display: grid;
  place-items: center;
  width: clamp(42px, 4.3vw, 56px);
  aspect-ratio: 1;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.94);
  transition: opacity 0.36s ease, transform 0.36s ease, color 0.3s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid currentColor;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #ffffff;
}

.back-to-top:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: 6px;
}

.back-to-top__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46%;
  aspect-ratio: 1;
  transform: translateY(-2%);
}

.back-to-top__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.back-to-top__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.menu-open .back-to-top,
body.release-modal-open .back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.94);
}

.observed-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

.content-section-single {
	  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vh, 50px);
  margin-top: 70px;
  min-height: calc(100svh - (var(--frame-gap) * 2));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.025), transparent 10%),
    linear-gradient(
      180deg,
      rgba(242, 255, 244, 0.016) 0%,
      rgba(176, 224, 183, 0.01) 42%,
      rgba(4, 21, 6, 0) 100%
    );
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(120px, 20vh, 220px);
  background: linear-gradient(
    180deg,
    rgba(4, 21, 6, 0),
    rgba(4, 21, 6, 0.06)
  );
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.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);
}

.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 {
  --section-bg-top: 0.2;
  --section-bg-bottom: 0.34;
  position: relative;
  padding: 40px 40px 100px;
  background: linear-gradient(180deg, rgba(4, 21, 6, 0.24), rgba(4, 21, 6, 0.04));
  background: linear-gradient(
    180deg,
    rgba(4, 21, 6, var(--section-bg-top)),
    rgba(4, 21, 6, var(--section-bg-bottom))
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.news-section {
  --section-bg-top: 0.2;
  --section-bg-bottom: 0.34;
}

.event-section {
  --section-bg-top: 0.34;
  --section-bg-bottom: 0.48;
}

.profile-section {
  --section-bg-top: 0.48;
  --section-bg-bottom: 0.62;
}

.disco-section {
  --section-bg-top: 0.62;
  --section-bg-bottom: 0.76;
}

.movie-section {
  --section-bg-top: 0.76;
  --section-bg-bottom: 0.9;
}


.content-section-page {
	padding-top: 80px !important;
}

.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-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
}

.section-title-profile {
	text-align: center;
	margin: 0 auto;
}

.section-title.is-glitch-ready,
.section-label.is-glitch-ready {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  max-width: 100%;
  isolation: isolate;
}

.section-title.is-glitch-ready::after,
.section-label.is-glitch-ready::after {
  content: "";
  position: absolute;
  inset: -0.14em -0.08em;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(55, 212, 74, 0.22), transparent);
  opacity: 0;
  transform: translateX(-112%);
  pointer-events: none;
}

.glitch-char {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}

.glitch-char::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: var(--accent);
  filter: blur(3px);
  opacity: 0;
  transform: translate(1px, 0) scale(1.04);
  pointer-events: none;
}

.section-title.is-glitch-inview::after,
.section-label.is-glitch-inview::after {
  animation: cln-drawer-sweep 0.74s ease-out 0.1s both;
}

.section-title.is-glitch-inview .glitch-char,
.section-label.is-glitch-inview .glitch-char {
  animation:
    cln-flash 0.36s var(--glitch-delay) both,
    cln-title-lift 0.5s var(--glitch-delay) cubic-bezier(0.16, 1, 0.3, 1) both,
    cln-flicker 2.8s var(--glitch-flicker-delay) linear infinite;
}

.section-title.is-glitch-inview .glitch-char::after,
.section-label.is-glitch-inview .glitch-char::after {
  animation: cln-flash-shadow 0.34s var(--glitch-shadow-delay) both;
}

.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-panel__more {
  display: flex;
  justify-content: center;
  padding-top: clamp(30px, 4vw, 44px);
}

.news-more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.33, 1, 0.68, 1), transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1), transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

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

.news-more-link:hover::after,
.news-more-link:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.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);
  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: #06270b;
  background: #fff;
  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;
}

.news-panel__pagination {
  margin-top: 28px;
}

.news-panel__pagination .nav-links {
  justify-content: center;
}

.event-index-page__pagination {
  margin-top: 28px;
}

.event-index-page__pagination .nav-links {
  justify-content: center;
}

.page-news-template {
  background: #010b03;
}

.page-news-template .site-shell {
  min-height: 100svh;
  background: #010b03;
  overflow: visible;
}

.page-news-template .page-content {
  padding: 0;
}

.page-news-template .news-index-page {
  min-height: 100svh;
  background: #010b03;
  padding-top: calc(var(--header-height) + 40px);
}

.page-event-template {
  background: #010b03;
  overflow-x: hidden;
}

.page-event-template .site-shell {
  min-height: 100svh;
  background: #010b03;
  overflow-x: hidden;
  overflow-y: visible;
}

.page-event-template .page-content {
  padding: 0;
}

.page-event-template .event-index-page {
  min-height: 100svh;
  background: #010b03;
  padding-top: calc(var(--header-height) + 40px);
}

.news-index-page__empty,
.event-index-page__empty {
  margin: 0;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

@media (max-width: 760px) {
  .page-news-template .news-index-page {
    padding-top: calc(var(--header-height) + 30px);
  }

  .page-event-template .event-index-page {
    padding-top: calc(var(--header-height) + 30px);
  }
}

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

.live-list {
  display: grid;
  overflow-x: hidden;
}

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

.live-item__link {
  display: grid;
  grid-template-columns: minmax(100px, 100px) 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);
}

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

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

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

.live-item__title {
  min-width: 0;
  color: inherit;
  line-height: 1.85;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.live-item__link--event-card {
  grid-template-columns: minmax(94px, 122px) minmax(0, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
}

.live-item__meta--stacked {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
}

.live-item__dates {
  display: grid;
  width: max-content;
  justify-items: center;
  gap: 4px;
}

.live-item__date-line {
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.live-item__date-divider {
  display: block;
  justify-self: center;
  width: 2px;
  height: clamp(14px, 1.9vw, 14px);
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
}

.live-item__year {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.live-item__title--event-card {
  line-height: 1.6;
}

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

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

.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, .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;
  background: linear-gradient(135deg, rgba(4, 20, 8, 0.82), rgba(21, 82, 30, 0.72)), 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 {
  display: grid;
  place-items: center;
  min-height: min(52vw, 460px);
  background: linear-gradient(135deg, rgba(4, 17, 7, 0.78), rgba(17, 82, 25, 0.42)), radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-texts {
  display: grid;
  gap: 18px;
  width: 100%;
}

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

.member-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: start;
  min-height: 220px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 58, 22, 0.3);
  text-align: center;
}

.member-card__image-link {
  display: inline-block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.member-card__image-link:hover,
.member-card__image-link:focus-visible {
  opacity: 0.9;
  transform: translateY(-3px);
}

.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;
  line-height: 1.4;
}

.member-card__image {
  display: inline-block;
  width: min(100%, 132px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.member-card__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.member-card__social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(4, 20, 7, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.member-card__social:hover,
.member-card__social:focus-visible {
  color: #fff;
  border-color: rgba(55, 212, 74, 0.5);
  background: rgba(55, 212, 74, 0.16);
  transform: translateY(-2px);
}

.member-card__social i {
  font-size: 0.98rem;
  line-height: 1;
}

.member-card__social.is-disabled {
  color: rgba(255, 255, 255, 0.36);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.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(66, 156, 76, 0.26), rgba(255, 255, 255, 0.04));
}

.color-orange {
  background: linear-gradient(180deg, rgba(86, 126, 60, 0.26), rgba(255, 255, 255, 0.04));
}

.color-blue {
  background: linear-gradient(180deg, rgba(44, 110, 72, 0.26), 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: 1;
  transform: scale(1);
  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;
  border: solid 1px rgba(255, 255, 255, 0.72);
  padding: 5px 10px;
  border-radius: 20px;
}

.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, #9cff63, #17963f);
  color: #071002;
}

.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 h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.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(4, 23, 8, 0.68);
  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(6, 31, 11, 0.88);
}

.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: var(--bg);
  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(1, 20, 5, 0.05), rgba(1, 28, 6, 0.18) 45%, rgba(0, 18, 4, 0.56)), linear-gradient(90deg, rgba(0, 20, 5, 0.26), rgba(0, 0, 0, 0) 28%, rgba(1, 26, 6, 0.2));
}

.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(3, 21, 7, 0.68);
  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-close {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer-close:hover, .drawer-close:focus-visible {
  opacity: 0.72;
  transform: scale(0.96);
}

.drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.94);
}

.drawer-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.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 {
  margin-top: 50px;
  display: grid;
  justify-items: end;
  gap: 18px;
  width: min(100%, 700px);
}

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

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

.drawer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(55, 212, 74, 0.78);
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.54s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(55, 212, 74, 0.2), transparent);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.drawer-link:hover, .drawer-link:focus-visible {
  opacity: 0.74;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(55, 212, 74, 0.38);
  transform: translateX(-8px);
}

.drawer-link:hover::before,
.drawer-link:focus-visible::before {
  transform: scaleX(1);
}

.drawer-link.is-active {
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 14px rgba(55, 212, 74, 0.24);
}

.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);
}

.drawer-social-icon--plain:hover, .drawer-social-icon--plain:focus-visible {
  background: transparent;
}

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-head, body.menu-open .drawer-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.menu-open .drawer-link {
  animation: cln-flash 0.34s var(--drawer-link-delay, 0ms) both;
}

body.menu-open .drawer-link::after {
  animation: cln-drawer-sweep 0.5s var(--drawer-link-sweep-delay, 0ms) ease-out both;
}

body.menu-open .drawer-link:nth-child(1) {
  --drawer-link-delay: 90ms;
  --drawer-link-sweep-delay: 120ms;
}

body.menu-open .drawer-link:nth-child(2) {
  --drawer-link-delay: 150ms;
  --drawer-link-sweep-delay: 180ms;
}

body.menu-open .drawer-link:nth-child(3) {
  --drawer-link-delay: 210ms;
  --drawer-link-sweep-delay: 240ms;
}

body.menu-open .drawer-link:nth-child(4) {
  --drawer-link-delay: 270ms;
  --drawer-link-sweep-delay: 300ms;
}

body.menu-open .drawer-link:nth-child(5) {
  --drawer-link-delay: 330ms;
  --drawer-link-sweep-delay: 360ms;
}

body.menu-open .drawer-link:nth-child(6) {
  --drawer-link-delay: 390ms;
  --drawer-link-sweep-delay: 420ms;
}

body.menu-open .drawer-link:nth-child(7) {
  --drawer-link-delay: 450ms;
  --drawer-link-sweep-delay: 480ms;
}

body.menu-open .drawer-link:nth-child(8) {
  --drawer-link-delay: 510ms;
  --drawer-link-sweep-delay: 540ms;
}

body.release-modal-open {
  overflow: hidden;
}

.release-modal {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.release-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.release-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(2, 10, 4, 0.72);
  border: 0;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.release-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 64px));
  max-height: calc(100svh - 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 24, 24, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  outline: none;
}

.release-modal__scroll {
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 189, 162, 0.85) rgba(14, 44, 27, 0.75);
}

.release-modal__scroll::-webkit-scrollbar {
  width: 14px;
}

.release-modal__scroll::-webkit-scrollbar-track {
  background: rgba(14, 44, 27, 0.75);
  border-left: 1px solid rgba(142, 189, 162, 0.14);
}

.release-modal__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(181, 218, 192, 0.9), rgba(82, 129, 101, 0.92));
  border: 3px solid rgba(14, 44, 27, 0.88);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.release-modal__scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(204, 232, 212, 0.94), rgba(101, 150, 120, 0.96));
}

.release-modal__layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 42px);
  padding: clamp(26px, 3vw, 54px);
}

.release-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.release-modal__close span {
  position: absolute;
  width: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.release-modal__close span:first-child {
  transform: rotate(45deg);
}

.release-modal__close span:last-child {
  transform: rotate(-45deg);
}

.release-modal__aside {
  display: grid;
  align-content: start;
  gap: 20px;
}

.release-modal__cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.release-modal__cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.release-modal__headline {
  display: grid;
  gap: 12px;
}

.release-modal__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 1.4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.release-modal__meta {
  display: grid;
  gap: 6px;
}

.release-modal__type {
	padding-bottom: 10px;
}

.release-modal__type,
.release-modal__date {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-modal__tracks-block,
.release-modal__videos-block {
  display: grid;
  gap: 14px;
}

.release-modal__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.release-modal__tracks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-modal__tracks li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.release-modal__main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.release-modal__body {
  display: grid;
  gap: 26px;
}

.release-modal__description {
  display: grid;
  gap: 16px;
}

.release-modal__description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.95;
}

.release-modal__videos {
  display: grid;
  gap: 18px;
}

.release-modal__video {
  display: grid;
  gap: 10px;
}

.release-modal__video-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.release-modal__video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
}

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

.release-modal__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.release-modal__buy {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 4px 0 18px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, gap 220ms ease;
}

.release-modal__buy::before {
  content: "";
  flex: 0 0 44px;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: left center;
  transition: transform 260ms ease, background-color 220ms ease, box-shadow 260ms ease;
}

.release-modal__buy::after {
  content: "›";
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.release-modal__buy:hover,
.release-modal__buy:focus-visible {
  color: var(--accent);
  gap: 20px;
}

.release-modal__buy:hover::before,
.release-modal__buy:focus-visible::before {
  background: var(--accent);
  transform: scaleX(1.28);
  box-shadow: 0 0 12px rgba(142, 189, 162, 0.35);
}

.release-modal__buy:hover::after,
.release-modal__buy:focus-visible::after {
  transform: translateX(6px);
}

@media (prefers-reduced-motion: reduce) {
  .release-modal__buy,
  .release-modal__buy::before,
  .release-modal__buy::after {
    transition: none;
  }
}

@media (max-width: 1280px) {
  .site-header__profiles {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-header__meta {
    display: none;
  }

  .site-header__nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .site-header__nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-header__logo {
    width: clamp(45px, 20vw, 45px);
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__nav-link {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .release-modal {
    padding: 18px;
  }

  .release-modal__panel,
  .release-modal__scroll {
    max-height: calc(100svh - 36px);
  }

  .release-modal__layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .disco-single-page {
    min-height: auto;
  }

  .disco-single-layout {
    grid-template-columns: 1fr;
  }

  .disco-single-aside {
    justify-self: center;
    width: min(100%, 360px);
  }

  .disco-single-main {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .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;
  }

  .live-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;
    --header-height: 68px;
    --section-width: calc(100vw - 24px);
  }

  .release-modal {
    padding: 12px;
  }

  .release-modal__panel,
  .release-modal__scroll {
    width: min(100vw - 24px, 100%);
    max-height: calc(100svh - 24px);
  }

  .release-modal__layout {
    gap: 22px;
    padding: 20px 18px 24px;
  }

  .release-modal__close {
    top: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
  }

  .release-modal__close span {
    width: 28px;
  }

  .release-modal__title {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .release-modal__buy {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
    padding-left: 0;
  }

  .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));
  }

  .site-header {
    gap: 12px;
    min-height: var(--header-height);
    padding: 10px 72px 10px 12px;
  }

  .site-header::before {
    background:
      linear-gradient(180deg, rgba(2, 15, 5, 0.74), rgba(2, 15, 5, 0.3)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 24%);
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  .site-header__nav,
  .site-header__meta {
    display: none;
  }

  .site-header__brand {
    display: flex;
    align-items: center;
  }

   .site-header__logo {
    width: clamp(45x, 48vw, 45x);
    height: auto;
  }
  
  .logo-center {
	width: 50%;
	text-align: center;
  }

  .hero-scroll-cue {
    gap: 10px;
    margin-top: 0;
    font-size: 0.62rem;
  }

  .hero-scroll-cue__line {
    --scroll-line-length: 44px;
  }

  .social-rail {
    inset: 10px auto auto 12px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    width: calc(100vw - 96px);
    height: 58px;
    padding: 0px;
    opacity: 1;
    transform: none;
    animation: none;
  }

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

  .social-links {
    flex: 1;
    grid-auto-flow: column;
    grid-auto-columns: min-content;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(6px, 2vw, 10px);
    margin-top: 0;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .social-links::-webkit-scrollbar {
    display: none;
  }

  .social-link {
    width: clamp(20px, 5.2vw, 24px);
    height: clamp(20px, 5.2vw, 24px);
  }

  .social-link i {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  .social-link--profile {
    width: clamp(28px, 8.4vw, 34px);
    height: clamp(28px, 8.4vw, 34px);
  }

  .social-link__avatar {
    width: clamp(28px, 8.4vw, 34px);
    height: clamp(28px, 8.4vw, 34px);
  }

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

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

  .rail-index {
    display: none;
  }

  .menu-button {
    display: block;
    top: 5px;
    right: 3px;
    width: 68px;
    gap: 0px;
    height: 58px;
  }

  .menu-button span, .drawer-close span {
    width: 36px;
  }

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

  .site-footer {
    padding: 20px 20px 32px;
  }

  .site-footer__inner {
    padding-top: 16px;
  }

  .site-footer__copyright {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 42px;
  }

  .hero-section {
    gap: clamp(20px, 6vh, 38px);
    min-height: calc(100svh - 24px);
  }

  .observed-section {
    scroll-margin-top: 92px;
  }

  .hero-logo {
    width: 140px;
  }

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

  .content-section {
    padding: 42px 20px;
  }
  
  .content-section-single {
  max-width: 100%;
}
  
  .content-section-page {
	padding-top: 40px !important;
}


  .section-title {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .news-layout {
    gap: 28px;
  }

  .live-layout {
    gap: 28px;
  }

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

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

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

  .news-panel__pagination {
    margin-top: 22px;
  }

  .event-index-page__pagination {
    margin-top: 22px;
  }

  .news-panel__more {
    padding-top: 26px;
  }

  .news-more-link {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    letter-spacing: 0.06em;
  }

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

  .live-item__link--event-card {
    grid-template-columns: minmax(74px, 92px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
  }

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

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

  .live-item__meta--stacked {
	  justify-content: flex-start;
    gap: 8px;
  }

  .live-item__date-line {
    font-size: clamp(1.2rem, 8.6vw, 1.2rem);
  }

  .live-item__date-divider {
    width: 2px;
    height: 18px;
  }

  .live-item__year {
    font-size: 0.98rem;
  }

  .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: 18px 20px 28px;
  }

  .site-drawer::before {
    inset: 0;
  }

  .drawer-inner {
    justify-content: center;
    gap: 16px;
  }

  .drawer-head {
    margin-bottom: 6px;
  }

  .drawer-close {
    width: 50px;
    height: 50px;
  }

  .drawer-close span {
    width: 34px;
  }

  .drawer-link {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .drawer-nav-group {
    margin-top: 0;
    gap: 14px;
  }

  .drawer-panel {
    justify-content: center;
    padding-top: 0;
  }

  .drawer-nav {
    margin-bottom: 0;
  }

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

  .drawer-block {
    gap: 10px;
  }

  .drawer-socials {
    gap: 8px;
  }

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

  .drawer-social-icon i {
    font-size: 1.3rem;
  }

  .drawer-social-icon--plain {
    min-width: 34px;
  }

  .drawer-social-icon--plain i {
    font-size: 1.6rem;
  }
}

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

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

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

.archive-stack {
  display: grid;
  gap: 0;
}

.post-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.post-card__link {
  display: block;
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}

.post-card__media {

}

.post-card__body {
  display: grid;
  grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
  padding: 24px 0;
}

.post-card__content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.post-card__date {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", sans-serif;
  font-size:1rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.post-card__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
  transition: color 0.3s ease;
}

.post-card__link:hover,
.post-card__link:focus-visible {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.02);
}

.post-card__link:hover .post-card__title,
.post-card__link:focus-visible .post-card__title {
  color: #fff;
}

.post-card__link:hover .post-card__date,
.post-card__link:focus-visible .post-card__date {
  color: #fff;
}

.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;
}

.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;
}

.article-shell {
  gap: clamp(32px, 5vw, 48px);
}

.article-header {
  max-width: 920px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: #fff;
}

.article-title {
  max-width: 980px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.article-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
  line-height: 1.9;
}

.article-cover {
  display: grid;
  gap: 0;
}

.article-cover figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.22);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.article-side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.article-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.article-card__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.article-facts div {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-facts div:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.article-facts dd {
  margin: 0;
  color: #fff;
  line-height: 1.75;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-soft);
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.article-share a:hover,
.article-share a:focus-visible {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.article-nav {
  display: grid;
  gap: 10px;
}

.article-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.24);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-nav a::after {
  content: "›";
  font-size: 1.2rem;
  line-height: 1;
}

.article-nav a:hover,
.article-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

.article-related {
  display: grid;
  gap: 26px;
}

.contact-page {
  gap: clamp(30px, 5vw, 46px);
  justify-items: center;
}

.contact-header {
  max-width: 880px;
  justify-self: center;
  text-align: center;
}

.contact-title {
  max-width: 980px;
  margin-inline: auto;
}

.contact-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
  line-height: 1.9;
  text-align: center;
}

.contact-panel {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(8, 28, 11, 0.74), rgba(3, 14, 5, 0.86)),
    rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-panel__intro {
  max-width: 720px;
  margin: 0 auto clamp(24px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.9;
  text-align: center;
}

.contact-form,
.contact-form-entry form,
.contact-panel .wpcf7 form,
.contact-panel .mw_wp_form form {
  display: grid;
  gap: clamp(24px, 3vw, 32px);
}

form p {
margin: 0 0 5px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(20px, 3vw, 28px);
}

.contact-form-entry {
  width: min(100%, 760px);
  margin: 0 auto;
}

.contact-form-entry > *:first-child {
  margin-top: 0;
}

.contact-form-entry > *:last-child {
  margin-bottom: 0;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field__label,
.contact-form-entry label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-field__input,
.contact-panel input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-panel textarea,
.contact-panel select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-field__input::placeholder,
.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-field__input:focus,
.contact-panel input:focus,
.contact-panel textarea:focus,
.contact-panel select:focus {
  outline: none;
  border-color: rgba(55, 212, 74, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(55, 212, 74, 0.1);
}

.contact-field__input--textarea,
.contact-panel textarea {
  min-height: 220px;
  padding: 16px 18px;
  resize: vertical;
}

.contact-actions {
  display: flex;
  justify-content: center;
}

.contact-submit,
.contact-panel input[type="submit"],
.contact-panel button[type="submit"],
.contact-panel .wpcf7-submit {
  display: block;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(55, 212, 74, 0.18), rgba(255, 255, 255, 0.02));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  margin: 0 auto;
}

.contact-submit:hover,
.contact-submit:focus-visible,
.contact-panel input[type="submit"]:hover,
.contact-panel input[type="submit"]:focus-visible,
.contact-panel button[type="submit"]:hover,
.contact-panel button[type="submit"]:focus-visible,
.contact-panel .wpcf7-submit:hover,
.contact-panel .wpcf7-submit:focus-visible {
  border-color: rgba(55, 212, 74, 0.48);
  background: linear-gradient(90deg, rgba(55, 212, 74, 0.28), rgba(255, 255, 255, 0.05));
  transform: translateY(-2px);
}

.contact-panel .wpcf7-not-valid-tip,
.contact-panel .mwform-error {
  margin-top: 8px;
  color: #ffb6b6;
  font-size: 0.84rem;
}

.contact-panel .wpcf7-response-output {
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .post-card__body {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 18px 0;
  }

  .post-card__content {
    gap: 6px;
  }

  .post-card__date {
    font-size: 1rem;
  }

  .post-card__title {
    font-size: 1.08rem;
  }

  .article-card {
    padding: 18px;
  }

  .article-breadcrumb {
    gap: 8px;
    font-size: 0.68rem;
  }

  .article-meta-row {
    gap: 10px 12px;
  }

  .article-cover figcaption {
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .contact-panel {
    padding: 22px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-field--full {
    grid-column: auto;
  }

  .contact-field__input,
  .contact-panel input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
  .contact-panel textarea,
  .contact-panel select {
    min-height: 54px;
    padding: 0 16px;
  }

  .contact-field__input--textarea,
  .contact-panel textarea {
    min-height: 190px;
    padding: 14px 16px;
  }

  .contact-submit,
  .contact-panel input[type="submit"],
  .contact-panel button[type="submit"],
  .contact-panel .wpcf7-submit {
    width: 100%;
  }
}

.profile-visual--has-image {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.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(1, 20, 5, 0.08), rgba(1, 28, 6, 0.72)),
    linear-gradient(90deg, rgba(0, 19, 4, 0.38), rgba(0, 24, 5, 0.18));
}

.single-entry--profile .profile-texts {
  max-width: 880px;
}

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

.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: var(--surface);
  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: #06270b;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.release-modal__cover img {
  display: block;
}

.release-modal__description > * {
  max-width: 100%;
}

.release-modal__description > :first-child {
  margin-top: 0;
}

.release-modal__description > :last-child {
  margin-bottom: 0;
}

.release-modal__description p,
.release-modal__description ul,
.release-modal__description ol,
.release-modal__description figure {
  margin: 0;
}

.release-modal__description p,
.release-modal__description li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.95;
}

.release-modal__description a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.release-modal__description iframe,
.release-modal__description video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
}

.release-modal__description .wp-block-embed,
.release-modal__description .wp-block-video,
.release-modal__description .wp-block-embed__wrapper {
  max-width: 100%;
}

.post-card__eyebrow {
  margin: 0;
  color: rgba(55, 212, 74, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  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-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.entry-actions.entry-actions--back-to-news {
  justify-content: center;
  width: min(100%, 620px);
  margin: clamp(12px, 3vw, 34px) auto clamp(52px, 7vw, 96px);
  padding: 0 20px;
}

.back-to-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  min-height: clamp(68px, 5vw, 108px);
  padding: 0 clamp(28px, 5vw, 24px);
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.back-to-news-button:hover,
.back-to-news-button:focus-visible {
  color: #050505;
  background: #fff;
  transform: translateY(-2px);
}

.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: var(--accent-soft);
}

.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(5, 22, 9, 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(5, 22, 9, 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(5, 22, 9, 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;
}

.disco-archive-page {
  gap: clamp(30px, 4vw, 42px);
}

.disco-archive-header {
  max-width: 100%;
  justify-items: center;
  text-align: center;
}

.disco-archive-lead {
  max-width: 760px;
}

.disco-filter {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
  justify-items: center;
}

.disco-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.disco-filter__button {
  position: relative;
  padding: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.96rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.disco-filter__button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.disco-filter__button:hover,
.disco-filter__button:focus-visible,
.disco-filter__button.is-active {
  color: #fff;
  transform: translateY(-1px);
}

.disco-filter__button:hover::after,
.disco-filter__button:focus-visible::after,
.disco-filter__button.is-active::after {
  transform: scaleX(1);
}

.disco-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 40px) clamp(20px, 2.8vw, 34px);
}

.disco-card {
  min-width: 0;
}

.disco-card[hidden] {
  display: none;
}

.disco-card__link {
  display: grid;
  gap: 18px;
  color: inherit;
}

.disco-card__art {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 22, 9, 0.28);
  box-shadow: var(--shadow);
}

.disco-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.disco-card__link:hover .disco-card__art img,
.disco-card__link:focus-visible .disco-card__art img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

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

.disco-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.disco-card__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.disco-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.disco-single-page {
  display: grid;
  align-items: center;
  min-height: calc(100svh - (var(--frame-gap) * 2));
}

.disco-single-panel {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 38px);
}

.disco-single-layout {
  align-items: start;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 0;
}

.disco-single-aside {
  gap: 0;
}

.disco-single-cover {
  margin: 0;
}

.disco-single-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.disco-single-main {
  gap: clamp(22px, 3vw, 30px);
  min-width: 0;
}

.disco-single-title {
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.86);
}

.disco-single-tracks .release-modal__tracks {
  gap: 0;
}

.disco-single-tracks .release-modal__tracks li {
  padding: 5px 0;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.disco-single-description {
  max-width: 720px;
}

.disco-single-description p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.disco-single-footer {
  margin-top: auto;
}

@media (max-width: 980px) {
  .disco-single-page {
    min-height: auto;
    align-items: start;
  }

  .release-modal__layout.disco-single-layout {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
  }

  .disco-single-aside {
    justify-self: center;
    width: min(100%, 360px);
  }

  .disco-single-main {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

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

  .section-button {
    width: 100%;
  }

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

  .disco-archive-header {
    padding-top: 40px;
  }

  .disco-filter__tabs {
    gap: 10px 18px;
  }

  .disco-filter__button {
    font-size: 0.92rem;
    padding-bottom: 8px;
  }

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

  .disco-card__title {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .disco-card__meta {
    font-size: 0.84rem;
  }

  .disco-single-panel {
    padding: 0;
  }

  .disco-single-page {
    min-height: auto;
  }

  .release-modal__layout.disco-single-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .disco-single-aside {
    width: min(100%, 320px);
    justify-self: center;
  }

  .disco-single-main {
    width: 100%;
  }

  .disco-single-title {
    font-size: clamp(1.3rem, 1.3vw, 1.3rem);
  }

  .release-modal__headline {
    gap: 10px;
  }

  .release-modal__meta {
    gap: 8px;
  }

  .release-modal__type,
  .release-modal__date {
    font-size: 0.82rem;
  }

  .release-modal__tracks-block,
  .release-modal__videos-block {
    gap: 12px;
  }

  .disco-single-tracks .release-modal__tracks li {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .disco-single-description p {
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .disco-single-footer {
    justify-content: flex-start;
  }

  .disco-single-footer .release-modal__buy {
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }
}
