/* ===== TAQUIRAH — Official Site Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #131313;
  --bg-card-hover: #1a1a1a;
  --text: #f5f0eb;
  --text-muted: #8a8580;
  --accent: #c41e3a;
  --accent-hover: #e0263f;
  --gold: #c9a560;
  --gold-dim: #a08040;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- UTILITY ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.section-label,
.section__label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title,
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em,
.section__title em {
  font-style: italic;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--bg); }
.btn span { position: relative; z-index: 1; }

.btn--accent {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent);
}
.btn--accent::before { background: var(--accent-hover); }
.btn--accent:hover { color: #fff; }

.btn--sm { padding: .6rem 1.4rem; font-size: .7rem; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--text);
}
.nav__logo strong { font-weight: 600; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Mobile hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--text); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.15) 0%,
    rgba(10,10,10,.3) 40%,
    rgba(10,10,10,.85) 75%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.hero__tagline {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero__tagline span {
  color: var(--gold);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero (shorter) */
.hero--page {
  min-height: 35vh;
  padding: 0 0 2rem;
}
.hero--page + .section,
.hero--page + section {
  padding-top: 3rem;
}
.hero--page .hero__name {
  font-size: clamp(2.5rem, 8vw, 6rem);
}

@media (max-width: 600px) {
  .hero { padding-bottom: 4rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; justify-content: center; }
}
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 0;
}
.section--dark { background: #080808; }
.section--border-top { border-top: 1px solid rgba(255,255,255,.06); }

.section__header {
  margin-bottom: 3rem;
}
.section__header--center { text-align: center; }
.section__header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---------- FEATURED MUSIC ---------- */
.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.music-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}
.music-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.music-card__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
}
.music-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.music-card:hover .music-card__img img { transform: scale(1.05); }
.music-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.music-card:hover .music-card__play { opacity: 1; }
.music-card__play svg { width: 48px; height: 48px; fill: #fff; }

.music-card__body {
  padding: 1.25rem;
}
.music-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.music-card__year {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.music-card__links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.music-card__links a {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  transition: var(--transition);
}
.music-card__links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,165,96,.2);
  pointer-events: none;
}
.about-preview__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.about-preview__text p:first-of-type {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}

@media (max-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-preview__img { max-height: 500px; }
}

/* ---------- EVENTS ---------- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  transition: var(--transition);
}
.event-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,165,96,.2);
}
.event-card__date {
  text-align: center;
  min-width: 70px;
}
.event-card__month {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-card__day {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.event-card__info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.event-card__info p {
  font-size: .85rem;
  color: var(--text-muted);
}
.event-card__info .event-card__time {
  font-size: .75rem;
  color: var(--gold-dim);
  margin-top: .25rem;
}

.event-card--with-image {
  grid-template-columns: 160px 1fr auto;
}
.event-card__image {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 2px;
}
.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .event-card .btn { justify-content: center; width: 100%; }
  .event-card--with-image { grid-template-columns: 1fr; }
  .event-card__image { width: 100%; height: 200px; }
}

/* ---------- PRESS ---------- */
.press-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.press-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  transition: var(--transition);
}
.press-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,165,96,.2);
}
.press-item__info {
  flex: 1;
}
.press-item__pub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.press-item__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}
.press-item__date {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .2rem;
}
.press-item__arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.press-item:hover .press-item__arrow {
  color: var(--gold);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .press-item { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ---------- ACTING ---------- */
.acting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.acting-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}
.acting-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.acting-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.acting-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acting-card__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,.4);
  opacity: 0;
  transition: opacity var(--transition);
}
.acting-card:hover .acting-card__play-overlay { opacity: 1; }
.acting-card__play-overlay svg { width: 56px; height: 56px; fill: #fff; opacity: .9; }
.acting-card__body { padding: 1.25rem; }
.acting-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.acting-card__role {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---------- MERCH BANNER ---------- */
.merch-banner {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0e 0%, #0a0a0a 50%, #0e0a1a 100%);
}
.merch-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(196,30,58,.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(201,165,96,.06) 0%, transparent 50%);
  animation: merchGlow 8s ease-in-out infinite alternate;
}
@keyframes merchGlow {
  from { transform: translateX(-5%); }
  to { transform: translateX(5%); }
}
.merch-banner__content {
  position: relative;
  z-index: 1;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- SOCIAL ICONS ---------- */
.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: .85rem;
  transition: var(--transition);
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.socials--lg a { width: 48px; height: 48px; font-size: 1rem; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.footer__col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: .25rem 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: .75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; }
}

/* ---------- DISCOGRAPHY TABLE ---------- */
.disco-table {
  width: 100%;
  border-collapse: collapse;
}
.disco-table thead th {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.disco-table tbody tr {
  transition: background var(--transition);
}
.disco-table tbody tr:hover {
  background: var(--bg-card);
}
.disco-table td {
  padding: 1rem;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.disco-table .type-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 2px;
}
.type-badge--album { background: rgba(196,30,58,.2); color: var(--accent); }
.type-badge--single { background: rgba(201,165,96,.15); color: var(--gold); }
.type-badge--ep { background: rgba(100,180,100,.15); color: #8fc98f; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }

/* ---------- IMAGE GALLERY (ABOUT PAGE) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 2px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ---------- STREAMING BADGES ---------- */
.streaming-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  transition: var(--transition);
}
.stream-badge:hover {
  border-color: var(--gold);
  background: rgba(201,165,96,.08);
}
.stream-badge svg { width: 16px; height: 16px; }

/* ---------- PAGE-SPECIFIC ---------- */
.bio-content {
  max-width: 720px;
}
.bio-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.bio-content p:first-child {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
}
.bio-content .quote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
}

/* Credits list for acting */
.credits-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.credit-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  align-items: center;
}
.credit-item__title {
  font-family: var(--serif);
  font-size: 1.05rem;
}
.credit-item__role {
  font-size: .85rem;
  color: var(--text-muted);
}
.credit-item__year {
  font-size: .8rem;
  color: var(--gold-dim);
}
@media (max-width: 600px) {
  .credit-item { grid-template-columns: 1fr; gap: .25rem; }
}

/* ---------- LOADING / PAGE TRANSITION ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

/* Spotify embed */
.spotify-embed {
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}
.spotify-embed iframe {
  width: 100%;
  border: none;
}

/* Video embed */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ========== ADDITIONAL RULES (agent-generated class compat) ========== */

/* Hero with inline background-image */
.hero[style*="background-image"] {
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.hero__title { /* alias for hero__name */
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.accent { color: var(--gold); }

/* Music section */
.music-section, .events-section, .press-section, .socials-section {
  padding: 6rem 0;
}
.music-section { background: #080808; }
.events-section { }
.press-section { background: #080808; }
.socials-section { padding: 5rem 0; border-top: 1px solid rgba(255,255,255,.06); }

/* Music card with gradient image + initial */
.music-card__image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.music-card__initial {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,.25);
  line-height: 1;
}
.music-card__subtitle {
  font-size: .85rem;
  font-weight: 300;
  color: var(--text-muted);
}
.music-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 1.25rem .25rem;
}
.music-card__year {
  font-size: .75rem;
  color: var(--text-muted);
  padding: 0 1.25rem .75rem;
}
.music-card__links {
  display: flex;
  gap: .75rem;
  padding: 0 1.25rem 1.25rem;
}
.music-card__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text-muted);
}
.music-card__links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Section CTA link */
.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.link-arrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.link-arrow:hover {
  color: var(--gold-dim);
  gap: .75rem;
}

/* About preview (agent variants) */
.about-preview { padding: 6rem 0; }
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 2px;
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,165,96,.2);
  pointer-events: none;
}
.about-preview__content {}
.about-preview__intro {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-preview__text,
.about-preview__content p:not(.about-preview__intro) {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-preview__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-preview__image { max-height: 500px; }
}

/* Events grid (homepage) */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card__content {}
.event-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.event-card__venue {
  font-size: .9rem;
  color: var(--text);
}
.event-card__address {
  font-size: .85rem;
  color: var(--text-muted);
}
.event-card__time {
  font-size: .75rem;
  color: var(--gold-dim);
  margin: .35rem 0 .75rem;
}
.event-card .btn { margin-top: .5rem; }

/* Press grid (homepage) */
.press-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.press-grid .press-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  transition: var(--transition);
  text-decoration: none;
}
.press-grid .press-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,165,96,.2);
}
.press-grid .press-item h3 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 140px;
}
.press-grid .press-item p {
  flex: 1;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.press-item__year {
  font-size: .75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .press-grid .press-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .press-grid .press-item h3 { min-width: auto; }
}

/* Social icons (agent used social-icon class inside socials) */
.socials .social-icon,
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.socials--lg .social-icon,
.socials--lg a {
  width: 48px;
  height: 48px;
}
.socials .social-icon:hover,
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.socials .social-icon svg,
.socials a svg {
  width: 24px;
  height: 24px;
}

/* Merch banner (additional) */
.merch-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.merch-banner__description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* About page hero bg overlay */
.hero--page[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Social grid layout for contact page */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.social-grid a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .8rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  transition: var(--transition);
  color: var(--text-muted);
}
.social-grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Discography page - responsive table */
@media (max-width: 768px) {
  .disco-table { font-size: .85rem; }
  .disco-table th:nth-child(4),
  .disco-table td:nth-child(4) { display: none; }
}
@media (max-width: 500px) {
  .disco-table th:nth-child(3),
  .disco-table td:nth-child(3) { display: none; }
}

/* Ensure page hero overlay when using inline bg */
.hero--page .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.5) 40%,
    rgba(10,10,10,.9) 75%,
    rgba(10,10,10,1) 100%
  );
}

/* Previous events muted style */
.event-card--past {
  opacity: .6;
}
.event-card--past:hover { opacity: .8; }

/* Hero overlay auto-generated for pages using inline bg without overlay div */
.hero--page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.5) 40%,
    rgba(10,10,10,.88) 75%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}
.hero--page .hero__content { z-index: 2; }

/* Bio content section */
section.bio-content {
  padding: 5rem 0;
}
.bio-content__intro {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
section.bio-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
section.bio-content blockquote.quote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
}

/* Gallery grid wrapper */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
section.gallery { padding: 3rem 0 6rem; }
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}

/* Contact section */
.contact-section { padding: 6rem 0; }
.contact-grid__form { }
.contact-grid__info { }
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.contact-location {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Streaming badges for music page */
.streaming-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Events page sections */
.events-upcoming, .events-previous { padding: 4rem 0; }
.events-previous { border-top: 1px solid rgba(255,255,255,.06); }

/* Acting page sections */
.acting-featured, .acting-credits { padding: 4rem 0; }
.acting-credits { border-top: 1px solid rgba(255,255,255,.06); }

/* Music page sections */
.music-latest, .music-disco { padding: 4rem 0; }
.music-disco { border-top: 1px solid rgba(255,255,255,.06); }

/* Button in contact form */
.contact-form .btn { width: 100%; justify-content: center; }

/* Social section in about/contact */
.socials-section-page { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }

/* Fix: events with image on events page */
.event-card--with-image .event-card__image { border-radius: 2px; overflow: hidden; }
.event-card--with-image .event-card__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- MERCH CAROUSEL ---------- */
.merch-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.merch-carousel__track {
  display: flex;
  gap: 1.5rem;
  animation: merchScroll 30s linear infinite;
  width: max-content;
}
.merch-carousel__track:hover { animation-play-state: paused; }
@keyframes merchScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.merch-card {
  flex: 0 0 260px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.merch-card:hover {
  border-color: rgba(201,165,96,.3);
  transform: translateY(-4px);
}
.merch-card__img {
  width: 260px;
  height: 260px;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(255,255,255,.08);
  overflow: hidden;
}
.merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-card__body {
  padding: 1rem 1.25rem;
}
.merch-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}
.merch-card__price {
  font-size: .8rem;
  color: var(--gold);
  margin-top: .25rem;
}

/* ---------- MUSIC VIDEOS GRID ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.video-card .video-wrapper {
  margin: 0;
  padding-bottom: 56.25%;
}

/* ---------- SPACING OVERRIDES ---------- */
.section-cta--tight { margin-top: 1.5rem; margin-bottom: 0; }
.section--tight-top { padding-top: 3rem; }
.section--tight-bottom { padding-bottom: 3rem; }
.section--no-top { padding-top: 0; }

/* ---------- PRESS DATE COLUMN ---------- */
.press-item__date {
  font-size: .75rem;
  color: var(--text-muted);
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}

/* ---------- FOOTER (standardized compact) ---------- */
.footer__columns {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer__column h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__column a, .footer__column li a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: .25rem 0;
  transition: color var(--transition);
}
.footer__column a:hover, .footer__column li a:hover { color: var(--text); }
.footer__brand h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .05em;
}

/* About page: full-width bio layout */
.bio-full-width {
  max-width: 100%;
}
.bio-full-width .bio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.bio-full-width .bio-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.bio-full-width .bio-text p { margin-bottom: 1.5rem; }
.bio-full-width .bio-text p:first-child {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
}
.bio-full-width .bio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bio-full-width .bio-images .img-item {
  overflow: hidden;
  border-radius: 2px;
}
.bio-full-width .bio-images .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform .5s ease;
}
.bio-full-width .bio-images .img-item:hover img { transform: scale(1.03); }
.bio-full-width .bio-images .img-item--full {
  grid-column: span 2;
}
.bio-full-width .bio-images .img-item--full img {
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .bio-full-width .bio-layout { grid-template-columns: 1fr; }
}

/* Music videos section */
.music-videos { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
