/* ============================================================
   SEANINSOUND.COM — STYLE.CSS
   Design: Dark music venue, poster energy, bold typography
   ============================================================ */

/* ------------------------------------------------------------
   GOOGLE FONTS
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Francois+One&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Cardo', Georgia, serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #F307B0;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   STICKY NAV
   ------------------------------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 20, 147, 0.15);
  transition: transform 0.25s ease;
  will-change: transform;
}

.site-nav.nav--hidden {
  transform: translateY(-100%);
}

.site-nav__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.site-nav__logo {
  font-family: 'Francois One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #F307B0;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav__logo:hover {
  opacity: 0.75;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.site-nav__links a:hover {
  color: #F307B0;
  opacity: 1;
}

.site-nav__cta {
  color: #F307B0 !important;
  border: 1px solid rgba(255, 20, 147, 0.5);
  padding: 6px 14px;
}

.site-nav__cta:hover {
  background: #F307B0;
  color: #0A0A0A !important;
}

.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.site-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #CCCCCC;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .site-nav__burger {
    display: flex;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 20, 147, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
  }

  .site-nav__links.nav--open {
    display: flex;
  }

  .site-nav__links li {
    width: 100%;
  }

  .site-nav__links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .site-nav__cta {
    border: none;
    margin: 0;
    padding: 14px 24px !important;
  }
}

/* ------------------------------------------------------------
   LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------
   SECTION RULES — invisible, alternating backgrounds do the work
   ------------------------------------------------------------ */
.section-rule {
  display: none;
}

/* ------------------------------------------------------------
   SECTION BASE STYLES
   ------------------------------------------------------------ */
.section {
  padding: 100px 0;
}

.section--alt {
  background-color: #0A0A0A;
}

.section--dark {
  background-color: #000000;
}

.section--manifesto {
  background-color: #000000;
}

/* ------------------------------------------------------------
   SECTION HEADINGS
   ------------------------------------------------------------ */
.section-heading {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(2rem, 6vw, 2.5rem);
  color: #F307B0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-subheading {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: #F307B0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  margin-top: 48px;
}

/* ------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(160deg, #111 0%, #0A0A0A 60%);
  padding: 80px 0 72px;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__photo-wrap {
  margin-bottom: 28px;
  position: relative;
}

.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.15) 0%, transparent 70%);
  z-index: 0;
}

.hero__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 3px #0A0A0A,
    0 0 0 5px rgba(255, 20, 147, 0.7),
    0 0 40px rgba(255, 20, 147, 0.2);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__photo-credit {
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 10px;
}

.hero__name {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(3rem, 12vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Cardo', Georgia, serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #CCCCCC;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__quote {
  font-family: 'Francois One', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 2.75rem);
  color: #F307B0;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.2;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero__link-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Francois One', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: transparent;
  border: 2px solid #F307B0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.hero__link-btn:hover {
  background: #F307B0;
  color: #0A0A0A;
  opacity: 1;
  transform: scale(1.02);
}

.hero__link-btn--primary {
  background: #F307B0;
  color: #0A0A0A;
}

.hero__link-btn--primary:hover {
  background: transparent;
  color: #F307B0;
}

.hero__socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #CCCCCC;
  transition: color 0.15s ease;
}

.hero__social-link:hover {
  color: #F307B0;
  opacity: 1;
}

.hero__social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero__scroll-hint {
  display: inline-block;
  color: #F307B0;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-hint:hover {
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ------------------------------------------------------------
   STATS BAND
   ------------------------------------------------------------ */
.stats {
  background-color: #111111;
  padding: 56px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stats__item {
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(255, 20, 147, 0.1);
}

@media (min-width: 768px) {
  .stats__item {
    border-right: 1px solid rgba(255, 20, 147, 0.1);
    border-top: none;
    border-bottom: none;
    border-left: none;
  }
  .stats__item:first-child {
    border-left: 1px solid rgba(255, 20, 147, 0.1);
  }
}

.stats__number {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(3.5rem, 10vw, 4rem);
  white-space: nowrap;
  letter-spacing: -0.02em;
  color: #F307B0;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .stats__number {
    font-size: 64px;
  }
}

.stats__label {
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #AAAAAA;
  display: block;
}

/* ------------------------------------------------------------
   BIO
   ------------------------------------------------------------ */
.bio__body {
  max-width: 740px;
}

.bio__body p {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  line-height: 1.8;
  color: #CCCCCC;
  margin-bottom: 1.5em;
}

.bio__body p:first-child {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  color: #FFFFFF;
  line-height: 1.65;
}

.bio__body p:last-child {
  margin-bottom: 0;
}


.bio__statement {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: #F307B0;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.bio__body strong {
  color: #F307B0;
  font-weight: 700;
}

/* ------------------------------------------------------------
   FEATURED CLIENT — THE ANCHORESS
   ------------------------------------------------------------ */
.featured-client__wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .featured-client__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.featured-client__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.3);
}

.featured-client__name-block {
  text-align: left;
}

.featured-client__name {
  font-family: 'Francois One', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.featured-client__aka {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 12px;
}

.featured-client__link {
  font-family: 'Francois One', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F307B0;
}

.featured-client__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 20, 147, 0.1);
}

@media (max-width: 600px) {
  .featured-client__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-client__stat-item {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255, 20, 147, 0.1);
}

.featured-client__stat-item:last-child {
  border-right: none;
}

.featured-client__stat-number {
  display: block;
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #F307B0;
  margin-bottom: 6px;
  line-height: 1;
}

.featured-client__stat-label {
  display: block;
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  color: #AAAAAA;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.featured-client__stat-label em {
  font-style: italic;
  color: #CCCCCC;
  text-transform: none;
}

.featured-client__sub-label {
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #AAAAAA;
  margin-bottom: 12px;
}

.featured-client__accolades {
  margin-bottom: 28px;
}

.featured-client__accolade-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.featured-client__accolade-list li {
  font-size: 1rem;
  color: #CCCCCC;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.featured-client__accolade-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F307B0;
  font-size: 0.8rem;
}

.featured-client__collaborators {
  margin-bottom: 28px;
}

.featured-client__collab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collab-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 20, 147, 0.25);
  color: #CCCCCC;
  padding: 6px 14px;
  font-family: 'Cardo', Georgia, serif;
  font-size: 0.9rem;
}

.featured-client__quotes {
  margin-bottom: 28px;
}

.featured-client__quote-item {
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 20, 147, 0.3);
}

.featured-client__quote-text {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.5;
}

.featured-client__quote-source {
  font-size: 0.8rem;
  color: #AAAAAA;
  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.featured-client__teaser {
  padding: 20px 24px;
  background: rgba(255, 20, 147, 0.04);
  border-left: 4px solid #F307B0;
}

.featured-client__teaser p {
  font-size: 1rem;
  line-height: 1.7;
  color: #CCCCCC;
  margin: 0;
}

.featured-client__teaser strong {
  color: #F307B0;
}

/* ------------------------------------------------------------
   LOGOS STRIP
   ------------------------------------------------------------ */
.logos-strip {
  padding: 48px 0;
}

.logos-strip__label {
  font-family: 'Francois One', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
  margin-bottom: 24px;
  text-align: center;
}

.logos-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
}

.logo-item {
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CCCCCC;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
}

.logo-item:hover {
  opacity: 1;
  border-color: rgba(255,20,147,0.5);
}

/* ------------------------------------------------------------
   PRESS QUOTES SECTION
   ------------------------------------------------------------ */
#press-quotes .press-quote {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#press-quotes .press-quote:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#press-quotes .press-quote__text {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2rem);
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 16px;
}

#press-quotes .press-quote__citation {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  font-style: normal;
  font-family: 'Francois One', sans-serif;
}

/* ------------------------------------------------------------
   TICKER
   ------------------------------------------------------------ */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 14px 0;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; overflow-x: auto; }
}

.ticker__inner {
  display: inline-block;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F307B0;
  padding-right: 0;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   WHY MUSIC MATTERS
   ------------------------------------------------------------ */
.argument__body {
  max-width: 720px;
}

.argument__body p {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.85;
  color: #CCCCCC;
  margin-bottom: 1.6em;
}

.argument__body p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   NOW SECTION
   ------------------------------------------------------------ */
.now__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 760px;
}

.now__item {
  border-left: 3px solid #F307B0;
  padding: 20px 20px 20px 24px;
  background: #111111;
}

.now__item-title {
  font-family: 'Francois One', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F307B0;
  margin-bottom: 8px;
}

.now__item-desc {
  font-size: 1.05rem;
  color: #CCCCCC;
  line-height: 1.75;
}

.now__item-desc a {
  color: #F307B0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 20, 147, 0.4);
}

/* ------------------------------------------------------------
   TRACK RECORD SECTION
   ------------------------------------------------------------ */
.track-record__intro-quote {
  font-style: italic;
  color: #888;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.track-record__body {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 720px;
}

.track-record__inset {
  border-left: 4px solid #F307B0;
  padding: 16px 24px;
  font-style: italic;
  color: #CCCCCC;
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 640px;
  background: rgba(255, 20, 147, 0.04);
}

.track-card {
  border-left: 4px solid #F307B0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 20px;
  transition: filter 0.2s ease;
}

.track-card__title {
  font-family: 'Francois One', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.track-card__desc {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.75;
}

.track-card__desc a {
  color: #F307B0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 20, 147, 0.4);
}

.artist-name {
  color: #F307B0;
  font-weight: 700;
}

/* ------------------------------------------------------------
   RELEASES / DISCOGRAPHY
   ------------------------------------------------------------ */
.releases__intro {
  font-size: 1.05rem;
  color: #CCCCCC;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 40px;
}

.releases__intro a {
  color: #F307B0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 20, 147, 0.4);
}

.albums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 800px) {
  .albums-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.release-card {
  border-top: 2px solid rgba(255, 20, 147, 0.3);
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: box-shadow 0.2s ease;
}

.release-card:hover {
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

.release-card__artist {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #F307B0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.release-card__title {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.release-card__meta {
  font-family: 'Francois One', sans-serif;
  font-size: 0.78rem;
  color: #AAAAAA;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.release-card__note {
  font-size: 0.9rem;
  color: #CCCCCC;
  font-style: italic;
  margin-top: 4px;
}

/* Singles toggle button */
.toggle-singles-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F307B0;
  background: transparent;
  border: 2px solid #F307B0;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 0.15s ease, color 0.15s ease;
}

.toggle-singles-btn:hover {
  background: #F307B0;
  color: #0A0A0A;
}

.toggle-arrow {
  display: inline-block;
}

.discog-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
}

.discog-list--hidden {
  display: none;
}

.discog-list__item {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.discog-list__item .year {
  color: #F307B0;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

.discog-list__item .note {
  color: #CCCCCC;
  font-style: italic;
  font-size: 0.82rem;
}

/* Sub-label sections */
.sub-label {
  margin-top: 56px;
}

.sub-label__heading {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #F307B0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.sub-label__desc {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 20px;
}

.sub-label__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.sub-label__item {
  font-size: 1rem;
  color: #CCCCCC;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sub-label__item .year {
  color: #F307B0;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  margin-right: 6px;
}

.sub-label__item .note {
  color: #CCCCCC;
  font-style: italic;
  font-size: 0.82rem;
}

/* What Happened Next */
.what-next {
  margin-top: 64px;
}

.what-next__heading {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: #F307B0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.what-next__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .what-next__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.what-next__card {
  background: rgba(255, 255, 255, 0.02);
  border-top: 2px solid rgba(255, 20, 147, 0.3);
  padding: 20px;
  position: relative;
  transition: padding-right 0.2s ease;
}

.what-next__card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #F307B0;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.what-next__card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.what-next__artist {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #F307B0;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.what-next__release {
  font-style: italic;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 8px;
}

.what-next__trajectory {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   TIMELINE — A QUARTER CENTURY
   ------------------------------------------------------------ */
.timeline__era {
  margin-bottom: 56px;
}

.timeline__era-heading {
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  border-left: 6px solid #F307B0;
  background: rgba(255, 20, 147, 0.06);
  margin-bottom: 28px;
}

.timeline__entries {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 8px;
}

.timeline__entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: filter 0.2s ease, opacity 0.6s ease, transform 0.6s ease;
}

.timeline__entry:hover {
  filter: brightness(1.15);
}

.timeline__dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
  flex-shrink: 0;
  width: 16px;
}

.timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F307B0;
  flex-shrink: 0;
}

.timeline__dot--major {
  width: 14px;
  height: 14px;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 20, 147, 0); }
}

.timeline__content {
  flex: 1;
  padding-bottom: 4px;
}

.timeline__year {
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  color: #F307B0;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.timeline__entry-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 4px;
}

.timeline__entry-desc {
  font-size: 0.95rem;
  color: #CCCCCC;
  line-height: 1.6;
}

/* Timeline tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  font-family: 'Francois One', sans-serif;
}

.tag--publication { background: #F307B0; color: #fff; }
.tag--label       { background: #9B1060; color: #fff; }
.tag--live        { background: #FF69B4; color: #111; }
.tag--media       { background: #555555; color: #ddd; }
.tag--management  { background: #2a2a2a; color: #aaa; border: 1px solid #555; }
.tag--political   { background: #CC0033; color: #fff; }
.tag--network     { background: #F307B0; color: #fff; }

.timeline__legend {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.timeline__legend-title {
  font-family: 'Francois One', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #AAAAAA;
  margin-bottom: 12px;
}

.timeline__legend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Timeline is a vertical stack of collapsible eras on all screen sizes */

/* ------------------------------------------------------------
   TIMELINE INTRO & COLLAPSIBLE ERAS
   ------------------------------------------------------------ */
.timeline__intro {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #CCCCCC;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 40px;
}

.timeline__era-toggle {
  width: 100%;
  text-align: left;
  background: rgba(255, 20, 147, 0.06);
  border: none;
  border-left: 6px solid #F307B0;
  padding: 14px 20px;
  font-family: 'Francois One', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  transition: background 0.2s ease;
}

.timeline__era-toggle:hover {
  background: rgba(255, 20, 147, 0.12);
}

.timeline__era-toggle[aria-expanded="true"] {
  background: rgba(255, 20, 147, 0.1);
  margin-bottom: 0;
}

.timeline__era-chevron {
  font-size: 1.2rem;
  color: #F307B0;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.timeline__era-toggle[aria-expanded="true"] .timeline__era-chevron {
  transform: rotate(180deg);
}

.timeline__era-body {
  padding-top: 20px;
  padding-bottom: 8px;
}

/* ------------------------------------------------------------
   ACCORDION TOGGLE (Releases, Recognition)
   ------------------------------------------------------------ */
.section-teaser {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #CCCCCC;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 24px;
}

.accordion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F307B0;
  background: transparent;
  border: 2px solid #F307B0;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background 0.15s ease, color 0.15s ease;
}

.accordion-toggle:hover {
  background: #F307B0;
  color: #0A0A0A;
}

.accordion-toggle:hover .accordion-chevron {
  color: #0A0A0A;
}

.accordion-chevron {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  margin-top: 0;
}

/* ------------------------------------------------------------
   BEYOND MUSIC GRID
   ------------------------------------------------------------ */
.beyond-music__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .beyond-music__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.beyond-card {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 20, 147, 0.2);
  padding: 24px;
}

.beyond-card__label {
  font-family: 'Francois One', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F307B0;
  margin-bottom: 10px;
}

.beyond-card__desc {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   WORK WITH ME
   ------------------------------------------------------------ */
.work-with-me__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .work-with-me__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .work-with-me__card:nth-child(1) { grid-column: span 3; }
  .work-with-me__card:nth-child(2) { grid-column: span 3; }
  .work-with-me__card:nth-child(3) { grid-column: span 3; }
  .work-with-me__card:nth-child(4) { grid-column: span 3; }
}

.work-with-me__card {
  display: flex;
  flex-direction: column;
}

.work-with-me__card .beyond-card__desc {
  flex: 1;
  margin-bottom: 20px;
}

.work-with-me__cta {
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   RECOGNITION SECTION
   ------------------------------------------------------------ */
.recognition__quotes {
  margin-bottom: 64px;
}

.press-quote {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.press-quote:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.press-quote__text {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 16px;
}

.press-quote__citation {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  font-style: normal;
  font-family: 'Francois One', sans-serif;
}

.recognition__awards {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.recognition__sub {
  font-family: 'Francois One', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #AAAAAA;
  margin-bottom: 16px;
  margin-top: 40px;
}

.recognition__sub:first-child {
  margin-top: 0;
}

.recognition__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 640px;
  margin-bottom: 8px;
}

.recognition__list li {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.recognition__list li a {
  color: #F307B0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 20, 147, 0.4);
}

.recognition__text {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.75;
  max-width: 640px;
}

/* ------------------------------------------------------------
   DiS IS... MANIFESTO
   ------------------------------------------------------------ */
.dis-is {
  padding: 96px 0;
}

#manifesto {
  position: relative;
  overflow: hidden;
}

#manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,20,147,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,20,147,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.dis-is__inner {
  max-width: 720px;
}

.dis-is__text {
  font-family: 'Cardo', Georgia, serif;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  line-height: 1.9;
  color: #FFFFFF;
}

.dis-is__text p {
  margin-bottom: 2.5em;
}

.dis-is__text p:last-child {
  margin-bottom: 0;
}

/* Pink phrase spans */
.pink-phrase {
  color: #F307B0;
}

/* ------------------------------------------------------------
   FEATURED EPISODE
   ------------------------------------------------------------ */
.section--featured-episode {
  padding-top: 0;
}

.featured-episode__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  opacity: 0.5;
}

.featured-episode__caption {
  font-size: 13px;
  margin-top: 10px;
  opacity: 0.6;
}

/* ------------------------------------------------------------
   WATCH SECTION
   ------------------------------------------------------------ */
.section--watch {
  background-color: #111111;
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .watch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.watch-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-label {
  font-family: 'Cardo', Georgia, serif;
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.5;
}

.watch-more {
  margin-top: 8px;
}

.watch-more a {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #F307B0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 20, 147, 0.4);
}

/* ------------------------------------------------------------
   CLOSING QUOTE
   ------------------------------------------------------------ */
.closing-quote {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.quote-photo {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.quote-photo__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.quote-photo .closing-quote__text {
  margin: 0 0 16px;
}

@media (max-width: 680px) {
  .quote-photo {
    grid-template-columns: 1fr;
  }
  .quote-photo__image {
    display: none;
  }
}

.closing-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: #F307B0;
  margin: 0 auto 40px;
}

.closing-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: #F307B0;
  margin: 40px auto 0;
}

.closing-quote__text {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.closing-quote__attr {
  font-family: 'Francois One', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F307B0;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: #111111;
  padding: 56px 0;
  text-align: center;
}

.footer__email {
  font-family: 'Francois One', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F307B0;
  margin-bottom: 24px;
  display: inline-block;
}

.footer__email:hover {
  opacity: 0.75;
}

.footer__socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #888;
  transition: color 0.15s ease;
}

.footer__social-link:hover {
  color: #F307B0;
  opacity: 1;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__credit {
  font-family: 'Francois One', sans-serif;
  font-size: 0.72rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   UTILITY
   ------------------------------------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   SCROLL ANIMATIONS (respects prefers-reduced-motion)
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .timeline__entry,
  .now__item,
  .track-card,
  .release-card,
  .beyond-card,
  .what-next__card,
  .press-quote,
  .watch-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .timeline__entry {
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.2s ease;
  }

  .visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline__entry.visible:hover {
    filter: brightness(1.15);
  }
}

/* ------------------------------------------------------------
   NOW SECTION SCREENSHOTS
   ------------------------------------------------------------ */
.now__screenshot-link {
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 20, 147, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.now__screenshot-link:hover {
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.1);
  opacity: 1;
}

.now__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.now__learn-more {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F307B0;
  transition: opacity 0.15s ease;
}

.now__learn-more:hover {
  opacity: 0.75;
}

/* ------------------------------------------------------------
   PODCAST GUESTS
   ------------------------------------------------------------ */
.podcast-guests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.podcast-guests img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ------------------------------------------------------------
   PODCAST EMBED
   ------------------------------------------------------------ */
.podcast-embed {
  margin-top: 20px;
  background: #111;
  border-radius: 12px;
  padding: 16px;
}

.podcast-diversity {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #1e1e1e;
}

/* ------------------------------------------------------------
   TIMELINE SCROLL HINT (removed)
   ------------------------------------------------------------ */
.timeline__scroll-hint {
  display: none;
  font-family: 'Francois One', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .timeline__scroll-hint {
    display: block;
  }
}

@media (max-width: 767px) {
  .timeline__scroll-hint {
    display: none;
  }
}

/* ------------------------------------------------------------
   MOBILE FONT MINIMUMS
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .stats__label {
    font-size: 0.8rem;
  }

  .tag {
    font-size: 0.72rem;
  }

  .release-card__meta,
  .featured-client__stat-label,
  .timeline__legend-title,
  .footer__credit {
    font-size: 0.78rem;
  }
}
