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

body.admin-body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.text-muted { color: #6b7280; }

/* ─── Topbar ─── */

.admin-topbar {
  background: #861818;
  height: 56px;
  display: flex;
  align-items: center;
}

.admin-topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.admin-logo {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.admin-topbar-nav {
  display: flex;
  gap: 20px;
}

.admin-topbar-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.admin-topbar-link:hover {
  color: #fff;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-user-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.admin-signout-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-signout-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── Main ─── */

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ─── Flash ─── */

.admin-flash {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

.admin-flash ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}

.admin-flash--notice {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.admin-flash--alert {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─── Page Header ─── */

.admin-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.admin-page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-page-subtitle {
  font-size: 15px;
  color: #6b7280;
}

.admin-page-actions {
  display: flex;
  gap: 8px;
}

/* ─── Buttons ─── */

.admin-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #861818;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.admin-btn-primary:hover { opacity: 0.9; }

.admin-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.admin-btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.admin-btn-small {
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 6px;
}

/* ─── Links ─── */

.admin-link {
  font-size: 14px;
  color: #861818;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
}

.admin-link:hover { text-decoration: underline; }

.admin-link--danger { color: #dc2626; }

/* ─── Badges ─── */

.admin-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 100px;
}

.admin-badge--green {
  background: #ecfdf5;
  color: #065f46;
}

.admin-badge--gray {
  background: #f3f4f6;
  color: #6b7280;
}

.admin-badge--success {
  background: #ecfdf5;
  color: #065f46;
}

.admin-badge--warning {
  background: #fffbeb;
  color: #92400e;
}

/* ─── Login ─── */

.admin-login-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.admin-login-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.admin-login-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-back-link {
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
  transition: color 0.2s;
}

.admin-back-link:hover { color: #861818; }

/* ─── Forms ─── */

.admin-form {
  max-width: 640px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1a1a1a;
}

.form-group textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #861818;
  box-shadow: 0 0 0 3px rgba(134, 24, 24, 0.1);
}

.form-group input[type="file"] {
  border: none;
  padding: 8px 0;
  height: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ─── Fieldset ─── */

.admin-fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}

.admin-fieldset legend {
  font-size: 15px;
  font-weight: 600;
  padding: 0 8px;
  color: #374151;
}

/* ─── Link Rows (artist links form) ─── */

.admin-link-row {
  display: grid;
  grid-template-columns: 160px 1fr 140px auto;
  gap: 12px;
  align-items: end;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.admin-link-row .form-group {
  margin-bottom: 0;
}

.form-group--grow {
  min-width: 0;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #dc2626;
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 10px;
}

.admin-checkbox input {
  width: 16px;
  height: 16px;
}

.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.admin-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.admin-checkbox-row label {
  cursor: pointer;
  margin: 0;
}

/* ─── Tables ─── */

.admin-table-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.admin-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background: #fafafa;
}

.admin-table-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.admin-table-avatar {
  width: 48px;
}

/* ─── Empty State ─── */

.admin-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.admin-empty-state h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.admin-empty-state p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ─── Cards ─── */

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.admin-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.admin-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.admin-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

.admin-card-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.admin-card-count {
  display: inline-block;
  background: #fef2f2;
  color: #861818;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.admin-card--link {
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-card--link:hover {
  border-color: #861818;
  box-shadow: 0 0 0 1px #861818;
}

/* ─── Sections ─── */

.admin-section {
  margin-top: 32px;
  margin-bottom: 32px;
}

.admin-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.admin-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-detail-row {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ─── Avatar ─── */

.admin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.admin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-avatar--sm {
  width: 32px;
  height: 32px;
}

.admin-avatar--square {
  border-radius: 6px;
}

.admin-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

/* ─── Artist List (set list show) ─── */

.admin-artist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.admin-artist-row:last-child {
  border-bottom: none;
}

.admin-artist-row-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-position-input {
  width: 50px;
  height: 32px;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

/* ─── Add Artist Grid ─── */

.admin-add-artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.admin-add-artist-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.admin-add-artist-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* ─── Artist Detail ─── */

.admin-artist-detail {
  display: flex;
  gap: 32px;
}

.admin-artist-photo {
  width: 200px;
  flex-shrink: 0;
}

.admin-artist-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.admin-current-image {
  margin-bottom: 8px;
}

.admin-current-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* ─── Platform Links ─── */

.admin-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  transition: border-color 0.2s;
}

.admin-platform-link:hover {
  border-color: #861818;
  color: #861818;
}

.admin-platform-icon {
  width: 18px;
  height: 18px;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
  .admin-page-header {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-link-row {
    grid-template-columns: 1fr 1fr;
  }

  .admin-artist-detail {
    flex-direction: column;
  }

  .admin-topbar-nav {
    display: none;
  }
}

/* ─── Toggle ─── */

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.admin-toggle-input {
  width: 20px;
  height: 20px;
  accent-color: #861818;
}

.admin-toggle-label {
  font-weight: 600;
  font-size: 15px;
}

.form-hint {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-top: 8px;
}
/* ───────────────────────────────────────────
   SET LIST INDEX PAGE
   ─────────────────────────────────────────── */

/* ─── Hero ─── */

.sl-hero {
  position: relative;
  height: 519px;
  margin-top: 125px;
  overflow: hidden;
}

.sl-hero-image {
  position: absolute;
  inset: 0;
}

.sl-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-hero-blur {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
}

.sl-hero-title {
  position: absolute;
  bottom: 40px;
  left: 133px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 38px;
  letter-spacing: 1.28px;
  color: #fff;
}

/* ─── Intro ─── */

.sl-intro {
  padding: 80px 133px;
}

.sl-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1174px;
}

.sl-intro-quote {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 9;
}

.sl-intro-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -1.2px;
  color: var(--color-black);
  margin-bottom: 14px;
}

.sl-intro-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--color-black);
}

/* ─── Upcoming Section ─── */

.sl-upcoming {
  background: var(--color-pink-bg);
  padding: 60px 133px 80px;
}

.sl-upcoming-inner {
  max-width: 1174px;
}

/* ─── Event Card ─── */

.sl-event-card {
  margin-bottom: 64px;
}

.sl-event-card--hidden {
  display: none;
}

.sl-event-header {
  margin-bottom: 18px;
}

.sl-event-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.sl-event-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 45px;
  letter-spacing: -3.22px;
  color: var(--color-primary);
}

/* ─── Event Info Bar ─── */

.sl-event-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  border-radius: 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.sl-event-info-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.sl-event-info-item {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #fff;
}

.sl-event-info-item strong {
  font-weight: 600;
}

.btn-white--primary {
  color: var(--color-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.34px;
  flex-shrink: 0;
}

.sl-tickets-note {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.15px;
  flex-shrink: 0;
}

/* ─── Artist Grid (set list page) ─── */

.sl-artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-artist-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sl-artist-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.sl-artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-artist-name {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -1.1px;
  color: var(--color-black);
}

.sl-artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.sl-artist-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.56px;
  color: #8c8c8c;
  text-decoration: underline;
  transition: color 0.2s;
}

.sl-artist-link:hover {
  color: var(--color-primary);
}

/* ─── Show All ─── */

.sl-show-all-wrap {
  text-align: center;
  padding-top: 16px;
}

/* ─── Empty State ─── */

.sl-empty-upcoming {
  text-align: center;
  padding: 60px 20px;
}

.sl-empty-upcoming .sl-event-label {
  display: inline;
}

.sl-empty-upcoming .sl-event-name {
  margin-top: 8px;
}

.sl-empty-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary);
  max-width: 480px;
  margin: 16px auto 0;
}

/* ─── Want to Perform ─── */

.sl-perform {
  position: relative;
  height: 455px;
  overflow: hidden;
}

.sl-perform-image {
  position: absolute;
  inset: 0;
}

.sl-perform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-perform-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 40px;
}

.sl-perform-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 37px;
  letter-spacing: -3.22px;
  color: #f8f8f8;
  margin-bottom: 24px;
}

.sl-perform-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #fff;
  max-width: 607px;
  margin-bottom: 12px;
}

.sl-perform-note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #fff;
  margin-bottom: 32px;
}

.sl-perform .btn-white {
  color: var(--color-primary);
}

/* ─── Past Set Lists ─── */

.sl-past {
  padding: 80px 133px;
}

.sl-past-inner {
  max-width: 1174px;
}

.sl-past-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1.5px;
  color: var(--color-black);
  margin-bottom: 32px;
}

.sl-past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sl-past-card {
  background: var(--color-pink-bg);
  border-radius: 12px;
  padding: 28px 24px;
}

.sl-past-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.sl-past-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
  display: block;
  margin-bottom: 16px;
}

.sl-past-artists {
  display: flex;
  align-items: center;
  gap: -8px;
}

.sl-past-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-pink-bg);
  margin-left: -8px;
}

.sl-past-avatar:first-child {
  margin-left: 0;
}

.sl-past-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-past-more {
  font-size: 13px;
  color: #8c8c8c;
  margin-left: 4px;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .sl-hero-title {
    font-size: 48px;
    left: 60px;
  }

  .sl-intro {
    padding: 60px;
  }

  .sl-intro-inner {
    gap: 40px;
  }

  .sl-intro-quote {
    font-size: 36px;
    line-height: 44px;
  }

  .sl-upcoming {
    padding: 60px;
  }

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

  .sl-event-name {
    font-size: 36px;
  }

  .sl-past {
    padding: 60px;
  }

  .sl-past-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sl-hero {
    height: 360px;
    margin-top: 80px;
  }

  .sl-hero-title {
    font-size: 36px;
    left: 24px;
    bottom: 24px;
  }

  .sl-intro {
    padding: 40px 24px;
  }

  .sl-intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sl-intro-quote {
    font-size: 28px;
    line-height: 36px;
  }

  .sl-intro-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .sl-upcoming {
    padding: 40px 24px;
  }

  .sl-event-name {
    font-size: 28px;
    letter-spacing: -1.5px;
  }

  .sl-event-info-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .sl-event-info-items {
    flex-direction: column;
    gap: 8px;
  }

  .sl-artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sl-artist-name {
    font-size: 16px;
  }

  .sl-perform {
    height: auto;
    padding: 60px 24px;
  }

  .sl-perform-heading {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .sl-past {
    padding: 40px 24px;
  }

  .sl-past-grid {
    grid-template-columns: 1fr;
  }

  .sl-past-title {
    font-size: 24px;
  }
}
/* ───────────────────────────────────────────
   THEATRE PAGE
   ─────────────────────────────────────────── */

/* ─── Hero (reuses sl-hero-title) ─── */

.th-hero {
  position: relative;
  height: 519px;
  margin-top: 125px;
  overflow: hidden;
}

.th-hero .sl-hero-blur {
  background: rgba(0, 0, 0, 0.25);
}

.th-hero-image {
  position: absolute;
  inset: 0;
}

.th-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Shows Section ─── */

.th-shows {
  padding: 80px 133px;
  background: var(--color-white);
}

.th-shows-inner {
  max-width: 1174px;
  margin: 0 auto;
}

/* ─── Show Card ─── */

.th-show-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid #e5e7eb;
}

.th-show-card:first-child {
  padding-top: 0;
}

.th-show-card:last-child {
  border-bottom: none;
}

.th-show-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.th-show-logo img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.th-show-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.th-show-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -2.4px;
  color: var(--color-primary);
}

.th-show-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.16px;
  color: #444;
  max-width: 560px;
}

.th-show-coming-soon {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: var(--color-primary);
  margin-top: 8px;
  max-width: 560px;
}

/* ─── Meta ─── */

.th-show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}

.th-show-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.th-show-meta-item strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-primary);
}

.th-show-meta-item span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--color-black);
}

/* ─── Schedule ─── */

.th-show-schedule {
  margin-top: 16px;
}

.th-schedule-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.32px;
  color: var(--color-black);
  margin-bottom: 12px;
}

.th-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.th-schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--color-pink-bg);
  border-radius: 8px;
}

.th-schedule-date {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}

.th-schedule-time {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-primary);
}

/* ─── Empty State ─── */

.th-empty {
  text-align: center;
  padding: 80px 20px;
}

/* ─── CTA ─── */

.th-cta {
  background: var(--color-pink-bg);
  padding: 80px 40px;
  text-align: center;
}

.th-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.th-cta-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1.5px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.th-cta-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin-bottom: 32px;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .th-shows {
    padding: 60px;
  }

  .th-show-card {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .th-show-name {
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .th-hero {
    height: 360px;
    margin-top: 80px;
  }

  .th-shows {
    padding: 40px 24px;
  }

  .th-show-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .th-show-logo {
    justify-content: center;
  }

  .th-show-logo img {
    max-height: 240px;
  }

  .th-show-name {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.5px;
  }

  .th-show-meta {
    flex-direction: column;
    gap: 16px;
  }

  .th-schedule-grid {
    grid-template-columns: 1fr;
  }

  .th-cta {
    padding: 60px 24px;
  }

  .th-cta-heading {
    font-size: 24px;
  }
}
/* ───────────────────────────────────────────
   WORKSHOPS PAGE
   ─────────────────────────────────────────── */

/* ─── Hero ─── */

.ws-hero {
  position: relative;
  height: 519px;
  margin-top: 125px;
  overflow: hidden;
}

.ws-hero-image {
  position: absolute;
  inset: 0;
}

.ws-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Feature Block ─── */

.ws-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 588px;
}

.ws-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
  background: var(--color-pink-bg);
}

.ws-feature-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: var(--color-primary);
  margin-bottom: 13px;
}

.ws-feature-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 45px;
  letter-spacing: -3.22px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.ws-feature-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--color-primary);
}

.ws-feature-image {
  position: relative;
  overflow: hidden;
}

.ws-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Section Header ─── */

.ws-upcoming {
  padding: 80px 133px;
  background: var(--color-white);
}

.ws-upcoming-inner {
  max-width: 1174px;
  margin: 0 auto;
}

.ws-section-header {
  margin-bottom: 48px;
}

.ws-section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 13px;
}

.ws-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 45px;
  letter-spacing: -3.22px;
  color: var(--color-primary);
}

/* ─── Card Grid ─── */

.ws-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── Event Card ─── */

.ws-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.ws-card-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
}

.ws-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-card-image--placeholder {
  background: var(--color-pink-bg);
}

.ws-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* ─── Date Badge ─── */

.ws-card-date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 102px;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 0 0 0 16px;
  z-index: 2;
}

.ws-card-date-badge--muted {
  background: #666;
}

.ws-badge-day,
.ws-badge-month {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 38px;
  letter-spacing: 0.3px;
  color: white;
  text-align: center;
}

.ws-badge-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 38px;
  letter-spacing: 0.74px;
  color: white;
  text-align: center;
}

/* ─── Overlay Text ─── */

.ws-card-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 88px;
  right: 16px;
  z-index: 2;
}

.ws-card-category {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: #b9b9b9;
  display: block;
  margin-bottom: 2px;
}

.ws-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0.44px;
  color: white;
}

/* ─── Coming Soon Badge ─── */

.ws-card-coming-soon {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #fff;
  background: var(--color-primary);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* ─── Empty State ─── */

.ws-empty {
  text-align: center;
  padding: 80px 20px;
}

/* ─── Past Workshops ─── */

.ws-past {
  padding: 60px 133px 80px;
  background: var(--color-pink-bg);
}

.ws-past-inner {
  max-width: 1174px;
  margin: 0 auto;
}

.ws-past-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1.5px;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.ws-card--past .ws-card-image {
  filter: grayscale(40%);
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .ws-upcoming,
  .ws-past {
    padding: 60px;
  }

  .ws-feature-text {
    padding: 60px;
  }

  .ws-feature-heading {
    font-size: 36px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .ws-hero {
    height: 360px;
    margin-top: 80px;
  }

  .ws-feature {
    grid-template-columns: 1fr;
  }

  .ws-feature-image {
    height: 300px;
  }

  .ws-feature-text {
    padding: 40px 24px;
  }

  .ws-feature-heading {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.5px;
  }

  .ws-upcoming,
  .ws-past {
    padding: 40px 24px;
  }

  .ws-card-grid {
    grid-template-columns: 1fr;
  }

  .ws-section-title {
    font-size: 32px;
    line-height: 36px;
  }
}
/*


 */

/* ───────────────────────────────────────────
   RESET & BASE
   ─────────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ───────────────────────────────────────────
   VARIABLES
   ─────────────────────────────────────────── */

:root {
  --color-primary: #861818;
  --color-pink-bg: #f8ecec;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #9e9e9e;
  --color-gray-light: #a9a9a9;
  --max-width: 1176px;
  --side-padding: 40px;
}

/* ───────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px 13px 30px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px 13px 30px;
  background: transparent;
  color: var(--color-primary);
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.68px;
  border-radius: 100px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 21px 10px 20px;
  background: transparent;
  color: var(--color-black);
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.42px;
  border-radius: 100px;
  border: 2px solid var(--color-black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-outline-dark .btn-icon {
  width: 16px;
  height: 18px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.51px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-small {
  height: 39px;
}

/* ───────────────────────────────────────────
   HEADER
   ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  height: 125px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.42px;
  color: var(--color-black);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* ─── Mobile Menu Button ─── */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.mobile-menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-icon--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-icon--open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-icon--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Nav Overlay ─── */

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.42px;
  color: var(--color-black);
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--color-primary);
}

.mobile-nav-cta {
  height: 44px;
  font-size: 16px;
}

body.no-scroll {
  overflow: hidden;
}

/* ───────────────────────────────────────────
   HERO
   ─────────────────────────────────────────── */

.hero {
  position: relative;
  height: 820px;
  margin-top: 125px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 60px 133px;
  padding-bottom: 80px;
}

.hero-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 5.12px;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.25;
  color: var(--color-white);
  max-width: 582px;
  margin-bottom: 32px;
}

.hero .btn-white {
  align-self: flex-start;
  padding: 10px 30px;
  font-size: 17px;
}

/* ───────────────────────────────────────────
   SET LIST
   ─────────────────────────────────────────── */

.set-list {
  padding: 67px var(--side-padding) 80px;
  background: var(--color-white);
}

.set-list-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}

.set-list-header {
  text-align: center;
  max-width: 487px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.set-list-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -1.68px;
  color: var(--color-black);
}

.set-list-title .accent {
  color: var(--color-primary);
}

.set-list-subtitle {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.45px;
  color: var(--color-gray);
}

.sl-tickets-note-home {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--color-primary);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.artist-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.artist-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-name {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.8px;
  color: var(--color-black);
}

.artist-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink-bg);
  color: var(--color-primary);
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 48px;
}

/* ───────────────────────────────────────────
   AUDITIONS
   ─────────────────────────────────────────── */

.auditions {
  position: relative;
  height: 456px;
  background: var(--color-primary);
  overflow: hidden;
}

.auditions-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66%;
  mix-blend-mode: multiply;
}

.auditions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auditions-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 var(--side-padding);
}

.auditions-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 28px;
}

.auditions-headline {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: var(--color-white);
  max-width: 868px;
  margin-bottom: 40px;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 9;
}

.auditions .btn-white {
  color: var(--color-primary);
}

/* ───────────────────────────────────────────
   HOME — UPCOMING SHOWS
   ─────────────────────────────────────────── */

.home-shows {
  padding: 80px var(--side-padding);
  background: var(--color-white);
}

.home-shows-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.home-shows-header {
  text-align: center;
  margin-bottom: 48px;
}

.home-shows-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
}

.home-shows-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -1.68px;
  color: var(--color-black);
}

.home-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

.home-show-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
}

.home-show-image {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.home-show-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-show-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home-show-name {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: var(--color-black);
}

.home-show-dates {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
}

.home-show-location {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray);
}

/* ───────────────────────────────────────────
   CONTENT BLOCKS
   ─────────────────────────────────────────── */

.content-blocks {
  max-width: 1440px;
  margin: 0 auto;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.content-block--image-right {
  direction: ltr;
}

.content-block--image-left {
  direction: ltr;
}

.content-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
  background: var(--color-white);
}

.content-block__text--pink {
  background: var(--color-pink-bg);
}

.content-block__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.content-block__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -3.22px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.content-block__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.45px;
  color: var(--color-primary);
  margin-bottom: 40px;
  max-width: 437px;
}

.content-block__image {
  overflow: hidden;
  min-height: 586px;
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───────────────────────────────────────────
   JOIN COMMUNITY
   ─────────────────────────────────────────── */

.join-community {
  background: var(--color-primary);
  padding: 154px var(--side-padding) 154px;
  text-align: center;
}

.join-community-inner {
  max-width: 823px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.join-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 56px;
  color: var(--color-white);
}

.join-headline {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 91px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 9;
}

.join-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.16px;
  color: var(--color-white);
  max-width: 455px;
}

.join-form {
  margin-top: 54px;
}

.join-input-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.join-input-icon {
  position: absolute;
  margin-left: 20px;
  pointer-events: none;
}

.join-input-icon img {
  width: 20px;
  height: 20px;
}

.join-input-group {
  position: relative;
}

.join-input {
  width: 354px;
  height: 60px;
  padding: 0 20px 0 52px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: 0.16px;
  color: var(--color-black);
  outline: none;
}

.join-input::placeholder {
  color: var(--color-black);
}

.join-submit {
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.join-submit:hover {
  opacity: 0.8;
}

.join-submit img {
  width: 24px;
  height: 24px;
}

/* ───────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────── */

.site-footer {
  background: var(--color-pink-bg);
  padding: 130px 120px 70px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 74px;
  letter-spacing: 1.48px;
  color: var(--color-primary);
  line-height: 70px;
  margin-bottom: 40px;
}

.footer-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.36px;
  color: var(--color-gray-light);
  max-width: 340px;
  margin-bottom: 16px;
}

.footer-email {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.44px;
  color: var(--color-primary);
  text-decoration: underline;
  display: block;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 39px;
  letter-spacing: 0.44px;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
}

.footer-divider {
  height: 1px;
  background: var(--color-gray-light);
  margin-bottom: 24px;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: var(--color-gray-light);
}

/* ───────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero {
    height: 600px;
  }

  .hero-headline {
    font-size: 30px;
    max-width: 440px;
  }

  .hero-overlay {
    padding-left: 60px;
    padding-bottom: 60px;
  }

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

  .content-block {
    grid-template-columns: 1fr;
  }

  .content-block--image-right .content-block__image {
    order: -1;
  }

  .content-block__image {
    min-height: 400px;
  }

  .content-block__text {
    padding: 60px 40px;
  }

  .home-shows-title {
    font-size: 32px;
  }

  .home-show-image {
    width: 220px;
    height: 220px;
  }

  .join-headline {
    font-size: 64px;
    line-height: 70px;
  }

  .footer-heading {
    font-size: 52px;
    line-height: 56px;
  }

  .auditions-headline {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 80px;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .main-nav .btn-outline-dark {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    height: 500px;
    margin-top: 80px;
  }

  .hero-overlay {
    padding: 0 24px 48px;
  }

  .hero-headline {
    font-size: 24px;
  }

  .set-list-title {
    font-size: 32px;
  }

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

  .auditions {
    height: auto;
    padding: 60px 24px;
  }

  .auditions-headline {
    font-size: 28px;
    line-height: 36px;
  }

  .content-block__heading {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .join-headline {
    font-size: 42px;
    line-height: 48px;
  }

  .join-input {
    width: 260px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer {
    padding: 60px 24px 40px;
  }

  .footer-heading {
    font-size: 40px;
    line-height: 44px;
  }
}

/* ───────────────────────────────────────────
   MAINTENANCE MODE
   ─────────────────────────────────────────── */

.site-header--maintenance {
  background: var(--color-white);
}

.site-header--maintenance .header-inner {
  justify-content: center;
}

.maintenance-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--color-white);
}

.maintenance-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -2px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.maintenance-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #555;
  max-width: 480px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .maintenance-message {
    padding: 60px 24px;
  }

  .maintenance-heading {
    font-size: 28px;
  }
}
