/* ── TOKENS ── */
:root {
  --black:   #080808;
  --deep:    #0d0c0a;
  --cream:   #edeae3;
  --muted:   #6a6560;
  --amber:   #c27b32;
  --amber-f: rgba(194, 123, 50, 0.15);
  --display: 'Bebas Neue', Impact, sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
  -webkit-font-smoothing: antialiased;
}

/* Film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ── ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Hero orbs */
.orb--hero-1 {
  width: 520px; height: 520px;
  top: -120px; left: -160px;
  background: radial-gradient(circle at center,
    rgba(194,123,50,0.22) 0%,
    rgba(194,123,50,0.08) 40%,
    transparent 70%);
  filter: blur(60px);
  animation: orb-drift-1 18s ease-in-out infinite alternate;
}
.orb--hero-2 {
  width: 360px; height: 360px;
  bottom: 80px; left: 30%;
  background: radial-gradient(circle at center,
    rgba(194,123,50,0.14) 0%,
    rgba(120,70,20,0.06) 50%,
    transparent 70%);
  filter: blur(80px);
  animation: orb-drift-2 24s ease-in-out infinite alternate;
}
.orb--hero-3 {
  width: 280px; height: 280px;
  top: 40%; right: 5%;
  background: radial-gradient(circle at center,
    rgba(194,123,50,0.1) 0%,
    transparent 65%);
  filter: blur(50px);
  animation: orb-drift-3 20s ease-in-out infinite alternate;
}

/* About orb */
.orb--about {
  width: 600px; height: 600px;
  top: -100px; right: -200px;
  background: radial-gradient(circle at center,
    rgba(194,123,50,0.1) 0%,
    rgba(194,123,50,0.04) 50%,
    transparent 70%);
  filter: blur(90px);
  animation: orb-drift-2 26s ease-in-out infinite alternate;
}

/* Listen orb */
.orb--listen {
  width: 700px; height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(194,123,50,0.07) 0%,
    transparent 65%);
  filter: blur(100px);
  animation: orb-drift-1 30s ease-in-out infinite alternate;
}

/* Contact orb */
.orb--contact {
  width: 500px; height: 500px;
  top: -80px; left: -100px;
  background: radial-gradient(circle at center,
    rgba(194,123,50,0.16) 0%,
    rgba(194,123,50,0.05) 45%,
    transparent 70%);
  filter: blur(80px);
  animation: orb-drift-3 22s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 50px) scale(0.94); }
}
@keyframes orb-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -40px) scale(1.05); }
}

/* ── CHAPTER LABEL ── */
.chapter {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2.5rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 3.5rem;
  transition: background 0.5s, backdrop-filter 0.5s;
}
.nav--solid {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.nav__links { display: flex; gap: 2.5rem; }
.nav__links a {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--cream); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: crosshair;
  width: 28px; height: 14px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--cream);
  position: absolute; left: 0;
  transition: transform 0.3s, top 0.3s, bottom 0.3s;
}
.nav__burger span:first-child { top: 0; }
.nav__burger span:last-child  { bottom: 0; }
.nav__burger.open span:first-child { transform: rotate(45deg); top: 6.5px; }
.nav__burger.open span:last-child  { transform: rotate(-45deg); bottom: 6.5px; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 490;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 3.5rem;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--amber); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3.5rem 4.5rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}

.hero__name {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 108px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s 0.2s, transform 0.9s 0.2s;
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transition: opacity 0.8s 0.5s;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transition: opacity 0.8s 0.65s, color 0.3s;
  width: fit-content;
}
.hero__cta:hover { color: var(--cream); }

.hero__right {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0;
  transition: opacity 1.2s 0.3s;
}
.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(194, 123, 50, 0.12);
  z-index: 1;
  pointer-events: none;
}
.hero__fade {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to right, var(--black), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero__right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
  pointer-events: none;
}

body.loaded .hero__eyebrow,
body.loaded .hero__cta { opacity: 1; transform: translateY(0); }
body.loaded .hero__name { opacity: 1; transform: translateY(0); }
body.loaded .hero__sub  { opacity: 1; }
body.loaded .hero__right img { opacity: 0.9; }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.9rem 0;
  background: var(--deep);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.marquee__track i {
  font-style: normal;
  color: var(--amber);
  font-size: 0.38rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  padding: 9rem 3.5rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.about__top { margin-bottom: 5rem; }

.about__heading {
  font-family: var(--display);
  font-size: clamp(3rem, 8.5vw, 118px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.about__heading em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 0.83em;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about__lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.8rem;
  color: var(--cream);
}
.about__text p:not(.about__lead) {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about__text em { color: var(--cream); font-style: italic; }

.about__img { position: relative; }
.about__img img { width: 100%; aspect-ratio: 3/4; }
.about__img::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(194,123,50,0.18);
  z-index: -1;
  pointer-events: none;
}

/* ── LISTEN ── */
.listen {
  padding: 6rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.listen__hd {
  padding: 0 3.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.listen__hd .chapter { margin-bottom: 0; }

/* ── PLAYER — clean, image-free ── */
.player {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s;
}
.player:hover {
  background: rgba(194,123,50,0.04);
}
.player.playing {
  background: rgba(194,123,50,0.06);
}

/* Amber left-edge accent, scales up on hover/playing */
.player::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--amber);
  z-index: 2;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.player:hover::before,
.player.playing::before { transform: scaleY(1); }

.player__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 3.5rem;
}

.player__meta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-shrink: 0;
  min-width: 0;
}

.player__num {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.player:hover .player__num,
.player.playing .player__num { color: var(--amber); }

.player__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(237,234,227,0.78);
  transition: color 0.3s;
  white-space: nowrap;
}
.player:hover .player__title { color: var(--cream); }
.player.playing .player__title {
  color: var(--cream);
}

.player__dur {
  display: block;
  font-size: 0.56rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  min-width: 0;
}

/* Play / Pause button */
.play-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(194,123,50,0.35);
  background: rgba(194,123,50,0.06);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.play-btn:hover {
  background: rgba(194,123,50,0.16);
  border-color: var(--amber);
  color: var(--cream);
  transform: scale(1.06);
}
.player.playing .play-btn {
  background: var(--amber-f);
  border-color: var(--amber);
  color: var(--cream);
  box-shadow: 0 0 22px rgba(194,123,50,0.3);
}
.play-btn svg { width: 18px; height: 18px; }
.play-btn .icon-pause { display: none; }
.player.playing .play-btn .icon-play  { display: none; }
.player.playing .play-btn .icon-pause { display: block; }

/* Progress wrap */
.player__progress-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}

/* Animated waveform bars */
.player__waveform {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}
.player__waveform span {
  display: block;
  width: 2px;
  min-width: 2px;
  background: rgba(194,123,50,0.3);
  border-radius: 1px;
  height: var(--h, 10px);
  animation: wv var(--dur, 0.8s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  animation-play-state: paused;
}
.player.playing .player__waveform span {
  animation-play-state: running;
  background: rgba(194,123,50,0.55);
}

@keyframes wv {
  from { height: 3px; }
  to   { height: var(--h, 18px); }
}

/* Seek bar */
.player__progress {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  cursor: crosshair;
}
.player__progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(237,234,227,0.08);
}
.player__bar {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 0%;
  background: var(--amber);
  transition: width 0.1s linear;
  pointer-events: none;
}
.player.playing .player__bar {
  box-shadow: 0 0 6px rgba(194,123,50,0.6);
}
.player__bar::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 0 8px rgba(194,123,50,0.8);
}
.player.playing .player__bar::after,
.player:hover .player__bar::after { opacity: 1; }

.player__time {
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  min-width: 2.8rem;
  text-align: right;
  transition: color 0.3s;
}
.player.playing .player__time { color: var(--amber); }

/* ── CONTACT ── */
.contact {
  padding: 9rem 3.5rem 7rem;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}
.contact .chapter { margin-bottom: 2rem; }

.contact__hd {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.contact__hd em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 0.85em;
}

.contact__email {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  border-bottom: 1px solid rgba(237,234,227,0.18);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}
.contact__email:hover { color: var(--amber); border-color: var(--amber); }

/* ── FOOTER ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer a:hover { color: var(--cream); }

/* ── SCROLL REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.r.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 1.4rem 1.8rem; }
  .nav__links { display: none; }
  .nav__burger { display: block; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
  }
  .hero__left {
    padding: 7rem 1.8rem 2.5rem;
    justify-content: flex-start;
  }
  .hero__right { height: 55vw; }
  .hero__right img { opacity: 0.75; }

  .about { padding: 5rem 1.8rem 4rem; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img { display: none; }

  .listen { padding: 4rem 0 0; }
  .listen__hd { padding: 0 1.8rem; }

  .player__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
  }
  .player__meta { gap: 1rem; }
  .player__title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .player__controls { width: 100%; gap: 0.9rem; }
  .play-btn { width: 40px; height: 40px; }
  .play-btn svg { width: 15px; height: 15px; }

  .orb--hero-1 { width: 320px; height: 320px; top: -60px; left: -80px; }
  .orb--hero-2 { display: none; }
  .orb--about  { width: 300px; height: 300px; }

  .contact { padding: 5rem 1.8rem 4rem; }
  .footer { padding: 1.5rem 1.8rem; }
}

@media (max-width: 500px) {
  .hero__name { font-size: clamp(3rem, 14vw, 56px); }
  .about__heading { font-size: clamp(2.4rem, 13vw, 56px); }
  .contact__hd { font-size: clamp(2.5rem, 13vw, 60px); }
}
