/* ==========================================================================
   WES BARKER — DESIGN SYSTEM  /assets/css/system/design-system.css
   Single source of truth. Organized by:
   00 Tokens · 01 Reset · 02 Base · 03 Layout · 04 Typography
   05 Buttons · 06 Cards · 07 Forms · 08 Header · 09 Footer
   10 Components · 11 Utilities
   Page-specific styles live in /assets/css/pages/
   ========================================================================== */


/* --------------------------------------------------------------------------
   00 TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --black:  #0B0B0D;
  --surf1:  #14161B;
  --surf2:  #1B1E25;
  --border: #2A2C31;

  /* Text */
  --white:  #FFFFFF;
  --warm:   #F5F5F2;
  --mid:    #B9BDC7;
  --muted:  #727887;

  /* Brand */
  --gold:    #F5B800;
  --gold-dk: #C99400;
  --orange:  #FF6B35;

  /* Typography */
  --display: 'Exo 2', sans-serif;
  --body:    'DM Sans', sans-serif;

  /* Layout */
  --container:  1200px;
  --nav-h:      76px;

  /* Section rhythm */
  --section-pad:        24px;   /* standard top + bottom */
  --section-pad-first:  48px;   /* top of first section after hero */
  --section-pad-wide:   48px;   /* wide sections (final CTAs) */
  --section-pad-mobile: 28px;   /* mobile uniform padding */

  /* Cards */
  --card-radius:        32px;
  --card-radius-mobile: 24px;
  --card-shadow:        0 24px 80px rgba(0,0,0,0.24);

  /* Buttons */
  --btn-min-h:    58px;
  --btn-radius:   18px;
  --btn-pad:      0 34px;
  --btn-size:     12px;
  --btn-tracking: 0.22em;
}


/* --------------------------------------------------------------------------
   01 RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* --------------------------------------------------------------------------
   02 BASE
   -------------------------------------------------------------------------- */
body {
  background: var(--black);
  color: var(--warm);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a, button { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: var(--nav-h); }
h1, h2, h3 { text-wrap: balance; }


/* --------------------------------------------------------------------------
   03 LAYOUT — container + section rhythm
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
@media (max-width: 768px) {
  .container { width: min(100% - 32px, var(--container)); }
}

/* Section helpers — apply to <section> elements for consistent rhythm */
.section          { padding: var(--section-pad) 0; }
.section--first   { padding-top: var(--section-pad-first); }   /* first after hero */
.section--wide    { padding: var(--section-pad-wide) 0; }      /* final CTAs */
.section--tight   { padding: 20px 0; }
.section--dark    { background: var(--black); }
.section--surf    { background: var(--surf1); }

@media (max-width: 768px) {
  .section          { padding: var(--section-pad-mobile) 0; }
  .section--first   { padding-top: var(--section-pad-mobile); }
  .section--wide    { padding: var(--section-pad-mobile) 0; }
  .section--tight   { padding: 20px 0; }
}


/* --------------------------------------------------------------------------
   04 TYPOGRAPHY
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
/* On mobile, eyebrow becomes block so it inherits text-align from parent */
@media (max-width: 768px) {
  .eyebrow { display: block; }
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: normal; }

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,245,242,0.74);
  max-width: 60ch;
  margin-bottom: 28px;
}


/* --------------------------------------------------------------------------
   05 BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-outline,
.btn-ghost,
.mob-menu-cta,
.sticky-bar-btn {
  min-height: var(--btn-min-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-pad);
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-size: var(--btn-size);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--body);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary,
.sticky-bar-btn {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover,
.sticky-bar-btn:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--warm);
  border: 1px solid rgba(245,245,242,0.18);
}
.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--mid);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--gold); }


/* --------------------------------------------------------------------------
   06 CARDS
   -------------------------------------------------------------------------- */

/* Generic surface card */
.card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
@media (max-width: 768px) {
  .card { border-radius: var(--card-radius-mobile); }
}

/* Shared dates card (used by show-dates-section.php) */
.shared-dates-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 42px;
  box-shadow: var(--card-shadow);
}
.shared-dates-heading {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.shared-dates-list { display: grid; gap: 32px; }

/* Show row card (date tile + info + actions) */
.shared-show-card {
  display: grid;
  grid-template-columns: 100px minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.shared-show-card:hover {
  border-color: rgba(245,184,0,0.35);
  transform: translateY(-2px);
}

/* Date tile */
.shared-show-tile {
  text-align: center;
  padding: 12px 0;
  border: 1px solid rgba(245,184,0,0.3);
  border-radius: 14px;
  background: rgba(245,184,0,0.04);
}
.shared-show-tile-month {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.shared-show-tile-day {
  font-family: var(--display);
  font-weight: 900;
  font-size: 38px;
  line-height: 0.95;
  color: var(--white);
  margin: 4px 0;
}
.shared-show-tile-year { font-size: 10px; color: var(--muted); letter-spacing: 0.18em; }

/* Info column */
.shared-show-info { min-width: 0; }
.shared-show-concept {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.shared-show-city {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
}
.shared-show-venue {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(245,245,242,0.82);
  line-height: 1.3;
}

/* Actions: badge + Tickets button */
.shared-show-actions { display: flex; align-items: center; gap: 10px; }
.shared-show-badge,
.shared-show-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  box-sizing: border-box;
}
.shared-show-badge {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
}
.shared-show-badge.is-hot   { background: rgba(232,57,28,0.15); color: #FF7A5C; border-color: rgba(232,57,28,0.35); }
.shared-show-badge.is-avail { background: rgba(245,184,0,0.10); color: var(--gold); border-color: rgba(245,184,0,0.35); }
.shared-show-cta {
  min-height: 46px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.shared-show-cta:hover,
.shared-show-card:hover .shared-show-cta {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* Shared FAQ card */
.shared-faq-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 42px;
  box-shadow: var(--card-shadow);
}
.shared-faq-heading {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.shared-faq-item {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.shared-faq-item:first-of-type { border-top: 0; padding-top: 0; }
.shared-faq-q {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.shared-faq-a {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,245,242,0.66);
  max-width: 64ch;
}

@media (max-width: 768px) {
  /* Shared dates card — center all content on mobile */
  .shared-dates-card,
  .shared-faq-card { padding: 28px 22px; border-radius: var(--card-radius-mobile); text-align: center; }
  .shared-dates-heading,
  .shared-faq-heading { text-align: center; }
  .shared-faq-a { text-align: center; margin: 0 auto; }
  .shared-faq-q { text-align: center; }

  .shared-show-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 22px;
  }
  .shared-show-tile { width: 96px; }
  .shared-show-tile-day { font-size: 30px; }
  .shared-show-info { width: 100%; }
  .shared-show-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  .shared-show-badge { flex: 0 0 auto; max-width: 220px; }
  .shared-show-cta   { flex: 0 0 auto; width: 100%; max-width: 320px; }

  .shared-faq-q { font-size: 18px; }
  .shared-faq-a { text-align: center; margin: 0 auto; }
}


/* --------------------------------------------------------------------------
   07 FORMS
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.input,
.textarea,
.select {
  width: 100%;
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--warm);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.input:focus,
.textarea:focus,
.select:focus { border-color: var(--gold); background: var(--surf1); }


/* --------------------------------------------------------------------------
   08 HEADER — top nav + mobile menu
   -------------------------------------------------------------------------- */
nav.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(11,11,13,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-logo img { height: 28px; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(245,245,242,0.58);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0 18px;
  border-radius: 999px;
  min-height: 42px;
  font-weight: 500;
}
.nav-right-mobile { display: none; align-items: center; }

/* Hamburger button */
.hamburger {
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0; border: 0; background: transparent; cursor: pointer;
}
.hamburger span {
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--warm);
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(11,11,13,0.98);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 104px 24px 32px;
}
.mob-menu.open { transform: translateX(0); }
.mob-menu-links { list-style: none; }
.mob-menu-links a {
  min-height: 52px;
  display: flex; align-items: center;
  color: var(--warm); text-decoration: none;
  font-family: var(--display); font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mob-menu-links a.active,
.mob-menu-links a:hover { color: var(--gold); }
.mob-menu-cta {
  margin-top: 28px;
  background: var(--gold);
  color: var(--black);
}
.mob-menu-socials {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,245,242,0.10);
}
.mob-menu-socials a {
  min-height: 38px;
  display: flex; align-items: center;
  color: rgba(245,245,242,0.66);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 8px 0;
}
.mob-menu-socials a:hover { color: var(--gold); }

/* Responsive nav */
@media (max-width: 1024px) {
  .nav-links li:not(:last-child) { display: none; }
  .nav-right-mobile { display: flex; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  nav.site-header { padding: 0 20px; }
  .nav-logo img { height: 24px; }
}


/* --------------------------------------------------------------------------
   09 FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 32px 0 40px;
}
.site-footer .footer-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.site-footer .footer-logo { display: inline-flex; align-items: center; }
.site-footer .footer-logo img {
  height: 22px; width: auto;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.site-footer .footer-logo:hover img { opacity: 0.8; }
.site-footer .footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding: 0; margin: 0;
  justify-content: center;
}
.site-footer .footer-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer .footer-links a:hover { color: var(--gold); }
.site-footer .footer-copy {
  font-size: 11px;
  color: rgba(245,245,242,0.42);
  white-space: nowrap;
  margin: 0;
}
.site-footer .footer-credit {
  width: min(100% - 48px, var(--container));
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,245,242,0.36);
}
.site-footer .footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.site-footer .footer-credit a:hover { color: var(--warm); }
.site-footer .footer-credit-heart { color: var(--gold); margin: 0 2px; }

@media (max-width: 768px) {
  .site-footer { padding: 28px 0 36px; }
  .site-footer .footer-inner { gap: 18px; }
  .site-footer .footer-links { gap: 12px 22px; }
}


/* --------------------------------------------------------------------------
   10 COMPONENTS
   -------------------------------------------------------------------------- */

/* — Page hero (hero-page.php) — */
#page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.24) saturate(0.92);
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.78) 0%, rgba(11,11,13,0.44) 26%, rgba(11,11,13,0.74) 68%, rgba(11,11,13,0.96) 100%),
    radial-gradient(circle at center 26%, rgba(245,184,0,0.08), transparent 34%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}
.hero-flyer-wrap {
  width: clamp(280px, 28vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 60px rgba(0,0,0,0.48);
  background: linear-gradient(180deg, rgba(27,30,37,0.96), rgba(11,11,13,0.96));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
}
.hero-flyer { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.page-title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-title em { color: var(--gold); font-style: normal; }
.page-sub {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(245,245,242,0.78);
  margin-bottom: 32px;
}
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-chip {
  min-height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(17,18,22,0.7);
  color: var(--mid);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-hero-inner { width: min(100% - 32px, 560px); }
  .hero-flyer-wrap { width: min(78vw, 340px); border-radius: 22px; margin-bottom: 24px; }
  .page-title { font-size: clamp(30px, 8.1vw, 45px); margin-bottom: 14px; line-height: 1; }
  .page-sub   { font-size: 15px; line-height: 1.65; max-width: 23ch; margin-bottom: 22px; }
  .hero-meta  { gap: 8px; margin-bottom: 22px; }
  .hero-chip  { min-height: 36px; padding: 0 12px; font-size: 10px; letter-spacing: 0.14em; }
  .hero-actions { width: 100%; display: grid; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; }
}

/* — Sticky CTA bar (sticky-cta.php / general) — */
.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  width: min(100% - 24px, 720px);
  background: var(--gold);
  color: var(--black);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.5);
}
.sticky-bar-info  { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-bar-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.66;
}
.sticky-bar-title {
  font-family: var(--display); font-weight: 900;
  font-size: 18px; text-transform: uppercase;
}

/* — Shared dates section wrapper (show-dates-section.php) — */
.shared-dates-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}
@media (max-width: 768px) {
  .shared-dates-section { padding: var(--section-pad-mobile) 0; }
}

/* — Shared FAQ section wrapper (faq-block.php) — */
.shared-faq-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}
@media (max-width: 768px) {
  .shared-faq-section { padding: var(--section-pad-mobile) 0; }
}

/* — CTA with background image — */
.cta-bg {
  position: relative;
  background-color: var(--black);
  background-position: center 45%;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border);
}
.cta-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 80% at 50% 45%, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.82) 55%, rgba(11,11,13,0.96) 100%),
    radial-gradient(circle at 30% 30%, rgba(245,184,0,0.08), transparent 45%);
  pointer-events: none;
}
.cta-bg > * { position: relative; z-index: 1; }

/* — Page bottom CTA (used with .cta-bg) — */
.page-cta {
  padding: var(--section-pad-wide) 0;
  text-align: center;
}
.page-cta-inner {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
}
.page-cta-inner .eyebrow { margin-bottom: 20px; }
.page-cta-title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 24px;
  text-wrap: balance;
}
.page-cta-title em { color: var(--gold); font-style: normal; display: block; }
.page-cta-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,245,242,0.78);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.page-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-cta { padding: var(--section-pad-mobile) 0; }
  .page-cta-title { font-size: clamp(40px, 12vw, 68px); }
}

/* — Artists section — */
#artists { padding: var(--section-pad) 0; background: var(--black); }
.artists-wrap {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}
.artists-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.artists-grid.is-2,
.artists-grid.is-3,
.artists-grid.is-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.artist-card {
  display: grid;
  grid-template-columns: minmax(280px, 32%) minmax(0,1fr);
  gap: 0;
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-card {
  grid-template-columns: minmax(360px, 42%) minmax(0,1fr);
}
.artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-photo { min-height: 460px; }
.artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-info  { padding: 48px 56px; }
.artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-name  { font-size: clamp(32px, 3.6vw, 48px); }
.artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-bio   { font-size: 15px; -webkit-line-clamp: 6; max-width: 56ch; }
.artist-card:hover { border-color: rgba(245,184,0,0.18); transform: translateY(-2px); }

.artist-photo { background: #12141a; overflow: hidden; min-height: 100%; }
.artist-photo img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: center top; display: block; }

.artist-info {
  padding: 28px 32px;
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.artist-role {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white); font-weight: 700;
  margin-bottom: 6px; opacity: 0.78;
}
.artist-name {
  font-family: var(--display); font-weight: 900;
  text-transform: uppercase; font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1; color: var(--gold);
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.artist-divider { width: 36px; height: 2px; background: var(--orange); border-radius: 2px; margin-bottom: 12px; }
.artist-quote {
  font-family: var(--display); font-weight: 800;
  font-size: 12px; line-height: 1.35; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--warm);
  margin-bottom: 10px; opacity: 0.9;
}
.artist-bio {
  font-size: 13px; line-height: 1.55;
  color: rgba(245,245,242,0.62);
  margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.artist-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.artist-social {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,245,242,0.12);
  border-radius: 8px;
  color: var(--mid);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.artist-social:hover { color: var(--gold); border-color: var(--gold); background: rgba(245,184,0,0.08); }
.artist-social svg { width: 16px; height: 16px; }

@media (max-width: 1024px) {
  .artists-grid,
  .artists-grid.is-2,
  .artists-grid.is-3,
  .artists-grid.is-4 { grid-template-columns: 1fr; gap: 24px; }
  .artists-wrap { width: min(100% - 32px, var(--container)); }
  .artists-grid .artist-card,
  .artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-card { grid-template-columns: 1fr; border-radius: var(--card-radius-mobile); }
  .artists-grid .artist-photo,
  .artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-photo { aspect-ratio: 16/10; min-height: 0; }
  .artists-grid .artist-info,
  .artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-info { padding: 22px 24px; text-align: center; align-items: center; }
  .artist-divider { margin-left: auto; margin-right: auto; }
  .artist-name,
  .artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-name { font-size: 22px; }
  .artist-bio,
  .artists-grid:not(.is-2):not(.is-3):not(.is-4) .artist-bio { font-size: 13px; -webkit-line-clamp: 6; }
}
@media (max-width: 768px) {
  #artists { padding: var(--section-pad-mobile) 0; }
}


/* --------------------------------------------------------------------------
   11 UTILITIES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-mid    { color: var(--mid); }
.text-muted  { color: var(--muted); }
.divider     { width: 64px; height: 3px; background: var(--orange); border-radius: 2px; margin: 0 0 22px; }
.is-hidden   { display: none !important; }

/* Deployment cleanup utilities */
.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  font-size: 16px;
}

/* Final deployment polish: roomier mobile CTAs */
@media (max-width: 768px) {
  .page-cta { padding-top: 86px; padding-bottom: 92px; }
  .page-cta-inner { width: min(100% - 56px, 920px); }
  .page-cta-inner .eyebrow { margin-bottom: 24px; }
  .page-cta-title { font-size: clamp(42px, 12.4vw, 70px); margin-bottom: 28px; }
  .page-cta-sub { margin-bottom: 36px; line-height: 1.78; }
  .page-cta-actions { gap: 18px; }
}

/* Final deployment polish: roomier CTA sections on desktop too */
@media (min-width: 769px) {
  .page-cta {
    padding-top: 96px;
    padding-bottom: 104px;
  }
}

/* Final CTA spacing override: more internal breathing room around CTA text/buttons */
@media (max-width: 768px) {
  .page-cta { padding-top: 104px !important; padding-bottom: 112px !important; }
  .page-cta-inner { width: min(100% - 56px, 920px); }
  .page-cta-inner .eyebrow { margin-bottom: 26px; }
  .page-cta-title { margin-bottom: 32px; }
  .page-cta-sub { margin-bottom: 42px; line-height: 1.82; }
  .page-cta-actions { gap: 20px; }
}
@media (min-width: 769px) {
  .page-cta { padding-top: 132px !important; padding-bottom: 144px !important; }
  .page-cta-inner .eyebrow { margin-bottom: 26px; }
  .page-cta-title { margin-bottom: 32px; }
  .page-cta-sub { margin-bottom: 42px; line-height: 1.78; }
  .page-cta-actions { gap: 18px; }
}
