/* ============================================================
   WHISPERS OF ENTROPY — BESPOKE VARIANT (prototype_b)
   Warm copper palette evoking thermodynamic dissipation.
   Cormorant Garamond italic title with slow letter-spacing drift.
   Drifting haze layer + subtle film grain for ambient warmth.
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,500&family=Spectral:ital,wght@0,300;0,400;1,300&display=swap');

:root {
  --we-bg:     #08060a;
  --we-bg-2:   #120a08;
  --we-ink:    #f1ebde;
  --we-ink-dim:#9b8e7b;
  --we-copper: #c8824a;
  --we-amber:  #d99a5b;
  --we-ember:  #6e3219;
  --we-line:   rgba(200, 130, 74, 0.18);
  --we-gutter: clamp(20px, 5vw, 64px);
}
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--we-bg);
  color: var(--we-ink);
  font-family: 'Spectral', 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 16px; padding: 8px 12px; background: var(--we-copper); color: #0a0608; z-index: 999; }

.hero--we {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 80% at 50% 45%,
      rgba(200, 130, 74, 0.16) 0%,
      rgba(110, 50, 25, 0.10) 35%,
      rgba(8, 6, 10, 0.0) 65%),
    radial-gradient(ellipse at center,
      var(--we-bg-2) 0%,
      var(--we-bg) 70%,
      #050308 100%);
}
.we-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.we-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.55) saturate(1.05);
  /* Push the framing down a little so the players sit lower, leaving the
     darker upper region for the title. Scaled up so no gap opens at top. */
  transform: scale(1.12) translateY(6%);
  transform-origin: center center;
}
.we-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(8, 6, 10, 0.35) 0%, rgba(8, 6, 10, 0.78) 70%, rgba(8, 6, 10, 0.95) 100%),
    linear-gradient(to bottom, rgba(8, 6, 10, 0.4) 0%, transparent 35%, transparent 70%, var(--we-bg) 100%);
  pointer-events: none;
}
.we-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen; }
.we-field .we-haze { opacity: 0.4; }
.we-field .we-grain { opacity: 0.2; }
.we-haze {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 40% 30% at 22% 18%, rgba(217, 154, 91, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 78% 32%, rgba(200, 130, 74, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 30% 78%, rgba(217, 154, 91, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 38% 28% at 72% 70%, rgba(200, 130, 74, 0.14) 0%, transparent 60%);
  filter: blur(40px);
  animation: we-haze-drift 26s ease-in-out infinite alternate;
}
@keyframes we-haze-drift {
  0%   { transform: translate( 0,  0) scale(1);     }
  50%  { transform: translate(-2%, 1.5%) scale(1.06); }
  100% { transform: translate(2%, -1%) scale(1.02);  }
}
.we-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(217, 154, 91, 0.06) 0%, transparent 0.5%),
    radial-gradient(circle at 67% 38%, rgba(217, 154, 91, 0.05) 0%, transparent 0.5%),
    radial-gradient(circle at 38% 71%, rgba(217, 154, 91, 0.05) 0%, transparent 0.5%);
  background-size: 7px 7px;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero__copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  /* Title sits a little above the upper third of the hero. */
  padding: clamp(96px, 20vh, 230px) var(--we-gutter) 0;
  max-width: 100%;
}
.we-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(46px, 8.4vw, 132px);
  letter-spacing: 0.04em;
  line-height: 1.04;
  color: var(--we-ink);
  text-shadow:
    0 0 24px rgba(0, 0, 0, 0.7),
    0 0 54px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(110, 50, 25, 0.35);
  animation: we-drift 9s ease-in-out infinite alternate;
}
.we-title .we-of {
  font-style: italic;
  color: var(--we-copper);
  font-weight: 300;
  margin: 0 0.18em;
  display: inline-block;
}
@keyframes we-drift {
  0%   { letter-spacing: 0.04em; }
  100% { letter-spacing: 0.10em; }
}
.we-tag {
  margin: 1.2em auto 0;
  max-width: 44ch;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 0.02em;
  color: rgba(241, 235, 222, 0.92);
  text-shadow: 0 0 12px rgba(0,0,0,0.92), 0 0 26px rgba(0,0,0,0.7);
  line-height: 1.45;
}
.we-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  margin-top: 2.2em;
}
.we-watch {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
  padding: 12px 40px;
  font-family: 'Spectral', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--we-ink);
  text-decoration: none;
  border: 1px solid var(--we-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}
.we-watch:hover {
  border-color: var(--we-copper);
  color: var(--we-copper);
  background: rgba(200, 130, 74, 0.12);
}
.we-watch__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--we-copper);
  animation: we-watch-pulse 2.4s ease-in-out infinite;
}
/* expanding copper ring (matches the Listen pill + sibling pages) */
@keyframes we-watch-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 130, 74, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(200, 130, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 130, 74, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .we-watch__dot { animation: none; box-shadow: 0 0 8px var(--we-copper); }
}

.we-scroll {
  position: absolute;
  left: 0; right: 0; bottom: 28px;
  width: max-content; margin-inline: auto;
  z-index: 2;
  font-family: 'Spectral', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--we-ink-dim);
}
.we-scroll::after {
  content: ""; display: block;
  width: 1px; height: 28px;
  margin: 8px auto 0;
  background: linear-gradient(to bottom, var(--we-copper), transparent);
  transform-origin: top;
  animation: we-scrollline 2.4s ease-in-out infinite;
}
@keyframes we-scrollline {
  0%, 100% { transform: scaleY(0.3); opacity: 0.35; }
  50%      { transform: scaleY(1);   opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .we-scroll::after { animation: none; transform: scaleY(1); opacity: 0.7; }
}

.we-prose {
  position: relative;
  padding: clamp(80px, 14vh, 180px) var(--we-gutter);
  background: var(--we-bg);
}
.we-prose--alt { background: var(--we-bg-2); }
.prose__inner { max-width: 760px; margin: 0 auto; }
.we-eyebrow {
  font-family: 'Spectral', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--we-copper);
  margin: 0 0 1.6em;
}
.we-prose p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--we-ink);
  margin: 0 0 1.4em;
}
.we-prose p:last-child { margin-bottom: 0; }
.we-prose em { font-style: italic; color: var(--we-copper); }
.we-lede {
  font-size: clamp(20px, 2.2vw, 28px) !important;
  font-style: italic;
  color: var(--we-ink);
}
.we-tool {
  display: inline-block;
  padding: 1px 0.4em;
  font-family: 'Spectral', sans-serif;
  font-weight: 300;
  font-size: 0.78em;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--we-amber);
  border-bottom: 1px solid var(--we-line);
}

.we-press {
  padding: clamp(60px, 12vh, 140px) var(--we-gutter);
  background: var(--we-bg);
}
.we-prose + .we-prose,
.we-prose + .we-press,
.we-press + .we-press { padding-top: 0; }
.we-prose:has(+ .we-prose),
.we-prose:has(+ .we-press),
.we-press:has(+ .we-press) { padding-bottom: clamp(20px, 4vh, 50px); }
.press__inner { max-width: 760px; margin: 0 auto; }
.press__list { list-style: none; margin: 0; padding: 0; }
.press__list li {
  display: flex; align-items: baseline; gap: 1.5em;
  padding: 1em 0;
  border-top: 1px solid var(--we-line);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.4;
  color: var(--we-ink);
}
.press__list li:last-child { border-bottom: 1px solid var(--we-line); }
.we-year {
  flex-shrink: 0; width: 4em;
  color: var(--we-copper);
  font-family: 'Spectral', sans-serif;
  font-size: 0.78em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.we-venue { flex: 1; }
.we-venue em { color: var(--we-amber); font-style: italic; }

.we-foot {
  padding: clamp(40px, 6vh, 80px) var(--we-gutter);
  text-align: center;
  font-family: 'Spectral', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--we-ink-dim);
  background: #040206;
}
.we-foot p { margin: 0.4em 0; }
.foot__back a {
  color: var(--we-ink-dim); text-decoration: none;
  transition: color 0.3s;
}
.foot__back a:hover { color: var(--we-copper); }

@media (max-width: 640px) { .we-title { font-size: clamp(36px, 11vw, 80px); } }
@media (prefers-reduced-motion: reduce) { .we-haze, .we-title { animation: none !important; } }

/* ============================================================
   AUDIO TOOLKIT — mute / slider / fullscreen (copper palette)
============================================================ */
.we-audio {
  position: absolute;
  bottom: 26px;
  right: clamp(20px, 3vw, 40px);
  z-index: 4;
  display: flex; align-items: center; gap: 14px;
  color: var(--we-ink);
  pointer-events: auto;
}
.we-audio-btn {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--we-line);
  border-radius: 50%;
  color: var(--we-ink);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
}
.we-audio-btn:hover {
  border-color: var(--we-copper);
  color: var(--we-copper);
  background: rgba(200, 130, 74, 0.08);
}
.we-audio-btn:active { transform: scale(0.94); }
.hero__audio-icon { width: 14px; height: 14px; display: block; }
.hero__audio-icon--off { display: none; }
.we-audio.is-muted .hero__audio-icon--on  { display: none; }
.we-audio.is-muted .hero__audio-icon--off { display: block; }
.we-audio.is-muted .hero__audio-slider__fill  { background: var(--we-ink-dim); }
.we-audio.is-muted .hero__audio-slider__thumb { background: var(--we-ink-dim); }

.we-audio-slider {
  position: relative;
  width: 84px; height: 18px;
  display: flex; align-items: center;
  cursor: pointer;
  touch-action: none;
  outline: none;
}
.hero__audio-slider__track,
.hero__audio-slider__fill {
  position: absolute;
  left: 0; top: 50%;
  height: 1px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__audio-slider__track { width: 100%; background: var(--we-line); }
.hero__audio-slider__fill  {
  background: var(--we-copper);
  width: 0%;
  transition: width 0.08s linear, background 0.3s;
}
.hero__audio-slider__thumb {
  position: absolute; top: 50%; left: 0%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--we-copper);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  transition: left 0.08s linear, transform 0.22s ease, background 0.3s;
}
.we-audio-slider:hover .hero__audio-slider__thumb,
.we-audio-slider:focus-visible .hero__audio-slider__thumb {
  transform: translate(-50%, -50%) scale(1.5);
}

.hero__fs-btn { margin-left: 4px; }
.hero__fs-icon--exit { display: none; }
.hero__fs-btn.is-fs .hero__fs-icon--enter { display: none; }
.hero__fs-btn.is-fs .hero__fs-icon--exit  { display: block; }

@media (max-width: 520px) {
  .we-audio { bottom: 18px; right: 16px; gap: 10px; }
  .we-audio-slider { width: 60px; }
}
