/* ===== Variables ===== */
:root {
  --cream: #f6f4e8;
  --cream-dark: #f7ecd8;
  --gold: #f5c071;
  --gold-dim: #c49a5a;
  --dark: #1a1610;
  --dark-mid: #2a2318;
  --dark-surface: #332b20;
  --text-light: #f6f4e8;
  --text-muted: #b8a98e;
  --text-dark: #1a1610;
  --text-dark-muted: #6a5a49;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===== Typography ===== */
h1, h2, h3 {
  margin: 0;
  line-height: 1;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* ===== Top Banner ===== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-banner--transparent {
  background: transparent;
  border-bottom: none;
}

.top-banner-inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2.5rem;
}

.banner-logo {
  font-family: "Tanker", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
}

.banner-logo:hover {
  color: var(--gold);
}

.banner-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
}

/* ===== Sub-page main offset for fixed nav ===== */
main:not(.home-main) {
  padding-top: 4rem;
}

/* ===== Home Main ===== */
.home-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  z-index: 0;
}

.hero-bg-slide--active {
  opacity: 1;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(177.78vh, 100vw);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Tagline – centered in hero */
.hero-tagline {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  max-width: 40ch;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-btn {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn--filled {
  background: #fff;
  color: var(--dark);
  text-shadow: none;
}

.hero-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero-btn--filled:hover {
  opacity: 0.85;
}

.hero-btn--outline:hover {
  background: #fff;
  color: var(--dark);
  text-shadow: none;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

/* ===== Mono Label ===== */
.mono-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.mono-label-light {
  color: var(--text-muted);
}

/* ===== Section Titles ===== */
.section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.section-title-light {
  color: var(--text-light);
}

/* ===== About ===== */
.about-intro {
  padding-bottom: 4rem;
}

.about-content {
  max-width: 680px;
}

.body-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
}

/* ===== About Team ===== */
.about-team-section {
  padding-top: 0;
}

.about-team-member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(26, 22, 16, 0.08);
}

.about-team-member-dark {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.about-team-member:last-child {
  padding-bottom: 0;
}

.about-team-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-team-name-light {
  color: var(--text-light);
}

.about-team-role {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

/* ===== Filters ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== Artist Grid ===== */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.artist-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--dark-mid);
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.artist-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.artist-card:hover .artist-card-img {
  transform: scale(1.03);
}

/* Gradient overlay for text readability */
.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Placeholder for artists without photos */
.artist-card--placeholder {
  background: linear-gradient(145deg, var(--dark-mid), var(--dark-surface));
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-genre {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.artist-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text-light);
  line-height: 1.1;
}

.card-meta {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.card-desc {
  display: none;
}

.card-footer {
  display: none;
}

.card-rate {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-accent {
  display: none;
}

/* ===== Buttons ===== */
.btn-outline {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  background: transparent;
  cursor: pointer;
  transition: all 180ms ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(245, 192, 113, 0.1);
}

.btn-primary {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 180ms ease;
}

.btn-primary:hover {
  background: #f8cc86;
  transform: translateY(-1px);
}

/* ===== Stats ===== */
.section-stats {
  border-bottom: 1px solid rgba(26, 22, 16, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  border: 1px solid rgba(26, 22, 16, 0.12);
  border-radius: 10px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.4);
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark-muted);
}

/* ===== Testimonials ===== */
.section-testimonials {
  text-align: center;
  display: flex;
  align-items: center;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-text {
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  color: var(--cream-dark);
  margin-bottom: 1rem;
}

.testimonial-cite {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.section-contact {
  border-top: 1px solid rgba(26, 22, 16, 0.1);
}

.contact-desc {
  max-width: 55ch;
  margin-bottom: 2rem;
}

/* ===== Contact Page ===== */
.contact-hero-section {
  padding-bottom: 2rem;
}

.contact-hero-accent {
  color: var(--gold);
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.contact-detail-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
}

.contact-detail-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-detail-value:hover {
  color: var(--gold);
}

.contact-form-section {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form-intro {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.4;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 760px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-detail-label {
    min-width: auto;
  }
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.footer-wrap p {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: "Outfit", sans-serif !important;
  font-style: italic;
}

/* ===== Page Header (sub-pages) ===== */
.page-header {
  padding: 1.25rem 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 22, 16, 0.08);
}

.page-header-dark {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-link {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.back-link:hover {
  color: var(--gold);
}

.back-link-light {
  color: var(--text-muted);
}

.back-link-light:hover {
  color: var(--gold);
}

.header-brand {
  font-family: "Tanker", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 200ms ease;
}

.header-brand:hover {
  color: var(--gold);
}

.header-brand-light {
  color: var(--text-light);
}

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--cream);
}

.page-hero-dark {
  background: var(--dark);
}

.page-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-dark);
}

.page-title-light {
  color: var(--text-light);
}

/* ===== Dark body (for full-dark pages) ===== */
.body-dark {
  background: var(--dark);
}

/* ===== Testimonials Page (Sleek) ===== */
.section-testimonials-page {
  padding: 3rem 0 5rem;
}

.testimonials-stack {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-item {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(184, 169, 142, 0.15);
}

.testimonial-item:first-child {
  padding-top: 0;
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-item-header {
  margin-bottom: 2rem;
}

.testimonial-item-name {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.testimonial-item-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

.testimonial-item-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-item-quote p {
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.88;
}

.testimonial-item-event {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-item-event span {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.testimonial-star {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .testimonial-item {
    padding: 2.5rem 0;
  }

  .testimonial-item-name {
    font-size: 1.35rem;
  }

  .testimonial-item-quote p {
    font-size: 1.15rem;
  }
}

/* ===== Artist Card Link ===== */
.artist-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.artist-card-link .artist-card {
  width: 100%;
}

/* ===== Artist Profile Page ===== */
.artist-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  min-height: calc(100vh - 200px);
}

.artist-profile-text {
  padding-top: 2rem;
}

.artist-profile-text .mono-label {
  margin-bottom: 1rem;
}

.artist-profile-text .page-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.artist-profile-tagline {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.artist-profile-body {
  max-width: none;
}

.body-text-light {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-enquire {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-enquire:hover {
  background: rgba(245, 192, 113, 0.1);
}

.video-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

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

/* ===== Events Grid ===== */
.events-subtitle {
  max-width: 620px;
  margin-top: 1.5rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.event-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.03);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  z-index: 1;
}

.event-card-overlay h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text-light);
  line-height: 1.1;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: all 300ms ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav-back {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-light);
  font-size: 1.6rem;
  line-height: 1;
  transition: color 200ms ease;
}

.mobile-nav-back:hover {
  color: var(--gold);
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}

.mobile-nav-overlay a:hover {
  color: var(--gold);
}

/* ===== Artist Hero Image ===== */
.artist-hero-img-wrap {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  max-width: none;
}

.artist-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .hamburger {
    display: block;
  }

  .banner-nav {
    display: none;
  }

  .top-banner-inner {
    justify-content: space-between;
    padding: 0.75rem 0;
  }

  .hero-tagline {
    max-width: 24ch;
  }

  .section {
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .artist-card h3 {
    font-size: 1.2rem;
  }

  .card-genre {
    font-size: 0.6rem;
  }

  .artist-profile {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .artist-profile-text {
    padding-top: 0;
    order: 2;
  }

  .artist-hero-img-wrap {
    order: 1;
  }

  .artist-hero-img {
    height: auto;
  }

  .artist-profile-text .page-title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card-overlay h3 {
    font-size: 1.3rem;
  }

  .about-team-member {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-team-photo {
    max-width: 240px;
  }
}
