:root {
	--yami-ink: #090911;
	--yami-paper: #f8f7fb;
	--yami-muted: #eceaf1;
	--yami-lavender: #dcd2ff;
	--yami-accent: #ff3dbb;
	--yami-secondary: #7657ff;
	--yami-cyan: #39f5e5;
	--yami-white: #fff;
	--yami-border: rgba(9, 9, 17, .16);
	--yami-shadow: 0 22px 70px rgba(35, 14, 77, .16);
	--yami-radius: 2px;
	--yami-font: Arial, "Helvetica Neue", "Noto Sans JP", sans-serif;
	--yami-display: "Arial Black", Arial, "Helvetica Neue", sans-serif;
	--wrap: min(1320px, calc(100% - 64px));
	--header-height: 82px;
}

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

html {
	scroll-behavior: smooth;
	background: var(--yami-ink);
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--yami-paper);
	color: var(--yami-ink);
	font-family: var(--yami-font);
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

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

::selection {
	background: var(--yami-accent);
	color: var(--yami-white);
}

.wrap {
	width: var(--wrap);
	margin-inline: auto;
}

.wrap--narrow {
	max-width: 860px;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	transform: translateY(-150%);
	background: var(--yami-white);
	color: var(--yami-ink);
	padding: 10px 16px;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	color: var(--yami-white);
	transition: background .3s ease, color .3s ease, transform .3s ease;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	background: rgba(9, 9, 17, .9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: var(--wrap);
	height: var(--header-height);
	margin-inline: auto;
}

.site-brand,
.site-brand__logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	position: relative;
	z-index: 2;
}

.custom-logo {
	width: auto;
	max-width: 180px;
	max-height: 45px;
}

.site-brand__wordmark {
	font-family: var(--yami-display);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 900;
	letter-spacing: -.08em;
}

.site-nav__list,
.footer-menu,
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 36px);
}

.site-nav__list a {
	position: relative;
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .13em;
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--yami-accent), var(--yami-cyan));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav__social,
.menu-toggle {
	display: none;
}

.section {
	position: relative;
	padding: clamp(96px, 12vw, 180px) 0;
}

.section--paper {
	background: var(--yami-paper);
}

.section--ink {
	background: var(--yami-ink);
	color: var(--yami-white);
}

.section--lavender {
	background: var(--yami-lavender);
}

.section--muted {
	background: var(--yami-muted);
}

.eyebrow {
	display: block;
	margin: 0 0 18px;
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .2em;
	line-height: 1.2;
	text-transform: uppercase;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: clamp(48px, 7vw, 96px);
}

.section-heading h2,
.subheading h2,
.about-banner h2,
.listen-cta h2,
.contact-intro h2 {
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(3.4rem, 8vw, 8.5rem);
	font-weight: 900;
	letter-spacing: -.095em;
	line-height: .78;
	text-transform: uppercase;
}

.section-heading--light {
	color: var(--yami-white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: .74rem;
	font-weight: 900;
	letter-spacing: .15em;
	line-height: 1.3;
	text-transform: uppercase;
}

.text-link b {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-weight: 500;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.text-link:hover b {
	transform: rotate(45deg);
	background: currentColor;
	color: var(--yami-paper);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 58px;
	padding: 15px 27px;
	border: 1px solid var(--yami-ink);
	border-radius: 999px;
	background: var(--yami-ink);
	color: var(--yami-white);
	font-size: .74rem;
	font-weight: 900;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
	transform: translateY(-3px);
	background: var(--yami-accent);
	border-color: var(--yami-accent);
}

.button--small {
	min-height: 44px;
	padding: 11px 20px;
}

.button--ghost {
	background: transparent;
	color: var(--yami-white);
	border-color: rgba(255, 255, 255, .55);
}

.button--ghost:hover {
	background: var(--yami-white);
	border-color: var(--yami-white);
	color: var(--yami-ink);
}

.button--ghost-dark {
	background: transparent;
	color: var(--yami-ink);
}

.button--ghost-dark:hover {
	color: var(--yami-white);
}

.hero {
	position: relative;
	min-height: 100svh;
	padding: calc(var(--header-height) + 44px) 0 40px;
	background-color: var(--yami-ink);
	background-image:
		linear-gradient(115deg, rgba(9, 9, 17, .45), rgba(9, 9, 17, .78)),
		var(--hero-image, linear-gradient(130deg, #12081e, #090911));
	background-size: cover;
	background-position: center;
	color: var(--yami-white);
	overflow: hidden;
}

.hero__noise {
	position: absolute;
	inset: 0;
	opacity: .24;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
	pointer-events: none;
}

.hero__orb {
	position: absolute;
	width: min(54vw, 760px);
	aspect-ratio: 1;
	border-radius: 50%;
	filter: blur(18px);
	mix-blend-mode: screen;
	opacity: .72;
	animation: float-orb 10s ease-in-out infinite alternate;
}

.hero__orb--one {
	top: -20%;
	right: -11%;
	background: radial-gradient(circle at 35% 35%, var(--yami-accent), rgba(255, 61, 187, 0) 66%);
}

.hero__orb--two {
	bottom: -37%;
	left: -8%;
	background: radial-gradient(circle at 52% 48%, var(--yami-secondary), rgba(57, 245, 229, 0) 67%);
	animation-delay: -3s;
}

@keyframes float-orb {
	to { transform: translate3d(-4vw, 5vh, 0) scale(1.08); }
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100svh - var(--header-height) - 110px);
}

.hero__kicker {
	margin: 0 0 2vh;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .24em;
}

.hero__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(6rem, 17.7vw, 17rem);
	font-weight: 900;
	letter-spacing: -.11em;
	line-height: .63;
	text-transform: lowercase;
}

.hero__title span:last-child {
	align-self: flex-end;
	margin-right: .04em;
	background: linear-gradient(90deg, var(--yami-white), var(--yami-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-top: 5vh;
}

.hero__bottom p {
	max-width: 480px;
	margin: 0;
	font-size: clamp(1.15rem, 2.4vw, 2rem);
	font-weight: 700;
	letter-spacing: -.04em;
}

.hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: .65rem;
	font-weight: 900;
	letter-spacing: .2em;
}

.hero__scroll span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 50%;
}

.hero__ticker {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, .2);
	white-space: nowrap;
}

.hero__ticker div {
	display: inline-block;
	padding: 9px 0;
	font-size: .65rem;
	font-weight: 900;
	letter-spacing: .3em;
	animation: ticker 22s linear infinite;
}

@keyframes ticker {
	to { transform: translateX(-50%); }
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 46px);
}

.news-grid--archive {
	row-gap: 70px;
}

.news-card__link {
	display: block;
}

.news-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #dad5e6;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.news-card:hover .news-card__image img {
	transform: scale(1.045);
}

.news-card__body {
	padding-top: 20px;
}

.news-card__meta,
.release-card__meta,
.event-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.news-card__meta span {
	color: var(--yami-accent);
}

.news-card h3 {
	min-height: 3.2em;
	margin: 14px 0 22px;
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
	letter-spacing: -.04em;
	line-height: 1.45;
}

.visual-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 220px;
	background:
		radial-gradient(circle at 75% 22%, var(--yami-cyan), transparent 22%),
		radial-gradient(circle at 18% 78%, var(--yami-accent), transparent 30%),
		linear-gradient(135deg, var(--yami-secondary), var(--yami-ink));
	color: var(--yami-white);
}

.visual-placeholder i {
	font-family: var(--yami-display);
	font-size: clamp(2rem, 5vw, 5rem);
	font-style: normal;
	font-weight: 900;
	letter-spacing: -.08em;
}

.visual-placeholder--release {
	background:
		linear-gradient(45deg, transparent 47%, rgba(255,255,255,.28) 49%, transparent 51%),
		radial-gradient(circle at 68% 26%, var(--yami-cyan), transparent 22%),
		linear-gradient(135deg, var(--yami-accent), var(--yami-secondary));
}

.video-section {
	overflow: hidden;
}

.video-section__word {
	position: absolute;
	top: 28px;
	right: -3vw;
	font-family: var(--yami-display);
	font-size: clamp(8rem, 23vw, 26rem);
	font-weight: 900;
	letter-spacing: -.1em;
	line-height: 1;
	color: rgba(255, 255, 255, .025);
}

.video-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 58px 34px;
}

.video-card__number {
	margin-bottom: 10px;
	color: var(--yami-cyan);
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .15em;
}

.video-card__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
	box-shadow: 0 0 0 1px rgba(255,255,255,.14), 18px 18px 0 rgba(118,87,255,.18);
}

.video-card:nth-child(3n+2) .video-card__frame {
	box-shadow: 0 0 0 1px rgba(255,255,255,.14), 18px 18px 0 rgba(255,61,187,.18);
}

.video-card__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.release-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 58px);
}

.release-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	row-gap: 72px;
}

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

.release-card__art {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #cbc2eb;
	box-shadow: var(--yami-shadow);
}

.release-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.release-card__arrow {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--yami-white);
	color: var(--yami-ink);
	font-size: 1.1rem;
	transition: transform .3s ease, background .3s ease;
}

.release-card:hover .release-card__art img {
	transform: scale(1.05);
	filter: saturate(1.12);
}

.release-card:hover .release-card__arrow {
	transform: rotate(45deg);
	background: var(--yami-cyan);
}

.release-card__meta {
	margin-top: 20px;
}

.release-card__meta span {
	color: #5a36cf;
}

.release-card h3 {
	margin: 9px 0 0;
	font-size: clamp(1.3rem, 2vw, 2.05rem);
	font-weight: 800;
	letter-spacing: -.06em;
	line-height: 1.2;
}

.release-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 64px;
}

.release-filters button {
	padding: 12px 20px;
	border: 1px solid var(--yami-ink);
	border-radius: 999px;
	background: transparent;
	color: var(--yami-ink);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .13em;
	cursor: pointer;
}

.release-filters button.is-active,
.release-filters button:hover {
	background: var(--yami-ink);
	color: var(--yami-white);
}

.filter-empty {
	padding: 50px 0;
	font-weight: 700;
}

.event-section .event-card + .event-card,
.event-list .event-card + .event-card {
	border-top: 0;
}

.event-list {
	border-bottom: 1px solid var(--yami-border);
}

.event-card {
	display: grid;
	grid-template-columns: 135px minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(24px, 5vw, 72px);
	padding: 38px 0;
	border-top: 1px solid var(--yami-border);
}

.event-card__date {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	column-gap: 8px;
}

.event-card__date span {
	grid-column: 1 / -1;
	font-size: .62rem;
	font-weight: 900;
	letter-spacing: .14em;
}

.event-card__date strong {
	font-family: var(--yami-display);
	font-size: 4.6rem;
	letter-spacing: -.09em;
	line-height: .9;
}

.event-card__date em {
	padding-bottom: 5px;
	font-size: .65rem;
	font-style: normal;
	font-weight: 900;
}

.event-card__meta {
	justify-content: flex-start;
	flex-wrap: wrap;
	color: #686270;
}

.event-card h3 {
	margin: 10px 0 0;
	font-size: clamp(1.35rem, 2.4vw, 2.5rem);
	letter-spacing: -.055em;
	line-height: 1.22;
}

.event-card h3 a:hover {
	color: var(--yami-accent);
}

.event-card__actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.event-card--past {
	opacity: .62;
}

.subheading {
	display: flex;
	align-items: baseline;
	gap: 24px;
	margin-bottom: 52px;
}

.subheading span {
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .16em;
}

.subheading h2 {
	font-size: clamp(2.4rem, 5vw, 5rem);
	line-height: .9;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 56px;
	border: 1px solid var(--yami-border);
	background: rgba(255,255,255,.28);
}

.empty-state span {
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .16em;
}

.empty-state p {
	margin: 12px 0 0;
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	font-weight: 700;
	letter-spacing: -.04em;
}

.empty-state--dark {
	border-color: rgba(255,255,255,.22);
	background: rgba(255,255,255,.04);
}

.about-banner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
	min-height: 760px;
	background: var(--yami-cyan);
}

.about-banner__media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 650px;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 21%, var(--yami-cyan), transparent 19%),
		radial-gradient(circle at 25% 82%, var(--yami-accent), transparent 31%),
		linear-gradient(135deg, var(--yami-secondary), #120b22 66%);
}

.about-banner__media::before,
.about-banner__media::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255,255,255,.38);
	border-radius: 50%;
}

.about-banner__media::before {
	width: 70%;
	aspect-ratio: 1;
	transform: translate(-18%, -14%);
}

.about-banner__media::after {
	width: 42%;
	aspect-ratio: 1;
	transform: translate(48%, 52%);
}

.about-banner__media span {
	font-family: var(--yami-display);
	font-size: clamp(18rem, 38vw, 44rem);
	font-weight: 900;
	letter-spacing: -.13em;
	line-height: .8;
	color: rgba(255,255,255,.9);
	text-shadow: 22px 22px 0 rgba(255,61,187,.34);
}

.about-banner__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(70px, 8vw, 130px);
}

.about-banner h2 {
	font-size: clamp(3.8rem, 7.3vw, 8.2rem);
}

.about-banner__content p {
	max-width: 520px;
	margin: 40px 0;
	font-size: clamp(1.12rem, 1.8vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -.03em;
}

.listen-cta {
	position: relative;
	padding: clamp(90px, 12vw, 170px) 0;
	background:
		radial-gradient(circle at 88% 18%, rgba(57,245,229,.3), transparent 22%),
		radial-gradient(circle at 14% 90%, rgba(255,61,187,.28), transparent 31%),
		var(--yami-ink);
	color: var(--yami-white);
}

.listen-cta__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px;
}

.listen-cta h2 {
	font-size: clamp(3.3rem, 7vw, 7.5rem);
}

.listen-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(72vh, 760px);
	padding: calc(var(--header-height) + 100px) 0 76px;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	width: min(58vw, 780px);
	aspect-ratio: 1;
	right: -10%;
	top: -35%;
	border-radius: 50%;
	background: rgba(255,255,255,.24);
	filter: blur(4px);
}

.page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(4rem, 12vw, 13rem);
	font-weight: 900;
	letter-spacing: -.105em;
	line-height: .75;
	word-break: break-word;
}

.page-hero p {
	max-width: 620px;
	margin: 40px 0 0;
	font-size: clamp(1rem, 1.7vw, 1.4rem);
	font-weight: 700;
}

.page-hero--pink {
	background: var(--yami-accent);
}

.page-hero--cyan {
	background: var(--yami-cyan);
}

.page-hero--violet,
.page-hero--profile {
	background: var(--yami-secondary);
	color: var(--yami-white);
}

.page-hero--contact {
	background: var(--yami-ink);
	color: var(--yami-white);
}

.detail-hero,
.article-detail__header {
	padding: calc(var(--header-height) + 90px) 0 80px;
	background: var(--yami-cyan);
}

.detail-hero--release {
	background: var(--yami-accent);
}

.detail-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .15em;
}

.detail-hero__eyebrow span {
	padding: 6px 10px;
	background: var(--yami-ink);
	color: var(--yami-white);
}

.detail-hero h1,
.article-detail__header h1 {
	max-width: 1100px;
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(3rem, 8vw, 8rem);
	letter-spacing: -.08em;
	line-height: .92;
}

.detail-hero p {
	margin: 30px 0 0;
	font-weight: 800;
}

.detail-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 8vw, 120px);
	padding-top: clamp(70px, 10vw, 130px);
	padding-bottom: clamp(70px, 10vw, 130px);
}

.detail-media {
	align-self: start;
	min-height: 440px;
	background: #ded9e7;
}

.detail-media img {
	width: 100%;
	height: auto;
}

.detail-media--square {
	aspect-ratio: 1;
}

.detail-media--square img,
.detail-media--square .visual-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-list {
	margin: 0;
	border-top: 1px solid var(--yami-border);
}

.info-list > div {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 25px;
	padding: 22px 0;
	border-bottom: 1px solid var(--yami-border);
}

.info-list dt,
.release-label {
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .14em;
}

.info-list dd {
	margin: 0;
	font-weight: 700;
}

.prose {
	font-size: 1rem;
	line-height: 2;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose h2,
.prose h3 {
	margin: 2.4em 0 .8em;
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.25;
}

.prose a {
	text-decoration: underline;
	text-decoration-color: var(--yami-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.detail-info .prose {
	margin-top: 40px;
}

.detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 42px;
}

.tracklist {
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--yami-border);
}

.tracklist li {
	display: flex;
	gap: 24px;
	padding: 15px 0;
	border-bottom: 1px solid var(--yami-border);
	font-weight: 700;
}

.tracklist span {
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.credits {
	margin-top: 44px;
}

.credits p {
	margin: 0;
}

.back-link {
	padding-top: 34px;
	padding-bottom: 90px;
	border-top: 1px solid var(--yami-border);
}

.article-detail {
	background: var(--yami-paper);
}

.article-detail__image {
	margin-top: clamp(50px, 8vw, 100px);
}

.article-detail__image img {
	width: 100%;
	max-height: 780px;
	object-fit: cover;
}

.article-detail__content {
	padding-top: 64px;
	padding-bottom: 80px;
}

.profile-section {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
	min-height: 760px;
	background: var(--yami-paper);
}

.profile-section__visual {
	min-height: 680px;
}

.profile-section__visual > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-placeholder {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	min-height: 680px;
	padding: 7vw;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 22%, var(--yami-cyan), transparent 18%),
		radial-gradient(circle at 18% 82%, var(--yami-accent), transparent 26%),
		var(--yami-ink);
	color: var(--yami-white);
}

.profile-placeholder span {
	font-family: var(--yami-display);
	font-size: clamp(6rem, 14vw, 14rem);
	font-weight: 900;
	letter-spacing: -.11em;
	line-height: .67;
}

.profile-placeholder span:last-child {
	align-self: flex-end;
	color: var(--yami-cyan);
}

.profile-section__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 8vw, 130px);
}

.profile-section__content h2 {
	margin: 0 0 38px;
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.2;
}

.profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin-top: 38px;
}

.profile-links a {
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	gap: clamp(60px, 10vw, 150px);
}

.contact-intro {
	position: sticky;
	top: calc(var(--header-height) + 40px);
	align-self: start;
}

.contact-intro h2 {
	font-size: clamp(3rem, 6vw, 6.4rem);
}

.contact-intro p {
	margin-top: 38px;
}

.contact-form {
	display: grid;
	gap: 28px;
}

.contact-form > label > span {
	display: block;
	margin-bottom: 8px;
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .15em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	padding: 15px 0;
	border: 0;
	border-bottom: 1px solid var(--yami-ink);
	border-radius: 0;
	outline: none;
	background: transparent;
	color: var(--yami-ink);
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--yami-accent);
	box-shadow: 0 2px 0 var(--yami-accent);
}

.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: .82rem;
}

.contact-consent span {
	margin: 0 !important;
	font-size: .78rem !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
}

.contact-form .button {
	justify-self: start;
}

.honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form-notice {
	margin-bottom: 30px;
	padding: 18px 20px;
	border-left: 4px solid var(--yami-secondary);
	background: var(--yami-muted);
	font-weight: 700;
}

.form-notice--success {
	border-color: #00a879;
}

.form-notice--error {
	border-color: #d82c65;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 80px;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--yami-border);
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 900;
}

.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
	background: var(--yami-ink);
	color: var(--yami-white);
}

.not-found {
	display: grid;
	place-items: center;
	min-height: 80vh;
	padding: calc(var(--header-height) + 80px) 0 100px;
	background: var(--yami-accent);
	text-align: center;
}

.not-found h1 {
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(8rem, 25vw, 22rem);
	letter-spacing: -.12em;
	line-height: .8;
}

.not-found p {
	margin: 35px 0;
	font-weight: 700;
}

.site-footer {
	position: relative;
	padding: 95px 0 28px;
	overflow: hidden;
	background: var(--yami-ink);
	color: var(--yami-white);
}

.site-footer__glow {
	position: absolute;
	right: -14%;
	bottom: -90%;
	width: min(70vw, 900px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,61,187,.34), transparent 68%);
}

.site-footer__inner {
	position: relative;
}

.site-footer__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 36px;
	padding-bottom: 62px;
	border-bottom: 1px solid rgba(255,255,255,.16);
}

.site-footer__brand {
	font-family: var(--yami-display);
	font-size: clamp(4.2rem, 12vw, 12rem);
	font-weight: 900;
	letter-spacing: -.11em;
	line-height: .68;
}

.site-footer__top p {
	max-width: 320px;
	margin: 0;
	font-weight: 700;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	padding: 60px 0 80px;
}

.site-footer .site-nav__list,
.footer-menu,
.footer-links {
	display: grid;
	gap: 10px;
}

.site-footer .site-nav__list a,
.footer-menu a,
.footer-links a {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.site-footer .site-nav__list a::after {
	display: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.16);
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
	:root {
		--wrap: min(100% - 44px, 1320px);
	}

	.site-nav__list {
		gap: 18px;
	}

	.release-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.event-card__actions {
		grid-column: 2;
		justify-content: flex-start;
	}

	.about-banner,
	.profile-section {
		grid-template-columns: 1fr 1fr;
	}

	.about-banner__content,
	.profile-section__content {
		padding: 70px 52px;
	}
}

@media (max-width: 820px) {
	:root {
		--header-height: 70px;
		--wrap: calc(100% - 36px);
	}

	.site-header__inner {
		width: calc(100% - 36px);
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		position: relative;
		z-index: 3;
		padding: 8px 0;
		border: 0;
		background: transparent;
		color: inherit;
		font-size: .66rem;
		font-weight: 900;
		letter-spacing: .13em;
		cursor: pointer;
	}

	.menu-toggle__lines {
		display: grid;
		gap: 5px;
		width: 24px;
	}

	.menu-toggle__lines i {
		display: block;
		height: 1px;
		background: currentColor;
		transition: transform .25s ease;
	}

	.menu-open .menu-toggle__lines i:first-child {
		transform: translateY(3px) rotate(45deg);
	}

	.menu-open .menu-toggle__lines i:last-child {
		transform: translateY(-3px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		inset: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 90px 10vw 50px;
		background:
			radial-gradient(circle at 80% 20%, rgba(57,245,229,.26), transparent 24%),
			radial-gradient(circle at 20% 80%, rgba(255,61,187,.34), transparent 31%),
			var(--yami-ink);
		color: var(--yami-white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
	}

	.menu-open .site-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-nav__list {
		display: grid;
		gap: 9px;
	}

	.site-nav__list a {
		font-family: var(--yami-display);
		font-size: clamp(2.4rem, 10vw, 5rem);
		font-weight: 900;
		letter-spacing: -.07em;
		line-height: 1;
	}

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

	.site-nav__social {
		display: flex;
		flex-wrap: wrap;
		gap: 18px;
		margin-top: 45px;
		font-size: .69rem;
		font-weight: 800;
		letter-spacing: .1em;
	}

	.hero__title {
		font-size: clamp(5.4rem, 24vw, 11rem);
		line-height: .67;
	}

	.hero__bottom {
		align-items: center;
	}

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

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

	.about-banner,
	.profile-section {
		grid-template-columns: 1fr;
	}

	.about-banner__media,
	.profile-section__visual,
	.profile-placeholder {
		min-height: 72vw;
	}

	.listen-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.listen-cta__buttons {
		justify-content: flex-start;
	}

	.detail-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-intro {
		position: static;
	}

	.site-footer__columns {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 782px) and (min-width: 601px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media screen and (max-width: 600px) {
	body.admin-bar .site-header.is-scrolled {
		top: 0;
	}
}

@media (max-width: 560px) {
	:root {
		--wrap: calc(100% - 28px);
	}

	.section {
		padding: 82px 0;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 44px;
	}

	.section-heading h2,
	.about-banner h2,
	.listen-cta h2,
	.contact-intro h2 {
		font-size: clamp(3.05rem, 16vw, 5.2rem);
	}

	.hero {
		padding-bottom: 36px;
	}

	.hero__inner {
		justify-content: center;
		min-height: calc(100svh - var(--header-height) - 74px);
	}

	.hero__title {
		font-size: clamp(4.7rem, 26vw, 8rem);
	}

	.hero__title span:last-child {
		align-self: flex-start;
		margin-left: .12em;
	}

	.hero__bottom p {
		max-width: 240px;
		font-size: 1rem;
	}

	.news-grid,
	.release-grid,
	.release-grid--archive {
		grid-template-columns: 1fr;
	}

	.news-card h3 {
		min-height: 0;
	}

	.release-grid--archive {
		row-gap: 52px;
	}

	.release-filters {
		gap: 8px;
		margin-bottom: 42px;
	}

	.release-filters button {
		padding: 10px 14px;
		font-size: .58rem;
	}

	.event-card {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 22px;
		padding: 30px 0;
	}

	.event-card__date strong {
		font-size: 3.4rem;
	}

	.event-card__actions {
		grid-column: 1 / -1;
		align-items: flex-start;
		justify-content: space-between;
	}

	.event-card__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.about-banner__content,
	.profile-section__content {
		padding: 70px 22px;
	}

	.page-hero {
		min-height: 500px;
		padding-bottom: 55px;
	}

	.page-hero h1 {
		font-size: clamp(3.2rem, 17vw, 6.2rem);
		line-height: .82;
	}

	.detail-hero,
	.article-detail__header {
		padding: calc(var(--header-height) + 70px) 0 60px;
	}

	.detail-grid {
		padding-top: 55px;
		padding-bottom: 70px;
	}

	.detail-media {
		min-height: 260px;
	}

	.info-list > div {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.contact-grid {
		gap: 52px;
	}

	.site-footer__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__columns {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__columns > div:first-child {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* v1.5.5: optional lyrics section on release detail pages */
.release-lyrics {
	padding: 0 0 clamp(70px, 10vw, 130px);
}

.release-lyrics__inner {
	display: grid;
	grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr);
	gap: clamp(36px, 7vw, 100px);
	padding: clamp(42px, 6vw, 80px);
	border: 8px solid rgba(255, 255, 255, .72);
	border-radius: 32px;
	background:
		radial-gradient(ellipse at 88% 12%, rgba(199, 235, 242, .82), transparent 34%),
		radial-gradient(ellipse at 10% 90%, rgba(242, 165, 203, .48), transparent 36%),
		linear-gradient(135deg, #fff5fa, #eee9fb);
	box-shadow: var(--yami-shadow);
}

.release-lyrics__heading .eyebrow {
	color: var(--yami-secondary);
}

.release-lyrics__heading h2 {
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(2.8rem, 6vw, 6.4rem);
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: .9;
}

.release-lyrics__text {
	min-width: 0;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	font-size: clamp(.95rem, 1.35vw, 1.08rem);
	font-weight: 600;
	line-height: 2.25;
}

@media (max-width: 820px) {
	.release-lyrics__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 560px) {
	.release-lyrics {
		padding-bottom: 72px;
	}

	.release-lyrics__inner {
		gap: 26px;
		padding: 34px 26px 40px;
		border-width: 5px;
		border-radius: 24px;
	}

	.release-lyrics__heading h2 {
		font-size: clamp(2.8rem, 15vw, 4.5rem);
	}

	.release-lyrics__text {
		font-size: .94rem;
		line-height: 2.15;
	}
}

/* v1.3: content management and mobile interaction refinements */
.news-category-label,
.release-type-label {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 11px;
	border-radius: 999px;
	font-family: var(--yami-display);
	font-size: .64rem;
	font-weight: 600;
	letter-spacing: .025em;
	line-height: 1;
}

.news-category-label--news {
	background: #e8dcf7 !important;
	color: #74469c !important;
}

.news-category-label--new-release {
	background: #f8c9df !important;
	color: #a44878 !important;
}

.news-category-label--event-info {
	background: #ccebed !important;
	color: #3f777d !important;
}

.video-slider {
	position: relative;
}

.video-slider__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin: -24px 0 28px;
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .04em;
}

.video-slider__controls button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(141, 92, 188, .16);
	border-radius: 50%;
	background: rgba(255, 255, 255, .72);
	color: var(--yami-secondary);
	box-shadow: 0 8px 24px rgba(88, 61, 108, .08);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.video-slider__controls button:hover:not(:disabled) {
	transform: translateY(-2px);
	background: var(--yami-accent);
}

.video-slider__controls button:disabled {
	opacity: .32;
	cursor: default;
}

.video-grid {
	display: flex;
	grid-template-columns: none;
	gap: 30px;
	padding: 0 0 30px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: rgba(141, 92, 188, .34) transparent;
	scrollbar-width: thin;
}

.video-grid::-webkit-scrollbar {
	height: 5px;
}

.video-grid::-webkit-scrollbar-track {
	background: rgba(141, 92, 188, .07);
	border-radius: 999px;
}

.video-grid::-webkit-scrollbar-thumb {
	background: rgba(141, 92, 188, .34);
	border-radius: 999px;
}

.video-card {
	flex: 0 0 calc((100% - 30px) / 2);
	min-width: 0;
	scroll-snap-align: start;
}

.release-type-label--standard {
	background: #e8dcf7 !important;
	color: #74469c !important;
}

.release-type-label--short {
	background: #f8c9df !important;
	color: #a44878 !important;
}

.release-filters button[data-release-filter="standard"] {
	border-color: rgba(116, 70, 156, .18);
	background: rgba(232, 220, 247, .62);
	color: #74469c;
}

.release-filters button[data-release-filter="short"] {
	border-color: rgba(164, 72, 120, .16);
	background: rgba(248, 201, 223, .58);
	color: #a44878;
}

.release-filters button[data-release-filter="all"] {
	border-color: rgba(63, 119, 125, .16);
	background: rgba(204, 235, 237, .62);
	color: #3f777d;
}

.release-filters button[data-release-filter="standard"].is-active {
	background: #74469c;
	color: #fff;
}

.release-filters button[data-release-filter="short"].is-active {
	background: #c95f96;
	color: #fff;
}

.release-filters button[data-release-filter="all"].is-active {
	background: #4d858b;
	color: #fff;
}

.release-card__featured {
	margin: 8px 0 0;
	color: #8b758f;
	font-family: var(--yami-display);
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .02em;
}

.detail-hero__featured {
	margin-top: 22px !important;
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: clamp(1.15rem, 2vw, 1.75rem) !important;
	font-weight: 500 !important;
}

.release-featured {
	margin: -2px 0 28px;
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 500;
}

.event-record {
	margin-top: clamp(20px, 4vw, 60px);
}

.event-record__grid {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	align-items: stretch;
	gap: clamp(24px, 4vw, 54px);
	margin-bottom: clamp(42px, 7vw, 82px);
}

.event-record__notes {
	padding: clamp(28px, 4vw, 54px);
	border: 1px solid rgba(141, 92, 188, .13);
	border-radius: 28px;
	background: rgba(255, 255, 255, .64);
}

.event-record__notes p {
	margin: 0;
	line-height: 2;
}

.event-record__video {
	position: relative;
	min-height: 320px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 7px solid rgba(255, 255, 255, .72);
	border-radius: 28px;
	background: #000;
	box-shadow: var(--yami-shadow);
}

.event-record__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.event-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 190px;
	gap: 16px;
}

.event-gallery a {
	overflow: hidden;
	border-radius: 22px;
	background: rgba(255, 255, 255, .6);
	box-shadow: 0 14px 34px rgba(88, 61, 108, .09);
}

.event-gallery a:nth-child(5n+1) {
	grid-column: span 2;
	grid-row: span 2;
}

.event-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.event-gallery a:hover img {
	transform: scale(1.035);
}

.profile-cards--core {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 900px;
}

.site-footer__bottom span a {
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, .34);
	text-underline-offset: 4px;
}

.site-footer__bottom span a:hover {
	color: #ffd2e7;
}

#latest-news {
	scroll-margin-top: var(--header-height);
}

@media (max-width: 820px) {
	.video-card {
		flex-basis: min(86vw, 620px);
	}

	.event-record__grid {
		grid-template-columns: 1fr;
	}

	.event-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 170px;
	}
}

@media (max-width: 560px) {
	.video-slider__controls {
		justify-content: flex-start;
		margin: -8px 0 22px;
	}

	.video-grid {
		gap: 16px;
		margin-right: calc((100vw - 100%) / -2);
		padding-right: 28px;
	}

	.video-card {
		flex-basis: calc(100vw - 54px);
	}

	.event-record__video {
		min-height: 0;
		border-width: 5px;
		border-radius: 20px;
	}

	.event-gallery {
		grid-auto-rows: 130px;
		gap: 10px;
	}

	.event-gallery a,
	.event-gallery a:nth-child(5n+1) {
		grid-column: auto;
		grid-row: auto;
		border-radius: 16px;
	}

	.profile-cards--core {
		grid-template-columns: 1fr;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* v1.1: brighter, playful yamitsuki direction */
:root {
	--yami-ink: #27183f;
	--yami-paper: #fffaf0;
	--yami-muted: #fff0f7;
	--yami-lavender: #eadfff;
	--yami-accent: #ff4fa3;
	--yami-secondary: #7758ff;
	--yami-cyan: #54e8dd;
	--yami-yellow: #ffef70;
	--yami-lime: #caff72;
	--yami-border: rgba(39, 24, 63, .28);
	--yami-shadow: 9px 9px 0 rgba(39, 24, 63, .16);
	--yami-radius: 24px;
}

body {
	background: var(--yami-paper);
}

.site-header {
	color: var(--yami-ink);
	background: rgba(255, 250, 240, .76);
	border-bottom: 1px solid rgba(39, 24, 63, .12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
	background: rgba(255, 250, 240, .94);
	color: var(--yami-ink);
	border-bottom-color: rgba(39, 24, 63, .18);
}

.site-nav__list a,
.menu-toggle,
.eyebrow,
.text-link,
.button,
.release-filters button,
.news-card__meta,
.release-card__meta,
.event-card__meta,
.site-footer__bottom {
	text-transform: lowercase;
}

.section-heading h2,
.subheading h2,
.about-banner h2,
.listen-cta h2,
.contact-intro h2,
.page-hero h1 {
	text-transform: lowercase;
}

.button {
	border-width: 2px;
	box-shadow: 4px 4px 0 var(--yami-cyan);
}

.button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 var(--yami-yellow);
}

.button--ghost {
	box-shadow: 4px 4px 0 var(--yami-accent);
}

.hero {
	background-color: var(--yami-yellow);
	background-image:
		linear-gradient(115deg, rgba(255, 250, 240, .28), rgba(255, 239, 112, .66)),
		var(--hero-image, linear-gradient(135deg, #fff4a4, #ffd8ed 58%, #dcd1ff));
	color: var(--yami-ink);
}

.hero::before {
	content: "♡";
	position: absolute;
	top: 14%;
	right: 7%;
	z-index: 1;
	display: grid;
	place-items: center;
	width: clamp(90px, 13vw, 180px);
	aspect-ratio: 1;
	border: 3px solid var(--yami-ink);
	border-radius: 42% 58% 55% 45%;
	background: var(--yami-cyan);
	font-family: var(--yami-display);
	font-size: clamp(2.8rem, 6vw, 6rem);
	transform: rotate(12deg);
	box-shadow: 9px 9px 0 var(--yami-ink);
}

.hero::after {
	content: "";
	position: absolute;
	left: 42%;
	bottom: 8%;
	width: clamp(90px, 12vw, 170px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: repeating-conic-gradient(var(--yami-accent) 0 12deg, transparent 12deg 24deg);
	opacity: .74;
}

.hero__noise {
	opacity: .08;
}

.hero__orb {
	filter: blur(3px);
	mix-blend-mode: multiply;
	opacity: .38;
}

.hero__orb--one {
	background: radial-gradient(circle at 35% 35%, var(--yami-accent), rgba(255, 79, 163, 0) 66%);
}

.hero__orb--two {
	background: radial-gradient(circle at 52% 48%, var(--yami-cyan), rgba(84, 232, 221, 0) 67%);
}

.hero__title {
	color: var(--yami-ink);
}

.hero__title span {
	text-shadow: 5px 5px 0 rgba(255, 255, 255, .86);
}

.hero__title span:last-child {
	background: none;
	-webkit-background-clip: initial;
	background-clip: initial;
	color: var(--yami-accent);
}

.hero__stickers {
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: clamp(24px, 4vh, 44px);
}

.hero__stickers span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 14px;
	border: 2px solid var(--yami-ink);
	border-radius: 999px;
	background: var(--yami-white);
	font-size: .64rem;
	font-weight: 900;
	letter-spacing: .08em;
	box-shadow: 3px 3px 0 var(--yami-ink);
}

.hero__stickers span:nth-child(2) {
	background: var(--yami-cyan);
	transform: rotate(-2deg);
}

.hero__stickers span:nth-child(3) {
	background: var(--yami-accent);
	color: var(--yami-white);
	transform: rotate(2deg);
}

.hero__scroll span {
	border-width: 2px;
	border-color: var(--yami-ink);
	background: var(--yami-white);
}

.hero__ticker {
	border-top: 2px solid var(--yami-ink);
	background: var(--yami-white);
}

.section--ink,
.video-section {
	background:
		radial-gradient(circle at 88% 12%, rgba(255, 239, 112, .28), transparent 18%),
		radial-gradient(circle at 8% 88%, rgba(84, 232, 221, .28), transparent 24%),
		var(--yami-secondary);
}

.section--lavender {
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .72), transparent 22%),
		var(--yami-lavender);
}

.news-card {
	padding: 12px 12px 24px;
	border: 2px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	background: var(--yami-white);
	box-shadow: var(--yami-shadow);
}

.news-card:nth-child(3n+2) {
	transform: rotate(1deg);
}

.news-card:nth-child(3n+3) {
	transform: rotate(-1deg);
}

.news-card__image {
	border-radius: calc(var(--yami-radius) - 10px);
}

.news-card__body {
	padding-inline: 8px;
}

.video-card__frame {
	border: 3px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	box-shadow: 10px 10px 0 var(--yami-cyan);
}

.video-card:nth-child(3n+2) .video-card__frame {
	box-shadow: 10px 10px 0 var(--yami-accent);
}

.video-card__number {
	color: var(--yami-yellow);
}

.release-card__art {
	border: 3px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	box-shadow: 10px 10px 0 var(--yami-accent);
}

.release-card:nth-child(3n+2) .release-card__art {
	box-shadow: 10px 10px 0 var(--yami-cyan);
}

.release-card:nth-child(3n+3) .release-card__art {
	box-shadow: 10px 10px 0 var(--yami-yellow);
}

.release-card__arrow {
	border: 2px solid var(--yami-ink);
}

.release-filters button {
	border-width: 2px;
	background: var(--yami-white);
	box-shadow: 3px 3px 0 var(--yami-ink);
}

.release-filters button.is-active,
.release-filters button:hover {
	background: var(--yami-accent);
	color: var(--yami-white);
}

.event-list {
	display: grid;
	gap: 18px;
	border-bottom: 0;
}

.event-card,
.event-section .event-card + .event-card,
.event-list .event-card + .event-card {
	padding: 30px 32px;
	border: 2px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	background: var(--yami-white);
	box-shadow: 6px 6px 0 var(--yami-cyan);
}

.event-card:nth-child(even) {
	box-shadow: 6px 6px 0 var(--yami-accent);
}

.empty-state {
	border: 2px dashed var(--yami-ink);
	border-radius: var(--yami-radius);
	background: rgba(255, 255, 255, .6);
}

.empty-state--dark {
	border-color: rgba(255, 255, 255, .72);
	background: rgba(255, 255, 255, .12);
}

.about-banner {
	background: var(--yami-accent);
}

.about-banner__media {
	background:
		radial-gradient(circle at 76% 21%, var(--yami-cyan), transparent 19%),
		radial-gradient(circle at 25% 82%, var(--yami-accent), transparent 31%),
		var(--yami-yellow);
}

.about-banner__media span {
	color: var(--yami-ink);
	text-shadow: 22px 22px 0 rgba(255, 255, 255, .66);
}

.about-banner__content {
	background: var(--yami-accent);
	color: var(--yami-ink);
}

.listen-cta {
	background-color: var(--yami-ink);
	background-image:
		radial-gradient(circle, rgba(255, 239, 112, .2) 0 5px, transparent 6px),
		radial-gradient(circle at 88% 18%, rgba(84,232,221,.42), transparent 22%),
		radial-gradient(circle at 14% 90%, rgba(255,79,163,.38), transparent 31%);
	background-size: 42px 42px, auto, auto;
}

.page-hero {
	color: var(--yami-ink);
}

.page-hero::before {
	border: 3px solid var(--yami-ink);
	background: var(--yami-white);
	box-shadow: 12px 12px 0 rgba(39, 24, 63, .2);
}

.page-hero--pink {
	background: var(--yami-accent);
}

.page-hero--cyan {
	background: var(--yami-cyan);
}

.page-hero--violet,
.page-hero--profile {
	background: var(--yami-lime);
	color: var(--yami-ink);
}

.page-hero--contact {
	background: var(--yami-yellow);
	color: var(--yami-ink);
}

.detail-hero,
.article-detail__header {
	background: var(--yami-cyan);
}

.detail-hero--release {
	background: var(--yami-accent);
}

.detail-media,
.detail-media--square {
	overflow: hidden;
	border: 3px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	box-shadow: 10px 10px 0 var(--yami-yellow);
}

.profile-placeholder {
	background:
		radial-gradient(circle at 78% 22%, var(--yami-cyan), transparent 18%),
		radial-gradient(circle at 18% 82%, var(--yami-accent), transparent 26%),
		var(--yami-yellow);
	color: var(--yami-ink);
}

.profile-placeholder span:last-child {
	color: var(--yami-accent);
}

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

.profile-card {
	min-height: 300px;
	padding: 28px;
	border: 2px solid var(--yami-ink);
	border-radius: var(--yami-radius);
	background: var(--yami-yellow);
	box-shadow: 7px 7px 0 var(--yami-ink);
}

.profile-card:nth-child(2) {
	background: var(--yami-cyan);
}

.profile-card:nth-child(3) {
	background: var(--yami-accent);
}

.profile-card:nth-child(4) {
	background: var(--yami-lavender);
}

.profile-card > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--yami-ink);
	border-radius: 50%;
	background: var(--yami-white);
	font-size: .66rem;
	font-weight: 900;
}

.profile-card h3 {
	margin: 70px 0 0;
	font-family: var(--yami-display);
	font-size: clamp(2rem, 3.2vw, 3.6rem);
	letter-spacing: -.08em;
	line-height: .9;
}

.profile-card p {
	margin: 14px 0 4px;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .11em;
}

.profile-card small {
	display: block;
	line-height: 1.65;
}

.profile-format-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.profile-format {
	padding: clamp(34px, 5vw, 70px);
	border: 3px solid var(--yami-ink);
	border-radius: calc(var(--yami-radius) + 8px);
	background: var(--yami-white);
	box-shadow: 10px 10px 0 var(--yami-accent);
}

.profile-format--short {
	background: var(--yami-yellow);
	box-shadow: 10px 10px 0 var(--yami-cyan);
}

.profile-format h2 {
	margin: 0 0 30px;
	font-size: clamp(2rem, 4vw, 4.4rem);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.18;
}

.profile-format p {
	line-height: 2;
}

.profile-format small {
	display: block;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--yami-border);
	font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	padding: 15px 18px;
	border: 2px solid var(--yami-ink);
	border-radius: 14px;
	background: var(--yami-white);
	box-shadow: 4px 4px 0 var(--yami-cyan);
}

.contact-turnstile {
	max-width: 100%;
	overflow: hidden;
}

.site-footer {
	background: var(--yami-ink);
}

@media (max-width: 820px) {
	.site-nav {
		background:
			radial-gradient(circle at 80% 20%, rgba(84,232,221,.72), transparent 25%),
			radial-gradient(circle at 20% 80%, rgba(255,79,163,.64), transparent 32%),
			var(--yami-yellow);
		color: var(--yami-ink);
	}

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

@media (max-width: 560px) {
	.hero::before {
		top: 14%;
		right: -5%;
		width: 92px;
		font-size: 2.7rem;
	}

	.hero::after {
		left: auto;
		right: -4%;
		bottom: 18%;
		width: 92px;
	}

	.hero__stickers {
		max-width: 88%;
	}

	.event-card,
	.event-section .event-card + .event-card,
	.event-list .event-card + .event-card {
		padding: 24px 18px;
	}

	.profile-cards,
	.profile-format-grid {
		grid-template-columns: 1fr;
	}

	.profile-card {
		min-height: 250px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__orb,
	.hero__ticker div {
		animation: none !important;
	}
}

/* v1.2: soft cute × editorial yamitsuki direction */
:root {
	--yami-ink: #453651;
	--yami-paper: #fbf9ff;
	--yami-muted: #f5f0fa;
	--yami-lavender: #eee7fb;
	--yami-accent: #f2a5cb;
	--yami-secondary: #8d5cbc;
	--yami-cyan: #c7ebf2;
	--yami-yellow: #fff0bd;
	--yami-lime: #dceacb;
	--yami-border: rgba(91, 66, 111, .16);
	--yami-shadow: 0 22px 60px rgba(82, 58, 103, .12);
	--yami-radius: 28px;
	--yami-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--yami-display: "Fredoka", "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", sans-serif;
}

html {
	background: #453651;
}

body {
	background-color: var(--yami-paper);
	background-image:
		radial-gradient(ellipse at 4% 10%, rgba(242, 165, 203, .32), transparent 28%),
		radial-gradient(ellipse at 94% 26%, rgba(199, 235, 242, .52), transparent 29%),
		radial-gradient(ellipse at 12% 74%, rgba(255, 240, 189, .45), transparent 26%),
		radial-gradient(ellipse at 92% 88%, rgba(222, 207, 247, .58), transparent 32%);
	background-attachment: fixed;
	color: var(--yami-ink);
	font-weight: 400;
}

::selection {
	background: var(--yami-accent);
	color: var(--yami-ink);
}

.site-header,
.site-header.is-scrolled {
	color: var(--yami-secondary);
	background: rgba(251, 249, 255, .72);
	border-bottom: 1px solid rgba(141, 92, 188, .13);
	box-shadow: 0 7px 30px rgba(103, 73, 128, .05);
	backdrop-filter: blur(16px) saturate(1.12);
	-webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.site-brand__wordmark {
	font-family: var(--yami-display);
	font-weight: 700;
	letter-spacing: -.055em;
}

.site-nav__list a,
.menu-toggle {
	font-family: var(--yami-display);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .025em;
}

.site-nav__list a::after {
	height: 5px;
	bottom: -10px;
	border-radius: 999px;
	background: var(--yami-accent);
}

.section {
	padding: clamp(92px, 10vw, 150px) 0;
}

.section--paper,
.section--muted {
	background: rgba(255, 255, 255, .34);
}

.section--lavender {
	background:
		radial-gradient(ellipse at 92% 12%, rgba(255, 255, 255, .82), transparent 32%),
		radial-gradient(ellipse at 3% 88%, rgba(199, 235, 242, .48), transparent 27%),
		rgba(238, 231, 251, .72);
}

.section--ink,
.video-section {
	background:
		radial-gradient(ellipse at 10% 16%, rgba(242, 165, 203, .34), transparent 29%),
		radial-gradient(ellipse at 92% 84%, rgba(199, 235, 242, .58), transparent 34%),
		rgba(245, 240, 250, .84);
	color: var(--yami-ink);
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: .67rem;
	font-weight: 600;
	letter-spacing: .1em;
}

.section-heading {
	margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2,
.subheading h2,
.about-banner h2,
.listen-cta h2,
.contact-intro h2,
.page-hero h1 {
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: -.045em;
}

.section-heading h2,
.about-banner h2,
.listen-cta h2,
.contact-intro h2 {
	font-size: clamp(3.2rem, 6.7vw, 6.6rem);
	line-height: .88;
}

.section-heading--light {
	color: var(--yami-secondary);
}

.text-link {
	color: var(--yami-ink);
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .03em;
}

.text-link b {
	border-color: rgba(69, 54, 81, .28);
	background: rgba(255, 255, 255, .68);
}

.text-link:hover b {
	background: var(--yami-secondary);
	color: var(--yami-white);
}

.button,
.button--ghost,
.button--ghost-dark {
	min-height: 52px;
	padding: 13px 25px;
	border: 0;
	background: var(--yami-secondary);
	color: var(--yami-white);
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .035em;
	box-shadow: 0 10px 25px rgba(113, 75, 146, .18);
}

.button:hover,
.button--ghost:hover,
.button--ghost-dark:hover {
	transform: translateY(-3px);
	background: var(--yami-accent);
	color: var(--yami-ink);
	box-shadow: 0 14px 30px rgba(171, 103, 148, .2);
}

.hero {
	min-height: 100svh;
	padding: calc(var(--header-height) + 42px) 0 42px;
	background-color: #eee7fb;
	background-image:
		linear-gradient(180deg, rgba(69, 54, 81, .02) 42%, rgba(69, 54, 81, .28) 100%),
		var(--hero-image,
			radial-gradient(ellipse at 15% 12%, rgba(242, 165, 203, .86), transparent 31%),
			radial-gradient(ellipse at 88% 20%, rgba(199, 235, 242, .92), transparent 38%),
			radial-gradient(ellipse at 34% 92%, rgba(255, 240, 189, .9), transparent 34%),
			linear-gradient(135deg, #f7eafa, #e8f5f8 58%, #f2ecfc));
	background-position: center;
	color: var(--yami-ink);
}

.hero::before,
.hero::after {
	display: none;
	content: none;
}

.hero__noise {
	opacity: .035;
	mix-blend-mode: multiply;
}

.hero__orb {
	filter: blur(40px);
	mix-blend-mode: soft-light;
	opacity: .34;
}

.hero__orb--one {
	background: radial-gradient(circle at 35% 35%, #fff, rgba(255, 255, 255, 0) 68%);
}

.hero__orb--two {
	background: radial-gradient(circle at 50% 50%, var(--yami-accent), rgba(242, 165, 203, 0) 68%);
}

.hero__inner {
	justify-content: flex-end;
	min-height: calc(100svh - var(--header-height) - 112px);
	padding-bottom: clamp(36px, 7vh, 78px);
}

.hero__kicker {
	margin-bottom: 18px;
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .08em;
}

.hero__title {
	flex-direction: row;
	align-items: baseline;
	gap: .04em;
	font-size: clamp(5.2rem, 12.2vw, 12rem);
	font-weight: 600;
	letter-spacing: -.075em;
	line-height: .72;
}

.hero__title span,
.hero__title span:last-child {
	align-self: auto;
	margin: 0;
	background: none;
	-webkit-background-clip: initial;
	background-clip: initial;
	color: var(--yami-secondary);
	text-shadow: 0 6px 30px rgba(255, 255, 255, .7);
}

.hero__title span:last-child {
	color: #d86fa8;
}

.hero--has-image .hero__kicker,
.hero--has-image .hero__title span {
	color: var(--yami-white);
	text-shadow: 0 3px 26px rgba(54, 35, 68, .4);
}

.hero--has-image .hero__title span:last-child {
	color: #ffd2e7;
}

.hero__bottom {
	margin-top: 32px;
}

.hero__bottom p {
	font-size: clamp(1rem, 1.7vw, 1.35rem);
	font-weight: 500;
	letter-spacing: -.02em;
}

.hero--has-image .hero__bottom {
	color: var(--yami-white);
	text-shadow: 0 2px 18px rgba(48, 31, 60, .45);
}

.hero__scroll {
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .06em;
}

.hero__scroll span {
	border-color: rgba(69, 54, 81, .22);
	background: rgba(255, 255, 255, .62);
}

.hero--has-image .hero__scroll span {
	border-color: rgba(255, 255, 255, .68);
	background: rgba(255, 255, 255, .16);
}

.hero__ticker {
	border-top: 1px solid rgba(255, 255, 255, .52);
	background: rgba(255, 255, 255, .44);
	color: var(--yami-secondary);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.hero__ticker div {
	font-family: var(--yami-display);
	font-weight: 500;
	letter-spacing: .13em;
}

.news-card,
.news-card:nth-child(3n+2),
.news-card:nth-child(3n+3) {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.news-card__image {
	border-radius: 24px;
	box-shadow: var(--yami-shadow);
}

.news-card__body {
	padding: 22px 7px 0;
}

.news-card__meta,
.release-card__meta,
.event-card__meta {
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .055em;
}

.news-card__meta span,
.release-card__meta span {
	color: var(--yami-secondary);
}

.news-card h3 {
	font-weight: 500;
	letter-spacing: -.025em;
}

.visual-placeholder,
.visual-placeholder--release {
	background:
		radial-gradient(ellipse at 74% 22%, rgba(255, 255, 255, .7), transparent 26%),
		radial-gradient(ellipse at 18% 80%, var(--yami-accent), transparent 34%),
		linear-gradient(135deg, var(--yami-cyan), var(--yami-lavender));
	color: var(--yami-secondary);
}

.visual-placeholder i {
	font-weight: 600;
}

.video-section__word {
	color: rgba(141, 92, 188, .045);
}

.video-card__number {
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-weight: 600;
}

.video-card__frame,
.video-card:nth-child(3n+2) .video-card__frame {
	border: 8px solid rgba(255, 255, 255, .74);
	border-radius: 28px;
	box-shadow: 0 24px 58px rgba(88, 61, 108, .14);
}

.release-card__art,
.release-card:nth-child(3n+2) .release-card__art,
.release-card:nth-child(3n+3) .release-card__art {
	border: 0;
	border-radius: 28px;
	box-shadow: var(--yami-shadow);
}

.release-card__arrow {
	border: 0;
	background: rgba(255, 255, 255, .88);
	color: var(--yami-secondary);
	box-shadow: 0 7px 20px rgba(70, 49, 85, .12);
}

.release-card:hover .release-card__arrow {
	background: var(--yami-accent);
}

.release-card h3 {
	font-weight: 600;
	letter-spacing: -.04em;
}

.release-filters button {
	border: 1px solid rgba(141, 92, 188, .2);
	background: rgba(255, 255, 255, .58);
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: .035em;
	box-shadow: none;
}

.release-filters button.is-active,
.release-filters button:hover {
	background: var(--yami-secondary);
	color: var(--yami-white);
}

.event-list {
	gap: 16px;
}

.event-card,
.event-section .event-card + .event-card,
.event-list .event-card + .event-card,
.event-card:nth-child(even) {
	padding: 31px 34px;
	border: 1px solid rgba(141, 92, 188, .13);
	border-radius: 24px;
	background: rgba(255, 255, 255, .66);
	box-shadow: 0 14px 42px rgba(88, 61, 108, .08);
}

.event-card__date strong {
	color: var(--yami-secondary);
	font-weight: 600;
}

.event-card h3 {
	font-weight: 500;
	letter-spacing: -.035em;
}

.empty-state,
.empty-state--dark {
	border: 1px solid rgba(141, 92, 188, .14);
	border-radius: 24px;
	background: rgba(255, 255, 255, .52);
	color: var(--yami-ink);
}

.about-banner {
	min-height: 680px;
	background: rgba(255, 255, 255, .68);
}

.about-banner__media {
	min-height: 620px;
	background:
		radial-gradient(ellipse at 77% 20%, rgba(255, 255, 255, .76), transparent 25%),
		radial-gradient(ellipse at 16% 82%, rgba(242, 165, 203, .78), transparent 35%),
		linear-gradient(135deg, var(--yami-cyan), var(--yami-lavender) 68%);
}

.about-banner__media::before,
.about-banner__media::after {
	border-color: rgba(255, 255, 255, .58);
}

.about-banner__media span {
	color: rgba(255, 255, 255, .88);
	text-shadow: 0 22px 60px rgba(112, 76, 137, .13);
}

.about-banner__content {
	background:
		radial-gradient(ellipse at 90% 10%, rgba(242, 165, 203, .3), transparent 28%),
		rgba(255, 255, 255, .72);
	color: var(--yami-ink);
}

.about-banner__content p {
	font-weight: 500;
}

.listen-cta {
	background:
		radial-gradient(ellipse at 84% 16%, rgba(242, 165, 203, .27), transparent 29%),
		radial-gradient(ellipse at 10% 96%, rgba(199, 235, 242, .2), transparent 35%),
		linear-gradient(135deg, #493858, #715384);
	color: var(--yami-white);
}

.listen-cta .eyebrow {
	color: #efd9ff;
}

.listen-cta .button--ghost {
	border: 1px solid rgba(255, 255, 255, .32);
	background: rgba(255, 255, 255, .09);
	box-shadow: none;
}

.listen-cta .button--ghost:hover {
	border-color: transparent;
	background: var(--yami-accent);
}

.page-hero {
	min-height: min(62vh, 650px);
	color: var(--yami-ink);
}

.page-hero::before {
	display: block;
	content: "";
	right: -6%;
	top: -40%;
	border: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 67%);
	box-shadow: none;
	filter: blur(8px);
}

.page-hero h1 {
	font-size: clamp(4rem, 10vw, 10rem);
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: .82;
}

.page-hero p {
	font-weight: 500;
}

.page-hero--pink {
	background:
		radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, .66), transparent 28%),
		linear-gradient(135deg, #f7cae2, #eee7fb);
}

.page-hero--cyan {
	background:
		radial-gradient(ellipse at 12% 88%, rgba(255, 255, 255, .74), transparent 28%),
		linear-gradient(135deg, #d9f3f4, #e9e4fb);
}

.page-hero--violet,
.page-hero--profile {
	background:
		radial-gradient(ellipse at 83% 18%, rgba(255, 255, 255, .7), transparent 29%),
		linear-gradient(135deg, #e5dcf6, #dceef1);
	color: var(--yami-ink);
}

.page-hero--contact {
	background:
		radial-gradient(ellipse at 16% 82%, rgba(242, 165, 203, .34), transparent 34%),
		linear-gradient(135deg, #fff1c8, #eee7fb);
	color: var(--yami-ink);
}

.detail-hero,
.article-detail__header {
	background:
		radial-gradient(ellipse at 88% 14%, rgba(255, 255, 255, .7), transparent 29%),
		linear-gradient(135deg, #d9f1f4, #eee7fb);
}

.detail-hero--release {
	background:
		radial-gradient(ellipse at 10% 86%, rgba(255, 255, 255, .7), transparent 28%),
		linear-gradient(135deg, #f7c9e1, #eee7fb);
}

.detail-hero__eyebrow span {
	border-radius: 999px;
	background: var(--yami-secondary);
}

.detail-hero h1,
.article-detail__header h1 {
	font-family: var(--yami-display);
	font-weight: 600;
	letter-spacing: -.045em;
}

.detail-media,
.detail-media--square {
	border: 8px solid rgba(255, 255, 255, .72);
	border-radius: 28px;
	box-shadow: var(--yami-shadow);
}

.profile-section {
	background: rgba(255, 255, 255, .55);
}

.profile-placeholder {
	background:
		radial-gradient(ellipse at 82% 18%, rgba(255, 255, 255, .72), transparent 27%),
		radial-gradient(ellipse at 16% 82%, rgba(242, 165, 203, .6), transparent 34%),
		linear-gradient(135deg, var(--yami-cyan), var(--yami-lavender));
	color: var(--yami-secondary);
}

.profile-placeholder span,
.profile-placeholder span:last-child {
	color: var(--yami-secondary);
	font-weight: 600;
}

.profile-placeholder span:last-child {
	color: #d86fa8;
}

.profile-section__content h2,
.profile-format h2 {
	font-weight: 600;
	letter-spacing: -.045em;
}

.profile-card,
.profile-card:nth-child(2),
.profile-card:nth-child(3),
.profile-card:nth-child(4) {
	border: 1px solid rgba(141, 92, 188, .13);
	border-radius: 28px;
	box-shadow: 0 18px 44px rgba(88, 61, 108, .09);
}

.profile-card {
	background: rgba(255, 241, 200, .72);
}

.profile-card:nth-child(2) {
	background: rgba(217, 243, 244, .76);
}

.profile-card:nth-child(3) {
	background: rgba(247, 202, 226, .72);
}

.profile-card:nth-child(4) {
	background: rgba(238, 231, 251, .82);
}

.profile-card > span {
	border: 0;
	background: rgba(255, 255, 255, .72);
	color: var(--yami-secondary);
}

.profile-card h3 {
	font-weight: 600;
	letter-spacing: -.045em;
}

.profile-format,
.profile-format--short {
	border: 1px solid rgba(141, 92, 188, .13);
	border-radius: 32px;
	background: rgba(255, 255, 255, .72);
	box-shadow: 0 22px 60px rgba(88, 61, 108, .09);
}

.profile-format--short {
	background: rgba(255, 241, 200, .7);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	padding: 16px 18px;
	border: 1px solid rgba(141, 92, 188, .16);
	border-radius: 16px;
	background: rgba(255, 255, 255, .68);
	box-shadow: 0 8px 24px rgba(88, 61, 108, .05);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--yami-secondary);
	box-shadow: 0 0 0 4px rgba(141, 92, 188, .1);
}

.form-notice {
	border: 1px solid rgba(141, 92, 188, .14);
	border-left: 5px solid var(--yami-secondary);
	border-radius: 14px;
	background: rgba(255, 255, 255, .68);
}

.site-footer {
	background:
		radial-gradient(ellipse at 88% 12%, rgba(242, 165, 203, .2), transparent 29%),
		linear-gradient(135deg, #43334e, #574065);
}

.site-footer__glow {
	background: radial-gradient(circle, rgba(199, 235, 242, .16), transparent 68%);
}

.site-footer__brand {
	font-weight: 600;
	letter-spacing: -.065em;
}

@media (max-width: 820px) {
	.site-nav {
		background:
			radial-gradient(ellipse at 82% 16%, rgba(242, 165, 203, .5), transparent 31%),
			radial-gradient(ellipse at 16% 86%, rgba(199, 235, 242, .72), transparent 36%),
			#f8f4fc;
		color: var(--yami-secondary);
	}

	.site-nav__list a {
		font-weight: 600;
		letter-spacing: -.035em;
	}

	.hero__title {
		font-size: clamp(4.8rem, 19vw, 9rem);
	}
}

@media (max-width: 560px) {
	.section-heading h2,
	.about-banner h2,
	.listen-cta h2,
	.contact-intro h2 {
		font-size: clamp(3rem, 14vw, 4.8rem);
	}

	.hero {
		min-height: 88svh;
	}

	.hero__inner {
		min-height: calc(88svh - var(--header-height) - 74px);
	}

	.hero__title {
		flex-direction: column;
		font-size: clamp(4.8rem, 23vw, 7.2rem);
		line-height: .67;
	}

	.hero__title span:last-child {
		align-self: flex-start;
		margin-left: .18em;
	}

	.hero__bottom {
		margin-top: 24px;
	}

	.event-card,
	.event-section .event-card + .event-card,
	.event-list .event-card + .event-card {
		padding: 24px 20px;
	}

	.video-card__frame,
	.video-card:nth-child(3n+2) .video-card__frame {
		border-width: 5px;
		border-radius: 20px;
	}
}

.profile-cards.profile-cards--core {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 900px;
}

@media (max-width: 560px) {
	.profile-cards.profile-cards--core {
		grid-template-columns: 1fr;
	}
}

/* v1.4: reliable mobile navigation, editable profiles and release showcase */
.home-release-showcase {
	display: grid;
	gap: clamp(54px, 7vw, 94px);
}

.home-release-featured {
	width: 100%;
	margin-inline: 0;
}

.release-card--featured-home .release-card__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
	grid-template-rows: auto auto 1fr auto;
	column-gap: clamp(36px, 5vw, 76px);
	align-items: start;
}

.release-card--featured-home .release-card__art {
	grid-column: 1;
	grid-row: 1 / span 4;
}

.release-card--featured-home .release-card__meta,
.release-card--featured-home h3,
.release-card--featured-home .release-card__featured {
	grid-column: 2;
}

.release-card--featured-home .release-card__meta {
	margin-top: 18px;
}

.release-card--featured-home h3 {
	margin-top: 26px;
	font-size: clamp(2.15rem, 3.5vw, 3.75rem);
	line-height: 1.08;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.release-card--featured-home .release-card__featured {
	font-size: clamp(.9rem, 1.5vw, 1.12rem);
}

.home-release-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 40px);
}

.home-release-slider__controls {
	display: none;
}

.member-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(24px, 4vw, 54px);
	width: min(100%, 1120px);
	margin-inline: auto;
}

.member-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(141, 92, 188, .14);
	border-radius: 30px;
	background: rgba(255, 255, 255, .76);
	box-shadow: 0 24px 60px rgba(88, 61, 108, .1);
}

.member-card--akecharu {
	border-color: rgba(204, 102, 151, .18);
	background:
		radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .78), transparent 33%),
		radial-gradient(circle at 8% 94%, rgba(238, 231, 251, .72), transparent 38%),
		linear-gradient(145deg, #fbd9e9, #fff1f7 62%, #f8eafa);
	box-shadow: 0 24px 60px rgba(173, 80, 126, .12);
}

.member-card--zero {
	border-color: rgba(83, 139, 102, .18);
	background:
		radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .76), transparent 33%),
		radial-gradient(circle at 8% 94%, rgba(199, 235, 242, .58), transparent 38%),
		linear-gradient(145deg, #e4f1dc, #f0f8ea 62%, #e4f4ee);
	box-shadow: 0 24px 60px rgba(67, 124, 88, .11);
}

.member-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 22%, rgba(199, 235, 242, .9), transparent 30%),
		radial-gradient(circle at 20% 82%, rgba(242, 165, 203, .68), transparent 34%),
		#eee7fb;
}

.member-card--zero .member-card__image {
	background:
		radial-gradient(circle at 20% 22%, rgba(255, 241, 200, .95), transparent 30%),
		radial-gradient(circle at 82% 78%, rgba(199, 235, 242, .72), transparent 35%),
		#e7f2df;
}

.member-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-card__image > span {
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: clamp(5rem, 12vw, 10rem);
	font-weight: 600;
	line-height: 1;
}

.member-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 250px;
	padding: clamp(26px, 4vw, 46px);
}

.member-card__number {
	position: absolute;
	top: 28px;
	right: 30px;
	color: rgba(141, 92, 188, .38);
	font-family: var(--yami-display);
	font-size: .76rem;
	font-weight: 600;
}

.member-card h3 {
	margin: 0;
	font-family: var(--yami-display);
	font-size: clamp(2.1rem, 4vw, 3.8rem);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: 1;
}

.member-card__body > p {
	margin: 15px 0 0;
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .035em;
}

.member-card__body > small {
	display: block;
	margin-top: 7px;
	color: #8b758f;
	font-size: .76rem;
}

.member-card__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 30px;
}

.member-card__social a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 7px 13px;
	border: 1px solid rgba(141, 92, 188, .18);
	border-radius: 999px;
	background: rgba(238, 231, 251, .6);
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: .68rem;
	font-weight: 600;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.member-card__social a:hover {
	transform: translateY(-2px);
	background: var(--yami-secondary);
	color: #fff;
}

@media (max-width: 820px) {
	body.menu-open {
		overflow: hidden;
	}

	.site-header,
	.site-header.is-scrolled {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.menu-open .site-header,
	.menu-open .site-header.is-scrolled {
		background: transparent;
		border-bottom-color: transparent;
		box-shadow: none;
	}

	.site-nav {
		top: 0;
		right: auto;
		bottom: auto;
		left: 0;
		z-index: 1;
		justify-content: flex-start;
		width: 100vw;
		height: 100dvh;
		min-height: 100svh;
		padding: calc(96px + env(safe-area-inset-top)) max(26px, 8vw) calc(34px + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y;
	}

	.site-nav__list {
		width: 100%;
		margin-block: auto 0;
	}

	.site-nav__list a {
		display: block;
		padding-block: 4px;
	}

	.site-nav__social {
		width: 100%;
		margin: auto 0 0;
		padding-top: 34px;
	}

	.member-card__body {
		min-height: 230px;
	}
}

@media (max-width: 700px) {
	.news-grid--home {
		display: flex;
		gap: 18px;
		margin-right: calc((100vw - 100%) / -2);
		padding: 0 28px 24px 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.news-grid--home::-webkit-scrollbar {
		display: none;
	}

	.news-grid--home .news-card {
		flex: 0 0 min(82vw, 360px);
		min-width: 0;
		scroll-snap-align: start;
	}

	.release-card--featured-home .release-card__link {
		display: block;
	}

	.release-card--featured-home .release-card__meta {
		margin-top: 22px;
	}

	.release-card--featured-home h3 {
		margin-top: 15px;
		font-size: clamp(2rem, 10vw, 3.5rem);
	}

	.home-release-showcase {
		gap: 48px;
	}

	.home-release-slider {
		margin-right: calc((100vw - 100%) / -2);
	}

	.home-release-slider__controls {
		display: flex;
		align-items: center;
		gap: 12px;
		margin: 0 0 20px;
		padding-right: calc((100vw - 100%) / 2);
		color: var(--yami-secondary);
		font-family: var(--yami-display);
		font-size: .68rem;
		font-weight: 600;
	}

	.home-release-slider__controls button {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(141, 92, 188, .16);
		border-radius: 50%;
		background: rgba(255, 255, 255, .72);
		color: var(--yami-secondary);
		box-shadow: 0 8px 24px rgba(88, 61, 108, .08);
	}

	.home-release-slider__controls button:disabled {
		opacity: .32;
	}

	.home-release-row {
		display: flex;
		gap: 18px;
		padding: 0 28px 24px 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.home-release-row::-webkit-scrollbar {
		display: none;
	}

	.release-card--compact-home {
		flex: 0 0 min(76vw, 340px);
		scroll-snap-align: start;
	}

	.member-grid {
		grid-template-columns: 1fr;
		width: min(100%, 540px);
	}
}

@media (max-width: 560px) {
	.site-nav {
		padding-right: 24px;
		padding-left: 24px;
	}

	.site-nav__list {
		gap: 7px;
	}

	.site-nav__list a {
		font-size: clamp(2.15rem, 10.5vw, 3.45rem);
		line-height: .96;
	}

	.site-nav__social {
		gap: 14px;
		font-size: .66rem;
	}

	.member-card {
		border-radius: 24px;
	}

	.member-card__image {
		aspect-ratio: 1 / 1;
	}

	.member-card__body {
		min-height: 220px;
		padding: 28px 24px;
	}

	.member-card__number {
		top: 28px;
		right: 24px;
	}
}

@supports (overflow: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

/* v1.5.3: responsive hero, past-event thumbnails and reliable live video embeds */
.event-card--past {
	grid-template-columns: 180px 110px minmax(0, 1fr) auto;
	opacity: 1;
}

.event-card__thumb {
	display: block;
	width: 180px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 18px;
	background: rgba(234, 223, 255, .72);
	box-shadow: 0 10px 28px rgba(88, 61, 108, .12);
}

.event-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.event-card__thumb:hover img {
	transform: scale(1.035);
}

.event-card__thumb--placeholder {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 22% 78%, rgba(242, 165, 203, .72), transparent 32%),
		radial-gradient(circle at 78% 22%, rgba(199, 235, 242, .88), transparent 36%),
		linear-gradient(135deg, #f8effb, #e9f7f8);
	color: var(--yami-secondary);
	font-family: var(--yami-display);
	font-size: 1.6rem;
	font-weight: 600;
}

.event-record__video {
	width: 100%;
	isolation: isolate;
}

.event-record__video iframe {
	display: block;
	max-width: none;
}

@media (max-width: 1100px) {
	.event-card--past {
		grid-template-columns: 160px 90px minmax(0, 1fr);
	}

	.event-card--past .event-card__thumb {
		grid-row: 1 / span 2;
		width: 160px;
	}

	.event-card--past .event-card__actions {
		grid-column: 3;
	}
}

@media (max-width: 820px) {
	.hero--has-image {
		background-position: 66% center;
	}

	.event-card--past {
		grid-template-columns: 124px 82px minmax(0, 1fr);
		column-gap: 18px;
		row-gap: 16px;
	}

	.event-card--past .event-card__thumb {
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 124px;
	}

	.event-card--past .event-card__date {
		grid-column: 2;
		grid-row: 1;
	}

	.event-card--past .event-card__main {
		grid-column: 3;
		grid-row: 1;
	}

	.event-card--past .event-card__actions {
		grid-column: 2 / -1;
		grid-row: 2;
	}

	.event-record__video {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 560px) {
	.hero--has-image {
		background-position: 72% center;
	}

	.event-card--past,
	.event-list .event-card--past + .event-card--past {
		grid-template-columns: 92px 64px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 16px;
	}

	.event-card--past .event-card__thumb {
		width: 92px;
		border-radius: 14px;
	}

	.event-card--past .event-card__date strong {
		font-size: 2.65rem;
	}

	.event-card--past .event-card__date span,
	.event-card--past .event-card__date em {
		font-size: .52rem;
	}

	.event-card--past .event-card__meta {
		font-size: .58rem;
	}

	.event-card--past h3 {
		margin-top: 7px;
		font-size: clamp(1rem, 4.8vw, 1.3rem);
	}

	.event-card--past .event-card__actions {
		justify-content: flex-start;
	}

	.event-record__video {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 9;
		border-width: 5px;
		border-radius: 20px;
	}

	.event-record__video iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}
}
