/* ============================================================
   ONGROUP — artist.css
   Artist page (KENICHIRO IWAO). Most personal, most quiet.
   Subtraction aesthetic. Deepest black (#000).
   ============================================================ */

body.artist-page { background: var(--black-pure); }

/* ============================================================
   S1 — ARTIST HERO
   ============================================================ */
.artist-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: calc(var(--header-h) + 48px) 24px 64px;
  overflow: hidden;
}
.artist-hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 50% at 30% 45%, rgba(255,255,255,0.04), transparent 70%);
}
.artist-hero__text { position: relative; z-index: 2; }
.artist-hero__label {
  font-family: var(--font-anton);
  font-style: normal;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.artist-hero__name {
  font-family: var(--font-anton);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.artist-hero__name .line { display: block; white-space: nowrap; font-size: clamp(48px, 12vw, 168px); }
.artist-hero__title {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 60px);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.artist-hero__sub {
  font-family: var(--font-anton);
  font-style: normal;
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--white);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.artist-hero__figure { position: relative; z-index: 2; justify-self: center; }
.artist-hero__figure::before {
  content: ""; position: absolute; inset: -8% -6%;
  background: radial-gradient(50% 55% at 52% 42%, rgba(255,255,255,0.10), transparent 68%);
  filter: blur(16px); z-index: 0; pointer-events: none;
  transition: background 0.6s var(--ease);
}
.artist-hero__img {
  position: relative; z-index: 1;
  width: min(420px, 80vw);
  border-radius: 4px;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, #000 82%, transparent);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.artist-hero__figure:hover .artist-hero__img {
  filter: brightness(1.2) drop-shadow(0 0 40px rgba(255,255,255,0.6)) drop-shadow(0 0 80px rgba(255,255,255,0.3));
  transform: scale(1.03);
}
.artist-hero__figure:hover::before { background: radial-gradient(50% 55% at 52% 42%, rgba(255,255,255,0.22), transparent 66%); }

/* ---- silhouette inner lights (always blinking, cross-star) ---- */
.image-lights { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.image-lights .light {
  position: absolute;
  width: 4px; height: 4px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 0 8px #ffffff, 0 0 16px #ffffff,
    0 0 32px rgba(255,255,255,0.7),
    0 0 64px rgba(255,255,255,0.3);
  opacity: 0;
}
.image-lights .light::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 20%, #fff 50%, rgba(255,255,255,0.5) 80%, transparent 100%);
  box-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 12px rgba(255,255,255,0.4);
  pointer-events: none;
}
.image-lights .light::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px; height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 20%, #fff 50%, rgba(255,255,255,0.5) 80%, transparent 100%);
  box-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 12px rgba(255,255,255,0.4);
  pointer-events: none;
}
.light-1 { top: 22%; left: 38%; animation: lightPulse 3.8s ease-in-out infinite; }
.light-1::before { width: 90px; } .light-1::after { height: 90px; }
.light-2 { top: 42%; left: 56%; animation: lightPulse 4.5s 1.2s ease-in-out infinite; }
.light-2::before { width: 110px; } .light-2::after { height: 110px; }
.light-3 { top: 60%; left: 32%; animation: lightPulse 4.2s 2.4s ease-in-out infinite; }
.light-3::before { width: 80px; } .light-3::after { height: 80px; }
.light-4 { top: 70%; left: 50%; animation: lightPulse 5s 3.5s ease-in-out infinite; }
.light-4::before { width: 100px; } .light-4::after { height: 100px; }
@keyframes lightPulse {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  20% { opacity: 0.7; transform: scale(1); }
  40% { opacity: 1; transform: scale(1.3); }
  60% { opacity: 0.8; transform: scale(1.2); }
  80% { opacity: 0.3; transform: scale(0.9); }
}
@keyframes randomLightPulse {
  0% { opacity: 0; transform: scale(0.3); }
  30% { opacity: 1; transform: scale(1.3); }
  70% { opacity: 0.7; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .image-lights .light { animation: none !important; opacity: 0.5; }
}

.artist-hero__scroll {
  position: absolute;
  left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-en-body);
  font-size: 10px; letter-spacing: 0.02em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.artist-hero__scroll svg { width: 16px; height: 16px; animation: bounceDown 1.8s ease infinite; }

/* ============================================================
   S2 — DECLARATION
   ============================================================ */
.artist-declaration {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(88px, 11vw, 140px) 24px;
}
.artist-declaration__line {
  font-family: var(--font-mincho);
  font-weight: 800;
  color: var(--white);
  margin-bottom: clamp(56px, 9vw, 96px);
  line-height: 1.4;
}
.artist-declaration__line:last-child { margin-bottom: 0; }
.artist-declaration__line.l1,
.artist-declaration__line.l2,
.artist-declaration__line.l3 { font-size: clamp(36px, 6vw, 80px); }
.artist-declaration__line.l3 {
  line-height: 1.4;
  text-shadow: 0 0 50px rgba(255,255,255,0.14);
}
/* slow, reverent reveal */
.artist-declaration .reveal { transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); transform: translateY(40px); }

/* ============================================================
   S3 — PROFILE (minimal)
   ============================================================ */
.artist-profile {
  padding: clamp(72px, 9vw, 120px) 24px;
  text-align: center;
}
.artist-section-label {
  font-family: var(--font-anton);
  font-style: normal;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0.8;
  margin-bottom: clamp(56px, 8vw, 80px);
}
.artist-profile__name {
  font-family: var(--font-anton);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  margin-bottom: clamp(36px, 5vw, 52px);
}
.artist-profile__roles { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 22px); margin-bottom: clamp(56px, 8vw, 80px); }
.artist-profile__role {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 24px);
  color: var(--white);
  letter-spacing: 0.04em;
}
.artist-profile__quote {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--white);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   S4 — LISTEN
   ============================================================ */
.artist-listen {
  padding: clamp(72px, 9vw, 120px) 24px;
  text-align: center;
}
.artist-listen__text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: clamp(56px, 8vw, 80px);
  line-height: 1.4;
}
.artist-yt-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
  font-family: var(--font-anton);
  font-size: 18px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.artist-yt-button svg { width: 20px; height: 20px; transition: transform 0.3s var(--ease); }
.artist-yt-button:hover { background: transparent; color: var(--neon-red); border-color: var(--neon-red); box-shadow: 0 0 20px rgba(255,215,0,0.6), 0 0 40px rgba(255,215,0,0.3), inset 0 0 20px rgba(255,215,0,0.1); text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red); transform: scale(1.03); }
.artist-yt-button:hover svg { transform: translateX(4px); }

/* video grid (3 tracks) */
.artist-listen .video-grid {
  max-width: 1200px;
  margin: 0 auto clamp(56px, 8vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.artist-listen .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: #000;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.artist-listen .video-wrapper:hover {
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 30px rgba(255,255,255,0.4), 0 0 60px rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.artist-listen .video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .artist-listen .video-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .artist-listen .video-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   S5 — ENGLISH STATEMENT
   ============================================================ */
.artist-statement {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(100px, 14vw, 160px) 24px;
}
.artist-statement__text {
  font-family: var(--font-anton);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 80px);
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.4;
  max-width: 1000px;
}
.artist-statement__text .first {
  display: block;
  margin-bottom: clamp(40px, 6vw, 60px);
  font-size: clamp(36px, 6vw, 96px);
}
.artist-statement__text .second {
  display: block;
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 700;
  opacity: 0.9;
}

/* ============================================================
   S6 — CTA  (reuses .cta base; ensure deep black bg)
   ============================================================ */
.artist-cta { min-height: 60vh; }
.artist-cta .cta__bg { display: none; }
.artist-cta .cta__title .gold { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .artist-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 16px 56px;
  }
  .artist-hero__figure { order: -1; }
  .artist-hero__sub { }
}
@media (max-width: 600px) {
  .artist-hero__scroll { display: none; }
  .artist-hero__img { width: min(260px, 68vw); }
}
