:root {
  --ink: #f7fbff;
  --muted: rgba(226, 239, 255, 0.58);
  --muted-strong: rgba(226, 239, 255, 0.74);
  --panel: #071427;
  --panel-deep: #030812;
  --line: rgba(216, 236, 255, 0.2);
  --accent: #63d7ff;
  --accent-2: #8f7cff;
  --warm: #f0c26e;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 14%, rgba(65, 171, 255, 0.24), transparent 29rem),
    radial-gradient(circle at 82% 20%, rgba(143, 124, 255, 0.16), transparent 27rem),
    linear-gradient(135deg, #020814 0%, #061a33 43%, #031021 100%);
}

button,
input,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1138px, calc(100vw - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 13px;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-nav a,
.booking-link {
  color: rgba(226, 239, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active,
.booking-link:hover,
.booking-link.is-active {
  color: var(--ink);
}

.brand,
.footer-brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.icon-button,
.mini-button,
.play-button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 29px;
  height: 29px;
  color: rgba(247, 251, 255, 0.92);
}

.icon-button svg,
.mini-button svg,
.play-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button path,
.mini-button path,
.play-button path {
  vector-effect: non-scaling-stroke;
}

.icon-button:hover,
.mini-button:hover {
  color: var(--accent);
}

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions-static {
  min-height: 29px;
}

.showcase-wrap {
  position: relative;
  margin-top: 13px;
}

.showcase {
  position: relative;
  min-height: min(692px, calc(100vh - 77px));
  overflow: hidden;
  display: grid;
  grid-template-columns: 36.6% 63.4%;
  align-items: center;
  padding: 86px 72px 150px 82px;
  background:
    radial-gradient(circle at 68% 40%, rgba(99, 215, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 28% 38%, rgba(143, 124, 255, 0.12), transparent 17rem),
    linear-gradient(132deg, #071222 0%, #0a2442 45%, #040a15 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 56% 38%, black 0%, transparent 72%);
  opacity: 0.38;
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.4), transparent 26%, transparent 76%, rgba(3, 8, 18, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%, rgba(0, 0, 0, 0.2));
}

.project-copy,
.artwork-column,
.player-panel,
.booking-strip {
  position: relative;
  z-index: 1;
}

.project-copy {
  align-self: center;
  transform: translateY(-16px);
}

.eyebrow {
  max-width: 250px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.7;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 8px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.project-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: uppercase;
}

.track-list {
  display: grid;
  gap: 8px;
  max-width: 318px;
  margin: 47px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: track;
}

.track-list li {
  counter-increment: track;
}

.track-button {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: baseline;
  width: 100%;
  min-height: 14px;
  padding: 0;
  border: 0;
  color: rgba(226, 239, 255, 0.56);
  background: transparent;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.track-number {
  color: rgba(226, 239, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
}

.track-name {
  overflow: hidden;
  padding-right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-role {
  color: rgba(226, 239, 255, 0.36);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.track-button:hover,
.track-button.is-active {
  color: var(--ink);
}

.track-button.is-active .track-number,
.track-button.is-active .track-role {
  color: var(--accent);
}

.artwork-column {
  display: grid;
  justify-items: center;
  transform: translate(-4px, -21px);
}

.artwork-stack {
  position: relative;
  width: min(424px, 38vw);
  aspect-ratio: 1;
}

.vinyl {
  position: absolute;
  top: 11%;
  right: -21%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #d8eaff 0 3.2%, #121826 3.4% 8%, transparent 8.2%),
    repeating-radial-gradient(circle at 50% 50%, #07080d 0 2px, #151925 3px 6px, #080a10 7px 10px);
  box-shadow:
    22px 26px 42px rgba(0, 0, 0, 0.45),
    inset 20px 0 35px rgba(255, 255, 255, 0.09),
    inset -24px 0 45px rgba(0, 0, 0, 0.55);
}

.vinyl::before {
  content: "";
  position: absolute;
  inset: 15.5%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.018);
}

.vinyl span {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    conic-gradient(from 120deg, var(--accent), var(--accent-2), var(--warm), var(--accent));
}

.album-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #06101e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

#coverCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

#coverImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#coverImage[hidden],
#coverCanvas[hidden] {
  display: none;
}

.player-panel {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: min(520px, 54vw);
  transform: translateX(-50%);
  text-align: center;
}

.now-label {
  margin: 0 0 3px;
  color: rgba(226, 239, 255, 0.47);
  font-size: 10px;
  font-weight: 500;
}

.now-title {
  min-height: 14px;
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 9px;
  color: rgba(226, 239, 255, 0.54);
  font-size: 8px;
  font-weight: 700;
}

#seekBar {
  width: 100%;
  height: 12px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

#seekBar::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(90deg, var(--ink) var(--progress, 0%), rgba(226, 239, 255, 0.26) var(--progress, 0%));
}

#seekBar::-moz-range-track {
  height: 2px;
  background: rgba(226, 239, 255, 0.26);
}

#seekBar::-moz-range-progress {
  height: 2px;
  background: var(--ink);
}

#seekBar::-webkit-slider-thumb {
  width: 0;
  height: 0;
  appearance: none;
}

#seekBar::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
}

.mini-button {
  width: 18px;
  height: 18px;
  color: rgba(226, 239, 255, 0.68);
}

.mini-button svg {
  width: 12px;
  height: 12px;
  stroke-width: 0;
}

.play-button {
  width: 26px;
  height: 26px;
  color: var(--ink);
  border: 1px solid rgba(226, 239, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.play-button svg {
  width: 11px;
  height: 11px;
  stroke-width: 0;
}

.pause-icon,
.is-playing .play-icon {
  display: none;
}

.is-playing .pause-icon {
  display: block;
}

.booking-strip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 239, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-strip a {
  color: rgba(247, 251, 255, 0.82);
  letter-spacing: 0;
  text-transform: lowercase;
}

.footer-brand {
  margin-top: 10px;
  padding-bottom: 6px;
}

.info-showcase,
.about-showcase,
.booking-showcase {
  min-height: min(692px, calc(100vh - 77px));
  align-items: stretch;
}

.info-showcase {
  grid-template-columns: 40% 60%;
  gap: 42px;
  padding: 88px 82px 72px;
}

.info-intro {
  position: relative;
  z-index: 1;
  align-self: center;
}

.info-intro h1 {
  max-width: 440px;
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.03;
}

.info-intro p:not(.eyebrow) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  text-transform: uppercase;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.service-card,
.proof-card,
.contact-card,
.brief-panel {
  border: 1px solid rgba(216, 236, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.08), rgba(247, 251, 255, 0.035)),
    rgba(3, 8, 18, 0.32);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.service-card {
  min-height: 142px;
  padding: 22px 18px 19px;
}

.card-mark {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 24px;
  margin-bottom: 22px;
  padding: 0 8px;
  color: #031021;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.service-card h2,
.proof-card h2,
.contact-card h2,
.brief-panel h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.service-card p,
.proof-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.about-showcase {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 22px;
  padding: 56px 82px 48px;
}

.about-copy {
  align-self: start;
  justify-self: center;
  text-align: center;
}

.about-copy h1,
.about-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.proof-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  min-height: 196px;
  padding: 26px 28px 24px;
  text-align: center;
}

.proof-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: var(--panel-deep);
  background: linear-gradient(135deg, var(--accent), var(--warm));
  border-radius: 50%;
  font-size: 19px;
  font-weight: 900;
}

.process-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 236, 255, 0.14);
  background: rgba(216, 236, 255, 0.14);
}

.process-strip div {
  min-height: 74px;
  padding: 16px;
  background: rgba(3, 8, 18, 0.58);
}

.process-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.booking-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  grid-template-rows: auto auto;
  gap: 24px 32px;
  padding: 96px 82px 78px;
}

.booking-intro {
  grid-row: 1 / span 2;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.contact-card {
  min-height: 186px;
  padding: 28px 22px;
}

.contact-card p {
  overflow-wrap: anywhere;
  text-transform: none;
}

.brief-panel {
  position: relative;
  z-index: 1;
  padding: 28px 28px 24px;
}

.brief-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.brief-panel li {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.brief-panel li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: var(--accent);
  vertical-align: 1px;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 34px, 720px);
  }

  .topbar {
    height: auto;
    min-height: 38px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1;
    grid-row: 2;
    gap: 14px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 2;
    gap: 12px;
  }

  .showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 28px 176px;
  }

  .project-copy {
    order: 2;
    transform: none;
  }

  .artwork-column {
    order: 1;
    transform: none;
  }

  .artwork-stack {
    width: min(390px, 72vw);
  }

  .project-copy,
  .track-list {
    max-width: none;
  }

  h1 {
    font-size: 36px;
  }

  .track-list {
    margin-top: 33px;
  }

  .player-panel {
    width: calc(100% - 48px);
    bottom: 54px;
  }

  .booking-strip {
    right: 24px;
    bottom: 23px;
    left: 24px;
    justify-content: center;
  }

  .info-showcase,
  .about-showcase,
  .booking-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 56px 28px 64px;
  }

  .info-showcase,
  .booking-showcase {
    gap: 34px;
  }

  .info-intro {
    align-self: start;
  }

  .info-intro h1 {
    font-size: 36px;
  }

  .service-grid,
  .contact-grid,
  .brief-panel ul {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    grid-row: auto;
  }

  .proof-row,
  .process-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 100%;
    padding: 10px 12px 0;
  }

  .brand,
  .footer-brand {
    font-size: 21px;
  }

  .nav-arrows {
    gap: 4px;
  }

  .site-nav {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .site-nav a,
  .booking-link {
    font-size: 9px;
  }

  .nav-actions {
    justify-self: center;
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .showcase-wrap {
    margin-top: 8px;
  }

  .showcase {
    padding: 38px 18px 180px;
  }

  .artwork-stack {
    width: min(310px, 78vw);
  }

  .vinyl {
    right: -12%;
  }

  .eyebrow {
    max-width: none;
    font-size: 9px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.05;
  }

  .project-copy > p:not(.eyebrow) {
    font-size: 10px;
  }

  .track-button {
    grid-template-columns: 20px 1fr;
    row-gap: 3px;
  }

  .track-role {
    grid-column: 2;
  }

  .timeline {
    grid-template-columns: 30px 1fr 30px;
  }

  .booking-strip {
    flex-wrap: wrap;
    gap: 6px 10px;
    line-height: 1.5;
  }

  .info-showcase,
  .about-showcase,
  .booking-showcase {
    padding: 38px 18px 56px;
  }

  .info-intro h1 {
    font-size: 31px;
    line-height: 1.05;
  }

  .service-card,
  .proof-card,
  .contact-card,
  .brief-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .proof-card {
    min-height: 210px;
  }
}
