:root {
  --paper: #f4a6c3;
  --paper-2: #f7b9d0;
  --hot: #e2337f;
  --ink: #1c1418;
  --cream: #fff4f8;
  --blue: #1677f0;
  --blue-deep: #0b56c4;
  --bubble: #ff9fd6;
  --hand: "Gochi Hand", cursive;
  --poster: "Anton", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2 { margin: 0; line-height: 1; font-weight: 400; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.kicker { font-family: var(--hand); font-size: 1.35rem; margin: 0 0 6px; color: var(--hot); }
.script { font-family: var(--hand); font-size: clamp(2.6rem, 6vw, 4rem); margin-bottom: 28px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 20px;
  background: rgba(255, 244, 248, .88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.nav-logo { font-family: var(--hand); font-size: 1.6rem; text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--hot); }
.nav nav { display: flex; gap: 18px; }
.nav nav a { text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav nav a:hover { color: var(--hot); }
.burger {
  display: none; align-items: center; gap: 8px;
  font: 700 .95rem var(--body); color: var(--ink);
  padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; background: #fff; cursor: pointer;
}
.burger-lines { display: grid; gap: 3px; width: 18px; }
.burger-lines i { height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s, opacity .2s; }
.menu-open .burger-lines i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-open .burger-lines i:nth-child(2) { opacity: 0; }
.menu-open .burger-lines i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 2px solid var(--ink);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
  }
  .menu-open .nav nav { display: flex; }
  .nav nav a { padding: 16px 20px; font-size: 1.1rem; text-align: center; border-top: 1px solid rgba(0, 0, 0, .08); }
}

/* ---------- brand icons ---------- */
.ico {
  display: inline-block; width: 20px; height: 20px; flex: none;
  background: var(--brand, currentColor);
  -webkit-mask: center / contain no-repeat; mask: center / contain no-repeat;
}
.also { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; }
.also-label { font-size: .9rem; font-weight: 500; opacity: .75; margin-right: 4px; }
.plat {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: #fff; border: 2px solid var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.plat .ico { width: 22px; height: 22px; }
.plat:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--ink); }
.also-light .plat { border-color: #fff; }
.also-light .plat:hover { box-shadow: 3px 3px 0 var(--bubble); }

/* ---------- buttons ---------- */
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn {
  font: 700 1rem var(--body);
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { box-shadow: 4px 4px 0 var(--hot); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-pink { background: var(--bubble); color: var(--ink); border-color: #fff; }
.btn-pink:hover { box-shadow: 4px 4px 0 #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-light:hover { box-shadow: 4px 4px 0 var(--bubble); }
.btn-spotify { display: inline-flex; align-items: center; gap: 8px; background: #1DB954; color: #fff; }
.btn-spotify .ico { background: #fff; }
.ffr .btn-spotify { border-color: #fff; }
.ffr .btn-spotify:hover { box-shadow: 4px 4px 0 #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  background: var(--paper) url("img/girly-delusions-header.webp") right center / cover;
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.hero-art { display: none; }
.hero-copy { position: relative; padding: 60px 20px 60px max(20px, 7vw); max-width: 640px; }
.hero h1 {
  font-family: var(--hand);
  font-size: clamp(4.2rem, 12vw, 9rem);
  line-height: .9;
  letter-spacing: -1px;
}
.tagline { font-size: 1.2rem; max-width: 30ch; margin: 18px 0 0; font-weight: 500; }
.spark { position: absolute; font-size: 2rem; animation: twinkle 2.6s ease-in-out infinite; pointer-events: none; }
.s1 { top: 14%; left: 48%; }
.s2 { bottom: 16%; left: 6%; color: var(--hot); animation-delay: .8s; }
.s3 { top: 22%; left: 4%; animation-delay: 1.5s; }
@keyframes twinkle { 50% { opacity: .25; transform: scale(.7) rotate(20deg); } }

@media (max-width: 760px) {
  .hero { flex-direction: column; align-items: stretch; min-height: 0; background-position: left top; background-size: auto 900px; }
  .hero-art { display: block; position: relative; order: 2; height: 380px; background: url("img/girly-delusions-header.webp") 94% bottom / auto 110% no-repeat; }
  .hero-copy { padding: 44px 20px 0; text-align: center; margin: 0 auto; }
  .tagline { margin-left: auto; margin-right: auto; }
  .hero .btns, .hero .also { justify-content: center; }
  .hero-art { background-position: right bottom; }
}

/* ---------- albums shared ---------- */
.album { padding: 90px 0; }
.album-head { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 48px; align-items: center; }
.album h2 { font-size: clamp(3rem, 7vw, 5.2rem); }
.album-info p:not(.kicker) { font-size: 1.1rem; max-width: 46ch; }
.cover { border-radius: 6px; width: 100%; height: auto; }
@media (max-width: 760px) {
  .album-head { grid-template-columns: 1fr; gap: 28px; }
  .cover-stack, .ffr .cover { max-width: 380px; margin: 0 auto; }
  .album-info { text-align: center; }
  .album-info p:not(.kicker) { margin-left: auto; margin-right: auto; }
  .album-info .btns, .album-info .also { justify-content: center; }
}

.tracks { list-style: none; padding: 0; margin: 48px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px 22px; }
.track {
  display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: none; color: inherit; font: inherit;
  cursor: pointer;
}
.track .num { font-weight: 700; opacity: .55; font-variant-numeric: tabular-nums; }
.track .t { font-weight: 500; }
.track .d { font-size: .88rem; opacity: .6; font-variant-numeric: tabular-nums; }
.track .eq { display: none; gap: 2px; align-items: flex-end; height: 14px; }
.track .eq i { width: 3px; background: currentColor; animation: eq .8s ease-in-out infinite; }
.track .eq i:nth-child(2) { animation-delay: .2s; } .track .eq i:nth-child(3) { animation-delay: .4s; }
@keyframes eq { 0%,100% { height: 3px; } 50% { height: 14px; } }
.track.playing .num { display: none; }
.track.playing .eq { display: flex; }
.track.playing.paused .eq i { animation-play-state: paused; }

/* ---------- girly delusions ---------- */
.gd { background: var(--paper) url("img/paper.webp") left top / 1400px auto repeat; }
.album-head-solo { grid-template-columns: 1fr; text-align: center; }
.album-head-solo .album-info p:not(.kicker) { margin-left: auto; margin-right: auto; }
.album-head-solo .btns, .album-head-solo .also { justify-content: center; }
.gd h2 { font-family: var(--hand); }
.gd .kicker { color: var(--ink); opacity: .7; }
.cover-stack { position: relative; }
.cover-stack .cover { position: relative; z-index: 2; box-shadow: 8px 8px 0 var(--ink); transform: rotate(-2deg); }
.cd {
  position: absolute; z-index: 1; top: 6%; right: -14%; width: 88%;
  animation: spin 7s linear infinite; animation-play-state: paused;
  transition: right .5s ease;
}
.cd.on { animation-play-state: running; right: -26%; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 760px) { .cd { display: none; } }

.scene { margin: 64px 0 0; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); box-shadow: 8px 8px 0 var(--ink); }
.scene img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: opacity .35s; }
.scene figcaption { font-family: var(--hand); font-size: 1.5rem; padding: 10px 18px; border-top: 2px solid var(--ink); background: #fff; }

.gd .track:hover { background: rgba(255, 255, 255, .45); border-color: var(--ink); }
.gd .track.playing { background: #fff; border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.gd .track .num { font-family: var(--hand); font-size: 1.3rem; opacity: .8; }

/* ---------- find femboys radio ---------- */
.ffr { background: var(--blue); color: #fff; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.ffr h2 { font-family: var(--poster); text-transform: uppercase; letter-spacing: .5px; line-height: .95; }
.ffr h2 em { font-family: var(--hand); font-style: normal; color: var(--bubble); text-transform: none; display: inline-block; transform: rotate(-6deg); }
.ffr .kicker { color: var(--bubble); }
.ffr .cover { box-shadow: 0 20px 60px rgba(0, 0, 0, .35); border: 4px solid #fff; }
.dial {
  position: relative; height: 46px; margin-top: 64px;
  border: 2px solid #fff; border-radius: 10px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.7) 0 2px, transparent 2px 5%) center / 100% 40% no-repeat,
              repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 1px, transparent 1px 1.25%) center / 100% 20% no-repeat,
              var(--blue-deep);
}
.dial-needle { position: absolute; top: -8px; bottom: -8px; left: 2%; width: 4px; border-radius: 2px; background: var(--bubble); box-shadow: 0 0 14px var(--bubble); transition: left .6s cubic-bezier(.3, 1.4, .5, 1); }
.ffr .tracks { margin-top: 28px; }
.ffr .track .num { font-family: var(--poster); font-size: 1rem; opacity: .75; }
.ffr .track:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.ffr .track.playing { background: var(--bubble); color: var(--ink); border-color: #fff; }

/* ---------- videos ---------- */
.videos { padding: 90px 0; background: var(--ink); color: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.video { margin: 0; }
.video-frame {
  position: relative; display: block; width: 100%; aspect-ratio: 16/9;
  border: 0; padding: 0; border-radius: 14px; overflow: hidden; background: #000; cursor: pointer;
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; }
.video-frame:hover img { transform: scale(1.04); opacity: .85; }
.video-frame .play {
  position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; color: var(--ink); background: var(--bubble);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-frame .yt-badge { position: absolute; left: 12px; bottom: 12px; color: #fff; font-size: .78rem; font-weight: 700; background: rgba(0,0,0,.7); padding: 4px 10px; border-radius: 999px; }
.video figcaption { margin-top: 10px; font-weight: 700; }
.video figcaption small { display: block; font-weight: 400; opacity: .6; }

/* ---------- everywhere ---------- */
.everywhere { padding: 90px 0; background: var(--cream); text-align: center; }
.everywhere .script { margin-bottom: 12px; }
.everywhere .lead { font-size: 1.2rem; margin: 0 0 28px; }
.platforms {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 auto; max-width: 820px;
  padding: 16px 18px; background: #fff; border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--paper);
}
.platforms span { width: 26px; height: 26px; background: url("img/platforms.png") no-repeat; }
.sounds {
  display: inline-block; margin: 32px auto 0; padding: 14px 22px; max-width: 640px;
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 999px; font-size: 1.05rem;
}
@media (max-width: 560px) { .sounds { border-radius: var(--radius); } }

/* ---------- about ---------- */
.about { padding: 90px 0; background: var(--paper-2); border-top: 2px solid var(--ink); }
.about-inner { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 56px; align-items: center; }
.avatar { border-radius: 50% 50% var(--radius) var(--radius); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--hot); width: 100%; height: auto; }
.about p { font-size: 1.1rem; max-width: 56ch; }
.credits { display: flex; flex-wrap: wrap; gap: 14px 40px; margin: 28px 0 0; }
.credits dt { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; opacity: .65; }
.credits dd { margin: 0; font-weight: 700; }
@media (max-width: 760px) { .about-inner { grid-template-columns: 1fr; gap: 32px; } .avatar { max-width: 320px; margin: 0 auto; } .about-inner > div { text-align: center; } .about p { margin-left: auto; margin-right: auto; } .credits { justify-content: center; } }

/* ---------- links ---------- */
.links { padding: 90px 0 110px; text-align: center; background: var(--cream); border-top: 2px solid var(--ink); }
.link-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 760px; margin: 0 auto; }
.link-grid a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; border: 2px solid var(--ink); background: #fff;
  font-weight: 700; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
}
.link-grid a:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); background: var(--paper-2); }
.link-grid a.todo { opacity: .45; border-style: dashed; }
.booking { margin-top: 36px; }
.booking a { font-weight: 700; color: var(--hot); }

.foot { padding: 28px 20px 110px; text-align: center; font-size: .88rem; background: var(--ink); color: rgba(255,255,255,.7); }
.foot a { color: #fff; }

/* ---------- mini player ---------- */
.player {
  position: fixed; left: 50%; bottom: 16px; z-index: 30;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 24px));
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: #fff; border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 6px 6px 0 var(--ink);
}
.player[hidden] { display: none; }
.player img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex: none; }
.p-meta { flex: 1; min-width: 0; }
.p-meta span { display: block; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-meta small { opacity: .6; }
.p-bar { height: 6px; margin-top: 6px; border-radius: 3px; background: #f1d6e1; cursor: pointer; overflow: hidden; }
#p-fill { height: 100%; width: 0; background: var(--hot); }
.player button { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 0; background: none; font-size: 1rem; cursor: pointer; color: var(--ink); }
.player button:hover { background: var(--paper-2); }
#p-toggle { background: var(--ink); color: #fff; width: 44px; height: 44px; }
#p-close { border: 2px solid var(--ink); width: 34px; height: 34px; font-size: .9rem; font-weight: 700; }
#p-close:hover { background: var(--hot); color: #fff; border-color: var(--hot); }
@media (max-width: 480px) { #p-prev { display: none; } .player { gap: 6px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
