/* ============================================================
   SAKURA — official site (Web Design Lab showcase)
   ============================================================ */
:root {
  --pink-50: #fff5f8;
  --pink-100: #ffe6f0;
  --pink-200: #ffc8de;
  --rose: #ff4d8d;
  --rose-deep: #e0356f;
  --gold: #f6c177;
  --plum: #240a18;
  --plum-2: #16060f;
  --ink: #3a1325;
  --muted: #9b6e80;
  --cream: #fff8fb;
  --serif: 'Shippori Mincho', serif;
  --sans: 'Noto Sans JP', system-ui, sans-serif;
  --disp: 'Outfit', 'Noto Sans JP', sans-serif;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--rose); color: #fff; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } }

/* ===== custom cursor ===== */
.cursor { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; mix-blend-mode: multiply; }
.cursor-dot { position: fixed; left: 0; top: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); transform: translate(-50%, -50%); }
.cursor-ring { position: fixed; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--rose); transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s, opacity .25s; opacity: .7; }
.cursor.hover .cursor-ring { width: 64px; height: 64px; background: rgba(255, 77, 141, .12); opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ===== scroll progress ===== */
.scroll-progress { position: fixed; left: 0; top: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--rose), var(--gold)); box-shadow: 0 0 12px rgba(255, 77, 141, .6); }

/* ===== intro loader ===== */
.intro { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, #fff 0%, var(--pink-100) 70%, var(--pink-200) 100%);
  transition: clip-path 1s var(--ease), opacity .6s ease .5s; clip-path: inset(0 0 0 0); }
.intro.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.intro-inner { display: grid; justify-items: center; gap: 16px; }
.intro-mark { font-family: var(--serif); font-size: clamp(60px, 14vw, 120px); font-weight: 800; color: var(--rose);
  opacity: 0; transform: translateY(16px) scale(.9); animation: introRise .9s var(--ease) forwards; }
.intro-name { font-family: var(--disp); font-weight: 800; letter-spacing: .5em; padding-left: .5em; color: var(--rose-deep);
  opacity: 0; animation: introRise .9s var(--ease) .15s forwards; }
.intro-bar { width: 180px; height: 3px; border-radius: 99px; background: rgba(224, 53, 111, .2); overflow: hidden; }
.intro-bar i { display: block; height: 100%; width: 0; background: var(--rose); }
@keyframes introRise { to { opacity: 1; transform: none; } }

/* ===== nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 300; display: flex; align-items: center; gap: 24px;
  padding: 20px clamp(18px, 4vw, 54px); transition: padding .35s var(--ease), background .35s, box-shadow .35s; }
.nav.solid { padding: 12px clamp(18px, 4vw, 54px); background: rgba(255, 248, 251, .72);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -18px rgba(224, 53, 111, .4); border-bottom: 1px solid rgba(255, 200, 222, .5); }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-kanji { font-family: var(--serif); font-size: 30px; font-weight: 800; color: var(--rose); line-height: 1; }
.brand-roman { font-family: var(--disp); font-weight: 800; letter-spacing: .28em; font-size: 15px; color: var(--ink); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-family: var(--disp); font-weight: 600; font-size: 13.5px; letter-spacing: .12em; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--rose); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: #fff;
  padding: 11px 22px; border-radius: 99px; background: linear-gradient(100deg, var(--rose), var(--rose-deep));
  box-shadow: 0 10px 24px -10px rgba(224, 53, 111, .7); }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-burger i { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); transition: .3s var(--ease); }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--disp);
  font-weight: 700; font-size: 14.5px; letter-spacing: .04em; padding: 15px 30px; border-radius: 99px;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s, color .3s; }
.btn-primary { color: #fff; background: linear-gradient(100deg, var(--rose), var(--rose-deep)); box-shadow: 0 14px 30px -12px rgba(224, 53, 111, .65); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(224, 53, 111, .75); }
.btn-ghost { color: var(--ink); border: 1.5px solid rgba(224, 53, 111, .35); }
.btn-ghost:hover { background: var(--rose); color: #fff; border-color: transparent; transform: translateY(-3px); }
.btn-light { color: var(--plum); background: #fff; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.btn-light:hover { transform: translateY(-3px); }
.magnetic { will-change: transform; }

/* ===== reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-stagger] { display: inline-block; opacity: 0; transform: translateY(110%) rotate(4deg); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].in { opacity: 1; transform: none; }

/* ===== hero ===== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden;
  background: radial-gradient(130% 90% at 80% 0%, var(--pink-100) 0%, var(--cream) 55%),
              linear-gradient(180deg, var(--pink-50), var(--cream)); }
.petals { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-glow { position: absolute; width: 60vw; height: 60vw; right: -10vw; top: -10vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 141, .28), transparent 60%); filter: blur(20px); animation: floaty 12s ease-in-out infinite alternate; }
@keyframes floaty { to { transform: translate(-4%, 6%) scale(1.1); } }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 54px); }
.hero-kicker { font-family: var(--disp); font-weight: 700; letter-spacing: .3em; font-size: 12.5px; color: var(--rose-deep); margin-bottom: 22px; }
.hero-title { font-family: var(--serif); font-weight: 800; line-height: 1.04; font-size: clamp(48px, 11vw, 150px);
  color: var(--ink); letter-spacing: -.01em; overflow: hidden; }
.ht-line { display: block; overflow: hidden; }
.hero-title .ht-line:nth-child(2) { color: transparent; -webkit-text-stroke: 2px var(--rose);
  background: linear-gradient(100deg, var(--rose), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.hero-sub { margin: 26px 0 32px; font-size: clamp(15px, 2vw, 19px); color: var(--muted); }
.hero-sub b { color: var(--rose-deep); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-marquee { position: absolute; left: 0; bottom: 70px; width: 100%; overflow: hidden; z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mq-item { font-family: var(--serif); font-size: 30px; font-weight: 700; color: rgba(224, 53, 111, .18); white-space: nowrap; }
.mq-item::after { content: "❀"; margin-left: 40px; color: rgba(255, 77, 141, .35); }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  font-family: var(--disp); font-size: 10.5px; letter-spacing: .35em; color: var(--rose-deep); display: grid; justify-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(var(--rose), transparent); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--rose); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(250%); } }

/* ===== ticker ===== */
.ticker { display: flex; align-items: center; gap: 0; background: var(--rose); color: #fff; overflow: hidden; }
.ticker-label { font-family: var(--disp); font-weight: 800; letter-spacing: .2em; font-size: 12px; padding: 12px 20px; background: var(--rose-deep); white-space: nowrap; }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: marquee 26s linear infinite; padding-left: 48px; }
.ticker-track span { font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.ticker-track b { color: var(--gold); margin-right: 10px; font-family: var(--disp); }

/* ===== sections base ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); }
.sec-head { margin-bottom: 50px; }
.sec-en { font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 8vw, 92px); letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1.4px var(--pink-200); display: block; line-height: 1; }
.sec-jp { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--rose-deep); margin-top: -8px; padding-left: 4px; }
.sec-head.light .sec-en { -webkit-text-stroke-color: rgba(255, 255, 255, .25); }
.sec-head.light .sec-jp { color: var(--gold); }

/* ===== news ===== */
.news-list { list-style: none; border-top: 1px solid var(--pink-200); }
.news-item { display: grid; grid-template-columns: 130px 110px 1fr auto; align-items: center; gap: 20px;
  padding: 22px 6px; border-bottom: 1px solid var(--pink-200); transition: background .3s, padding .3s var(--ease); }
.news-item:hover { background: var(--pink-50); padding-left: 18px; }
.news-date { font-family: var(--disp); font-weight: 600; color: var(--muted); font-size: 14px; }
.news-cat { font-family: var(--disp); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-align: center;
  padding: 5px 0; border-radius: 99px; border: 1.5px solid var(--rose); color: var(--rose-deep); }
.news-cat.live { border-color: var(--gold); color: #c98a18; }
.news-cat.media { border-color: #7c9; color: #2a8; }
.news-title { font-weight: 500; font-size: 15.5px; }
.news-arrow { color: var(--rose); transition: transform .3s var(--ease); }
.news-item:hover .news-arrow { transform: translateX(6px); }
.more-link { display: inline-block; margin-top: 36px; font-family: var(--disp); font-weight: 700; color: var(--rose-deep); }

/* ===== about ===== */
.about { position: relative; max-width: none; }
.about-bg { position: absolute; inset: 0; background:
  radial-gradient(60% 60% at 15% 20%, rgba(255, 77, 141, .10), transparent 60%),
  radial-gradient(60% 60% at 85% 80%, rgba(246, 193, 119, .12), transparent 60%), var(--pink-50); z-index: 0; }
.about-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); text-align: center; }
.about-en { font-family: var(--disp); font-weight: 800; letter-spacing: .3em; color: var(--rose-deep); font-size: 13px; margin-bottom: 18px; }
.about-copy { font-family: var(--serif); font-weight: 800; font-size: clamp(36px, 8vw, 88px); line-height: 1.1; color: var(--ink); }
.about-copy span { display: inline-block; }
.about-copy span:nth-child(2) { color: var(--rose); }
.about-text { max-width: 620px; margin: 30px auto 0; color: var(--muted); font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
.stat { padding: 24px; border-radius: 20px; background: rgba(255, 255, 255, .65); border: 1px solid var(--pink-200); backdrop-filter: blur(6px); }
.stat b { display: block; font-family: var(--disp); font-weight: 900; font-size: clamp(34px, 5vw, 54px);
  background: linear-gradient(120deg, var(--rose), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat span { font-family: var(--disp); font-weight: 600; font-size: 12px; letter-spacing: .15em; color: var(--muted); }

/* ===== members ===== */
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcard { position: relative; aspect-ratio: 3 / 4; border-radius: 18px; overflow: hidden; cursor: none;
  transform-style: preserve-3d; transition: box-shadow .4s; box-shadow: 0 14px 40px -24px rgba(224, 53, 111, .5); }
.mcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 16%;
  filter: grayscale(1) contrast(1.02); transform: scale(1.04); transition: filter .6s var(--ease), transform .6s var(--ease); }
.mcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(36, 10, 24, .82));
  mix-blend-mode: normal; }
.mcard::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(255, 77, 141, .35), transparent 50%);
  opacity: 0; transition: opacity .5s; }
.mcard:hover .mcard__img { filter: grayscale(0) contrast(1.05) saturate(1.1); transform: scale(1.12); }
.mcard:hover::before { opacity: 1; }
.mcard__info { position: absolute; left: 18px; bottom: 16px; z-index: 3; color: #fff; transform: translateZ(40px); }
.mcard__no { font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: .2em; color: var(--gold); }
.mcard__name { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.1; margin-top: 2px; }
.mcard__roman { font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .15em; opacity: .8; }
.mcard__color { position: absolute; top: 14px; right: 14px; z-index: 3; width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 255, 255, .35); }

/* ===== music (dark) ===== */
.music { position: relative; max-width: none; background: linear-gradient(180deg, var(--plum), var(--plum-2)); color: #fff; overflow: hidden; }
.music > * { position: relative; z-index: 1; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.music .sec-head, .music .music-feature, .music .mv-grid { padding-left: clamp(20px, 5vw, 54px); padding-right: clamp(20px, 5vw, 54px); }
.music { padding: clamp(80px, 11vw, 150px) 0; }
.music-glow { position: absolute; z-index: 0; width: 70vw; height: 70vw; left: -20vw; top: 10%;
  background: radial-gradient(circle, rgba(255, 77, 141, .25), transparent 60%); filter: blur(30px); }
.music-feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; margin-bottom: 70px; }
.cover { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8); }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 14s ease-in-out infinite alternate; }

/* full-bleed single key visual (16:9) */
.music > .single-kv { max-width: none; margin: 0 0 60px; }
.single-kv { position: relative; display: block; aspect-ratio: 16 / 9; max-height: 82vh; overflow: hidden; cursor: none;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7); }
.single-kv img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.single-kv:hover img { transform: scale(1.05); }
.single-kv::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22, 6, 15, .5), transparent 36%); }
.single-kv__badge { position: absolute; top: clamp(16px, 3vw, 30px); left: clamp(16px, 4vw, 46px); z-index: 2;
  font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: .12em; padding: 9px 18px; border-radius: 99px;
  background: var(--rose); color: #fff; box-shadow: 0 8px 20px -8px rgba(224, 53, 111, .8); }
.single-kv__play { position: absolute; bottom: clamp(16px, 3vw, 30px); left: clamp(16px, 4vw, 46px); z-index: 2;
  display: flex; align-items: center; gap: 14px; color: #fff; font-family: var(--disp); font-weight: 700; letter-spacing: .1em; }
.single-kv__play b { width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .94); color: var(--rose-deep);
  display: grid; place-items: center; font-size: 17px; transition: transform .35s var(--ease); box-shadow: 0 10px 28px -10px rgba(0, 0, 0, .6); }
.single-kv:hover .single-kv__play b { transform: scale(1.12); }
@keyframes kenburns { from { transform: scale(1.05) translate(0, 0); } to { transform: scale(1.22) translate(-2%, -3%); } }
.cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(255, 77, 141, .25), transparent 50%, rgba(246, 193, 119, .2)); mix-blend-mode: overlay; }
.cover-badge { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--disp); font-weight: 800; font-size: 11px;
  letter-spacing: .15em; padding: 7px 14px; border-radius: 99px; background: var(--rose); color: #fff; }
.cover-cat { font-family: var(--disp); font-weight: 700; letter-spacing: .15em; color: var(--gold); font-size: 13px; }
.cover-title { font-family: var(--serif); font-weight: 800; font-size: clamp(32px, 5vw, 56px); margin: 8px 0; }
.cover-date { color: #d7a7bb; font-size: 14px; margin-bottom: 16px; }
.cover-desc { color: #e7cdd8; max-width: 460px; }
.tracklist { margin: 24px 0; }
.track { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.track:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.track-no { font-family: var(--disp); font-weight: 700; color: var(--rose); width: 28px; }
.track-name { font-weight: 500; flex: 1; }
.track-time { color: #b98aa0; font-family: var(--disp); font-size: 13px; }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mv { position: relative; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; cursor: none; }
.mv-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.mv:hover .mv-img { transform: scale(1.1); }
.mv::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(22, 6, 15, .85)); }
.mv-play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.mv-play b { width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .9); color: var(--rose-deep);
  display: grid; place-items: center; font-size: 18px; transform: scale(.85); opacity: .85; transition: .35s var(--ease); }
.mv:hover .mv-play b { transform: scale(1); opacity: 1; }
.mv-label { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; }
.mv-label b { font-family: var(--serif); font-weight: 700; font-size: 16px; display: block; }
.mv-label span { font-family: var(--disp); font-size: 11px; color: var(--gold); letter-spacing: .1em; }

/* ===== live (dark plum continued) ===== */
.live { position: relative; max-width: none; background: var(--plum-2); color: #fff; }
.live > .sec-head, .live > .live-tour, .live > .live-list { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.live { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); }
.live .sec-en { -webkit-text-stroke-color: rgba(255, 255, 255, .18); }
.live .sec-jp { color: var(--gold); }
.live-tour { font-family: var(--serif); font-weight: 800; font-size: clamp(26px, 5vw, 48px); margin-bottom: 40px; }
.live-tour span { color: var(--rose); }
.live-list { list-style: none; }
.live-item { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 24px;
  padding: 24px 8px; border-top: 1px solid rgba(255, 255, 255, .12); transition: background .3s, padding .3s var(--ease); }
.live-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.live-item:hover { background: rgba(255, 77, 141, .08); padding-left: 18px; }
.live-date { font-family: var(--disp); }
.live-date b { display: block; font-weight: 800; font-size: 26px; line-height: 1; }
.live-date span { font-size: 12px; color: var(--gold); letter-spacing: .1em; }
.live-info b { display: block; font-weight: 700; font-size: 17px; }
.live-info span { color: #c8a0b2; font-size: 13.5px; }
.live-ticket { font-family: var(--disp); font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 99px;
  border: 1.5px solid var(--rose); color: #fff; transition: background .3s, color .3s; white-space: nowrap; }
.live-item:hover .live-ticket { background: var(--rose); }
.live-item.soldout .live-ticket { border-color: rgba(255, 255, 255, .25); color: #9c8290; }

/* ===== media / fc ===== */
.media { position: relative; }
.media-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: clamp(34px, 5vw, 60px);
  border-radius: 28px; background: linear-gradient(120deg, var(--rose), var(--rose-deep)); color: #fff; box-shadow: 0 40px 80px -36px rgba(224, 53, 111, .7); overflow: hidden; position: relative; }
.media-card::before { content: "❀"; position: absolute; right: -20px; top: -30px; font-size: 220px; color: rgba(255, 255, 255, .1); }
.media-en { font-family: var(--disp); font-weight: 800; letter-spacing: .2em; font-size: 12.5px; opacity: .85; margin-bottom: 14px; }
.media-h { font-family: var(--serif); font-weight: 800; font-size: clamp(26px, 4vw, 40px); line-height: 1.25; margin-bottom: 16px; }
.media-t { opacity: .9; margin-bottom: 26px; max-width: 420px; }
.media-card .btn-primary { background: #fff; color: var(--rose-deep); }
.media-r { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sns { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 16px; background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25); transition: transform .3s var(--ease), background .3s; }
.sns:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .24); }
.sns b { font-family: var(--disp); font-weight: 800; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--rose-deep); display: grid; place-items: center; font-size: 13px; }
.sns span { font-size: 12.5px; font-weight: 500; }
.hashtag { text-align: center; font-family: var(--serif); font-weight: 800; font-size: clamp(30px, 7vw, 80px); color: var(--pink-200); margin-top: 60px; letter-spacing: .02em; }

/* ===== footer ===== */
.footer { position: relative; background: var(--plum); color: #fff; overflow: hidden; padding-top: 40px; }
.footer-big { font-family: var(--disp); font-weight: 900; font-size: clamp(80px, 24vw, 360px); line-height: .8; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 77, 141, .3); white-space: nowrap; user-select: none; }
.footer-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 30px clamp(20px, 5vw, 54px) 50px; text-align: center; }
.footer-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.footer-nav a { font-family: var(--disp); font-weight: 600; font-size: 13px; letter-spacing: .1em; color: #e7cdd8; }
.footer-nav a:hover { color: var(--rose); }
.footer-note { color: #9c7689; font-size: 12px; max-width: 560px; margin: 0 auto 14px; line-height: 1.7; }
.footer-copy { color: #7a5868; font-family: var(--disp); font-size: 12px; letter-spacing: .1em; }

/* ===== responsive ===== */
@media (max-width: 900px) {
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .music-feature { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .media-card { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { position: fixed; }
  .nav-links { inset: 0 0 auto; top: 0; height: 100svh; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    background: rgba(255, 248, 251, .96); backdrop-filter: blur(14px); transform: translateX(100%); transition: transform .5s var(--ease); }
  .nav-links a { font-size: 22px; }
  .nav.open .nav-links { transform: none; }
  .nav-cta { bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 320; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav.open .nav-cta { opacity: 1; pointer-events: auto; }
  .nav-burger { display: block; margin-left: auto; z-index: 330; }
  .nav.open .nav-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-burger i:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .news-item { grid-template-columns: 1fr auto; row-gap: 4px; }
  .news-date { order: 1; } .news-cat { order: 2; max-width: 100px; } .news-title { order: 3; grid-column: 1 / -1; } .news-arrow { display: none; }
  .live-item { grid-template-columns: 1fr; gap: 8px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .01ms !important; }
  [data-reveal], [data-stagger] { opacity: 1 !important; transform: none !important; }
}
