* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background: var(--page-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .24;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--page-vignette);
  z-index: 5;
}

.audio-bg {
  display: none;
}

.audio-bg::before,
.audio-bg::after {
  content: "";
  position: absolute;
  inset: -30%;
  background-repeat: repeat;
  background-size: 900px 760px;
  filter: none;
  animation: drift 70s linear infinite;
  opacity: .58;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='760' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3Etext%7Bfont-family:Menlo,Consolas,monospace;font-size:14px;fill:%23ff55d6;fill-opacity:.55%7D .dim%7Bfill:%239b6cff;fill-opacity:.36%7D%3C/style%3E%3Ctext x='60' y='60' class='dim'%3Esonny.aif@deck:~$ arm livestream%3C/text%3E%3Ctext x='60' y='96'%3EAUDIO chain: CDJ-3000 %3E DJM-A9 %3E OBS%3C/text%3E%3Ctext x='60' y='132'%3Etempo locked / bass pressure stable%3C/text%3E%3Ctext x='60' y='168'%3Edouble drop queued / crowd signal hot%3C/text%3E%3Ctext x='420' y='280' class='dim'%3ESonnySounds Vol 001%3C/text%3E%3Ctext x='420' y='316'%3Eriddim / dubstep / deep dub%3C/text%3E%3Ctext x='420' y='352'%3Evisuals online / stream ready%3C/text%3E%3Ctext x='100' y='520' class='dim'%3Ewarehouse signal detected%3C/text%3E%3Ctext x='100' y='556'%3Elow end calibrated%3C/text%3E%3Ctext x='100' y='592'%3Ecommunity channel open%3C/text%3E%3C/svg%3E");
}

.audio-bg::after {
  opacity: .28;
  animation-duration: 95s;
  animation-direction: reverse;
  transform: translateX(30%);
}

@keyframes drift {
  from { transform: translate3d(0,-8%,0); }
  to { transform: translate3d(0,14%,0); }
}

.page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: clamp(.8rem, 1.6vw, 1.35rem);
}

.shell {
  width: min(1560px, 100%);
  min-height: calc(100vh - 2.7rem);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 42px);
  border: var(--shell-border);
  background: var(--shell-bg);
  box-shadow: var(--shell-shadow);
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem clamp(1.1rem, 3vw, 3rem);
  background: var(--header-bg);
  border-bottom: var(--header-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  color: var(--header-logo-main-color);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: -.04em;
  font-weight: 900;
}

.logo span {
  color: var(--header-logo-accent-color);
  text-shadow: var(--header-logo-accent-shadow);
}
nav {
  display: flex;
  gap: clamp(.68rem, 1.68vw, 1.42rem);
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: var(--header-nav-link-color);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.17rem;
}

nav a:hover {
  color: var(--header-nav-hover-color);
  text-shadow: var(--header-nav-hover-shadow);
}

.home {
  position: relative;
  padding: clamp(1.1rem, 2.6vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(.75rem, 1.3vw, 1.2rem);
  overflow: hidden;
}

.home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.06) 42%, rgba(0,0,0,.28));
}

.home-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(.85rem, 1.45vw, 1.35rem);
  align-items: stretch;
  min-width: 0;
}

.hero-panel,
.side-card,
.connect-panel {
  border-radius: 28px;
  border: var(--panel-border);
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-panel {
  --home-hero-title-size: clamp(4.05rem, 6.85vw, 8.7rem);
  padding: clamp(1.3rem, 3vw, 2.35rem);
  min-height: clamp(560px, 72vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Shared live hero card foundation. Desktop/mobile placement lives in the
   dedicated sections near the end of this file. */
.home-hero-default,
.home-live-panel {
  width: 100%;
}

.hero-panel.is-live .home-hero-default {
  display: none;
}

.home-live-panel[hidden] {
  display: none;
}

.home-live-panel {
  --home-live-title-size: clamp(2.1rem, min(3.7vw, 5.75vh), 4.55rem);
  --home-live-title-glow-offset: calc(var(--home-live-title-size) * .18);
  --home-live-player-radius: 20px;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(17rem, .42fr) minmax(400px, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  overflow: visible;
  position: relative;
}

.home-live-head {
  grid-column: 2;
  grid-row: 1;
}

.home-live-embed-wrap {
  grid-column: 1;
  grid-row: 1;
}

.hero-panel.is-live {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-live-head {
  min-width: 0;
  padding-top: 0;
  justify-self: start;
  width: 100%;
}

.home-live-title-lockup {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-top: clamp(2.15rem, 3vw, 3.25rem);
}

.home-live-status {
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  width: max-content;
  padding: .58rem .86rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,63,200,.12);
  color: var(--color-logo-white);
  font-size: clamp(.78rem, .9vw, .95rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.home-live-status i {
  color: #35ff83;
  font-size: .72em;
}

.home-live-panel h1 {
  font-size: var(--home-live-title-size);
  letter-spacing: -.035em;
  max-width: none;
  width: max-content;
}

.home-live-panel h1 > span {
  display: block;
  width: 100%;
  padding-bottom: .05em;
  margin-bottom: -.05em;
  text-align: left;
}

.home-live-panel h1 .glow {
  transform: translateX(var(--home-live-title-glow-offset));
}

.home-live-copy {
  max-width: 29rem;
  margin: clamp(.75rem, 1vw, 1rem) 0 0 var(--home-live-title-glow-offset);
  color: var(--color-logo-white);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -.02em;
}

.home-live-copy span {
  display: block;
  width: max-content;
}

.home-live-copy-nowrap {
  white-space: nowrap;
}

.home-live-head > div {
  min-width: 0;
}

.home-live-embed-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, max(540px, 64svh));
  min-width: 400px;
  min-height: 304px;
  aspect-ratio: 16 / 9;
  justify-self: start;
  align-self: center;
  border-radius: var(--home-live-player-radius);
  overflow: hidden;
  background: #050408;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.home-live-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: #050408;
}

.eyebrow {
  color: var(--hero-eyebrow-color);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(.68rem, .9vw, .9rem);
  font-weight: 950;
  margin-bottom: clamp(1.2rem, 2.1vw, 1.8rem);
  text-shadow: var(--hero-eyebrow-shadow);
}

h1 {
  margin: 0;
  font-size: var(--home-hero-title-size);
  line-height: .84;
  letter-spacing: -.070em;
  font-weight: 950;
}

h1 span {
  display: block;
  line-height: .98;
  padding-bottom: .08em;
  margin-bottom: -.08em;
}

.white {
  color: var(--hero-title-main-color);
  -webkit-text-fill-color: var(--hero-title-main-color);
  text-shadow: var(--hero-title-main-shadow);
}

.hero-domain {
  color: var(--color-logo-white);
  -webkit-text-fill-color: var(--color-logo-white);
  text-shadow: var(--hero-title-main-shadow);
  margin-bottom: .02em;
}

.glow {
  background: linear-gradient(120deg, #ff3fc8 0%, #9b26d9 42%, #4411b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: var(--hero-title-emphasis-filter);
  line-height: 1.06;
  padding-bottom: .14em;
  margin-bottom: -.14em;
}

.home-hero-default h1 .glow {
  white-space: nowrap;
}

.accent-line {
  width: min(100%, calc(var(--home-hero-title-size) * 10.9));
  height: clamp(18px, 2.2vw, 30px);
  margin: clamp(1.2rem, 2.2vw, 2rem) 0 clamp(1.1rem, 2vw, 1.7rem);
  color: var(--color-hot-pink);
}

.accent-line svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.accent-line path {
  fill: none;
  stroke: url("#homeAccentWave");
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.intro {
  max-width: 760px;
  margin: 0;
  color: var(--color-logo-white);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.58;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .7rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  color: var(--button-text-color);
  text-decoration: none;
  font-weight: 950;
  font-size: .88rem;
  box-shadow: none;
}

.button.primary {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  border: 0;
  color: var(--button-text-color);
  outline: 0;
}

.side-stack {
  display: grid;
  grid-template-rows: 1.1fr .9fr;
  gap: clamp(1rem, 2vw, 1.8rem);
  min-height: clamp(560px, 72vh, 680px);
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: var(--panel-border);
  background: #090612;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  min-height: clamp(300px, 38vh, 390px);
}

.photo-carousel {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.js-carousel-random .photo-carousel:not(.is-ready) {
  opacity: 0;
}

.photo-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vh, 390px);
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
  transition:
    opacity 1800ms cubic-bezier(.19,1,.22,1),
    transform 9500ms cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}

.photo-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(5,4,8,.78) 100%);
  pointer-events: none;
}

.photo-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: .9rem;
  border-radius: 18px;
  background: var(--panel-glass-bg);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.photo-label strong {
  display: block;
  color: var(--card-title-color);
  font-size: 1.15rem;
  letter-spacing: -.04em;
}

.photo-label > span {
  color: var(--card-body-color);
  font-weight: 800;
  font-size: .9rem;
}

.side-card {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(.45rem, .85vw, .8rem);
}

.tag {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: .42rem .84rem;
  background: var(--tag-bg);
  color: var(--color-logo-white);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.side-card h2 {
  color: var(--home-card-heading-color);
  margin: 0;
  font-size: clamp(2.4rem, 3.84vw, 4.08rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.side-card p {
  color: var(--color-logo-white);
  line-height: 1.58;
  margin: 0;
  font-size: clamp(1.15rem, 1.38vw, 1.32rem);
}

.home-latest-release {
  width: 100%;
  flex: 0 0 auto;
  margin-top: clamp(.35rem, .7vw, .65rem);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.34);
  background: var(--panel-glass-bg);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 14px 32px rgba(0,0,0,.18);
}

.home-latest-release iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: 0;
  background: #050408;
}

.artist-connect {
  margin-top: clamp(.75rem, 1.35vw, 1.2rem);
  padding: .9rem;
  border-radius: 18px;
  background: var(--panel-glass-bg);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
}

.artist-connect strong {
  display: block;
  color: var(--color-logo-white);
  font-size: 1.38rem;
  letter-spacing: -.04em;
  flex: 0 0 auto;
}

.artist-connect .socials {
  justify-content: flex-end;
  margin-top: 0;
  min-width: 0;
}

.wave {
  display: none !important;
}

.wave[data-wave-slot="1"] {
  left: -5%;
  top: 18%;
  width: 52%;
}

.wave[data-wave-slot="2"] {
  left: 24%;
  top: 34%;
  width: 54%;
}

.wave[data-wave-slot="3"] {
  left: auto;
  right: -6%;
  top: 54%;
  width: 52%;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  stroke-linecap: round;
  animation: waveLineBreathe 5.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.wave path:nth-of-type(2) {
  animation-duration: 7.5s;
  animation-delay: -1.8s;
}

@keyframes waveTravel {
  0%, 100% { transform: translate3d(-18%, 0, 0); }
  50% { transform: translate3d(18%, 0, 0); }
}

@keyframes waveLineBreathe {
  0%, 100% { opacity: .58; transform: translate3d(0, 0, 0) scaleY(.92); }
  50% { opacity: 1; transform: translate3d(0, 0, 0) scaleY(1.08); }
}

.connect-panel {
  margin-top: clamp(1rem, 2vw, 1.8rem);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 1rem;
  align-items: center;
}

.connect-panel h2 {
  color: var(--home-connect-heading-color);
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.058em;
}

.connect-copy {
  color: var(--footer-text-color);
  line-height: 1.5;
  margin: .5rem 0 0;
}



.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
  align-items: center;
}

.socials a {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--social-icon-color);
  text-decoration: none;
  border: var(--social-border);
  border-radius: 999px;
  background: var(--social-bg);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 10px 24px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  font-size: 1.42rem;
  overflow: hidden;
}

.socials a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: var(--social-hover-border-color);
  color: var(--social-hover-color);
  box-shadow: none;
}

.social.soundcloud:hover,
.social.soundcloud.is-hovered { color: var(--social-soundcloud-color); }
.social.instagram:hover,
.social.instagram.is-hovered { color: var(--social-instagram-color); }
.social.tiktok:hover,
.social.tiktok.is-hovered { color: var(--social-tiktok-color); }
.social.youtube:hover,
.social.youtube.is-hovered { color: var(--social-youtube-color); }
.social.twitch:hover,
.social.twitch.is-hovered { color: var(--social-twitch-color); }
.social.facebook:hover,
.social.facebook.is-hovered { color: var(--social-facebook-color); }
.social.threads:hover,
.social.threads.is-hovered { color: var(--social-threads-color); }
.social.discord:hover,
.social.discord.is-hovered { color: var(--social-discord-color); }



footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .95rem clamp(1.1rem, 3vw, 3rem);
  border-top: var(--footer-border);
  background: var(--footer-bg);
  color: var(--footer-text-color);
  backdrop-filter: blur(8px);
  font-size: .88rem;
}

@media (max-width: 860px) {
  .home-grid,
  .connect-panel {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-panel,
  .side-stack {
    min-height: auto;
    min-width: 0;
  }

  .side-stack {
    grid-template-rows: auto;
  }

  .photo-carousel img,
  .photo-card {
    min-height: 345px;
  }

  .socials {
    justify-content: flex-start;
  }

  .wave {
    opacity: .28;
    width: 80%;
  }
}

@media (max-width: 720px) {
  .home { padding: 1rem; }

  .hero-panel,
  .side-card,
  .connect-panel {
    border-radius: 22px;
  }

  .hero-panel {
    --home-hero-title-size: clamp(1.68rem, 7.35vw, 3.1rem);
  }

  h1 {
    letter-spacing: 0;
    line-height: .9;
    max-width: 100%;
  }

  .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    font-size: clamp(.52rem, 2.2vw, .63rem);
    letter-spacing: .078em;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
  }

  .home-hero-default h1 .glow {
    font-size: .82em;
  }

  .photo-carousel img,
  .photo-card {
    min-height: clamp(225px, 28.5vh, 292px);
  }

  .artist-connect {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(.62rem, 1.8vw, .82rem);
  }

  .artist-connect .socials {
    display: grid;
    grid-template-columns: repeat(4, clamp(46px, 12.5vw, 58px));
    width: auto;
    justify-content: center;
    gap: clamp(.55rem, 2vw, .78rem);
  }

  .artist-connect .socials a {
    width: clamp(46px, 12.5vw, 58px);
    height: clamp(46px, 12.5vw, 58px);
    font-size: clamp(1.18rem, 4.15vw, 1.5rem);
  }

}

@media (max-width: 720px) and (hover: none) and (pointer: coarse) {
  .eyebrow {
    width: calc(100% + clamp(2.08rem, 10.95vw, 2.72rem));
    max-width: none;
    margin-left: calc(clamp(1.04rem, 5.475vw, 1.36rem) * -1);
    text-align: center;
  }

  .home-hero-default h1 .glow {
    font-size: .78em;
  }
}

@media (max-width: 720px) and (hover: hover) and (pointer: fine) {
  .eyebrow {
    font-size: clamp(.72rem, 1.72vw, .78rem);
    letter-spacing: .095em;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .hero-panel {
    --home-hero-title-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .home-hero-default h1 .glow {
    font-size: .76em;
  }
}

@media (max-width: 860px) and (orientation: landscape) {
  .artist-connect {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .artist-connect .socials {
    display: flex;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(.38rem, 1.2vw, .62rem);
  }

  .artist-connect .socials a {
    width: clamp(44px, 6.2vw, 58px);
    height: clamp(44px, 6.2vw, 58px);
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-bg::before,
  .audio-bg::after,
  .photo-carousel img,
  .wave path {
    animation: none;
    transition: none;
  }
}
  
/* === Single-screen dynamic homepage pass === */
@media (min-width: 861px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .page {
    height: 100svh;
    min-height: 100svh;
    padding: clamp(.45rem, .9vw, .95rem);
    display: grid;
  }

  .shell {
    height: calc(100svh - clamp(.9rem, 1.8vw, 1.9rem));
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  header {
    padding-block: clamp(.48rem, .75vh, .78rem);
  }

  nav a,
  body header .nav-menu-trigger {
    font-size: 1.17rem;
  }

  .logo {
    font-size: clamp(.9rem, .9vw, 1.05rem);
  }

  .home {
    min-height: 0;
    height: 100%;
    padding:
      clamp(.75rem, 1.35vw, 1.55rem)
      clamp(.9rem, 2.25vw, 2.6rem);
    display: grid;
  }

  .home-grid {
    min-height: 0;
    height: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "hero hero"
      "artist photo";
    gap: clamp(.75rem, 1.25vw, 1.25rem);
    align-items: stretch;
  }

  .hero-panel {
    grid-area: hero;
    --home-hero-title-size: clamp(2.9rem, min(5.4vw, 8vh, clamp(4.35rem, 6.45vh, 5.35rem)), 6.45rem);
    min-height: 0;
    height: 100%;
    padding:
      clamp(1rem, 1.7vw, 1.85rem)
      clamp(1.05rem, 2vw, 2rem);
  }

  .side-stack {
    display: contents;
  }

  .photo-card {
    grid-area: photo;
    min-height: 0;
    height: 100%;
  }

  .side-card {
    grid-area: artist;
    min-height: 0;
    height: 100%;
  }

  .photo-carousel img {
    min-height: 0;
    height: 100%;
  }

  .side-card {
    padding: clamp(.95rem, 1.5vw, 1.45rem);
    gap: clamp(.32rem, .65vh, .65rem);
  }

  .eyebrow {
    font-size: clamp(.62rem, .72vw, .82rem);
    margin-bottom: clamp(.85rem, 1.4vh, 1.4rem);
  }

  h1 {
    line-height: .86;
  }

  .accent-line {
    margin:
      clamp(.42rem, .78vh, .72rem)
      0
      clamp(.48rem, .82vh, .78rem);
  }

  .intro {
    font-size: clamp(.88rem, 1.03vw, 1.08rem);
    line-height: 1.48;
    max-width: 680px;
  }

  .hero-actions {
    margin-top: clamp(.85rem, 1.4vh, 1.25rem);
  }

  .button {
    min-height: 38px;
    padding: .58rem .82rem;
    font-size: .8rem;
  }

  .side-card h2 {
    font-size: clamp(1.98rem, min(3.06vw, 4.56vh), 3.6rem);
  }

  .side-card p {
    font-size: clamp(.98rem, 1.13vw, 1.2rem);
    line-height: 1.38;
  }

  .home-latest-release {
    margin-top: clamp(.25rem, .55vh, .5rem);
  }

  .home-latest-release iframe {
    height: clamp(112px, 14vh, 150px);
  }

  .tag {
    font-size: .77rem;
    margin-bottom: .1rem;
  }

  .photo-label,
  .artist-connect {
    padding: clamp(.65rem, 1vw, .9rem);
  }

  .photo-label strong,
  .artist-connect strong {
    font-size: clamp(1.1rem, 1.2vw, 1.32rem);
  }

  .photo-label > span {
    font-size: clamp(.72rem, .82vw, .88rem);
  }

  .connect-panel {
    margin-top: 0;
    padding:
      clamp(.7rem, 1vw, 1rem)
      clamp(.9rem, 1.5vw, 1.25rem);
    grid-template-columns: .54fr 1.46fr;
    gap: clamp(.7rem, 1vw, 1rem);
  }

  .connect-panel h2 {
    font-size: clamp(1.75rem, min(3.1vw, 4.4vh), 3.6rem);
  }

  .connect-copy {
    font-size: clamp(.78rem, .9vw, .96rem);
    line-height: 1.35;
  }

  .socials {
    gap: clamp(.48rem, .75vw, .72rem);
  }

  .socials a {
    width: clamp(38px, 3.1vw, 48px);
    height: clamp(38px, 3.1vw, 48px);
    font-size: clamp(1rem, 1.15vw, 1.28rem);
  }

  footer {
    padding-block: clamp(.5rem, .8vh, .8rem);
    font-size: clamp(.72rem, .8vw, .88rem);
  }
}

@media (min-width: 861px) and (max-width: 1055px) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100svh;
    display: block;
  }

  .shell {
    height: auto;
    min-height: calc(100svh - clamp(.9rem, 1.8vw, 1.9rem));
    grid-template-rows: auto 1fr auto;
  }

  .home {
    height: auto;
    display: block;
  }

  .home-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }

  .hero-panel,
  .side-stack {
    grid-area: auto;
  }

  .side-stack {
    display: grid;
    grid-template-rows: auto;
  }

  .photo-card,
  .side-card {
    grid-area: auto;
    height: auto;
  }

  .photo-carousel img,
  .photo-card {
    min-height: clamp(390px, 43.5vw, 465px);
  }

  .photo-carousel img {
    object-position: center 40%;
  }

  .side-card {
    padding: clamp(.82rem, 1.65vw, 1.05rem);
    gap: clamp(.32rem, .68vw, .48rem);
  }

  .side-card h2 {
    font-size: clamp(2rem, 3.45vw, 2.28rem);
    line-height: .92;
  }

  .side-card p {
    font-size: clamp(.98rem, 1.65vw, 1.08rem);
    line-height: 1.34;
  }

  .home-latest-release {
    margin-top: clamp(.18rem, .45vw, .32rem);
    border-radius: 12px;
  }

  .home-latest-release iframe {
    height: clamp(118px, 12.5vw, 130px);
  }
}

@media (min-width: 861px) and (max-width: 1260px) {
  .artist-connect {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(.55rem, 1vw, .78rem);
  }

  .artist-connect .socials {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(.42rem, .72vw, .68rem);
  }

  .artist-connect .socials a {
    width: clamp(40px, 3.4vw, 48px);
    height: clamp(40px, 3.4vw, 48px);
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  }
}

/* Short laptop screens: compress harder instead of forcing scroll */
@media (min-width: 861px) and (max-height: 820px) {
  .home {
    padding-block: clamp(.55rem, 1vh, 1rem);
  }

  .hero-panel {
    --home-hero-title-size: clamp(2.55rem, min(5vw, 7.1vh), 5.65rem);
  }

  .hero-panel {
    justify-content: center;
  }

  .intro {
    font-size: clamp(.8rem, .92vw, .98rem);
  }

  .side-card h2 {
    font-size: clamp(1.72rem, min(2.8vw, 4vh), 3rem);
  }

  .side-card p {
    font-size: clamp(.82rem, 1vw, 1rem);
    line-height: 1.32;
  }

  .home-latest-release iframe {
    height: clamp(100px, 17vh, 126px);
  }

  .artist-connect .socials a {
    width: clamp(38px, 2.95vw, 46px);
    height: clamp(38px, 2.95vw, 46px);
  }
}

/* Very short desktop windows: hide the footer before allowing awkward scroll */
@media (min-width: 861px) and (max-height: 690px) {
  .shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

  footer {
    display: none;
  }

  .photo-label > span {
    display: none;
  }
}

@media (min-width: 721px) and (max-width: 860px) and (hover: hover) and (pointer: fine) {
  .hero-panel {
    --home-hero-title-size: clamp(3.1rem, 6.05vw, 3.3rem);
  }
}

@media (min-width: 861px) {
  .hero-panel {
    --home-hero-title-size: clamp(3.1rem, min(5vw, 7.7vh), 4.35rem);
  }

  .hero-panel:not(.is-live) {
    --home-hero-title-size: clamp(3.1rem, min(4.85vw, 7.35vh, calc(4.7rem - .55vw)), 4.18rem);
  }

  .hero-panel:not(.is-live) .accent-line {
    height: clamp(18px, min(1.85vw, calc(2.5rem - .9vw)), 26px);
    margin:
      clamp(.42rem, min(.82vh, calc(1.15rem - .45vw)), .74rem)
      0
      clamp(.5rem, min(.9vh, calc(1.28rem - .45vw)), .82rem);
  }

  .hero-panel:not(.is-live) .intro {
    font-size: clamp(.88rem, min(1vw, calc(1.13rem - .1vw)), 1.04rem);
    line-height: 1.46;
  }
}

/* Mobile/tablet can scroll naturally */
@media (max-width: 860px) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 1024px) and (max-height: 520px) and (orientation: landscape) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100svh;
    padding: .75rem;
    display: block;
  }

  .shell {
    height: auto;
    min-height: calc(100svh - 1.5rem);
    grid-template-rows: auto 1fr auto;
  }

  .home {
    height: auto;
    padding: 1rem;
    display: block;
  }

  .home-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    gap: 1rem;
  }

  .hero-panel,
  .photo-card,
  .side-card {
    grid-area: auto;
    height: auto;
    min-height: auto;
  }

  .hero-panel {
    --home-hero-title-size: clamp(2.05rem, 7vw, 3.65rem);
    padding: clamp(.95rem, 2vw, 1.25rem);
  }

  .side-stack {
    display: grid;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .photo-card,
  .photo-carousel img {
    min-height: clamp(260px, 68vh, 390px);
  }

  .side-card {
    padding: clamp(1rem, 2vw, 1.35rem);
  }

  .artist-connect {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .artist-connect .socials {
    display: flex;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(.38rem, 1.2vw, .62rem);
  }

  .artist-connect .socials a {
    width: clamp(42px, 5.9vw, 56px);
    height: clamp(42px, 5.9vw, 56px);
    font-size: clamp(1.08rem, 2.25vw, 1.42rem);
  }
}

/* === Home live hero card: DESKTOP ONLY === */
@media (min-width: 861px) {
  body.page-home:has(.hero-panel.is-live) .home-grid {
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-panel.is-live {
    overflow: hidden;
    padding:
      clamp(.58rem, .95vw, .9rem)
      clamp(.8rem, 1.4vw, 1.35rem);
  }

  .hero-panel.is-live .home-live-panel {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(16rem, .42fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .hero-panel.is-live .home-live-head {
    align-self: center;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }

  .hero-panel.is-live .home-live-title-lockup {
    display: block;
    width: max-content;
    max-width: 100%;
    padding-top: clamp(2.55rem, 4.8vh, 3.55rem);
  }

  .hero-panel.is-live .home-live-status {
    position: absolute;
    top: clamp(-1.35rem, -2.35vh, -.82rem);
    left: 0;
    margin: 0;
  }

  .hero-panel.is-live .home-live-panel h1 {
    display: block;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-panel.is-live .home-live-embed-wrap {
    display: block;
  }
}

@media (max-width: 1055px) {
  body.page-home:has(.hero-panel.is-live) .page {
    padding: clamp(.45rem, .9vw, .95rem);
  }

  body.page-home:has(.hero-panel.is-live) header {
    padding-block: clamp(.48rem, .75vh, .78rem);
  }

  body.page-home:has(.hero-panel.is-live) nav a,
  body.page-home:has(.hero-panel.is-live) header .nav-menu-trigger {
    font-size: 1.17rem;
  }

  body.page-home:has(.hero-panel.is-live) .home {
    height: auto;
    padding:
      clamp(.75rem, 1.35vw, 1.55rem)
      clamp(.9rem, 2.25vw, 2.6rem);
    display: block;
  }

  body.page-home:has(.hero-panel.is-live) .home-grid {
    grid-template-rows: auto;
  }

  .hero-panel.is-live {
    min-height: auto;
    height: auto;
    padding:
      clamp(.5rem, 2.4vw, 1.45rem)
      clamp(.8rem, 5.3vw, 3.125rem);
  }

  .hero-panel.is-live .home-live-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(.95rem, 2vw, 1.35rem);
    align-items: start;
    align-content: start;
    height: auto;
    overflow: visible;
    position: relative;
  }

  .hero-panel.is-live .home-live-head,
  .hero-panel.is-live .home-live-embed-wrap {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-panel.is-live .home-live-title-lockup {
    width: 100%;
    display: grid;
    grid-template-columns: max-content minmax(.75rem, 1fr) max-content;
    align-items: start;
    column-gap: clamp(.75rem, 3vw, 2rem);
    padding-top: clamp(.7rem, 1.55vw, 1.25rem);
  }

  .hero-panel.is-live .home-live-status {
    position: static;
    grid-column: 3;
    grid-row: 1;
    margin-top: clamp(.02rem, .35vw, .16rem);
  }

  .hero-panel.is-live .home-live-panel h1 {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-panel.is-live .home-live-copy {
    max-width: 100%;
  }

  .hero-panel.is-live .home-live-embed-wrap {
    width: 100%;
    min-width: 0;
    min-height: 304px;
    justify-self: stretch;
  }
}

@media (min-width: 1056px) and (max-width: 2200px) {
  .hero-panel.is-live {
    padding:
      clamp(.34rem, .62vw, .62rem)
      clamp(.62rem, 1.05vw, 1rem);
  }

  .hero-panel.is-live .home-live-panel {
    overflow: visible;
  }

  .hero-panel.is-live .home-live-head {
    transform: translateX(calc(-1 * clamp(0px, calc((100vw - 1066px) * .08), 52px)));
  }

  .hero-panel.is-live .home-live-embed-wrap {
    justify-self: start;
    transform: translateX(clamp(0px, calc((100vw - 1066px) * .34), 190px));
  }
}

@media (min-width: 1056px) and (min-height: 821px) {
  .hero-panel.is-live .home-live-head {
    transform: translateX(calc(-1 * clamp(0px, calc((100vw - 1066px) * .08), 52px)));
  }

  .hero-panel.is-live .home-live-embed-wrap {
    margin-right: 0;
  }
}

@media (min-width: 1056px) and (max-height: 820px) {
  html:has(body.page-home .hero-panel.is-live),
  body.page-home:has(.hero-panel.is-live) {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.page-home:has(.hero-panel.is-live) .page {
    height: auto;
    min-height: 100svh;
    display: block;
  }

  body.page-home:has(.hero-panel.is-live) .shell {
    height: auto;
    min-height: calc(100svh - clamp(.9rem, 1.8vw, 1.9rem));
    grid-template-rows: auto 1fr auto;
  }

  body.page-home:has(.hero-panel.is-live) .home {
    height: auto;
    min-height: 0;
    display: block;
  }

  body.page-home:has(.hero-panel.is-live) .home-grid {
    height: auto;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  body.page-home:has(.hero-panel.is-live) .hero-panel.is-live {
    min-height: clamp(430px, 64svh, 520px);
    height: auto;
  }

  .hero-panel.is-live .home-live-panel {
    grid-template-columns: minmax(540px, 1fr) minmax(16rem, .42fr);
    height: 100%;
    overflow: visible;
  }
}

@media (min-width: 721px) and (max-width: 1260px) {
  .eyebrow {
    font-size: clamp(.78rem, 1.14vw, .92rem);
    letter-spacing: .105em;
  }
}

@media (min-width: 1261px) {
  .eyebrow {
    font-size: clamp(.78rem, 1.14vw, .92rem);
    letter-spacing: .105em;
  }
}

/* === Home live hero card: MOBILE ONLY === */
@media (max-width: 860px) {
  .hero-panel.is-live {
    justify-content: flex-start;
  }

}

@media (max-width: 640px) {
  .hero-panel.is-live .home-live-embed-wrap {
    height: auto;
  }
}
