/* YUKI / 佑樹 Official Site - rebuilt without important flags */
:root {
  --bg: #050505;
  --bg-soft: #0c0709;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.11);
  --line-gold: rgba(215, 185, 103, 0.28);
  --text: #f7f1e8;
  --muted: rgba(247, 241, 232, 0.7);
  --soft: rgba(247, 241, 232, 0.48);
  --gold: #d7b967;
  --gold-bright: #f1d88a;
  --red: #4a0614;
  --blue: #121b26;
  --serif-display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1180px;
  --header-h: 58px;
}

* { box-sizing: border-box; }
html { background: #000; color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #050505;
  color: var(--text);
  font-family: var(--serif-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(215, 185, 103, 0.28); }
a { color: inherit; text-decoration: none; }
img, video, iframe, audio { max-width: 100%; }
img { display: block; }
button, input, textarea, select { font: inherit; }
.mobile-break { display: none; }

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(215,185,103,.12), transparent 24rem),
    radial-gradient(circle at 12% 0%, rgba(120, 20, 43, 0.18), transparent 28rem);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  background: linear-gradient(90deg, rgba(28, 24, 18, .92), rgba(9, 8, 10, .94), rgba(14, 8, 15, .92));
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.brand-button {
  position: relative;
  flex: 0 0 132px;
  width: 132px;
  height: 34px;
  display: block;
  color: var(--text);
  font-family: var(--sans);
  overflow: hidden;
}
.brand-button span,
.brand-chara { display: none; }
.brand-button::before {
  position: absolute;
  left: 0;
  display: block;
  white-space: nowrap;
  pointer-events: none;
}
.brand-button::before {
  content: "YUKI / 佑樹";
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-shadow: none;
}
.brand-button::after {
  content: none;
  display: none;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 28px);
}
.nav a {
  color: rgba(247,241,232,.78);
  font-family: var(--sans);
  font-size: clamp(1rem, .92vw, 1.08rem);
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .2s ease;
}
.nav a:hover,
.nav a:focus-visible,
.nav .nav-fanclub { color: var(--gold); }
.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-social__link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0;
}
.header-social__link::before { font-size: 15px; font-weight: 800; line-height: 1; }
.header-social__link--x::before { content: "X"; }
.header-social__link--youtube::before { content: "▶"; }
.header-social__link--tiktok::before { content: "♪"; }
.menu-toggle { display: none; }

main { min-height: 100vh; }
.page-hero + main { min-height: auto; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}
.hero-bg,
.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  background-image: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.72)), url("images/top.jpg");
  transform: scale(1.05);
}
.hero-bg::before,
.hero-bg::after { content: none; display: none; }
.hero-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(215,185,103,.14), transparent 28rem),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5));
}
.hero__meta {
  position: absolute;
  top: calc(var(--header-h) + 34px);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  width: min(100% - 40px, 780px);
}
.hero__meta span {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(247,241,232,.78);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 44px, 960px);
  margin: 0 auto;
  text-align: center;
}
.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(4.6rem, 9vw, 9rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: .035em;
}
.hero h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: .18em;
}
.jp-name { color: var(--gold); }
.slash { color: rgba(247,241,232,.42); }
.hero-catch,
.page-subtitle {
  margin: 22px auto 0;
  color: rgba(247,241,232,.72);
  font-family: var(--sans);
  font-size: clamp(.95rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.7;
}


section { padding: clamp(72px, 7vw, 128px) 24px; }
.section-heading,
.index-section-heading { text-align: center; }
.section-title,
.index-section-title,
.music h2,
.social h2,
.store-final h2,
.lyrics-title {
  margin: 0 0 clamp(34px, 4vw, 62px);
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
}
.eyebrow { display: none; }

.achievement-grid,
.news-list,
.live-list,
.biography-list,
.track-grid,
.goods-grid,
.disc-grid,
.related-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.page-hero + main > .news-list,
.page-hero + main > .live-list,
.page-hero + main > .biography-list {
  padding: clamp(46px, 5.6vw, 82px) 24px clamp(54px, 5vw, 78px);
}
.achievement-grid,
.news-list,
.live-list,
.biography-list { display: grid; gap: 18px; }
.achievement-item,
.news-item,
.live-item,
.biography-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: transparent;
}
.achievement-item--interactive,
.live-item--interactive,
.news-item--interactive {
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.achievement-item--interactive:hover,
.achievement-item--interactive:focus-within,
.live-item--interactive:hover,
.live-item--interactive:focus-within,
.news-item--interactive:hover,
.news-item--interactive:focus-within {
  border-color: rgba(215,185,103,.52);
  background: rgba(215,185,103,.045);
  transform: translateX(6px);
}
.live-open,
.topic-open,
.news-open {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.live-open:focus-visible,
.topic-open:focus-visible,
.news-open:focus-visible {
  outline: 1px solid rgba(241,216,138,.78);
  outline-offset: 8px;
}
.achievement-item:last-child,
.news-item:last-child,
.live-item:last-child,
.biography-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.number,
.news-date,
.live-date,
.biography-date {
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.topic-open .number {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(215,185,103,.22);
  animation: topicLabelGlow 2.8s ease-in-out infinite;
}
.achievement-label,
.news-title,
.live-title,
.biography-title {
  margin: 0;
  color: rgba(247,241,232,.84);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.7;
}
.news-tag,
.live-tag,
.biography-tag { display: none; }
.mobile-title-break { display: none; }
.news-modal-open { overflow: hidden; }
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease;
}
.news-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.news-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.news-modal__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(76svh, 720px);
  overflow: auto;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(215,185,103,.34);
  background: linear-gradient(145deg, rgba(20,16,12,.98), rgba(5,5,5,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.news-modal__panel:focus {
  outline: none;
}
.news-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.news-modal__date {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.news-modal__title {
  margin: 0;
  color: rgba(247,241,232,.96);
  font-size: clamp(1.42rem, 2.25vw, 2.18rem);
  letter-spacing: .025em;
  line-height: 1.48;
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: nowrap;
  white-space: nowrap;
}
.news-modal__body {
  margin-top: 26px;
  color: rgba(247,241,232,.78);
  font-family: var(--sans);
  font-size: 1.04rem;
  line-height: 2;
  letter-spacing: .025em;
}
.news-modal__link-wrap { margin: 30px 0 0; }
.news-modal__link-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid rgba(215,185,103,.55);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .08em;
}
.news-modal__link-wrap a:hover { background: rgba(215,185,103,.12); }

body.live-page-body {
  --live-bg: #f4f5f1;
  --live-paper: rgba(255, 255, 255, 0.72);
  --live-ink: #152123;
  --live-muted: rgba(21, 33, 35, 0.62);
  --live-line: rgba(21, 33, 35, 0.13);
  --live-teal: #007d78;
  --live-teal-deep: #004845;
  --live-shadow: 0 28px 80px rgba(18, 33, 36, 0.14);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 125, 120, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.92), transparent 32rem),
    linear-gradient(135deg, #f8f8f5 0%, #e7ebe8 48%, #f3f4ef 100%);
  color: var(--live-ink);
}

body.live-page-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(8, 22, 24, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(0, 125, 120, 0.035), transparent 38%, rgba(21, 33, 35, 0.04));
  opacity: 0.72;
}

body.live-page-body .page-glow { display: none; }
body.live-page-body .header {
  background: rgba(248, 249, 246, 0.76);
  border-bottom: 1px solid rgba(21, 33, 35, 0.08);
  box-shadow: 0 16px 48px rgba(21, 33, 35, 0.08);
}
body.live-page-body .brand-button,
body.live-page-body .nav a,
body.live-page-body .header-social__link,
body.live-page-body .menu-toggle { color: var(--live-ink); }
body.live-page-body .nav .nav-fanclub { color: var(--live-teal); }
body.live-page-body .header-social__link {
  border-color: rgba(21, 33, 35, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

body.live-page-body .page-hero {
  min-height: 68svh;
  align-items: center;
  padding: calc(var(--header-h) + 92px) 22px 92px;
  background:
    linear-gradient(180deg, rgba(244,245,241,0.06), rgba(244,245,241,0.86) 74%, #f4f5f1 100%),
    url("images/Profile.png") center 36% / cover no-repeat;
  isolation: isolate;
}

body.live-page-body .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244,245,241,0.82), rgba(244,245,241,0.22) 46%, rgba(244,245,241,0.94)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.34), transparent 26rem);
}

body.live-page-body .page-hero::after {
  content: "REHAB";
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 38px);
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(0, 72, 69, 0.17);
  font-family: var(--sans);
  font-size: clamp(7.4rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  white-space: nowrap;
  text-shadow: 0 20px 52px rgba(0, 72, 69, 0.12);
}

body.live-page-body .page-title {
  color: var(--live-ink);
  font-family: var(--sans);
  font-size: clamp(4.4rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(255,255,255,0.72);
}
body.live-page-body .page-hero .hero__content { z-index: 2; }

.live-hero-kicker,
.live-hero-copy {
  margin: 0;
  color: var(--live-teal-deep);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.live-hero-kicker {
  margin-bottom: 10px;
  font-size: clamp(0.78rem, 1vw, 0.98rem);
}
.live-hero-copy {
  margin-top: 16px;
  color: var(--live-muted);
  font-size: clamp(0.82rem, 1vw, 1rem);
}

body.live-page-body .page-hero + main {
  background:
    linear-gradient(180deg, #f4f5f1 0%, #fff 42%, #eef3f0 100%);
}
body.live-page-body .page-hero + main > .news-list {
  position: relative;
  padding-top: clamp(58px, 6.2vw, 94px);
}
body.live-page-body .page-hero + main > .news-list::before {
  content: "STAGE ARCHIVE";
  display: block;
  margin: 0 0 28px;
  color: rgba(0, 72, 69, 0.36);
  font-family: var(--sans);
  font-size: clamp(2.3rem, 5vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
body.live-page-body .news-item {
  position: relative;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--live-line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(244,247,246,0.58)),
    rgba(255,255,255,0.52);
  box-shadow: 0 1px 0 rgba(255,255,255,0.78) inset;
  overflow: hidden;
}
body.live-page-body .news-item + .news-item { margin-top: 8px; }
body.live-page-body .news-item--interactive:hover,
body.live-page-body .news-item--interactive:focus-within {
  border-color: rgba(0, 125, 120, 0.34);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--live-shadow);
  transform: translateX(8px);
}
body.live-page-body .news-date {
  color: var(--live-teal);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
body.live-page-body .news-title {
  color: var(--live-ink);
  font-family: var(--sans);
  font-size: clamp(1.24rem, 1.58vw, 1.68rem);
  font-weight: 700;
  line-height: 1.54;
  letter-spacing: 0.02em;
}
body.live-page-body .live-open:focus-visible {
  outline-color: rgba(0, 125, 120, 0.72);
}
body.live-page-body .news-modal__backdrop {
  background: rgba(238, 243, 240, 0.72);
  backdrop-filter: blur(16px);
}
body.live-page-body .news-modal__panel {
  border-color: rgba(0, 125, 120, 0.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(237,243,240,0.96));
  color: var(--live-ink);
  box-shadow: 0 30px 90px rgba(21, 33, 35, 0.2);
}
body.live-page-body .news-modal__close {
  border-color: rgba(21, 33, 35, 0.18);
  background: rgba(21, 33, 35, 0.05);
  color: var(--live-ink);
}
body.live-page-body .news-modal__date {
  color: var(--live-teal);
  font-family: var(--sans);
}
body.live-page-body .news-modal__title,
body.live-page-body .news-modal__body {
  color: var(--live-ink);
}
body.live-page-body .news-modal__body { color: var(--live-muted); }
body.live-page-body .news-modal__link-wrap a {
  border-color: rgba(0, 125, 120, 0.52);
  background: var(--live-teal);
  color: #fff;
}
body.live-page-body .news-modal__link-wrap a:hover { background: var(--live-teal-deep); }
body.live-page-body .footer {
  background: #101719;
  color: rgba(244,245,241,0.7);
}

body.profile-page-body {
  --profile-bg: #f4f5f1;
  --profile-paper: rgba(255, 255, 255, 0.76);
  --profile-ink: #152123;
  --profile-muted: rgba(21, 33, 35, 0.64);
  --profile-line: rgba(21, 33, 35, 0.13);
  --profile-teal: #007d78;
  --profile-teal-deep: #004845;
  --profile-shadow: 0 30px 86px rgba(18, 33, 36, 0.15);
  background: var(--profile-bg);
  color: var(--profile-ink);
}

body.profile-page-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(8, 22, 24, 0.032) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 14% 16%, rgba(0, 125, 120, 0.1), transparent 26rem),
    linear-gradient(90deg, rgba(0, 125, 120, 0.035), transparent 38%, rgba(21, 33, 35, 0.04));
  opacity: 0.82;
}

body.profile-page-body .page-glow { display: none; }
body.profile-page-body .header {
  background: rgba(248, 249, 246, 0.78);
  border-bottom: 1px solid rgba(21, 33, 35, 0.08);
  box-shadow: 0 16px 48px rgba(21, 33, 35, 0.08);
}
body.profile-page-body .brand-button,
body.profile-page-body .nav a,
body.profile-page-body .header-social__link,
body.profile-page-body .menu-toggle { color: var(--profile-ink); }
body.profile-page-body .nav .nav-fanclub { color: var(--profile-teal); }
body.profile-page-body .header-social__link {
  border-color: rgba(21, 33, 35, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

body.profile-page-body .page-hero {
  min-height: 68svh;
  align-items: center;
  padding: calc(var(--header-h) + 92px) 22px 92px;
  background:
    linear-gradient(180deg, rgba(244,245,241,0.04), rgba(244,245,241,0.84) 74%, #f4f5f1 100%),
    url("images/Profile.png") center 36% / cover no-repeat;
  isolation: isolate;
}

body.profile-page-body .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244,245,241,0.9), rgba(244,245,241,0.28) 48%, rgba(244,245,241,0.96)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.36), transparent 28rem);
}

body.profile-page-body .page-hero::after {
  content: "PROFILE";
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 38px);
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(0, 72, 69, 0.16);
  font-family: var(--sans);
  font-size: clamp(5.5rem, 13vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  white-space: nowrap;
  text-shadow: 0 20px 52px rgba(0, 72, 69, 0.12);
}

body.profile-page-body .page-title {
  color: var(--profile-ink);
  font-family: var(--sans);
  font-size: clamp(4.4rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(255,255,255,0.72);
}
body.profile-page-body .page-hero .hero__content { z-index: 2; }

.profile-hero-kicker,
.profile-hero-copy {
  margin: 0;
  color: var(--profile-teal-deep);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.profile-hero-kicker {
  margin-bottom: 10px;
  font-size: clamp(0.78rem, 1vw, 0.98rem);
}
.profile-hero-copy {
  margin-top: 16px;
  color: var(--profile-muted);
  font-size: clamp(0.82rem, 1vw, 1rem);
}

body.profile-page-body .profile-page {
  background:
    linear-gradient(180deg, #f4f5f1 0%, #fff 42%, #eef3f0 100%);
}
body.profile-page-body .profile-visual {
  width: min(100% - 44px, 1080px);
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid var(--profile-line);
  background: rgba(255,255,255,0.68);
  box-shadow: var(--profile-shadow);
}
body.profile-page-body .profile-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
body.profile-page-body .profile-biography {
  padding: clamp(58px, 6.2vw, 96px) 22px clamp(70px, 7vw, 112px);
}
body.profile-page-body .profile-biography__inner {
  border: 0;
  background: transparent;
  color: var(--profile-ink);
  box-shadow: none;
}
body.profile-page-body .profile-title {
  color: var(--profile-ink);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
body.profile-page-body .profile-lead,
body.profile-page-body .profile-text p,
body.profile-page-body .discography-list li {
  color: var(--profile-muted);
}
body.profile-page-body .profile-story-block + .profile-story-block,
body.profile-page-body .profile-links,
body.profile-page-body .discography-block + .discography-block {
  border-top-color: rgba(0, 125, 120, 0.18);
}
body.profile-page-body .profile-story-block h3,
body.profile-page-body .discography-label {
  color: var(--profile-teal);
  font-family: var(--sans);
  font-weight: 900;
}
body.profile-page-body .profile-link,
body.profile-page-body .music-link {
  border-color: rgba(0, 125, 120, 0.5);
  background: rgba(0, 125, 120, 0.08);
  color: var(--profile-teal-deep);
  font-family: var(--sans);
}
body.profile-page-body .profile-link:hover {
  border-color: rgba(0, 125, 120, 0.72);
  background: var(--profile-teal);
  color: #fff;
}
body.profile-page-body .discography {
  background: transparent;
}
body.profile-page-body .discography__inner {
  border: 0;
  background: transparent;
  box-shadow: none;
}
body.profile-page-body .discography-list li {
  border-bottom-color: rgba(21, 33, 35, 0.12);
}
body.profile-page-body .discography-list span {
  color: var(--profile-teal-deep);
}
body.profile-page-body .footer {
  background: #101719;
  color: rgba(244,245,241,0.7);
}

body.refresh-page-body {
  --refresh-bg: #f4f5f1;
  --refresh-ink: #152123;
  --refresh-muted: rgba(21, 33, 35, 0.64);
  --refresh-line: rgba(21, 33, 35, 0.13);
  --refresh-teal: #007d78;
  --refresh-teal-deep: #004845;
  --refresh-shadow: 0 28px 80px rgba(18, 33, 36, 0.14);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 125, 120, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.92), transparent 32rem),
    linear-gradient(135deg, #f8f8f5 0%, #e7ebe8 48%, #f3f4ef 100%);
  color: var(--refresh-ink);
}

body.refresh-page-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(8, 22, 24, 0.032) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(0, 125, 120, 0.035), transparent 38%, rgba(21, 33, 35, 0.04));
  opacity: 0.76;
}

body.refresh-page-body .page-glow,
body.refresh-page-body .hero-light { display: none; }
body.refresh-page-body .header {
  background: rgba(248, 249, 246, 0.78);
  border-bottom: 1px solid rgba(21, 33, 35, 0.08);
  box-shadow: 0 16px 48px rgba(21, 33, 35, 0.08);
}
body.refresh-page-body .brand-button,
body.refresh-page-body .nav a,
body.refresh-page-body .header-social__link,
body.refresh-page-body .menu-toggle { color: var(--refresh-ink); }
body.refresh-page-body .nav .nav-fanclub { color: var(--refresh-teal); }
body.refresh-page-body .header-social__link {
  border-color: rgba(21, 33, 35, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

body.refresh-page-body .page-hero {
  min-height: 58svh;
  align-items: center;
  padding: calc(var(--header-h) + 76px) 22px 82px;
  background:
    linear-gradient(180deg, rgba(244,245,241,0.04), rgba(244,245,241,0.84) 74%, #f4f5f1 100%),
    url("images/Profile.png") center 36% / cover no-repeat;
  isolation: isolate;
}
body.refresh-page-body .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244,245,241,0.92), rgba(244,245,241,0.32) 48%, rgba(244,245,241,0.96)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.36), transparent 28rem);
}
body.refresh-page-body .page-hero::after {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 38px);
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(0, 72, 69, 0.16);
  font-family: var(--sans);
  font-size: clamp(5.2rem, 13vw, 13.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  white-space: nowrap;
  text-shadow: 0 20px 52px rgba(0, 72, 69, 0.12);
}
body.news-page-body .page-hero::after { content: "NEWS"; }
body.biography-page-body .page-hero::after { content: "HISTORY"; }
body.songs-page-body .page-hero::after,
body.song-detail-page-body .page-hero::after { content: "SONGS"; }
body.store-page-body .page-hero::after { content: "STORE"; }
body.contact-page-body .page-hero::after { content: "CONTACT"; }
body.fanclub-page-body .page-hero::after { content: "MEMBER SHIP"; }

body.refresh-page-body .page-title {
  color: var(--refresh-ink);
  font-family: var(--sans);
  font-size: clamp(4.2rem, 7.5vw, 8.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(255,255,255,0.72);
}
body.refresh-page-body .page-hero .hero__content { z-index: 2; }
body.refresh-page-body .page-hero + main,
body.refresh-page-body main {
  background:
    linear-gradient(180deg, #f4f5f1 0%, #fff 42%, #eef3f0 100%);
}
body.refresh-page-body .footer {
  background: #101719;
  color: rgba(244,245,241,0.7);
}

body.home-page-body .hero {
  min-height: calc((100vw * 3235 / 3896) + clamp(72px, 8vw, 150px));
  isolation: isolate;
  background: #f4f5f1;
}
body.home-page-body .hero-bg {
  transform: none;
  background-image:
    linear-gradient(90deg, rgba(244,245,241,0.16), rgba(244,245,241,0.05) 50%, rgba(244,245,241,0.24)),
    linear-gradient(180deg, rgba(244,245,241,0.02), rgba(244,245,241,0.34) 84%),
    url("images/top.jpg");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  filter: saturate(0.96) contrast(1.04);
}
body.home-page-body .hero-bg::before,
body.home-page-body .hero-bg::after { content: none; display: none; }
body.home-page-body .hero::before { content: none; display: none; }
body.home-page-body .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: clamp(92px, 11vw, 210px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244,245,241,0), rgba(244,245,241,0.22) 42%, rgba(244,245,241,0.72) 78%, #f4f5f1 100%);
}
body.home-page-body .achievement,
body.home-page-body .video-section,
body.home-page-body .music {
  position: relative;
}
body.home-page-body .achievement::before,
body.home-page-body .video-section::before,
body.home-page-body .music::before {
  content: "";
  position: absolute;
  inset: 0 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,125,120,0.24), transparent);
}
body.home-page-body .video-card {
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid var(--refresh-line);
  background: rgba(255,255,255,0.68);
  box-shadow: var(--refresh-shadow);
}
body.home-page-body .video-frame {
  border: 0;
  background: #101719;
}
body.home-page-body .music .track-grid {
  max-width: 1120px;
}
body.home-page-body .music .track-card h3 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .02em;
}
body.home-page-body .music-footer.index-action-row {
  margin-top: clamp(34px, 4vw, 56px);
}

body.refresh-page-body .section-title,
body.refresh-page-body .index-section-title,
body.refresh-page-body .music h2,
body.refresh-page-body .store-final h2,
body.refresh-page-body .lyrics-title {
  color: var(--refresh-ink);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.045em;
}
body.refresh-page-body section {
  background: transparent;
}
body.refresh-page-body .achievement-item,
body.refresh-page-body .news-item,
body.refresh-page-body .live-item,
body.refresh-page-body .biography-item {
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--refresh-line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(244,247,246,0.58)),
    rgba(255,255,255,0.54);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
  overflow: hidden;
}
body.refresh-page-body .achievement-item + .achievement-item,
body.refresh-page-body .news-item + .news-item,
body.refresh-page-body .live-item + .live-item,
body.refresh-page-body .biography-item + .biography-item { margin-top: 8px; }
body.refresh-page-body .achievement-item--interactive:hover,
body.refresh-page-body .achievement-item--interactive:focus-within,
body.refresh-page-body .live-item--interactive:hover,
body.refresh-page-body .live-item--interactive:focus-within,
body.refresh-page-body .news-item--interactive:hover,
body.refresh-page-body .news-item--interactive:focus-within {
  border-color: rgba(0, 125, 120, 0.34);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--refresh-shadow);
  transform: translateX(8px);
}
body.refresh-page-body .number,
body.refresh-page-body .news-date,
body.refresh-page-body .live-date,
body.refresh-page-body .biography-date {
  color: var(--refresh-teal);
  font-family: var(--sans);
  font-weight: 900;
}
body.refresh-page-body .achievement-label,
body.refresh-page-body .news-title,
body.refresh-page-body .live-title,
body.refresh-page-body .biography-title {
  color: var(--refresh-ink);
  font-family: var(--sans);
  font-weight: 700;
}
body.refresh-page-body .topic-open .number {
  color: var(--refresh-teal);
  text-shadow: 0 0 12px rgba(0,125,120,0.18);
}
body.refresh-page-body .live-open:focus-visible,
body.refresh-page-body .topic-open:focus-visible,
body.refresh-page-body .news-open:focus-visible {
  outline-color: rgba(0,125,120,0.72);
}
body.refresh-page-body .news-modal__backdrop {
  background: rgba(238,243,240,0.76);
  backdrop-filter: blur(16px);
}
body.refresh-page-body .news-modal__panel {
  border-color: rgba(0,125,120,0.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(237,243,240,0.96));
  color: var(--refresh-ink);
  box-shadow: 0 30px 90px rgba(21,33,35,0.2);
}
body.refresh-page-body .news-modal__close {
  border-color: rgba(21,33,35,0.18);
  background: rgba(21,33,35,0.05);
  color: var(--refresh-ink);
}
body.refresh-page-body .news-modal__date {
  color: var(--refresh-teal);
  font-family: var(--sans);
}
body.refresh-page-body .news-modal__title,
body.refresh-page-body .news-modal__body { color: var(--refresh-ink); }
body.refresh-page-body .news-modal__body { color: var(--refresh-muted); }
body.refresh-page-body .news-modal__link-wrap a,
body.refresh-page-body .button.main-cta,
body.refresh-page-body .index-text-link {
  border-color: rgba(0,125,120,0.52);
  background: rgba(0,125,120,0.08);
  color: var(--refresh-teal-deep);
  font-family: var(--sans);
}
body.refresh-page-body .news-modal__link-wrap a:hover,
body.refresh-page-body .button.main-cta:hover,
body.refresh-page-body .index-text-link:hover {
  background: var(--refresh-teal);
  color: #fff;
}

body.refresh-page-body .track-card,
body.refresh-page-body .goods-card,
body.refresh-page-body .fanclub-plan,
body.refresh-page-body .biography-intro,
body.refresh-page-body .contact-section,
body.refresh-page-body .lyrics,
body.refresh-page-body .preview-player__inner,
body.refresh-page-body .discography__inner {
  border: 1px solid var(--refresh-line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(238,243,240,0.62));
  color: var(--refresh-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.78) inset, 0 20px 58px rgba(18,33,36,0.11);
}
body.refresh-page-body .track-card,
body.refresh-page-body .goods-card {
  padding: clamp(10px, 1.4vw, 16px);
}
body.refresh-page-body .track-card__content,
body.refresh-page-body .goods-card__content {
  padding: 16px 4px 2px;
}
body.refresh-page-body .track-card h3,
body.refresh-page-body .goods-card h3,
body.refresh-page-body .preview-player h2,
body.refresh-page-body .fanclub-plan h2 {
  color: var(--refresh-ink);
}
body.refresh-page-body .track-card__content::before,
body.refresh-page-body .track-card__type,
body.refresh-page-body .goods-category,
body.refresh-page-body .goods-price,
body.refresh-page-body .fanclub-plan__label,
body.refresh-page-body .biography-intro__eyebrow {
  color: var(--refresh-teal);
  font-family: var(--sans);
  font-weight: 900;
}
body.refresh-page-body .track-card__image,
body.refresh-page-body .goods-card__image {
  background: rgba(21,33,35,0.06);
}
body.refresh-page-body .store-category-description,
body.refresh-page-body .fanclub-lead,
body.refresh-page-body .fanclub-plan li,
body.refresh-page-body .biography-intro p:last-child,
body.refresh-page-body .lyrics p,
body.refresh-page-body .discography-list li,
body.refresh-page-body .store-final p,
body.refresh-page-body .form-group label {
  color: var(--refresh-muted);
  font-family: var(--sans);
  letter-spacing: 0.025em;
}
body.refresh-page-body .fanclub-plan li::before {
  background: var(--refresh-teal);
}
body.refresh-page-body .form-group input,
body.refresh-page-body .form-group textarea,
body.refresh-page-body .form-group select {
  border-color: rgba(21,33,35,0.16);
  background: rgba(255,255,255,0.78);
  color: var(--refresh-ink);
}
body.refresh-page-body .contact-form,
body.refresh-page-body .contact-section,
body.refresh-page-body .contact-page,
body.refresh-page-body .fanclub-section,
body.refresh-page-body .fanclub-page,
body.refresh-page-body .store-category,
body.refresh-page-body .store-final,
body.refresh-page-body .lyrics-section,
body.refresh-page-body .discography,
body.refresh-page-body .biography-page {
  background: transparent;
  box-shadow: none;
}
body.refresh-page-body .lyrics {
  border: 0;
  background: transparent;
  box-shadow: none;
}
body.refresh-page-body .contact-section,
body.refresh-page-body .contact-form {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.video-card,
.preview-player__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background: transparent;
  box-shadow: none;
}
.video-frame,
.song-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe,
.video-frame video,
.song-video-frame iframe,
.featured-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.index-action-row,
.music-footer,
.video-cta,
.store-final { text-align: center; }
.music-footer.index-action-row { margin-top: 22px; }
.index-text-link,
.button.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-width: min(292px, 100%);
  min-height: 56px;
  padding: 14px 28px;
  border: 1px solid rgba(215,185,103,.68);
  border-radius: 999px;
  background: rgba(215,185,103,.045);
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-size: clamp(1.04rem, 1.28vw, 1.32rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.28);
  transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}
.index-text-link:hover,
.index-text-link:focus-visible,
.button.main-cta:hover,
.button.main-cta:focus-visible {
  border-color: rgba(241,216,138,.94);
  background: rgba(215,185,103,.1);
  color: #fff5d6;
  transform: translateY(-2px);
}

.track-grid,
.goods-grid,
.disc-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}
.track-card,
.goods-card,
.disc-card {
  display: block;
  background: transparent;
  color: var(--text);
}
.track-card__index,
.track-card__type,
.goods-category { display: none; }
.track-card__image,
.goods-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.track-card__image img,
.goods-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.track-card:hover img { transform: scale(1.035); filter: brightness(1.08); }
.track-card__content,
.goods-card__content { padding-top: 12px; }
.track-card h3,
.goods-card h3,
.disc-card h3 {
  margin: 0;
  color: rgba(247,241,232,.96);
  font-family: var(--sans);
  font-size: clamp(1.18rem, 1.75vw, 2rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
}
.upright-hyphen {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  transform: none;
}
.track-card__content::before {
  display: block;
  margin-bottom: 7px;
  color: rgba(215,185,103,.86);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.track-card[href*="Sakayume"] .track-card__content::before { content: "2021.11.01"; }
.track-card[href*="BE-TRIP"] .track-card__content::before { content: "2022.06.06"; }
.track-card[href*="Nextinnovation"] .track-card__content::before { content: "2023.11.23"; }
.track-card[href*="Freedom"] .track-card__content::before { content: "2021.04.15"; }
.track-card[href*="KeepOnlyOneLady"] .track-card__content::before { content: "2021.06.03"; }
.track-card[href*="akatsuki"] .track-card__content::before { content: "2021.07.21"; }
.track-card[href*="JENESIS"] .track-card__content::before { content: "2022.01.31"; }
.track-card[href*="harutoakikaze"] .track-card__content::before { content: "2022.09.11"; }
.track-card[href*="amaterasu"] .track-card__content::before { content: "2023.06.17"; }
.track-card[href*="Breakingallthechains"] .track-card__content::before { content: "2024.04.24"; }
.track-card[href*="The Beast"] .track-card__content::before { content: "2024.06.20"; }
.track-card[href*="rinne"] .track-card__content::before { content: "2024.12.01"; }
.track-card[href*="uno"] .track-card__content::before { content: "2025.11.24"; }

.page-hero {
  position: relative;
  min-height: 44svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 112px) 22px 76px;
  background: #050505;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero__content { width: min(100% - 44px, 980px); }
.page-hero .hero-light { display: none; }
.page-title { font-size: clamp(3.4rem, 6.7vw, 7.2rem); overflow-wrap: anywhere; }

.lyrics-section,
.preview-player,
.profile-biography,
.discography,
.contact-section,
.store-category,
.store-grid { width: min(100%, var(--max)); margin: 0 auto; background: transparent; }
.lyrics,
.profile-text,
.contact-form { width: min(100%, 880px); margin: 0 auto; }
.lyrics p,
.profile-text p,
.discography-list li {
  color: rgba(247,241,232,.82);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.28vw, 1.32rem);
  line-height: 2.05;
  letter-spacing: .025em;
}
.lyrics-highlight { color: var(--gold); font-weight: 700; }
.lyrics-sub { color: rgba(247,241,232,.66); }
.preview-player__inner { padding: clamp(28px, 4vw, 56px); border-radius: 26px; }
.preview-player h2 { margin: 0 0 24px; text-align: center; font-size: clamp(2rem, 3.8vw, 4.2rem); line-height: 1.08; }
.preview-player audio { width: 100%; }
.store-final h2,
.store-final p { display: none; }
body:not(.store-page) .preview-player ~ .store-final::before,
body:not(.store-page) .preview-player ~ .store-final .button.main-cta[href="songs.html"],
body:not(.store-page) .store-final .button.main-cta + .button.main-cta,
body:not(.store-page) .store-final .button.main-cta + .button.main-cta::before { display: none; content: none; }
.store-final .button.main-cta { font-size: clamp(1.04rem, 1.28vw, 1.32rem); }
.store-final .button.main-cta::after {
  content: none;
  display: none;
  font-family: var(--serif-display);
  font-size: clamp(1.04rem, 1.28vw, 1.32rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}

.fanclub-section {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) 24px clamp(78px, 7vw, 112px);
  text-align: center;
}
.fanclub-lead {
  width: min(100%, 920px);
  margin: 0 auto;
  color: rgba(247,241,232,.76);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 2.05;
  letter-spacing: .025em;
}
.fanclub-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
  text-align: left;
}
.fanclub-plan {
  min-height: 100%;
  padding: 30px 28px 32px;
  border-top: 1px solid rgba(215,185,103,.38);
  background:
    linear-gradient(135deg, rgba(215,185,103,.08), rgba(255,255,255,.015)),
    rgba(215,185,103,.025);
}
.fanclub-plan--premium {
  border-color: rgba(215,185,103,.62);
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
}
.fanclub-plan__label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.fanclub-plan h2 {
  margin: 0;
  color: rgba(247,241,232,.96);
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.22;
}
.fanclub-plan ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.fanclub-plan li {
  position: relative;
  padding-left: 18px;
  color: rgba(247,241,232,.76);
  font-family: var(--sans);
  font-size: .98rem;
  line-height: 1.8;
  letter-spacing: .025em;
}
.fanclub-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}
.fanclub-cta { margin-top: 42px; }


.profile-page,
.profile-visual,
.profile-biography,
.biography-page,
.contact-page,
.contact-section,
.lyrics-section,
.lyrics,
.cinematic-lyrics {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.profile-visual img {
  box-shadow: none;
  filter: none;
}
.biography-page .news-title {
  color: rgba(247,241,232,.94);
}
.biography-page .news-date {
  color: var(--gold-bright);
}
.biography-intro {
  width: min(100% - 44px, 980px);
  margin: 0 auto clamp(8px, 2vw, 22px);
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(215,185,103,.16);
  background: rgba(255,255,255,.015);
}
.biography-intro__eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: .13em;
}
.biography-intro p:last-child {
  margin: 0;
  color: rgba(247,241,232,.78);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.9;
  letter-spacing: .025em;
}
.contact-form,
.contact-form * {
  position: relative;
  z-index: 2;
}

.profile-visual { width: min(100%, 1040px); margin: 0 auto; }
.profile-visual img {
  width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
}
.profile-biography__inner,
.profile-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
}
.profile-title { margin: 0 0 24px; font-size: clamp(2.4rem, 5vw, 5rem); }
.profile-lead {
  margin: 0;
  color: rgba(247,241,232,.84);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.95;
  letter-spacing: .025em;
}
.profile-lead + .profile-lead { margin-top: 14px; }
.profile-text { margin-top: clamp(30px, 3.5vw, 48px); }
.profile-story-block + .profile-story-block {
  margin-top: clamp(30px, 3.4vw, 48px);
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid rgba(215,185,103,.16);
}
.profile-story-block h3 {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 1.7vw, 1.9rem);
  font-weight: 700;
  letter-spacing: .16em;
}
.profile-links {
  margin-top: clamp(32px, 4vw, 54px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(215,185,103,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid rgba(215,185,103,.42);
  border-radius: 999px;
  background: rgba(215,185,103,.06);
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-size: clamp(1.08rem, 1.25vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.profile-link::after {
  content: ">";
  font-size: .95em;
  line-height: 1;
  transform: translateY(-1px);
}
.profile-link:hover {
  border-color: rgba(241,216,138,.7);
  background: rgba(215,185,103,.11);
  color: var(--text);
}
.discography-block + .discography-block {
  margin-top: clamp(34px, 4vw, 58px);
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 1px solid rgba(215,185,103,.18);
}
.discography-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.discography-list li { display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 12px; }
.discography-list span { color: var(--gold); white-space: nowrap; }

.store-category { text-align: center; }
.store-category-title { display: flex; justify-content: center; margin: 0; }
.store-category-image { width: min(360px, 72vw); height: auto; }
.store-category-description {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(247,241,232,.72);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.85;
  letter-spacing: .025em;
}
.goods-price { margin: 8px 0 0; color: var(--gold); font-size: 1.1rem; }


.contact-page-body .page-glow,
.contact-page-body .hero-light {
  display: none;
}
.contact-page-body .contact-hero,
.contact-page-body .contact-section,
.contact-page-body .contact-form {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.contact-page-body .form-group input,
.contact-page-body .form-group textarea,
.contact-page-body .form-group select {
  box-shadow: none;
}

.contact-form { display: grid; gap: 22px; }
.form-group { display: grid; gap: 10px; }
.form-group label { color: rgba(247,241,232,.82); font-size: 1.05rem; letter-spacing: .05em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: #090509;
  color: var(--text);
  appearance: auto;
  pointer-events: auto;
  user-select: text;
  position: relative;
  z-index: 2;
}
.form-group textarea { min-height: 180px; border-radius: 18px; resize: vertical; }
.button.main-cta.contact-submit {
  justify-self: center;
  min-width: 240px;
  min-height: 56px;
  padding: 16px 34px;
  border: 1px solid rgba(215,185,103,.64);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(241,216,138,.18), rgba(215,185,103,.06)),
    #070507;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-align: center;
  transform: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08);
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.button.main-cta.contact-submit:hover,
.button.main-cta.contact-submit:focus-visible {
  border-color: rgba(241,216,138,.96);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #050505;
  box-shadow: 0 18px 42px rgba(0,0,0,.42), 0 0 0 1px rgba(241,216,138,.24);
  transform: translateY(-2px);
}
.button.main-cta.contact-submit:active {
  transform: translateY(0);
}

.social__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.social-link {
  min-width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-family: var(--sans);
  font-weight: 800;
}
.footer {
  padding: 44px 24px;
  text-align: center;
  color: rgba(247,241,232,.58);
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.7;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Global typography polish */
body.refresh-page-body,
body.live-page-body,
body.profile-page-body {
  font-family: var(--sans);
}
body.refresh-page-body .nav a,
body.live-page-body .nav a,
body.profile-page-body .nav a {
  font-family: var(--sans);
  font-size: clamp(.9rem, .86vw, 1rem);
  font-weight: 800;
  letter-spacing: .08em;
}
body.refresh-page-body .page-title,
body.live-page-body .page-title,
body.profile-page-body .page-title {
  line-height: .94;
  letter-spacing: -0.045em;
}
body.refresh-page-body .section-title,
body.refresh-page-body .index-section-title,
body.refresh-page-body .music h2,
body.refresh-page-body .social h2,
body.refresh-page-body .store-final h2,
body.refresh-page-body .lyrics-title,
body.live-page-body .section-title,
body.profile-page-body .profile-title {
  font-family: var(--sans);
  font-size: clamp(2.45rem, 5.4vw, 5.9rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
body.refresh-page-body .number,
body.refresh-page-body .news-date,
body.refresh-page-body .live-date,
body.refresh-page-body .biography-date,
body.live-page-body .news-date,
body.profile-page-body .discography-list span {
  font-family: var(--sans);
  font-size: clamp(.78rem, .9vw, .92rem);
  font-weight: 900;
  letter-spacing: .14em;
}
body.refresh-page-body .achievement-label,
body.refresh-page-body .news-title,
body.refresh-page-body .live-title,
body.refresh-page-body .biography-title,
body.live-page-body .news-title,
body.profile-page-body .profile-story-block h3,
body.profile-page-body .discography-label {
  font-family: var(--sans);
  font-size: clamp(1.04rem, 1.35vw, 1.32rem);
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: .015em;
}
body.refresh-page-body .news-modal__title,
body.live-page-body .news-modal__title {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.8vw, 2.45rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.025em;
}
body.refresh-page-body .news-modal__body,
body.live-page-body .news-modal__body,
body.refresh-page-body .store-category-description,
body.refresh-page-body .fanclub-lead,
body.refresh-page-body .fanclub-plan li,
body.refresh-page-body .biography-intro p:last-child,
body.refresh-page-body .lyrics p,
body.refresh-page-body .discography-list li,
body.refresh-page-body .store-final p,
body.refresh-page-body .form-group label,
body.profile-page-body .profile-lead,
body.profile-page-body .profile-text p,
body.profile-page-body .discography-list li {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .018em;
}
body.refresh-page-body .track-card h3,
body.refresh-page-body .goods-card h3,
body.refresh-page-body .preview-player h2,
body.refresh-page-body .fanclub-plan h2,
body.home-page-body .music .track-card h3 {
  font-size: clamp(1.16rem, 1.55vw, 1.7rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: .012em;
}
body.refresh-page-body .track-card__content::before,
body.refresh-page-body .track-card__type,
body.refresh-page-body .goods-category,
body.refresh-page-body .goods-price,
body.refresh-page-body .fanclub-plan__label,
body.refresh-page-body .biography-intro__eyebrow {
  font-family: var(--sans);
  font-size: clamp(.78rem, .86vw, .9rem);
  font-weight: 900;
  letter-spacing: .13em;
}
body.refresh-page-body .news-modal__link-wrap a,
body.refresh-page-body .button.main-cta,
body.refresh-page-body .index-text-link,
body.profile-page-body .profile-link,
.store-final .button.main-cta::after {
  font-family: var(--sans);
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
  font-weight: 800;
  letter-spacing: .08em;
}

@keyframes topicLabelGlow {
  0%, 100% { opacity: .74; text-shadow: 0 0 8px rgba(215,185,103,.18); }
  50% { opacity: 1; text-shadow: 0 0 18px rgba(241,216,138,.46); }
}

@media (max-width: 980px) {
  .header { padding-inline: 18px; }
  .nav { gap: 14px; }
  .track-grid,
  .goods-grid,
  .disc-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .page-glow,
  .hero-light,
  .featured-video { display: none; }
  .header {
    position: sticky;
    height: auto;
    min-height: var(--header-h);
    padding: 14px 18px;
    background: rgba(7,8,8,.96);
  }
  .brand-button { flex-basis: 118px; width: 118px; height: 34px; }
  .brand-button::before { font-size: 17.5px; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    padding: 12px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: var(--text);
  }
  .menu-toggle span { display: block; width: 24px; height: 2px; margin: 3px 0; background: currentColor; border-radius: 999px; }
  .nav {
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px 20px;
    background: #050505;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.active { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--serif-display); font-size: 1.08rem; font-weight: 700; letter-spacing: .07em; }
  .header-social { display: none; }
  .hero { min-height: 72svh; }
  .hero-bg { background-position: 72% center; transform: none; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 6.4rem); }
  .hero__meta { top: calc(var(--header-h) + 28px); }
  .hero__meta span { padding: 8px 16px; font-size: .72rem; }
  section { padding: 54px 18px; }
  .achievement-item,
  .news-item,
  .live-item,
  .biography-item { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .page-hero + main > .news-list,
  .page-hero + main > .live-list,
  .page-hero + main > .biography-list { padding: 36px 18px 48px; }
  .track-grid,
  .goods-grid,
  .disc-grid,
  .related-grid { grid-template-columns: 1fr; gap: 34px; }
  .track-card__image { aspect-ratio: 1 / 1; }
  .page-hero { min-height: 42svh; padding: 104px 18px 58px; }
  .page-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .lyrics p,
  .profile-text p,
  .discography-list li { font-size: 1rem; line-height: 1.95; }
  .preview-player__inner { padding: 28px 18px; border-radius: 22px; }
  .preview-player h2 { font-size: clamp(1.55rem, 7vw, 2.35rem); overflow-wrap: anywhere; }
}
