
:root{
  --bg:#f7f7f4;
  --panel:#ffffff;
  --ink:#111111;
  --muted:#6f6f6a;
  --line:#d8d8d3;
  --accent:#d6ff4b;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
}
.topbar{
  position:sticky;
  top:0;
  z-index:100;
  min-height:64px;
  padding:10px max(16px,calc((100vw - 1200px)/2));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid var(--line);
  background:rgba(247,247,244,.95);
  backdrop-filter:blur(12px);
}
.brand{display:flex;align-items:center;gap:10px;color:#111;text-decoration:none;font-weight:900;letter-spacing:1px}
.brand img{width:40px;height:40px;object-fit:contain;border-radius:4px}
.nav{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.nav a{color:#111;text-decoration:none;font-size:14px}
.menu-button{display:none;border:1px solid #111;background:transparent;padding:8px 12px}
main{width:min(1200px,calc(100% - 28px));margin:auto}
.hero{display:grid;grid-template-columns:1.35fr .85fr;gap:28px;padding:36px 0 56px;align-items:center}
.hero-video iframe{width:100%;aspect-ratio:16/9;border:0;display:block}
.micro{font-size:11px;letter-spacing:.14em;font-weight:700;color:var(--muted);margin:0 0 12px}
.hero h1,.section h2{font-family:Arial,Helvetica,sans-serif;letter-spacing:-.04em}
.hero h1{font-size:clamp(58px,9vw,120px);line-height:.82;margin:0}
.tagline{font-weight:700;letter-spacing:.06em;margin:18px 0 10px}
.intro{color:var(--muted);line-height:1.65;max-width:540px}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.button,.play-track,.small-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border:1px solid var(--ink);
  background:transparent;
  color:var(--ink);
  text-decoration:none;
  cursor:pointer;
}
.button.dark,.play-track{background:var(--ink);color:#fff}
.button.light{background:transparent;color:var(--ink)}
.section{padding:64px 0;border-top:1px solid var(--line)}
.section-head{margin-bottom:28px}
.section h2{font-size:clamp(38px,6vw,72px);line-height:.95;margin:0}
.release-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.release-card{background:var(--panel);border:1px solid var(--line)}
.visual-player{width:100%;height:300px;border:0;display:block}
.card-copy{padding:16px}
.card-copy span{font-size:10px;letter-spacing:.12em;color:var(--muted)}
.card-copy h3{font-size:28px;margin:8px 0 16px}
.split,.spotify,.support,.friends,.tokyo{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}
.split img,.support img{width:100%;max-width:420px;justify-self:end}
.split p,.spotify p,.support p,.friends p,.tokyo p{color:var(--muted);line-height:1.7}
.text-link{color:#111;font-weight:700}
.media-strip video{width:100%;aspect-ratio:16/9;object-fit:cover;display:block}
.track-list{border-top:1px solid var(--line)}
.track-row{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0;border-bottom:1px solid var(--line)}
.track-row div{display:flex;align-items:center;gap:16px}
.track-row span{color:var(--muted);font-size:12px}
.track-row h3{margin:0;font-size:26px}
.tokyo-video{max-width:340px}
.tokyo-video video{width:100%;aspect-ratio:9/16;object-fit:cover;display:block}
.gallery{overflow:hidden}
.gallery-track{display:flex;gap:12px;width:max-content;animation:galleryMove 100s linear infinite}
.gallery.paused .gallery-track,.gallery:hover .gallery-track{animation-play-state:paused}
.gallery-item{flex:0 0 300px;padding:0;border:0;background:none;cursor:pointer}
.gallery-item img{width:300px;height:210px;object-fit:cover;display:block}
@keyframes galleryMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.small-button{margin-top:16px}
.spotify iframe{border:0}
.support img{max-width:280px}
.form{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:760px}
.form label:nth-of-type(3),.form label:nth-of-type(4){grid-column:1/-1}
.form input,.form textarea{width:100%;margin-top:6px;padding:12px;border:1px solid var(--line);background:#fff;font:inherit}
.hidden{display:none}
.surprise{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center}
.surprise iframe{width:100%;height:166px;border:0;margin-top:18px}
.player{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:150;
  display:grid;
  grid-template-columns:220px 1fr 40px;
  gap:12px;
  align-items:center;
  padding:12px;
  background:#111;
  color:#fff;
  transform:translateY(140%);
  transition:.3s;
}
.player.active{transform:none}
.player small{display:block;color:var(--accent);font-size:10px;letter-spacing:.12em}
.player-frame,.player iframe{width:100%;height:58px;border:0}
#player-close{width:36px;height:36px;border:1px solid #fff;background:transparent;color:#fff;font-size:22px}
footer{padding:48px 16px 120px;text-align:center;border-top:1px solid var(--line)}
footer div{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}
footer a{color:#111}
dialog{padding:0;border:0;background:transparent}
dialog::backdrop{background:rgba(0,0,0,.88)}
dialog img{max-width:90vw;max-height:86vh}
#lightbox-close{position:absolute;right:4px;top:4px;width:40px;height:40px}
@media(max-width:900px){
  .nav{display:none;position:absolute;top:64px;left:0;right:0;padding:16px;background:var(--bg);border-bottom:1px solid var(--line)}
  .nav.open{display:flex;justify-content:center}
  .menu-button{display:block}
  .hero,.split,.spotify,.support,.friends,.tokyo{grid-template-columns:1fr}
  .release-grid{grid-template-columns:1fr 1fr}
  .split img,.support img{justify-self:start}
}
@media(max-width:600px){
  main{width:100%;padding:0 10px}
  .topbar{padding:8px 10px}
  .hero{display:block;padding:18px 0 34px}
  .hero-copy{padding-top:20px}
  .hero h1{font-size:56px}
  .tagline{font-size:13px;line-height:1.4}
  .actions{display:grid;grid-template-columns:1fr}
  .button,.play-track,.small-button{width:100%;min-height:44px}
  .section{padding:38px 0}
  .section h2{font-size:38px}
  .release-grid{grid-template-columns:1fr;gap:12px}
  .visual-player{height:220px}
  .card-copy h3{font-size:24px}
  .track-row{align-items:flex-start}
  .track-row h3{font-size:20px}
  .track-row .play-track{width:auto;min-height:40px}
  .tokyo-video{max-width:240px}
  .gallery-item,.gallery-item img{width:220px;flex-basis:220px}
  .gallery-item img{height:160px}
  .form{grid-template-columns:1fr}
  .form label{grid-column:1/-1!important}
  .form input,.form textarea{font-size:16px}
  .surprise{grid-template-columns:1fr}
  .player{left:6px;right:6px;bottom:6px;grid-template-columns:1fr 34px}
  .player iframe{grid-column:1/-1;height:52px}
}


/* V8 STEP 1 HERO */
.v8-hero{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);
  gap:40px;
  align-items:center;
  padding:48px 0 70px;
}
.v8-hero-media{
  background:#111;
}
.v8-hero-media iframe{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  border:0;
}
.v8-hero-copy{
  max-width:520px;
}
.v8-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
}
.v8-status span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d6ff4b;
  box-shadow:0 0 0 4px rgba(214,255,75,.18);
}
.v8-hero h1{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  font-size:clamp(60px,9vw,124px);
  line-height:.8;
  letter-spacing:-.055em;
}
.v8-hero .tagline{
  margin:20px 0 10px;
  font-weight:700;
  letter-spacing:.055em;
}
.v8-hero .intro{
  color:var(--muted);
  line-height:1.65;
  max-width:500px;
}
.v8-hero .actions{
  margin-top:26px;
}
@media(max-width:900px){
  .v8-hero{
    grid-template-columns:1fr;
    gap:24px;
    padding:24px 0 48px;
  }
  .v8-hero-copy{
    max-width:none;
  }
}
@media(max-width:600px){
  .v8-hero{
    display:block;
    padding:14px 0 34px;
  }
  .v8-hero-media{
    margin:0 -10px;
  }
  .v8-hero-copy{
    padding-top:20px;
  }
  .v8-status{
    margin-bottom:14px;
    font-size:9px;
  }
  .v8-hero h1{
    font-size:52px;
    line-height:.83;
  }
  .v8-hero .tagline{
    font-size:12px;
    line-height:1.4;
  }
  .v8-hero .intro{
    font-size:14px;
    line-height:1.5;
  }
  .v8-hero .actions{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }
  .v8-hero .button{
    width:100%;
    min-height:44px;
  }
}
/* END V8 STEP 1 HERO */


/* V8 STEP 2 RELEASE SPOTLIGHT */
.v8-release{
  padding-top:72px;
  padding-bottom:72px;
}
.spotlight-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:36px;
  align-items:center;
}
.spotlight-player iframe{
  width:100%;
  height:440px;
  display:block;
  border:0;
}
.spotlight-copy h3{
  margin:0 0 16px;
  font-size:clamp(42px,6vw,76px);
  line-height:.95;
  letter-spacing:-.04em;
}
.spotlight-copy p{
  color:var(--muted);
  line-height:1.7;
  max-width:520px;
}
.spotlight-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}
.secondary-releases{
  margin-top:34px;
  border-top:1px solid var(--line);
}
.secondary-releases article{
  display:grid;
  grid-template-columns:42px 1fr auto;
  gap:18px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.secondary-releases article>span{
  color:var(--muted);
  font-size:12px;
}
.secondary-releases h3{
  margin:3px 0 0;
  font-size:26px;
}
.secondary-releases .micro{
  margin:0;
}
.secondary-releases button{
  min-width:110px;
}
@media(max-width:900px){
  .spotlight-grid{
    grid-template-columns:1fr;
  }
  .spotlight-player iframe{
    height:360px;
  }
}
@media(max-width:600px){
  .v8-release{
    padding-top:42px;
    padding-bottom:42px;
  }
  .spotlight-grid{
    display:block;
  }
  .spotlight-player iframe{
    height:230px;
  }
  .spotlight-copy{
    padding-top:20px;
  }
  .spotlight-copy h3{
    font-size:42px;
  }
  .spotlight-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .spotlight-actions .button{
    width:100%;
  }
  .secondary-releases{
    margin-top:26px;
  }
  .secondary-releases article{
    grid-template-columns:30px 1fr;
    gap:10px;
    padding:14px 0;
  }
  .secondary-releases h3{
    font-size:20px;
  }
  .secondary-releases button{
    grid-column:1/-1;
    width:100%;
    min-height:42px;
  }
}
/* END V8 STEP 2 RELEASE SPOTLIGHT */


/* V8 STEP 3 DISCOGRAPHY */
.v8-discography{
  padding-top:72px;
  padding-bottom:72px;
}
.discography-intro{
  max-width:620px;
  color:var(--muted);
  line-height:1.65;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.catalog-card{
  border:1px solid var(--line);
  background:var(--panel);
}
.catalog-card iframe{
  width:100%;
  height:260px;
  display:block;
  border:0;
}
.catalog-body{
  padding:15px;
}
.catalog-body .micro{
  margin-bottom:7px;
}
.catalog-body h3{
  margin:0 0 16px;
  font-size:25px;
  line-height:1.05;
}
.catalog-body .play-track{
  width:100%;
}
@media(max-width:900px){
  .catalog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:600px){
  .v8-discography{
    padding-top:42px;
    padding-bottom:42px;
  }
  .catalog-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .catalog-card iframe{
    height:210px;
  }
  .catalog-body{
    padding:12px;
  }
  .catalog-body h3{
    font-size:22px;
  }
  .catalog-body .play-track{
    min-height:44px;
  }
}
/* END V8 STEP 3 DISCOGRAPHY */


/* V8 STEP 4 GALLERY */
.v8-gallery-section{
  overflow:hidden;
  padding-top:72px;
  padding-bottom:72px;
}
.gallery-intro{
  max-width:620px;
  color:var(--muted);
  line-height:1.65;
}
.v8-gallery-window{
  overflow:hidden;
  width:100%;
  padding:10px 0;
}
.v8-gallery-track{
  display:flex;
  gap:12px;
  width:max-content;
  animation:v8GalleryFlow 120s linear infinite;
  will-change:transform;
}
.v8-gallery-window:hover .v8-gallery-track,
.v8-gallery-window.paused .v8-gallery-track{
  animation-play-state:paused;
}
.v8-gallery-item{
  flex:0 0 320px;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}
.v8-gallery-item img{
  width:320px;
  height:220px;
  display:block;
  object-fit:cover;
  border:1px solid var(--line);
  transition:opacity .2s ease,transform .2s ease;
}
.v8-gallery-item:hover img{
  opacity:.88;
  transform:translateY(-3px);
}
.v8-gallery-controls{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}
@keyframes v8GalleryFlow{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.v8-lightbox{
  padding:0;
  border:0;
  background:transparent;
  max-width:96vw;
  max-height:94vh;
  overflow:visible;
}
.v8-lightbox::backdrop{
  background:rgba(0,0,0,.92);
}
.v8-lightbox img{
  display:block;
  max-width:90vw;
  max-height:88vh;
  object-fit:contain;
}
#lightbox-close{
  position:absolute;
  top:-44px;
  right:0;
  width:38px;
  height:38px;
  border:1px solid #fff;
  background:#111;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}
.v8-lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:1px solid #fff;
  background:#111;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.v8-lightbox-nav.prev{left:-58px}
.v8-lightbox-nav.next{right:-58px}
@media(max-width:900px){
  .v8-lightbox-nav.prev{left:8px}
  .v8-lightbox-nav.next{right:8px}
}
@media(max-width:600px){
  .v8-gallery-section{
    padding-top:42px;
    padding-bottom:42px;
  }
  .v8-gallery-item{
    flex-basis:230px;
  }
  .v8-gallery-item img{
    width:230px;
    height:160px;
  }
  .v8-gallery-controls{
    justify-content:stretch;
  }
  .v8-gallery-controls .small-button{
    width:100%;
    min-height:44px;
  }
}
.v8-flyers-section{
  padding-top:72px;
  padding-bottom:72px;
}
.v8-flyers-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}
.v8-flyer-item{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:340px;
  padding:0;
  border:1px solid var(--line);
  background:#0a0a0c;
  cursor:pointer;
  overflow:hidden;
}
.v8-flyer-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  transition:opacity .2s ease,transform .2s ease;
}
.v8-flyer-item:hover img{
  opacity:.88;
  transform:scale(1.03);
}
@media(max-width:900px){
  .v8-flyers-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .v8-flyer-item{
    height:280px;
  }
}
@media(max-width:600px){
  .v8-flyers-section{
    padding-top:42px;
    padding-bottom:42px;
  }
  .v8-flyers-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .v8-flyer-item{
    height:min(420px,80vw);
  }
  .v8-flyer-item:hover img{
    transform:none;
  }
}
/* END V8 STEP 4 GALLERY */


/* V8 STEP 5 STUDIO JOURNAL */
.v8-studio{
  padding-top:72px;
  padding-bottom:72px;
}
.studio-intro{
  max-width:680px;
  color:var(--muted);
  line-height:1.65;
}
.journal-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.journal-entry{
  min-height:250px;
  padding:20px;
  border:1px solid var(--line);
  background:var(--panel);
}
.journal-entry time{
  display:block;
  margin-bottom:26px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.journal-entry h3{
  margin:0 0 12px;
  font-size:28px;
}
.journal-entry p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.gear-block{
  margin-top:42px;
  padding-top:36px;
  border-top:1px solid var(--line);
}
.gear-heading h3{
  margin:0 0 22px;
  font-size:36px;
  letter-spacing:-.03em;
}
.gear-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.gear-item{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:10px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.gear-item span{
  color:var(--muted);
  font-size:11px;
}
.gear-item strong{
  font-size:17px;
}
.gear-item small{
  grid-column:2;
  color:var(--muted);
  font-size:12px;
}
@media(max-width:900px){
  .journal-grid,
  .gear-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:600px){
  .v8-studio{
    padding-top:42px;
    padding-bottom:42px;
  }
  .journal-grid,
  .gear-grid{
    grid-template-columns:1fr;
    gap:10px;
  }
  .journal-entry{
    min-height:0;
    padding:16px;
  }
  .journal-entry time{
    margin-bottom:16px;
  }
  .journal-entry h3{
    font-size:24px;
  }
  .gear-block{
    margin-top:30px;
    padding-top:28px;
  }
  .gear-heading h3{
    font-size:30px;
  }
}
/* END V8 STEP 5 STUDIO JOURNAL */


/* V8 STEP 6 FINAL POLISH */
:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
}
img,video,iframe{
  max-width:100%;
}
.v8-footer{
  padding:54px max(16px,calc((100vw - 1200px)/2)) 110px;
  border-top:1px solid var(--line);
  background:#f0f0ec;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:34px;
}
.footer-brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:4px;
}
.footer-brand strong{
  display:block;
  font-size:24px;
  letter-spacing:.06em;
}
.footer-brand p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:13px;
}
.footer-columns{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.footer-columns div{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:9px;
}
.footer-columns span{
  margin-bottom:5px;
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
}
.footer-columns a,
.footer-columns button{
  padding:0;
  border:0;
  background:none;
  color:var(--ink);
  text-decoration:none;
  font:inherit;
  cursor:pointer;
}
.footer-columns a:hover,
.footer-columns button:hover{
  text-decoration:underline;
}
.footer-copy{
  margin:38px 0 0;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
}
@media(max-width:900px){
  .footer-columns{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:600px){
  .v8-footer{
    padding:38px 12px 100px;
  }
  .footer-brand{
    align-items:flex-start;
  }
  .footer-brand p{
    line-height:1.4;
  }
  .footer-columns{
    grid-template-columns:1fr 1fr;
    gap:24px 16px;
  }
  .footer-columns a,
  .footer-columns button{
    min-height:30px;
  }
}
/* END V8 STEP 6 FINAL POLISH */


/* V8.2 MY STUDIO */
.my-studio-section{
  margin:0;
  background:#0e0e0e;
  color:#fff;
  border-top:1px solid #262626;
  border-bottom:1px solid #262626;
}
.studio-hero{
  position:relative;
  min-height:620px;
  overflow:hidden;
}
.studio-hero>img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}
.studio-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.22) 45%,rgba(0,0,0,.16) 100%);
  pointer-events:none;
}
.studio-intro-card{
  position:absolute;
  left:max(24px,calc((100vw - 1200px)/2));
  top:50%;
  transform:translateY(-50%);
  max-width:350px;
  z-index:2;
}
.studio-intro-card h2{
  margin:0 0 14px;
  font-size:clamp(46px,6vw,82px);
  line-height:.92;
  color:#fff;
}
.studio-intro-card p:last-child{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:#f0f0f0;
}
.studio-hotspot{
  position:absolute;
  z-index:3;
  width:34px;
  height:34px;
  border:2px solid #f6c800;
  border-radius:50%;
  background:rgba(0,0,0,.72);
  color:#f6c800;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}
.studio-hotspot:hover{
  transform:scale(1.12);
  background:#111;
}
.studio-hotspot.h1{left:28%;top:44%}
.studio-hotspot.h2{left:47%;top:43%}
.studio-hotspot.h3{left:61%;top:58%}
.studio-hotspot.h4{right:12%;top:40%}
.studio-gear-panel{
  width:min(1200px,calc(100% - 28px));
  margin:auto;
  padding:46px 0 58px;
}
.studio-gear-panel .section-head{
  text-align:center;
  margin-bottom:28px;
}
.studio-gear-panel .section-head h2{
  margin:0;
  color:#fff;
  font-size:clamp(34px,5vw,58px);
}
.studio-gear-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.studio-gear-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-height:150px;
  padding:18px;
  border:1px solid #2f2f2f;
  background:#161616;
  scroll-margin-top:90px;
}
.studio-gear-card:target{
  border-color:#f6c800;
  box-shadow:0 0 0 1px #f6c800;
}
.studio-icon{
  font-size:28px;
}
.studio-gear-card h3{
  margin:0 0 10px;
  color:#fff;
  font-size:22px;
}
.studio-gear-card p{
  margin:0;
  color:#bcbcbc;
  line-height:1.55;
  font-size:14px;
}
@media(max-width:900px){
  .studio-hero,
  .studio-hero>img{
    min-height:500px;
  }
  .studio-gear-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .studio-hero{
    min-height:auto;
  }
  .studio-hero>img{
    min-height:0;
    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;
  }
  .studio-shade{
    background:linear-gradient(180deg,rgba(0,0,0,.12) 0%,rgba(0,0,0,.8) 100%);
  }
  .studio-intro-card{
    left:16px;
    right:16px;
    top:auto;
    bottom:16px;
    transform:none;
    max-width:none;
  }
  .studio-intro-card h2{
    font-size:38px;
  }
  .studio-intro-card p:last-child{
    font-size:14px;
  }
  .studio-hotspot{
    width:30px;
    height:30px;
    font-size:19px;
  }
  .studio-hotspot.h1{left:20%;top:45%}
  .studio-hotspot.h2{left:42%;top:40%}
  .studio-hotspot.h3{left:60%;top:58%}
  .studio-hotspot.h4{right:10%;top:42%}
  .studio-gear-panel{
    width:calc(100% - 20px);
    padding:34px 0 42px;
  }
  .studio-gear-grid{
    grid-template-columns:1fr;
    gap:10px;
  }
  .studio-gear-card{
    min-height:0;
    padding:15px;
  }
}
/* END V8.2 MY STUDIO */


/* Sessions Step 1 */
.sessions-section{
  padding-top:72px;
  padding-bottom:72px;
}
.session-filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:24px;
}
.session-filter{
  min-height:38px;
  padding:8px 14px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  cursor:pointer;
}
.session-filter.active,
.session-filter:hover{
  background:var(--ink);
  color:#fff;
}
.session-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.session-card{
  border:1px solid var(--line);
  background:var(--panel);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.session-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.session-card.hidden{
  display:none;
}
.session-card.featured{
  grid-column:span 2;
}
.session-cover iframe{
  width:100%;
  height:240px;
  display:block;
  border:0;
}
.session-card.featured .session-cover iframe{
  height:320px;
}
.session-card-body{
  padding:14px;
}
.session-badge{
  display:inline-block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.session-card h3{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.08;
}
.session-card.featured h3{
  font-size:30px;
}
.session-play{
  width:100%;
  min-height:42px;
}
@media(max-width:900px){
  .session-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .session-card.featured{
    grid-column:span 1;
  }
  .session-card.featured .session-cover iframe,
  .session-cover iframe{
    height:230px;
  }
}
@media(max-width:600px){
  .sessions-section{
    padding-top:42px;
    padding-bottom:42px;
  }
  .session-filters{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .session-filter{
    flex:0 0 auto;
    white-space:nowrap;
  }
  .session-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .session-cover iframe{
    height:155px!important;
  }
  .session-card-body{
    padding:10px;
  }
  .session-card h3,
  .session-card.featured h3{
    font-size:17px;
    min-height:36px;
  }
  .session-play{
    min-height:40px;
    padding:7px 8px;
    font-size:13px;
  }
}
/* End Sessions Step 1 */


/* Friends Cards V2 */
.friends-section{
  padding-top:72px;
  padding-bottom:72px;
}
.friends-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.friend-profile{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:20px;
  align-items:center;
  padding:18px;
  border:1px solid var(--line);
  background:var(--panel);
  transition:transform .2s ease,box-shadow .2s ease;
}
.friend-profile:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.friend-logo-wrap{
  width:180px;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
}
.friend-logo-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.friend-type{
  display:inline-block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.friend-profile h3{
  margin:0 0 10px;
  font-size:30px;
  line-height:1;
}
.friend-profile p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
}
.friend-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.friend-actions .button{
  min-height:42px;
}
@media(max-width:900px){
  .friend-profile{
    grid-template-columns:140px 1fr;
  }
  .friend-logo-wrap{
    width:140px;
    height:140px;
  }
}
@media(max-width:600px){
  .friends-section{
    padding-top:42px;
    padding-bottom:42px;
  }
  .friends-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .friend-profile{
    display:block;
    padding:10px;
  }
  .friend-logo-wrap{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
    margin-bottom:10px;
  }
  .friend-profile h3{
    font-size:20px;
  }
  .friend-profile p{
    font-size:13px;
    line-height:1.45;
    min-height:76px;
  }
  .friend-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .friend-actions .button{
    width:100%;
    min-height:40px;
    padding:7px 8px;
    font-size:13px;
  }
}
/* End Friends Cards V2 */


/* Sessions accordion */
.sessions-simple{
  padding-top:72px;
  padding-bottom:72px;
}
.sessions-accordion{
  border-top:1px solid var(--line);
}
.session-group{
  border-bottom:1px solid var(--line);
}
.session-group-toggle{
  width:100%;
  display:grid;
  grid-template-columns:1fr auto 34px;
  gap:14px;
  align-items:center;
  padding:20px 0;
  border:0;
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}
.session-group-toggle span{
  font-size:28px;
  font-weight:700;
  letter-spacing:-.02em;
}
.session-group-toggle strong{
  color:var(--muted);
  font-size:12px;
  font-weight:400;
}
.session-group-toggle b{
  font-size:24px;
  font-weight:400;
  text-align:center;
  transition:transform .2s ease;
}
.session-group.open .session-group-toggle b{
  transform:rotate(45deg);
}
.session-group-panel{
  padding:0 0 14px;
}
.session-line{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:52px;
  padding:12px 0;
  border:0;
  border-top:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}
.session-line span{
  font-size:18px;
}
.session-line em{
  font-style:normal;
  color:var(--muted);
  font-size:12px;
}
.session-line:hover em{
  color:var(--ink);
}
@media(max-width:600px){
  .sessions-simple{
    padding-top:42px;
    padding-bottom:42px;
  }
  .session-group-toggle{
    grid-template-columns:1fr auto 28px;
    padding:16px 0;
  }
  .session-group-toggle span{
    font-size:22px;
  }
  .session-group-toggle strong{
    font-size:11px;
  }
  .session-line{
    min-height:48px;
  }
  .session-line span{
    font-size:16px;
  }
}
/* End Sessions accordion */


/* Friends: 3 partenaires */
@media(min-width:901px){
  .friends-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .friend-profile{
    display:block;
  }
  .friend-logo-wrap{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
    margin-bottom:14px;
  }
}
@media(max-width:600px){
  .friends-grid{
    grid-template-columns:1fr;
  }
  .friend-profile p{
    min-height:0;
  }
}
/* End Friends: 3 partenaires */


/* Gallery upgrade: lightbox, navigation and hover */
.gallery-item img,
.v8-gallery-item img,
.scroll-gallery-item img,
.flow-gallery-item img{
  transition:transform .25s ease, opacity .25s ease, filter .25s ease;
}
.gallery-item:hover img,
.v8-gallery-item:hover img,
.scroll-gallery-item:hover img,
.flow-gallery-item:hover img{
  transform:scale(1.035);
  filter:contrast(1.06);
}
.gallery-lightbox,
.v8-lightbox,
#lightbox{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  max-width:none;
  max-height:none;
  padding:0;
  border:0;
  background:rgba(0,0,0,.94);
}
.gallery-lightbox::backdrop,
.v8-lightbox::backdrop,
#lightbox::backdrop{
  background:rgba(0,0,0,.94);
}
.gallery-lightbox img,
.v8-lightbox img,
#lightbox img{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  max-width:90vw;
  max-height:86vh;
  object-fit:contain;
}
#lightbox-prev,
#lightbox-next,
.lightbox-prev,
.lightbox-next{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:48px;
  height:48px;
  border:1px solid #fff;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}
#lightbox-prev,.lightbox-prev{left:18px}
#lightbox-next,.lightbox-next{right:18px}
#lightbox-close{
  position:fixed;
  top:18px;
  right:18px;
  z-index:4;
}
@media(max-width:600px){
  #lightbox-prev,
  #lightbox-next,
  .lightbox-prev,
  .lightbox-next{
    width:42px;
    height:42px;
    font-size:26px;
  }
  #lightbox-prev,.lightbox-prev{left:8px}
  #lightbox-next,.lightbox-next{right:8px}
}


/* Instagram integration */
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.social-icon{
  width:22px;
  height:22px;
  display:inline-block;
  fill:none;
}
.instagram-section{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.instagram-copy p{
  max-width:620px;
  color:var(--muted);
  line-height:1.65;
}
.instagram-button{
  gap:9px;
  margin-top:12px;
}
.instagram-card{
  min-height:220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:28px;
  border:1px solid var(--line);
  background:var(--panel);
  text-align:center;
}
.instagram-large-icon{
  width:64px;
  height:64px;
}
.instagram-card strong{
  font-size:26px;
}
.instagram-card span{
  color:var(--muted);
  font-size:13px;
}
@media(max-width:700px){
  .instagram-section{
    grid-template-columns:1fr;
  }
  .instagram-button{
    width:100%;
  }
  .instagram-card{
    min-height:180px;
  }
}
/* End Instagram integration */


/* V9 Step 1 — Music Library */
.music-library{
  padding-top:72px;
  padding-bottom:72px;
}
.music-accordion{
  border-top:1px solid var(--line);
}
.music-group{
  border-bottom:1px solid var(--line);
}
.music-group-toggle{
  width:100%;
  display:grid;
  grid-template-columns:1fr auto 34px;
  gap:14px;
  align-items:center;
  padding:20px 0;
  border:0;
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}
.music-group-toggle span{
  font-size:28px;
  font-weight:700;
  letter-spacing:-.02em;
}
.music-group-toggle strong{
  color:var(--muted);
  font-size:12px;
  font-weight:400;
}
.music-group-toggle b{
  font-size:24px;
  font-weight:400;
  text-align:center;
  transition:transform .2s ease;
}
.music-group.open .music-group-toggle b{
  transform:rotate(45deg);
}
.music-group-panel{
  padding:0 0 14px;
}
.music-line{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:54px;
  padding:12px 0;
  border:0;
  border-top:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}
.music-line span{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
}
.music-line i{
  min-width:78px;
  color:var(--muted);
  font-size:9px;
  font-style:normal;
  font-weight:700;
  letter-spacing:.12em;
}
.music-line em{
  color:var(--muted);
  font-size:12px;
  font-style:normal;
}
.music-line:hover em{
  color:var(--ink);
}
@media(max-width:600px){
  .music-library{
    padding-top:42px;
    padding-bottom:42px;
  }
  .music-group-toggle{
    grid-template-columns:1fr auto 28px;
    padding:16px 0;
  }
  .music-group-toggle span{
    font-size:22px;
  }
  .music-group-toggle strong{
    font-size:10px;
  }
  .music-line{
    min-height:50px;
  }
  .music-line span{
    gap:7px;
    font-size:15px;
  }
  .music-line i{
    min-width:66px;
    font-size:8px;
  }
}
/* End V9 Step 1 */


/* Gallery seamless patch */
.gallery,
.v8-gallery-window,
#gallery-slider{
  gap:0 !important;
}

.gallery-track,
.v8-gallery-track{
  gap:0 !important;
}

.gallery-item,
.v8-gallery-item,
.scroll-gallery-item,
.flow-gallery-item,
.cover-slide{
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.gallery-item img,
.v8-gallery-item img,
.scroll-gallery-item img,
.flow-gallery-item img,
.cover-slide img{
  display:block !important;
  margin:0 !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.v8-gallery-item:hover img,
.gallery-item:hover img,
.scroll-gallery-item:hover img,
.flow-gallery-item:hover img{
  transform:scale(1.025);
  position:relative;
  z-index:2;
}
/* End Gallery seamless patch */


/* V9 remove section separators */
.section,
section,
.music-library,
.sessions-simple,
.sessions-section,
.v8-gallery-section,
.instagram-section,
.friends-section,
.v8-studio,
.my-studio-section,
.support,
.spotify,
.surprise,
.tokyo,
.media-strip{
  border-top:0 !important;
  border-bottom:0 !important;
  box-shadow:none !important;
}

.section::before,
.section::after,
section::before,
section::after{
  border:0 !important;
  box-shadow:none !important;
}

.gallery,
.gallery-track,
.v8-gallery-window,
.v8-gallery-track,
.gallery-item,
.v8-gallery-item,
.gallery-item img,
.v8-gallery-item img{
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  gap:0 !important;
}

.music-accordion,
.music-group,
.sessions-accordion,
.session-group{
  border-top:0 !important;
  border-bottom:0 !important;
}

.music-group + .music-group,
.session-group + .session-group{
  margin-top:1px;
}
/* End V9 remove section separators */


/* V10 performance */
section{
  content-visibility:auto;
  contain-intrinsic-size:700px;
}
img{
  height:auto;
}
/* End V10 performance */





/* V10 definitive hero title fix */
@media (min-width:901px){
  .hero.v8-hero{
    grid-template-columns:minmax(0,1fr) minmax(430px,500px) !important;
    gap:32px !important;
    overflow:visible !important;
  }

  .v8-hero-copy{
    width:100% !important;
    max-width:500px !important;
    min-width:0 !important;
    overflow:visible !important;
  }

  .hero.v8-hero h1{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 0 .08em 0 !important;
    font-size:clamp(54px,5.2vw,76px) !important;
    line-height:.9 !important;
    letter-spacing:-.055em !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
  }
}

@media (min-width:1400px){
  .hero.v8-hero{
    grid-template-columns:minmax(0,1fr) 520px !important;
  }

  .v8-hero-copy{
    max-width:520px !important;
  }

  .hero.v8-hero h1{
    font-size:80px !important;
  }
}
/* End V10 definitive hero title fix */

/* Multipass spotlight artwork */
.spotlight-artwork{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  display:block;
  margin-bottom:14px;
}

.spotlight-player:has(.spotlight-artwork) iframe{
  height:166px;
}
