/* ===== 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: center;
  padding: 1rem 0;
  gap: 2rem;
  position: relative;
}

.top-banner-inner .banner-nav {
  flex: 1;
}

.top-banner-inner .banner-nav:first-child {
  justify-content: flex-end;
}

.top-banner-inner .banner-nav:last-child {
  justify-content: flex-start;
}

.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);
}

/* ===== Contact CTA ===== */
.nav-cta {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  padding: 0.45rem 1.1rem;
  transition: all 200ms ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== 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-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  z-index: 1;
  transition: opacity 1.2s ease;
}

.hero-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  pointer-events: none;
}

/* Hide default play button overlays across browsers */
.hero-video-wrap video::-webkit-media-controls,
.hero-video-wrap video::-webkit-media-controls-enclosure,
.hero-video-wrap video::-webkit-media-controls-start-playback-button,
.hero-video-wrap video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

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

/* Hero Statement */
.hero-statement {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8vw;
  width: 100%;
}

.hero-statement-line {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3.5rem, 9.5vw, 9rem);
  line-height: 1.05;
  color: var(--text-light);
  display: block;
}

.hero-statement-line {
  align-self: center;
}

/* 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-content--centered {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-logo {
  font-family: "Tanker", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  letter-spacing: -0.01em;
  white-space: nowrap;
  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-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);
}

/* ===== Artists Hero ===== */
.artists-hero-section,
.events-hero-section {
  padding-top: 2rem;
}

/* ===== About ===== */
.about-intro {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

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

/* ===== About Section Headers ===== */
.about-section-headers {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.about-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
}

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

.about-section-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--gold);
  opacity: 0.4;
}

.about-section-title-mobile,
.about-section-divider-mobile {
  display: none;
}

/* ===== About Hero Grid (USPs + Team side-by-side on desktop) ===== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 0;
  align-items: start;
}

.about-team-side .about-team-row {
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
}

.about-team-side .about-team-card .about-team-photo {
  width: 160px;
}

/* ===== About USPs ===== */
.about-usps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-usp {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-usp-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.3;
  flex-shrink: 0;
}

.about-usp-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.about-usp-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.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-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-top: 2rem;
  padding-bottom: 2rem;
}

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

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

.contact-details-centered {
  align-items: center;
}

.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-section .page-title {
  margin-bottom: 2.5rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.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-details {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }

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

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

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

.footer-wrap {
  display: flex;
  justify-content: center;
  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: 0 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: 2rem 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 ===== */
.section:has(.artist-profile) {
  padding-bottom: 0;
}

.section:has(.artist-profile) + .section:has(.video-wrap) {
  padding-top: 1.5rem;
}

.section:has(.video-wrap) + .section:has(.video-wrap) {
  padding-top: 0;
}

.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);
}

/* ===== Nav collapse (mid-width) ===== */
@media (max-width: 860px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
  }
  .banner-nav,
  .nav-cta {
    display: none;
  }
  .top-banner-inner {
    justify-content: center;
    padding: 0.75rem 0;
  }
}

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

  .banner-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .top-banner-inner {
    justify-content: center;
    padding: 0.75rem 0;
    position: relative;
  }

  .hamburger {
    position: absolute;
    right: 0;
  }

  .hero-poster,
  .hero-video-wrap video {
    object-position: center center;
  }

  .hero-content--centered {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-logo {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .section {
    padding: 4rem 0;
  }

  .section.artists-hero-section,
  .section.events-hero-section,
  .section.section-testimonials-page,
  .section.contact-hero-section,
  .section.about-intro {
    padding-top: 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: 0;
    min-height: auto;
  }

  .artist-profile-text {
    display: contents;
  }

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

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

  .artist-profile-tagline {
    order: 3;
    margin-bottom: 2rem;
  }

  .artist-hero-img-wrap {
    order: 4;
    margin-bottom: 2.5rem;
  }

  .artist-profile-body {
    order: 5;
  }

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

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

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

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

  .hero-statement-line {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

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

/* ===== Events Page ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.events-card {
  text-decoration: none;
  display: block;
}

.events-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.events-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events-card:hover .events-card-img {
  transform: scale(1.05);
}

.events-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.events-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== Events Sub-pages ===== */
.events-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.events-sub-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.events-sub-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== Events grid mobile override (must come after base) ===== */
@media (max-width: 760px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .events-card-overlay {
    padding: 0.75rem;
  }

  .events-card-title {
    font-size: clamp(0.75rem, 3.8vw, 1.1rem);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


/* ===== Testimonial event description under name ===== */
.testimonial-item-event-desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
}

/* ===== About Team Card Layout ===== */
.about-team-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.about-team-card {
  flex: 1 1 0;
  max-width: 420px;
  text-align: center;
}

.about-team-card .about-team-photo {
  width: 200px;
  margin: 0 auto 1rem;
}

.about-team-card .about-team-name {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  margin-bottom: 0.25rem;
}

.about-team-card .about-team-role {
  margin-bottom: 0;
}

/* ===== Clickable Team Headshots ===== */
.about-team-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  position: relative;
}

.about-team-toggle .about-team-photo {
  transition: transform 400ms ease, box-shadow 400ms ease;
  border: 3px solid transparent;
}

.about-team-toggle:hover .about-team-photo,
.about-team-toggle:focus-visible .about-team-photo {
  transform: scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196, 167, 103, 0.25);
}

.about-team-toggle[aria-expanded="true"] .about-team-photo {
  border-color: var(--gold);
}

.about-team-toggle:focus-visible {
  outline: none;
}

/* ===== Bio Panel (hidden by default) ===== */
.about-team-bio-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms ease, opacity 400ms ease, margin 400ms ease;
  text-align: center;
  margin-top: 0;
}

.about-team-bio-panel.is-open {
  max-height: 400px;
  opacity: 1;
  margin-top: 2rem;
}

.about-team-bio-panel .body-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Featured Artists on Event Pages ===== */
.featured-artists {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.featured-artist-link {
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 300ms ease;
}

.featured-artist-link:hover {
  transform: translateY(-4px);
}

.featured-artist-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 300ms ease;
}

.featured-artist-link:hover .featured-artist-img {
  border-color: var(--gold);
}

.featured-artist-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  max-width: 100px;
}

@media (max-width: 960px) {
  .about-section-headers {
    display: none;
  }

  .about-section-title-mobile {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .about-section-divider-mobile {
    display: block;
    width: 3rem;
    height: 1px;
    margin: 0 auto 1.5rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-usps {
    max-width: 640px;
    margin: 0 auto;
  }

  .about-team-side .about-team-row {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .about-team-side .about-team-card .about-team-photo {
    width: 200px;
  }
}

@media (max-width: 760px) {
  .about-team-row {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .about-team-side .about-team-row {
    flex-direction: row;
    gap: 2rem;
  }

  .about-team-card {
    max-width: 360px;
  }

  .about-team-card .about-team-photo {
    width: 140px;
  }

  .about-team-side .about-team-card .about-team-photo {
    width: 140px;
  }

  .about-team-bio-panel.is-open {
    margin-top: 1.5rem;
  }

  .featured-artists {
    gap: 1.25rem;
  }

  .featured-artist-img {
    width: 72px;
    height: 72px;
  }

  .featured-artist-name {
    font-size: 0.65rem;
    max-width: 72px;
  }
}

@media (max-width: 420px) {
  .about-team-side .about-team-row,
  .about-team-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .about-team-card .about-team-photo,
  .about-team-side .about-team-card .about-team-photo {
    width: 160px;
  }
}

/* ===== Terms & Conditions ===== */
.terms-block {
  margin-bottom: 2.5rem;
}

.terms-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.terms-text {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.terms-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-list li {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 0.35rem;
}
