@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/caveat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/caveat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.woff2") format("woff2");
}

/* FINDING OUT — cinematic, intimate. Bebas + Caveat + Montserrat. */
:root {
  --navy: #070b14;
  --navy-2: #0b1220;
  --navy-3: #121a2a;
  --black: #050506;
  --copper: #b87333;
  --brass: #c4a574;
  --cream: #f3ead8;
  --cream-dim: #d8ccb8;
  --mute: #9a8d7a;
  --yt: #c23b2e;
  --line: rgba(196, 165, 116, 0.18);
  --radius: 2px;
  --max: 72rem;
  --nav-h: 4.35rem;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --hand: "Caveat", "Segoe Script", cursive;
  --sans: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy);
}

img, svg { max-width: 100%; display: block; }
img.cover-fit, .photo-bleed img, .hero-cinematic img, .page-hero img, .side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: var(--brass); text-underline-offset: 0.2em; }
a:hover { color: var(--cream); }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--copper);
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(5,5,6,0.94), rgba(7,11,20,0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.wordmark {
  text-decoration: none;
  color: var(--cream);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav { display: flex; gap: 0.15rem; }
.nav a {
  color: var(--cream-dim);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--brass); }
.nav a[aria-current="page"] { box-shadow: inset 0 -1px 0 var(--copper); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 2px;
  padding: 0.4rem 0.65rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: var(--nav-h);
    flex-direction: column;
    background: #0a101c;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.1rem 1.1rem;
  }
  .nav.is-open { display: flex; }
}

.kicker, .section-label, .year {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.85rem;
  font-weight: 500;
}

.hand {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--brass);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0.15rem 0 1rem;
}

.hero-cinematic,
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-cinematic { min-height: 78vh; }
.hero-cinematic .hero-bg,
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-cinematic::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,6,0.35) 0%, rgba(7,11,20,0.55) 42%, rgba(7,11,20,0.94) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.55) 0%, transparent 48%);
  z-index: 1;
}
.hero-copy, .page-hero .wrap {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.2rem;
}
.hero-copy h1,
.page-hero h1,
.page-head h1,
.err h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 12vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--cream);
  text-shadow: 0 18px 50px rgba(0,0,0,0.55);
}
.lede {
  max-width: 34rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
}

.page-head { padding: 2.4rem 0 1rem; }
.page-hero { min-height: 48vh; }
.page-hero.short { min-height: 42vh; }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.1rem 0 0; }
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 2px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--copper);
  color: var(--cream);
  border-color: rgba(196,165,116,0.35);
}
.btn-primary:hover { background: #c9853d; color: #fff; }
.btn-yt {
  background: var(--yt);
  color: #fff;
  border-color: transparent;
}
.btn-yt:hover { background: #d4483a; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

.home-body { padding: 2.4rem 0 4rem; }
.grid-ep {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 0.75fr;
  align-items: start;
}
@media (max-width: 900px) { .grid-ep { grid-template-columns: 1fr; } }

.ep-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  background: var(--navy-2);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.ep-card.stacked { grid-template-columns: 1fr; }
.ep-card-photo {
  min-height: 16rem;
  position: relative;
  background: var(--black);
}
.ep-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ep-card-body { padding: 1.5rem 1.45rem 1.65rem; }
.ep-num {
  font-family: var(--display);
  font-size: clamp(4.2rem, 10vw, 6.4rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: var(--copper);
  margin: 0.15rem 0 0.2rem;
}
.ep-internal {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--cream);
  line-height: 0.95;
}
.ep-card h2.public-title,
.ep-card h3.public-title,
.public-title {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0.85rem 0 0.35rem;
  color: var(--cream);
  text-transform: none;
}
.panel h2, .section h2 {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.muted { color: var(--mute); }
.small { font-size: 0.88rem; letter-spacing: 0.04em; }

.embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  margin: 1rem 0 0.85rem;
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.section { padding: 1.5rem 0 3.4rem; }
.listen {
  position: relative;
}
.side-photo {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line);
}
.side-photo img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}
.album {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.album:first-of-type { border-top: 1px solid var(--line); }
.album:hover .album-title { color: var(--brass); }
.album-title {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.15rem 0 0.2rem;
  line-height: 1;
}

.ep-list { list-style: none; margin: 0; padding: 0; }
.ep-list li { border-bottom: 1px solid var(--line); }
.ep-list a, .ep-row {
  display: grid;
  grid-template-columns: 4.6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  text-decoration: none;
  color: inherit;
}
.ep-list a:hover .ep-title { color: var(--brass); }
.ep-week {
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--copper);
  line-height: 1;
}
.ep-title {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.ep-meta { margin: 0.35rem 0 0; color: var(--mute); font-size: 0.88rem; }
.ep-go {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yt);
}
@media (max-width: 640px) {
  .ep-card { grid-template-columns: 1fr; }
  .ep-card-photo { min-height: 12rem; }
  .ep-list a, .ep-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

.spotify { min-height: 380px; width: 100%; border: 0; background: #000; }

.prose { max-width: 36rem; padding: 2rem 0 3.5rem; }
.prose p { color: var(--cream-dim); }
.prose p.lead {
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 500;
}

.full-photo {
  width: 100%;
  max-height: 28rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.full-photo img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  object-position: center;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 9.5rem;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
}

.cards { display: flex; flex-direction: column; gap: 0; }
.card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  text-decoration: none;
  color: inherit;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.1rem 0 0.25rem;
  line-height: 1;
}

.cover-row { display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.95rem; align-items: center; }
.cover { width: 5.5rem; height: 5.5rem; object-fit: cover; opacity: 1; }

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  color: var(--mute);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  background: var(--black);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.social { display: flex; gap: 1.1rem; }
.social a {
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 500;
}
.social a:hover { color: var(--brass); }

.vu { display: none; }

.err { padding: 18vh 0 4rem; }

.soundcloud {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  margin: 1.5rem 0 0.5rem;
  background: #0b0b0b;
}
.playground h2 { color: var(--cream); }

.suno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin: 0.75rem 0 1.5rem;
}
.suno-grid iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
  background: #0b0b0b;
}
.suno-grid figcaption {
  margin-top: 0.4rem;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .suno-grid { grid-template-columns: 1fr; }
}

.suno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin: 0.75rem 0 1.5rem;
}
.suno-track {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.15rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.suno-track img {
  grid-row: 1 / span 2;
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
}
.suno-title {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--cream);
}
.suno-track:hover .suno-title { color: var(--brass); }
@media (max-width: 700px) {
  .suno-grid { grid-template-columns: 1fr; }
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.about-grid .prose { margin: 0; }
.about-grid .lead { font-size: 1.2rem; color: var(--cream); }
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 16rem; }
}

.coming-soon .ep-num { color: var(--brass); }
.coming-soon .kicker { color: var(--copper); }
.soon-slot {
  min-height: 12rem;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(7,11,20,.2), rgba(5,5,6,.75));
  border: 1px solid var(--line);
  color: var(--brass);
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.35rem;
}
