:root {
  --embed-red: #050505;
  --spotify-card: #9e2e18;
  --cream: #ffffff;
  --cream-soft: rgba(255, 255, 255, 0.82);
  --paper: #f4ecdf;
  --paper-2: #fff8ef;
  --paper-text: #0d1015;
  --line: rgba(241, 231, 213, 0.28);
  --shadow: rgba(43, 5, 2, 0.34);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --bg-shift-x: 0px;
  --bg-shift-y: 0px;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --spiral-rotation: 0deg;
  --poster-flicker: 1;
  --title-shadow-x: -10px;
  --title-shadow-y: 9px;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--cream);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--embed-red);
}

.page-frame {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 14px #090909,
    inset 0 0 0 15px rgba(255, 248, 239, 0.18),
    inset 0 0 0 28px rgba(9, 9, 9, 0.18);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  opacity: calc(0.12 * var(--poster-flicker));
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 248, 239, 0.06), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(54, 11, 8, 0.1), transparent 24%),
    radial-gradient(circle at 52% 82%, rgba(255, 248, 239, 0.03), transparent 18%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 248, 239, 0.11) 0 22px,
      transparent 22px 44px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(46, 8, 6, 0.1) 0 22px,
      transparent 22px 44px
    );
  transform: translate(var(--bg-shift-x), var(--bg-shift-y));
}

body::after {
  opacity: calc(0.28 * var(--poster-flicker));
  background:
    repeating-radial-gradient(
      circle at 50% 32%,
      rgba(255, 248, 239, 0.025) 0 2px,
      transparent 2px 11px
    ),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0 6%, transparent 6.5%),
    repeating-conic-gradient(
      from var(--spiral-rotation) at 50% 32%,
      rgba(255, 248, 239, 0.05) 0deg 8deg,
      rgba(46, 8, 6, 0.02) 8deg 16deg
    );
  mix-blend-mode: soft-light;
  transform: translate(calc(var(--bg-shift-x) * -0.65), calc(var(--bg-shift-y) * -0.65));
}

/* remove heavy animated layers */
.grain,
.spotlight,
.cursor-glow {
  display: none !important;
}

/* layout */
.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(22px, 5vw, 36px) 16px 10px;
}

.site-header::after {
  content: "";
  display: none;
  width: min(100%, 180px);
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 239, 0.65), transparent);
  box-shadow: 0 1px 10px rgba(255, 248, 239, 0.08);
}

.header-logo {
  width: clamp(150px, 34vw, 210px);
  max-width: 70vw;
  height: auto;
  aspect-ratio: 3168 / 1320;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(43, 5, 2, 0.2));
}

.page {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding: 0 18px 34px;
}

.hero {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: clamp(8px, 1.8vw, 16px) 0 24px;
  text-align: center;
  transform:
    perspective(1200px)
    translate3d(var(--hero-shift-x), var(--hero-shift-y), 0)
    rotateX(var(--hero-tilt-x))
    rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease);
}

.title-wrap {
  grid-area: title;
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.release-stamp {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 32px;
  padding: 6px 12px 7px;
  color: rgba(255, 248, 239, 0.9);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 248, 239, 0.34);
  border-radius: 8px;
  background: rgba(12, 8, 8, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.08),
    0 8px 20px rgba(16, 4, 2, 0.14);
  transform: rotate(10deg);
}

.embed-stamp {
  top: -16px;
  right: 18px;
  min-width: 70px;
  min-height: 28px;
  padding: 4px 9px 5px;
  font-size: 0.52rem;
  transform: rotate(6deg);
  z-index: 2;
}

.eyebrow {
  grid-area: eyebrow;
  max-width: 18rem;
  margin: 0 auto 8px;
  color: var(--cream);
  font-family: 'La Belle Aurore', cursive;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.origin {
  grid-area: origin;
  max-width: 22rem;
  margin: -2px auto 12px;
  color: var(--cream-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}

.title {
  position: relative;
  margin: 0;
  font-family: 'Archivo Black', 'Inter', Arial, Helvetica, sans-serif;
  font-size: clamp(2.85rem, 12vw, 4.1rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(255, 248, 239, 0.08),
    0 8px 18px rgba(43, 5, 2, 0.22),
    0 0 22px rgba(88, 17, 9, 0.1);
}

.title::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(255, 248, 239, 0.16);
  transform: translate(var(--title-shadow-x), var(--title-shadow-y));
  -webkit-text-stroke: 1px rgba(255, 248, 239, 0.12);
  filter: blur(0.2px);
  pointer-events: none;
}

.vibe {
  grid-area: vibe;
  max-width: 21rem;
  margin: 12px auto 0;
  color: var(--cream-soft);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  text-wrap: balance;
}

.listen {
  grid-area: listen;
  margin: 10px 0 20px;
  color: var(--cream);
  font-family: 'La Belle Aurore', cursive;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.cover-wrap {
  display: none;
}

.cover-art {
  display: none;
  max-width: 100%;
  height: auto;
}

.embed-stack {
  grid-area: embed;
  width: 100%;
  max-width: 404px;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotify-embed {
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 18px 28px var(--shadow));
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
  position: relative;
  padding: 2px;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.06), rgba(255, 248, 239, 0.015)),
    linear-gradient(180deg, rgba(16, 14, 14, 0.82), rgba(50, 17, 12, 0.58));
  border: 1px solid rgba(255, 248, 239, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.14),
    inset 0 0 0 1px rgba(10, 10, 10, 0.7),
    0 16px 28px rgba(16, 4, 2, 0.22);
}

.spotify-embed::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 7px;
  border: 1px solid rgba(255, 248, 239, 0.1);
  pointer-events: none;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.hero:hover .spotify-embed {
  transform: translateY(-2px);
  filter: drop-shadow(0 22px 34px rgba(43, 5, 2, 0.42));
}

.embed-note {
  max-width: none;
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

/* buttons */
.buttons {
  grid-area: buttons;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 250px);
  min-height: 48px;
  padding: 12px 24px 13px;
  color: var(--paper-text);
  text-decoration: none;
  font-family: 'La Belle Aurore', cursive;
  font-size: 1.36rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(239, 231, 217, 0.98) 100%);
  border-radius: 7px;
  border: 1px solid rgba(90, 32, 18, 0.26);
  box-shadow:
    0 8px 16px rgba(24, 7, 4, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(120, 54, 29, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.btn-label {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto 14px 8px;
  height: 2px;
  border-radius: 999px;
  opacity: 0.88;
  background: rgba(40, 20, 12, 0.22);
  transform: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -32%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transform: skewX(-18deg);
}

.btn:hover {
  box-shadow:
    0 12px 20px rgba(24, 7, 4, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(120, 54, 29, 0.08);
  border-color: rgba(90, 32, 18, 0.34);
}

.btn:hover::before {
  opacity: 1;
  animation: buttonSweep 560ms var(--ease) forwards;
}

.btn:active {
  opacity: 0.96;
}

.btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

.btn-1::after {
  background: rgba(30, 185, 84, 0.55);
}

.btn-2::after {
  background: rgba(226, 93, 62, 0.55);
}

.btn-3::after {
  background: rgba(196, 77, 155, 0.55);
}

.btn-4::after {
  background: rgba(220, 38, 38, 0.55);
}

/* contact */
.contact {
  grid-area: contact;
  margin-top: 6px;
}

.contact a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'La Belle Aurore', cursive;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(241, 231, 213, 0.55);
  padding-bottom: 2px;
  text-shadow: 0 2px 8px rgba(43, 5, 2, 0.24);
}

.contact a:hover {
  opacity: 0.9;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 18px 42px;
  text-align: center;
}

.site-footer .contact {
  margin: 0 0 12px;
  text-align: center;
}

.site-footer .contact a {
  font-size: 1.06rem;
}

.site-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-credit {
  display: inline-block;
  color: rgba(255, 248, 239, 0.78);
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.25;
  font-variant-ligatures: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  opacity: 0.92;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-credit:hover {
  opacity: 1;
  color: rgba(255, 248, 239, 0.92);
}

.site-credit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

/* subtle divider */
.hero::after {
  content: "";
  display: block;
  width: min(100%, 420px);
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* small fade-in only */
.eyebrow,
.origin,
.title-wrap,
.title,
.vibe,
.listen,
.embed-stack,
.spotify-embed,
.embed-note,
.buttons,
  .site-footer,
  .site-credit {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.6s var(--ease) forwards;
  }

.eyebrow { animation-delay: 0.05s; }
.origin { animation-delay: 0.09s; }
.title-wrap { animation-delay: 0.13s; }
.title { animation-delay: 0.17s; }
.vibe { animation-delay: 0.23s; }
.listen { animation-delay: 0.29s; }
.embed-stack { animation-delay: 0.37s; }
.spotify-embed { animation-delay: 0.41s; }
.embed-note { animation-delay: 0.45s; }
.buttons { animation-delay: 0.51s; }
.site-footer { animation-delay: 0.61s; }
.site-credit { animation-delay: 0.67s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSweep {
  to {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-top: 38px;
  }

  .header-logo {
    width: 210px;
  }

  .vibe {
    font-size: 1rem;
  }

  .listen {
    font-size: 1.55rem;
  }

  .btn {
    width: 270px;
    font-size: 1.65rem;
  }
}

@media (min-width: 980px) {
  html,
  body {
    height: 100svh;
  }

  body {
    overflow: hidden;
  }

  .site-header {
    padding: 88px clamp(34px, 4vw, 56px) 8px;
    flex-direction: column;
  }

  .header-logo {
    width: clamp(340px, 27vw, 460px);
  }

  .site-header::after {
    display: block;
    width: clamp(210px, 20vw, 300px);
    margin-top: 14px;
  }

  .page {
    display: flex;
    align-items: center;
    padding: 0 clamp(54px, 5vw, 96px) 8px;
  }

  .hero {
    width: min(100%, 950px);
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 392px);
    grid-template-areas:
      "eyebrow embed"
      "origin embed"
      "title embed"
      "vibe embed"
      "listen embed-note"
      "buttons embed-note";
    align-items: center;
    column-gap: clamp(20px, 3vw, 34px);
    row-gap: 8px;
  }

  .eyebrow,
  .origin,
  .title-wrap,
  .vibe,
  .listen {
    justify-self: start;
  }

  .eyebrow {
    max-width: 24rem;
    margin: 0;
    font-size: 1.28rem;
  }

  .origin {
    max-width: 26rem;
    margin: -2px 0 6px;
    font-size: 0.78rem;
  }

  .title-wrap {
    margin: 0;
  }

  .title {
    font-size: clamp(4rem, 6.6vw, 5.5rem);
    line-height: 0.88;
  }

  .vibe {
    max-width: 28rem;
    margin: 0;
    font-size: 0.98rem;
  }

  .listen {
    margin: 0;
    font-size: 1.5rem;
    align-self: end;
  }

  .embed-stack {
    width: min(100%, 392px);
    margin: 0;
    justify-self: end;
    align-self: start;
    gap: 8px;
  }

  .spotify-embed iframe {
    height: 152px;
  }

  .embed-stamp {
    top: -18px;
    right: 18px;
  }

  .embed-note {
    grid-area: embed-note;
    margin: 2px 0 0;
    max-width: 17rem;
    text-align: left;
    align-self: start;
    font-size: 0.68rem;
  }

  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: 0;
  }

  .btn {
    width: auto;
    min-width: 164px;
    min-height: 44px;
    padding: 10px 22px 11px;
    font-size: 1.24rem;
  }

  .hero .contact {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .site-footer {
    padding: 0 clamp(38px, 4vw, 70px) 44px;
  }

  .site-footer .contact {
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .page-frame {
    box-shadow:
      inset 0 0 0 10px #090909,
      inset 0 0 0 11px rgba(255, 248, 239, 0.18),
      inset 0 0 0 20px rgba(9, 9, 9, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .eyebrow,
  .origin,
  .title-wrap,
  .title,
  .vibe,
  .listen,
  .embed-stack,
  .spotify-embed,
  .embed-note,
  .buttons,
  .site-footer,
  .site-credit {
    opacity: 1;
    transform: none;
  }

  .hero {
    transition: none;
  }

  .title::after {
    transform: translate(-8px, 7px);
  }

  .spotify-embed,
  .btn {
    transition: none;
  }
}

@media (max-width: 520px) {
  .embed-stamp {
    top: -10px;
    right: 14px;
  }
}
