/* Talk Amongst Yerselves black reveal site */
:root {
  --bg: #000000;
  --text: #ffffff;
  --soft: rgba(255,255,255,.72);
  --muted: rgba(255,255,255,.48);
  --line: rgba(255,255,255,.14);
  --panel: rgba(255,255,255,.045);
  --gold: #d9b46f;
}

* {
  box-sizing: border-box;
}

html {
  background: #000000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

main {
  background: #000000;
}

/* First screen: only the logo */
.intro {
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000000;
  padding: 24px;
}

.logo-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: min(360px, 72vw);
  display: block;
}

.logo-button img {
  display: block;
  width: 100%;
  height: auto;
  background: #000000;
  opacity: 0;
  animation: logoIn 900ms ease forwards;
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
}

.logo-button:focus-visible {
  outline: 1px solid rgba(255,255,255,.75);
  outline-offset: 14px;
  border-radius: 999px;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Release screen */
.release {
  min-height: 100svh;
  min-height: 100vh;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 3.5vw, 30px);
  padding: clamp(44px, 8vw, 86px) 0;
  text-align: center;
  background: #000000;
}

.album-link {
  display: block;
  width: min(320px, 76vw);
  border-radius: 18px;
  outline-offset: 8px;
}

.album-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.88);
  transition: transform .42s ease, filter .42s ease, border-color .42s ease;
}

.title-block {
  max-width: 760px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.service-grid {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.service-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 44px;
  object-fit: contain;
  opacity: .9;
  transition: opacity .28s ease, transform .28s ease;
}

.social-follow {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 2px;
}

.social-label {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.social-card {
  width: min(260px, 100%);
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.social-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 34px;
  object-fit: contain;
}

@media (hover:hover) and (pointer:fine) {
  .social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }
}

.contact {
  width: min(920px, calc(100% - 32px));
  margin: 24px auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: clamp(24px, 5vw, 40px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(20px, 5vw, 40px);
  align-items: start;
}

.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.contact-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: .92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(217,180,111,.72);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 4px rgba(217,180,111,.11);
}

button[type="submit"] {
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  padding: 14px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

button[type="submit"]:disabled {
  opacity: .55;
  cursor: wait;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--soft);
  font-size: .92rem;
}

.footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 4px 32px;
  color: var(--muted);
  font-size: .9rem;
}

.footer a {
  color: var(--soft);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.release.is-visible .reveal {
  animation: rise .75s cubic-bezier(.2,.8,.2,1) forwards;
}

.release.is-visible .delay-1 {
  animation-delay: .12s;
}

.release.is-visible .delay-2 {
  animation-delay: .22s;
}

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

@media (hover:hover) and (pointer:fine) {
  .logo-button:hover img {
    transform: scale(1.035);
    filter: drop-shadow(0 0 22px rgba(255,255,255,.12));
  }

  .album-link:hover .album-cover {
    transform: translateY(-4px) scale(1.012);
    filter: brightness(1.04);
    border-color: rgba(217,180,111,.32);
  }

  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }

  .service-card:hover img {
    opacity: 1;
    transform: scale(1.025);
  }

  button[type="submit"]:hover {
    transform: translateY(-2px);
  }

}

@media (max-width: 760px) {
  .logo-button {
    width: min(300px, 74vw);
  }

  .release {
    width: min(100% - 24px, 920px);
    gap: 20px;
    padding: 44px 0;
  }

  .album-link {
    width: min(285px, 76vw);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .logo-button {
    width: min(260px, 78vw);
  }

  .album-link {
    width: min(260px, 78vw);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .service-card {
    min-height: 56px;
  }

  .service-card img {
    max-width: 160px;
  }

  .contact,
  .footer {
    width: min(100% - 22px, 920px);
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

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

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

  .logo-button img,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* fix service logos sizing */
.service-card img {
  width: auto !important;
  max-width: 220px;
  height: 46px;
  object-fit: contain;
}

/* subtle logo fade on scroll */
.intro.scrolled .logo-button img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 500ms ease;
}


/* Final cinematic enhancement: subtle, restrained, music-native */
.intro {
  overflow: hidden;
  position: relative;
}

.logo-button img {
  will-change: transform, opacity, filter;
}

/* Logo gently recedes as the curtain lifts */
.intro.scrolled .logo-button img {
  opacity: 0;
  transform: scale(0.88) translateY(-18px);
  filter: blur(1px);
}

/* Release gets a low-opacity ambient waveform, almost subliminal */
.release {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.release::before {
  content: "";
  position: absolute;
  inset: 8% -10%;
  z-index: -2;
  opacity: 0.16;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.02) 5%,
      transparent 10%,
      rgba(255,255,255,0.05) 14%,
      transparent 18%,
      rgba(217,180,111,0.10) 22%,
      transparent 26%,
      rgba(255,255,255,0.04) 31%,
      transparent 36%,
      rgba(217,180,111,0.08) 41%,
      transparent 46%,
      rgba(255,255,255,0.05) 51%,
      transparent 56%,
      rgba(217,180,111,0.09) 61%,
      transparent 67%,
      rgba(255,255,255,0.04) 72%,
      transparent 78%,
      rgba(217,180,111,0.06) 84%,
      transparent 100%);
  filter: blur(18px);
  transform: skewY(-5deg);
  animation: waveformDrift 14s ease-in-out infinite alternate;
}

.release::after {
  content: "";
  position: absolute;
  inset: 18% 6%;
  z-index: -1;
  opacity: 0.18;
  background: radial-gradient(circle at 50% 42%, rgba(217,180,111,0.18), transparent 34%);
  filter: blur(24px);
  animation: albumAura 7s ease-in-out infinite alternate;
}

.album-link {
  perspective: 1000px;
}

.album-cover {
  will-change: transform, opacity, filter;
}

/* Album arrives with a little depth, not a gimmick */
.release.is-visible .album-cover {
  animation: albumDepthIn 900ms cubic-bezier(.16,.84,.24,1) both;
}

@keyframes albumDepthIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.965) rotateX(4deg);
    filter: brightness(.82) blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: brightness(1) blur(0);
  }
}

@keyframes waveformDrift {
  from {
    transform: translateX(-2%) skewY(-5deg) scaleX(1);
  }
  to {
    transform: translateX(2%) skewY(-5deg) scaleX(1.04);
  }
}

@keyframes albumAura {
  from {
    opacity: .12;
    transform: scale(.96);
  }
  to {
    opacity: .22;
    transform: scale(1.04);
  }
}

@media (hover:hover) and (pointer:fine) {
  .album-link:hover .album-cover {
    transform: translateY(-6px) scale(1.018) rotateX(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .release::before,
  .release::after {
    animation: none !important;
  }

  .release.is-visible .album-cover {
    animation: none !important;
  }
}


/* Final SoundCloud/service-logo fix: never let logo art overflow its card */
.service-card {
  overflow: hidden;
}

.service-card img {
  display: block !important;
  width: 100% !important;
  max-width: 200px !important;
  height: 44px !important;
  object-fit: contain !important;
}

@media (min-width: 1100px) {
  .service-card img {
    max-width: 220px !important;
  }
}

@media (max-width: 760px) {
  .service-card img {
    max-width: 230px !important;
  }
}


/* SoundCloud is icon-only to avoid wordmark clipping */
.service-card[href*="soundcloud.com"] img {
  max-width: 120px !important;
  height: 38px !important;
}


/* Official logo sizing and placement */
.logo-button {
  width: min(96vw, 820px) !important;
}

/* Embedded YouTube video section. Pulled out of .release into the
   page flow under .middle, so center it explicitly with auto margins. */
.video-section {
  width: min(780px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: clamp(28px, 5vw, 48px) auto clamp(40px, 6vw, 64px);
}

.video-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.video-note a {
  color: var(--soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

@media (hover:hover) and (pointer:fine) {
  .video-note a:hover {
    color: #fff;
    border-color: rgba(255,255,255,.55);
  }
}

/* Footer logo treatment */
.footer {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 14px !important;
}

.footer-logo-box {
  width: min(180px, 42vw);
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(255,255,255,.06);
}

.footer-logo-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (max-width: 520px) {
  .logo-button {
    width: 94vw !important;
  }

  .video-section {
    width: 100%;
  }

  .video-frame {
    border-radius: 16px;
  }

  .footer-logo-box {
    width: min(160px, 48vw);
  }
}

/* --- SPACING RHYTHM SYSTEM --- */

/* tighter grouping for release + services */
.release {
  gap: clamp(16px, 2.5vw, 22px) !important;
  padding-top: clamp(48px, 8vw, 72px) !important;
  padding-bottom: clamp(24px, 4vw, 40px) !important;
}

/* services feel like one unit */
.service-grid {
  margin-top: 6px;
  margin-bottom: 10px;
}

/* VIDEO = breath + focus */
.video-section {
  margin-top: clamp(36px, 6vw, 64px) !important;
  margin-bottom: clamp(28px, 5vw, 48px) !important;
}

/* CONTACT = intentional entry */
.contact {
  margin-top: clamp(48px, 7vw, 80px) !important;
  margin-bottom: clamp(32px, 5vw, 56px) !important;
}

/* INSTAGRAM = light touch */
.social-follow {
  margin-top: 10px !important;
  margin-bottom: clamp(36px, 6vw, 60px) !important;
}

/* FOOTER = quiet landing */
.footer {
  margin-top: 10px !important;
  padding-bottom: 40px !important;
}

/* subtle video drop */
.video-frame {
  margin-top: 6px;
}


/* Instagram follow section restored */
.social-follow {
  width: min(920px, calc(100% - 32px));
  margin: 10px auto clamp(36px, 6vw, 60px);
  display: grid;
  justify-items: center;
}

.social-card {
  width: min(260px, 100%);
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.social-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 34px;
  object-fit: contain;
}

@media (hover:hover) and (pointer:fine) {
  .social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }
}


/* Contact form removed: social links now handle reach-out paths. */


/* FINAL MOBILE SPLASH + FOOTER FIX */
.intro {
  background: #000000 !important;
}

.logo-button {
  width: min(98vw, 900px) !important;
}

.logo-button img {
  width: 100% !important;
  height: auto !important;
  background: #000000 !important;
}

/* Keep footer black, only the logo box is white */
.footer {
  width: min(920px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 18px 4px 36px !important;
  background: #000000 !important;
  color: var(--muted) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  text-align: center !important;
}

.footer-logo-box {
  width: min(170px, 42vw) !important;
  padding: 10px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-logo-box img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
}

@media (max-width: 760px) {
  .logo-button {
    width: 96vw !important;
  }
}

@media (max-width: 520px) {
  .intro {
    padding: 10px !important;
  }

  .logo-button {
    width: 98vw !important;
  }

  .footer-logo-box {
    width: min(150px, 46vw) !important;
    padding: 9px !important;
  }
}

@media (max-width: 390px) {
  .logo-button {
    width: 100vw !important;
  }
}


/* FINAL CLEAN MOBILE + FOOTER PASS */
html,
body,
main,
.intro,
.release {
  background: #000000 !important;
}

.intro {
  min-height: 100svh !important;
  padding: 0 !important;
}

.logo-button {
  width: min(104vw, 980px) !important;
  max-width: none !important;
}

.logo-button img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  background: #000000 !important;
}

@media (max-width: 760px) {
  .logo-button {
    width: 108vw !important;
  }
}

@media (max-width: 520px) {
  .logo-button {
    width: 116vw !important;
  }
}

@media (max-width: 390px) {
  .logo-button {
    width: 122vw !important;
  }
}

/* Clean single Instagram placement */
.social-follow {
  width: min(920px, calc(100% - 32px)) !important;
  margin: clamp(26px, 5vw, 52px) auto clamp(26px, 5vw, 48px) !important;
  display: grid !important;
  justify-items: center !important;
  background: #000000 !important;
}

.social-card {
  width: min(260px, 100%) !important;
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  padding: 12px 18px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.035) !important;
  text-decoration: none !important;
}

.social-card img {
  display: block !important;
  width: 100% !important;
  max-width: 190px !important;
  height: 34px !important;
  object-fit: contain !important;
}

/* Footer: black page, small white logo box only */
.footer {
  width: min(920px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 8px 4px 40px !important;
  background: #000000 !important;
  color: var(--muted) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  text-align: center !important;
}

.footer-logo-box {
  width: min(132px, 38vw) !important;
  padding: 10px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-logo-box img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
}


/* --- BALANCED LOGO SIZE (desktop vs mobile) --- */

/* Desktop: keep it large but contained */
@media (min-width: 900px) {
  .logo-button {
    width: min(70vw, 820px) !important;
  }
}

/* Tablet */
@media (max-width: 899px) and (min-width: 600px) {
  .logo-button {
    width: min(85vw, 760px) !important;
  }
}

/* Mobile: go big */
@media (max-width: 599px) {
  .logo-button {
    width: 105vw !important;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .logo-button {
    width: 112vw !important;
  }
}

/* =================================================================== */
/* SPLASH DIAL-IN (current pass)                                        */
/* The logo is intentionally smaller than previous passes so the room   */
/* around it reads as breathing space, not as filler. The logo is now   */
/* centered vertically (with a light upward bias from asymmetric        */
/* padding so the bottom retains room for the scroll cue and the gold  */
/* aura). A very slow, very subtle breath animation signals "this is    */
/* alive and interactive." A delayed "scroll" text cue fades in at      */
/* 3.5s so first-time visitors who don't scroll on instinct get a       */
/* gentle nudge without needing a down arrow.                           */
/* =================================================================== */

/* Container: top-weighted layout instead of dead-center, with a hairline of
   the release section visible at the bottom edge of the splash. */
.intro {
  min-height: 100svh !important;
  display: grid !important;
  place-items: center !important;
  padding-top: clamp(48px, 8vh, 120px) !important;
  padding-bottom: clamp(96px, 16vh, 160px) !important;
  position: relative;
}

/* Big-but-not-huge logo, with an explicit cap that scales down on smaller screens. */
.logo-button {
  width: min(56vw, 560px) !important;
  max-width: 92vw !important;
}

@media (max-width: 899px) and (min-width: 600px) {
  .logo-button {
    width: min(70vw, 460px) !important;
  }
}

@media (max-width: 599px) {
  .logo-button {
    width: min(78vw, 420px) !important;
  }
}

@media (max-width: 420px) {
  .logo-button {
    width: 82vw !important;
  }
}

/* Slow breath: opacity dip + 1px lift. Calm, not animated-looking. */
.logo-button img {
  animation: logoIn 900ms ease forwards, logoBreath 5.6s ease-in-out 1.4s infinite !important;
}

@keyframes logoBreath {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-1px) scale(1.004);
  }
}

/* A whisper of the release section's gold aura just above the fold.
   Not a banner, not an arrow -- just a horizon. */
.intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14vh;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 100% at 50% 100%,
    rgba(217, 180, 111, 0.10) 0%,
    rgba(217, 180, 111, 0.04) 40%,
    transparent 75%
  );
  opacity: 0.9;
  z-index: 0;
  transition: opacity 500ms ease;
}

.intro.scrolled::after {
  opacity: 0;
}

/* Delayed scroll cue: a slim chevron that fades in at ~3.5s, then
   gently bobs and glimmers to nudge the visitor toward the buffet
   below. Hidden the moment the user starts scrolling. */
.splash-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 5vh, 56px);
  transform: translate(-50%, 0);
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  background-color: transparent;
  padding: 10px 14px;
  margin: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, .55);
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease, color 280ms ease;
  z-index: 2;
}

.splash-cue::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.splash-cue-chevron {
  display: block;
  width: 28px;
  height: 28px;
}

.intro .splash-cue.is-cued {
  opacity: 1;
  pointer-events: auto;
  animation: cueGlimmer 3.4s ease-in-out infinite;
}

.splash-cue:hover,
.splash-cue:focus-visible {
  color: rgba(255, 255, 255, .95);
  outline: none;
}

.intro.scrolled .splash-cue {
  opacity: 0 !important;
  pointer-events: none !important;
  animation: none !important;
}

/* Synchronized bob + glimmer: chevron drifts down 4px while opacity
   lifts and a soft halo blooms, then settles back. One breath. */
@keyframes cueGlimmer {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: .55;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  50% {
    transform: translate(-50%, 4px);
    opacity: .95;
    filter: drop-shadow(0 0 9px rgba(255, 255, 255, .38));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-button img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .intro::after {
    transition: none !important;
  }
  .intro .splash-cue.is-cued {
    animation: none !important;
    opacity: .65 !important;
  }
}

/* =================================================================== */
/* TRIPTYCH BOOKEND (current pass)                                      */
/* The page is three vertical bands:                                    */
/*   1. Black hero with white logo (intro splash)                       */
/*   2. Warm-dark middle with album, services, video, Instagram         */
/*   3. White hero with black logo (outro), perfect bookend             */
/* A short gradient band fades the dark middle into the white outro.    */
/* The footer reduces to a minimal copyright line on white.             */
/* =================================================================== */

/* Earlier passes forced black on main and on .release. Release now     */
/* lives inside .middle and should inherit the middle's warm-dark tone. */
main {
  background: transparent !important;
}

.middle {
  background: #0a0807;
  position: relative;
  z-index: 0;
}

.middle .release {
  background: transparent !important;
}

/* Fade band: smooth transition from warm-dark to white. */
.fade-band {
  height: clamp(140px, 22vh, 260px);
  background: linear-gradient(to bottom, #0a0807 0%, #ffffff 100%);
  pointer-events: none;
}

/* Outro: white hero, sized and weighted to mirror the splash. */
.outro {
  min-height: 100svh;
  background: #ffffff !important;
  display: grid;
  place-items: start center;
  padding-top: clamp(72px, 14vh, 160px);
  padding-bottom: clamp(48px, 8vh, 96px);
  position: relative;
}

.outro-logo {
  width: min(56vw, 560px);
  max-width: 92vw;
}

.outro-logo img {
  display: block;
  width: 100%;
  height: auto;
  animation: logoBreath 5.6s ease-in-out 1.4s infinite;
}

/* Mirror the responsive logo sizing so the bookends stay symmetric. */
@media (max-width: 899px) and (min-width: 600px) {
  .outro-logo {
    width: min(70vw, 460px);
  }
}

@media (max-width: 599px) {
  .outro-logo {
    width: min(78vw, 420px);
  }
}

@media (max-width: 420px) {
  .outro-logo {
    width: 82vw;
  }
}

/* Footer: minimal copyright + cinematic-credit line on white. */
.footer {
  background: #ffffff !important;
  color: rgba(0, 0, 0, .42) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 16px 16px 32px !important;
  font-size: .82rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  text-align: center !important;
}

.footer .credit {
  font-style: italic;
  font-size: .76rem;
  color: rgba(0, 0, 0, .34);
  letter-spacing: .01em;
}

.footer .credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
  transition: color .25s ease, border-color .25s ease;
}

@media (hover:hover) and (pointer:fine) {
  .footer .credit a:hover {
    color: rgba(0, 0, 0, .72);
    border-color: rgba(0, 0, 0, .55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .outro-logo img {
    animation: none !important;
  }
}

/* =================================================================== */
/* TAGLINE + MERCH                                                      */
/* The tagline reintroduces the Audible-Wallpaper sales line right      */
/* under the H1, so a first-time visitor immediately knows what this    */
/* project is. The merch pill sits alongside Instagram in the social    */
/* follow zone -- two parallel "extend the relationship" actions.       */
/* =================================================================== */

.tagline {
  margin: 14px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, .72);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.45;
  text-wrap: balance;
}

/* Side-by-side social pills (Instagram + Merch). They stack on small phones. */
.social-follow {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  justify-items: initial !important;
}

@media (max-width: 520px) {
  .social-follow {
    flex-direction: column !important;
  }
}

/* Merch pill uses a text label instead of a logo image. */
.social-card--merch {
  width: min(180px, 100%) !important;
}

.merch-label {
  display: block;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  line-height: 34px;
}

/* MERCH PAIR — a tasteful image of the actual product (the mug)
   alongside the "MERCH" label. Both clickable as a single link.
   The mug sits on a soft warm halo so it reads against the dark
   page without feeling pasted on. */
.merch-pair {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(217, 180, 111, .35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217, 180, 111, .10) 0%, rgba(60, 28, 18, .35) 100%);
  text-decoration: none;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.merch-pair:hover,
.merch-pair:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 180, 111, .65);
  background: linear-gradient(135deg, rgba(217, 180, 111, .18) 0%, rgba(60, 28, 18, .45) 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
  outline: none;
}

.merch-mug {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: radial-gradient(circle at 35% 35%, rgba(255, 220, 170, .35) 0%, rgba(40, 20, 12, 0) 70%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .45));
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.merch-pair:hover .merch-mug {
  transform: rotate(-6deg) scale(1.05);
}

.merch-pair-label {
  display: block;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .94);
}

@media (max-width: 520px) {
  .merch-mug {
    width: 56px;
    height: 56px;
  }
}

/* AUDIBLE WALLPAPER ALBUM FEATURE — the new album lead section.
   The "album cover" is a live audio-reactive WebGL canvas that
   portals into the /play interactive experience. Two-column on
   desktop, stacked on mobile. */
.album-feature {
  width: min(960px, calc(100% - 32px));
  margin: clamp(28px, 5vw, 64px) auto clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  /* Scroll target. When the splash logo or chevron scrolls visitors
     here, leave breathing room above the cover instead of slamming
     it against the top of the viewport. */
  scroll-margin-top: clamp(40px, 8vw, 96px);
}

.album-art {
  position: relative;
  display: block;
  width: clamp(240px, 38vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: #0a0d1a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(217, 180, 111, .22);
  transition: transform 420ms cubic-bezier(.22, .61, .36, 1), box-shadow 420ms ease;
  -webkit-tap-highlight-color: transparent;
}

.album-art:hover,
.album-art:focus-visible {
  transform: translateY(-3px) scale(1.014);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .65), 0 0 0 1px rgba(217, 180, 111, .55);
  outline: none;
}

.album-art-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.album-art-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 100%);
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  pointer-events: none;
  transform: translateY(2px);
  opacity: 0.92;
  transition: opacity 280ms ease, transform 280ms ease;
}

.album-art:hover .album-art-overlay,
.album-art:focus-visible .album-art-overlay {
  opacity: 1;
  transform: translateY(0);
}

.album-art-eyebrow {
  flex: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.album-art-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.album-art-arrow {
  width: 14px;
  height: 14px;
  color: currentColor;
  flex-shrink: 0;
}

.album-meta {
  min-width: 0;
}

.album-eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #d9b46f;
  opacity: .92;
}

.album-title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .98;
  color: rgba(255, 255, 255, .96);
  text-wrap: balance;
}

.album-tag {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  max-width: 36ch;
  text-wrap: pretty;
}

.album-release {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}

.album-release em {
  font-style: normal;
  color: #d9b46f;
  font-weight: 700;
}

@media (max-width: 720px) {
  .album-feature {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: clamp(24px, 5vw, 36px);
  }
  .album-art {
    width: min(78vw, 360px);
  }
  .album-tag {
    margin-left: auto;
    margin-right: auto;
  }
}

/* TRACKLIST — Audible Wallpaper tracks. Quiet, typographic, two-column
   on desktop (number + title left, time + status right). Released
   tracks link to their smart link; unreleased rows are still anchored
   to /play so visitors can hear them in the interactive cover. */
.tracklist {
  width: min(720px, calc(100% - 32px));
  margin: clamp(20px, 3.5vw, 36px) auto clamp(40px, 6vw, 64px);
}

.tracklist-heading {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}

.tracks {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.track {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.track-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.track-row:hover,
.track-row:focus-visible {
  background-color: rgba(217, 180, 111, .06);
  color: #fff;
  outline: none;
}

.track-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .42);
  text-align: center;
}

.track-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  letter-spacing: -.005em;
  color: inherit;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .42);
}

.track-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}

.track--upcoming .track-status {
  color: #d9b46f;
}

.track-arrow {
  display: inline-block;
  margin-left: 4px;
  transform: translateY(-1px);
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  transition: transform 220ms ease, color 220ms ease;
}

.track-row:hover .track-arrow {
  color: #d9b46f;
  transform: translate(2px, -3px);
}

@media (max-width: 520px) {
  .track-row {
    grid-template-columns: 24px 1fr auto;
    gap: 12px;
    padding: 14px 6px;
  }
}

/* Generic section heading for "Listen everywhere", the SoundCloud
   embed label, and the Table 6 video heading. Matches the tracklist
   eyebrow style so the page reads as one structured page, not a
   stack of unrelated blocks. Width inherits from its parent section. */
.section-heading {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  text-align: center;
}

.listen-section {
  margin: clamp(28px, 4.5vw, 56px) auto;
  width: min(720px, calc(100% - 32px));
}

.listen-section .service-grid {
  margin-top: 0;
}

/* AUDIBLE WALLPAPER CTA — entry point to the interactive /play experience.
   Sits between the title-block and the streaming grid as the first
   interactive thing visitors meet after the splash. */
.play-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px 18px;
  width: min(620px, calc(100% - 24px));
  margin: clamp(8px, 1.6vw, 16px) auto clamp(20px, 3vw, 28px);
  padding: 16px 22px;
  border-radius: 22px;
  border: 1px solid rgba(217, 180, 111, .35);
  background: linear-gradient(135deg, rgba(217, 180, 111, .12) 0%, rgba(60, 28, 18, .35) 100%);
  color: rgba(255, 255, 255, .94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 320ms ease, transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
  -webkit-tap-highlight-color: transparent;
}

/* Soft pulsing edge so it reads as alive even when idle. */
.play-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 80% 50%, rgba(217, 180, 111, .25) 0%, transparent 60%);
  opacity: .6;
  animation: ctaShimmer 5.4s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0%, 100% { opacity: .35; transform: translateX(-3%); }
  50%      { opacity: .75; transform: translateX(3%); }
}

.play-cta-eyebrow {
  grid-column: 1;
  grid-row: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #d9b46f;
  position: relative;
  z-index: 1;
}

.play-cta-line {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, .92);
  position: relative;
  z-index: 1;
}

.play-cta-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(217, 180, 111, .18);
  border: 1px solid rgba(217, 180, 111, .4);
  color: #d9b46f;
  position: relative;
  z-index: 1;
  transition: transform 320ms ease, background 320ms ease;
}

.play-cta-arrow svg {
  width: 18px;
  height: 18px;
}

.play-cta:hover,
.play-cta:focus-visible {
  border-color: rgba(217, 180, 111, .65);
  background: linear-gradient(135deg, rgba(217, 180, 111, .18) 0%, rgba(60, 28, 18, .45) 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45), 0 0 0 1px rgba(217, 180, 111, .15);
  transform: translateY(-1px);
  outline: none;
}

.play-cta:hover .play-cta-arrow,
.play-cta:focus-visible .play-cta-arrow {
  transform: translateX(3px);
  background: rgba(217, 180, 111, .3);
}

@media (max-width: 540px) {
  .play-cta {
    padding: 14px 18px;
    border-radius: 18px;
  }
  .play-cta-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-cta::before { animation: none; }
}

/* SOUNDCLOUD EMBED — the official "Audible Wallpaper" playlist on
   SoundCloud. Standalone in .middle, so centered with auto margins. */
.soundcloud-section {
  width: min(780px, calc(100% - 32px));
  display: grid;
  justify-items: stretch;
  gap: 10px;
  margin: clamp(28px, 5vw, 48px) auto clamp(8px, 2vw, 16px);
}

.soundcloud-frame {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
  line-height: 0;
}

.soundcloud-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.soundcloud-credit {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: .02em;
}

.soundcloud-credit a {
  color: var(--soft);
  text-decoration: none;
}

.soundcloud-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .soundcloud-section {
    width: 100%;
  }
  .soundcloud-frame {
    border-radius: 14px;
  }
}
