:root {
  --swamp-black:   #0B0A08;
  --cypress-brown: #1B140E;
  --moss-olive:    #4C4D35;
  --sunbeam-gold:  #D8B56A;
  --gold-deep:     #B6904A;
  --ivory-suit:    #F3E9D6;
  --ivory-mute:    #d9cdb5;
  --line:          rgba(243,233,214,0.14);
  --line-strong:   rgba(243,233,214,0.32);
  --card:          rgba(243,233,214,0.04);
  --card-hover:    rgba(243,233,214,0.08);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius-pill: 999px;
  --radius-card: 14px;
  --max:         1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--swamp-black);
  color: var(--ivory-suit);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.display { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.005em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sunbeam-gold);
  font-weight: 500;
}

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background-color .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,10,8,0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--ivory-suit);
}
.wordmark span { color: var(--sunbeam-gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,233,214,0.78);
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--sunbeam-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--ivory-suit); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--sunbeam-gold);
  color: var(--swamp-black) !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
}
.nav-cta::after { display: none; }
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("assets/danny-rooks-cover.png");
  background-size: cover;
  background-position: center 20%;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.05);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(216,181,106,0.22), transparent 55%),
    linear-gradient(180deg,
      rgba(11,10,8,0.55) 0%,
      rgba(11,10,8,0.20) 35%,
      rgba(11,10,8,0.55) 70%,
      rgba(11,10,8,0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.62  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 140px 24px 60px;
  width: 100%; max-width: 880px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--sunbeam-gold); opacity: .7;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 11vw, 156px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ivory-suit);
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.hero h1 .amp {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--sunbeam-gold);
  font-size: 0.5em;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 540px;
  font-size: 17px;
  color: var(--ivory-mute);
  line-height: 1.5;
}
.hero-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ivory-suit);
  opacity: 0.85;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 38px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-filled {
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
  box-shadow: 0 14px 40px -16px rgba(216,181,106,0.7);
}
.btn-filled:hover { transform: translateY(-1px); background: #e3c07c; }
.btn-outline {
  background: transparent;
  border-color: var(--ivory-suit);
  color: var(--ivory-suit);
}
.btn-outline:hover { background: var(--ivory-suit); color: var(--swamp-black); border-color: var(--ivory-suit); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero streaming strip ───────────────────────────── */
.hero-streams {
  margin: 36px auto 0;
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px) { .hero-streams { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.hs-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: rgba(11,10,8,0.55);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  color: var(--ivory-suit);
  transition: background .2s ease, border-color .2s ease, transform .15s ease, color .2s ease;
  white-space: nowrap;
}
.hs-tile:hover {
  background: var(--sunbeam-gold);
  border-color: var(--sunbeam-gold);
  color: var(--swamp-black);
  transform: translateY(-2px);
}
.hs-tile .hs-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
  flex: none;
  transition: background .2s ease, color .2s ease;
}
.hs-tile:hover .hs-icon { background: var(--swamp-black); color: var(--sunbeam-gold); }
.hs-tile .hs-icon svg { width: 14px; height: 14px; }
.hs-tile .hs-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

/* Coming-soon hero stream tile (e.g. Apple Music pre-verification) */
.hs-tile.coming-soon {
  opacity: 0.5;
  filter: grayscale(0.5);
  cursor: not-allowed;
}
.hs-tile.coming-soon:hover {
  background: rgba(11,10,8,0.55);
  border-color: var(--line-strong);
  color: var(--ivory-suit);
  transform: none;
}
.hs-tile.coming-soon:hover .hs-icon {
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
}

.hero-social {
  margin-top: 44px;
  display: flex; gap: 14px; justify-content: center;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(11,10,8,0.35);
  color: var(--ivory-suit);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .15s ease;
}
.icon-btn:hover {
  border-color: var(--sunbeam-gold);
  color: var(--sunbeam-gold);
  transform: translateY(-2px);
}
.icon-btn svg { width: 16px; height: 16px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243,233,214,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--sunbeam-gold), transparent);
  animation: drip 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0%, 100% { transform: scaleY(0.4); opacity: .4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ─── Section scaffolding ─────────────────────────────── */
section { padding: clamp(80px, 10vw, 130px) clamp(20px, 4vw, 56px); position: relative; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.section-head h2 .ital { font-style: italic; color: var(--sunbeam-gold); font-weight: 500; }
.section-head p {
  max-width: 520px;
  color: var(--ivory-mute);
  margin: 0;
  font-size: 16px;
}
.rule {
  width: 36px; height: 1px;
  background: var(--sunbeam-gold);
  margin: 6px 0;
}

/* ─── Merch ───────────────────────────────────────────── */
#merch { background: var(--cypress-brown); }
.merch-foot { text-align: center; margin-top: 44px; }

/* Merch coming-soon panel */
.merch-soon {
  max-width: 640px; margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  padding: 56px 36px 48px;
  background: linear-gradient(180deg, rgba(243,233,214,0.04), rgba(11,10,8,0));
  position: relative; overflow: hidden;
}
.merch-soon::before, .merch-soon::after {
  content: ""; position: absolute; left: 20%; width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sunbeam-gold), transparent);
  opacity: .55;
}
.merch-soon::before { top: 0; }
.merch-soon::after  { bottom: 0; }
.soon-stamp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  border: 1px solid var(--sunbeam-gold);
  color: var(--sunbeam-gold);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(216,181,106,0.05);
}
.soon-stamp::before, .soon-stamp::after {
  content: ""; width: 14px; height: 1px; background: var(--sunbeam-gold); opacity: .8;
}
.soon-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 22px 0 14px;
}
.soon-title em { font-style: italic; color: var(--sunbeam-gold); font-weight: 500; }
.soon-body {
  color: var(--ivory-mute);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 460px;
  text-wrap: pretty;
}

/* ─── About ───────────────────────────────────────────── */
#about { background: linear-gradient(180deg, var(--swamp-black) 0%, var(--cypress-brown) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(216,181,106,0.25), transparent 60%),
    url("assets/danny-rooks-cover.png") center/cover no-repeat;
  filter: saturate(1.04);
  border: 1px solid var(--line);
}
.about-body .eyebrow { display: inline-block; margin-bottom: 14px; }
.about-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  margin: 0 0 22px;
}
.about-body p {
  color: var(--ivory-mute);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.about-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.about-meta dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunbeam-gold);
  margin-bottom: 6px;
}
.about-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.about-meta a { transition: color .2s ease; }
.about-meta a:hover { color: var(--sunbeam-gold); }

/* ─── Newsletter ──────────────────────────────────────── */
#newsletter {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216,181,106,0.18), transparent 60%),
    var(--swamp-black);
  text-align: center;
}
.news-card { max-width: 640px; margin: 0 auto; }
.news-form {
  margin-top: 32px;
  display: flex; gap: 10px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  background: rgba(243,233,214,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
}
.news-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: none;
  color: var(--ivory-suit);
  font: inherit;
  font-size: 15px;
  padding: 10px 18px;
}
.news-form input::placeholder { color: rgba(243,233,214,0.45); }
.news-form button {
  border: 0;
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background .2s ease;
}
.news-form button:hover { background: #e3c07c; }
.news-fine {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(243,233,214,0.5);
  letter-spacing: 0.04em;
}

/* ─── Footer ──────────────────────────────────────────── */
footer {
  background: var(--swamp-black);
  border-top: 1px solid var(--line);
  padding: 60px clamp(20px, 4vw, 56px) 40px;
}
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory-mute);
  max-width: 320px;
  margin: 12px 0 22px;
  line-height: 1.4;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sunbeam-gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 13px; color: var(--ivory-mute); transition: color .2s ease; }
.foot-col a:hover { color: var(--sunbeam-gold); }
.foot-col .foot-soon {
  font-size: 13px;
  color: rgba(243,233,214,0.45);
  font-style: italic;
}
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.copy {
  max-width: var(--max); margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(243,233,214,0.5);
  letter-spacing: 0.08em;
}

/* ─── Sticky stream bar ────────────────── */
.stream-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  z-index: 49;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 18px;
  background: rgba(11,10,8,0.78);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
}
.stream-bar.visible { transform: translateX(-50%) translateY(0); }
.stream-bar .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.stream-bar .btn { padding: 10px 18px; font-size: 11px; }
@media (max-width: 600px) { .stream-bar .label { display: none; } }

/* ─── Auditions slideshow ──────────────────────────────── */
.audi-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 720px) { .audi-stage { padding: 0; } }
.audi-viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
}
.audi-track {
  display: flex;
  transition: transform .65s cubic-bezier(.5, 0, 0, 1);
  will-change: transform;
}
.audi-track .audition {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  border-radius: var(--radius-card);
}
.audi-track .audition:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--gold-deep);
}
.audi-track .audition-thumb { aspect-ratio: 16 / 9; }
.audi-arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(11,10,8,0.7);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  color: var(--ivory-suit);
  display: grid; place-items: center;
  z-index: 5;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.audi-arrow.prev { left: 8px; }
.audi-arrow.next { right: 8px; }
.audi-arrow:hover {
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
  border-color: var(--sunbeam-gold);
}
.audi-arrow svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .audi-arrow.prev { left: 12px; }
  .audi-arrow.next { right: 12px; }
}
.audi-dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 26px;
}
.audi-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(243,233,214,0.25);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .25s ease;
}
.audi-dot:hover { background: rgba(243,233,214,0.6); }
.audi-dot.active { background: var(--sunbeam-gold); width: 26px; border-radius: 999px; }

/* ─── Auditions card ─────────────────────────────────── */
.audition {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(11,10,8,0.55);
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.audition:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.audition-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(216,181,106,0.22), transparent 60%),
    url("assets/danny-rooks-cover.png") center/cover no-repeat;
  filter: saturate(1.05);
}
.audition-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0.2) 0%, rgba(11,10,8,0.85) 100%);
}
.audition.golden .audition-thumb {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(216,181,106,0.55), transparent 70%),
    url("assets/danny-rooks-cover.png") center/cover no-repeat;
}
/* When a real YouTube thumbnail is provided via inline style, soften the placeholder gradient */
.audition-thumb[style*="background-image"]::after {
  background: linear-gradient(180deg, rgba(11,10,8,0.15) 0%, rgba(11,10,8,0.78) 100%);
}
.audition-show {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11,10,8,0.75);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--ivory-suit);
  font-weight: 600;
}
.audition-show .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sunbeam-gold); }
.audition.golden .audition-show {
  background: var(--sunbeam-gold);
  color: var(--swamp-black);
  border-color: var(--sunbeam-gold);
}
.audition.golden .audition-show .dot { background: var(--swamp-black); }
.audition-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(243,233,214,0.94);
  color: var(--swamp-black);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.audition-play svg { width: 20px; height: 20px; margin-left: 3px; }
.audition:hover .audition-play { background: var(--sunbeam-gold); transform: translate(-50%, -50%) scale(1.08); }
.audition-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.audition-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}
.audition-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.audition-watch {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunbeam-gold);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.audition-watch svg { transition: transform .2s ease; }
.audition:hover .audition-watch svg { transform: translateX(3px); }
