/*!
 * Theme Name:  The Live Music Agency
 * Theme URI:   https://thelivemusicagency.co.uk
 * Author:      OMS Marketing
 * Author URI:  https://oms.marketing
 * Description: Premium dark-themed WordPress theme for The Live Music Agency. Showcases live performers for weddings, corporate events, parties and more.
 * Version:     1.1.0
 * Requires at least: 6.4
 * Tested up to:      6.7
 * Requires PHP:      8.0
 * License:     Proprietary
 * Text Domain: tlma
 * Tags:        music, entertainment, agency, woocommerce, dark
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand palette */
  --clr-black:     #000000;
  --clr-blue-deep: #0A2351;
  --clr-cyan:      #00AEEF;
  --clr-mid-blue:  #0077CC;
  --clr-ice:       #ADD8E6;
  --clr-highlight: #E8F6FA;

  /* Background layers */
  --bg-base:        #000000;
  --bg-alt:         #0A2351;
  --bg-surface:     #0d2b66;
  --bg-surface-alt: #122f70;
  --bg-overlay:     rgba(0, 0, 0, 0.80);

  /* Primary accent — Electric Cyan (#00AEEF) */
  --accent:         #00AEEF;
  --accent-hover:   #29befc;
  --accent-subtle:  rgba(0, 174, 239, 0.12);
  --accent-border:  rgba(0, 174, 239, 0.35);
  --accent-glow:    0 0 32px rgba(0, 174, 239, 0.28);

  /* Secondary accent — Mid-Blue (#0077CC) for text links & secondary actions */
  --accent-secondary:       #0077CC;
  --accent-secondary-hover: #0088ee;

  /* Text */
  --text-primary:   #E8F6FA;
  --text-secondary: #ADD8E6;
  --text-muted:     #6b9ab0;

  /* Borders — ice-blue tinted */
  --border:         rgba(173, 216, 230, 0.12);
  --border-hover:   rgba(173, 216, 230, 0.25);

  /* Typography */
  --font:           'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-7:  1.75rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container:        1280px;
  --container-narrow: 860px;
  --header-h:         120px;

  /* Radius */
  --r-sm:   4px;
  --r:      8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.45);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.55);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,174,239,0.25);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-header:  100;
  --z-panel:   200;
  --z-overlay: 190;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--accent-secondary-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input, textarea, select {
  font-family: var(--font);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--accent);
  color: var(--bg-base);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r);
  font-weight: 700;
  z-index: 999;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: var(--sp-4);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

p + p {
  margin-top: var(--sp-4);
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

small {
  font-size: 0.8125rem;
}

.text-accent    { color: var(--accent); }
.text-muted     { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center    { text-align: center; }
.text-sm        { font-size: 0.875rem; }
.text-lg        { font-size: 1.125rem; }
.font-bold      { font-weight: 700; }
.font-semibold  { font-weight: 600; }

/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--sp-20);
}

.section--sm {
  padding-block: var(--sp-12);
}

.section--lg {
  padding-block: var(--sp-32);
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--surface {
  background-color: var(--bg-surface);
}

/* ============================================================
   5. SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header--left {
  text-align: left;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 635px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header--left .section-subtitle {
  margin-inline: 0;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: all var(--t-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--bg-base);
  border-color: var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-base);
  transform: translateY(-1px);
  box-shadow: var(--accent-glow);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: rgba(255,255,255,0.07);
  color: var(--text-primary);
  border-color: transparent;
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background-color: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--t-smooth), box-shadow var(--t-smooth);
}

.site-header.scrolled {
  /* background-color: rgba(0, 0, 0, 0.98); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}



.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.site-logo img {
  height: 100px;
  width: auto;
}

.site-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-logo-text span {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-primary {
  display: flex;
  align-items: center;
}

.nav-primary ul {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-primary a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r);
  transition: color var(--t-fast), background-color var(--t-fast);
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary .current-page-ancestor > a {
  color: var(--text-primary);
  background-color: rgba(255,255,255,0.05);
}

.nav-primary .menu-item-has-children {
  position: relative;
}

.nav-primary .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.nav-primary .menu-item-has-children:hover > .sub-menu,
.nav-primary .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.nav-primary .sub-menu a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--r);
}

.nav-primary .sub-menu a:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  text-decoration: none;
}

.header-phone:hover {
  color: var(--accent);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.shortlist-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--t-fast);
  cursor: pointer;
}

.shortlist-trigger:hover {
  background-color: var(--accent-subtle);
  border-color: var(--accent-border);
  color: var(--accent);
}

.shortlist-trigger svg {
  width: 20px;
  height: 20px;
}

.shortlist-trigger.has-items {
  border-color: var(--accent-border);
  color: var(--accent);
  background-color: var(--accent-subtle);
}

.shortlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background-color: var(--accent);
  color: var(--bg-base);
  font-size: 0.625rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.shortlist-count.visible {
  display: flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: var(--sp-2);
  border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-smooth);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   8. MOBILE NAVIGATION
   ============================================================ */

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-base);
  z-index: calc(var(--z-header) - 1);
  padding: var(--sp-6);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--t-smooth);
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.nav-mobile a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--r);
  transition: all var(--t-fast);
}

.nav-mobile a:hover {
  color: var(--text-primary);
  background-color: rgba(255,255,255,0.05);
}

.nav-mobile .sub-menu {
  margin-top: var(--sp-1);
  padding-left: var(--sp-4);
}

.nav-mobile .sub-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-mobile-footer {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.site-content-wrap {
  padding-top: var(--header-h);
}

.admin-bar .site-header { top: 32px; }
.admin-bar .site-content-wrap { padding-top: calc(var(--header-h) + 32px); }
.admin-bar .nav-mobile { top: calc(var(--header-h) + 32px); }

/* ============================================================
   9. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 110vh;
  margin-top: -165px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-base);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide sits absolutely stacked; only .active is visible */
.hero-bg__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  aspect-ratio: 14 / 10;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}

.hero-bg__slide.active {
  opacity: 1;
}

.hero-bg__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay sits above all slides */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(10, 35, 81, 0.65) 50%,
    rgba(10, 35, 81, 0.45) 100%
  );
}

/* Respect reduced-motion preference — skip fading, show first image only */
@media (prefers-reduced-motion: reduce) {
  .hero-bg__slide {
    transition: none;
  }
  .hero-bg__slide:not(.active) {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-24);
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-5);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* Hero search widget */
.hero-search {
  margin-top: var(--sp-8);
}

.hero-search__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.hero-search__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-xl);
  padding: var(--sp-3);
}

.hero-search__select {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 150px;
  min-width: 0;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--r-lg);
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font);
  color: #fff;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: background-color var(--t-fast), border-color var(--t-fast);
}

.hero-search__select option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

.hero-search__select:hover,
.hero-search__select:focus {
  background-color: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.hero-search__btn {
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  flex-wrap: nowrap;
}

.hero-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: var(--sp-1);
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0.85;
  animation: bounce 2.4s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

/* ============================================================
   10. ARTIST CARDS
   ============================================================ */

.artist-card {
  background-color: var(--bg-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all var(--t-smooth);
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border);
}

.artist-card__image {
    position: relative;
    aspect-ratio: 14 / 14;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.artist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.artist-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-smooth);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  gap: var(--sp-2);
}

.artist-card:hover .artist-card__image-overlay {
  opacity: 1;
}

.artist-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background-color: var(--accent);
  color: var(--bg-base);
  text-decoration: none;
  transition: background-color var(--t-fast);
}

.artist-card__overlay-btn:hover {
  background-color: var(--accent-hover);
  color: var(--bg-base);
}

.artist-card__shortlist-btn {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 2;
}

.artist-card__shortlist-btn svg {
  width: 17px;
  height: 17px;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.artist-card__shortlist-btn:hover svg,
.artist-card__shortlist-btn.shortlisted svg {
  color: var(--accent);
  fill: var(--accent);
}

.artist-card__shortlist-btn.shortlisted {
  background-color: var(--accent-subtle);
  border-color: var(--accent-border);
}

.artist-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artist-card__genres {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.artist-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 2px 10px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--t-fast);
}

.artist-card__tag:hover {
  background-color: var(--accent);
  color: var(--bg-base);
}

.artist-card__tag--location {
  color: var(--text-secondary);
  background-color: rgba(255,255,255,0.05);
  border-color: var(--border);
}

.artist-card__tag--location:hover {
  color: var(--text-primary);
  background-color: rgba(255,255,255,0.1);
}

.artist-card__name {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.artist-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

.artist-card__name a:hover {
  color: var(--accent);
}

.artist-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-card__locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.artist-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: auto;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* ============================================================
   11. GENRE GRID
   ============================================================ */

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
}

.genre-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--t-smooth);
  position: relative;
  overflow: hidden;
}

.genre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-subtle) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.genre-card:hover {
  border-color: var(--accent-border);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.genre-card:hover::before {
  opacity: 1;
}

.genre-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background-color: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  position: relative;
  transition: all var(--t-smooth);
}

.genre-card:hover .genre-card__icon {
  background-color: var(--accent);
}

.genre-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
}

.genre-card:hover .genre-card__name {
  color: var(--text-primary);
}

.genre-card__count {
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
}

/* ============================================================
   12. HOW IT WORKS
   ============================================================ */

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + var(--sp-6));
  right: calc(16.666% + var(--sp-6));
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-border) 20%, var(--accent-border) 80%, transparent);
}

.how-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  position: relative;
}

.how-step__number {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background-color: var(--bg-surface);
  border: 2px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto var(--sp-6);
  position: relative;
  z-index: 1;
}

.how-step__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.how-step__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   13. EVENT TYPES
   ============================================================ */

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.event-type-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  text-decoration: none;
  display: block;
}

.event-type-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-type-card:hover .event-type-card__img {
  transform: scale(1.04);
}

.event-type-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(10,35,81,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  transition: background var(--t-base);
}

.event-type-card:hover .event-type-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(10,35,81,0.65) 60%, rgba(10,35,81,0.15) 100%);
}

.event-type-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.event-type-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.event-type-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-smooth), margin var(--t-smooth);
}

.event-type-card:hover .event-type-card__desc {
  max-height: 80px;
  margin-bottom: var(--sp-4);
}

.event-type-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--t-smooth);
}

.event-type-card:hover .event-type-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  transition: border-color var(--t-base);
}

.testimonial-card:hover {
  border-color: var(--accent-border);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.testimonial-author__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-author__event {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   15. TRUST BAR
   ============================================================ */

.trust-bar {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-12);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.trust-stat__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-stat__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background-color: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   16. CTA SECTION
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,174,239,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-subtitle {
  margin-bottom: var(--sp-8);
}

.cta-section .hero-actions {
  justify-content: center;
}

/* ============================================================
   17. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-20);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-16);
}

.footer-brand__logo {
  margin-bottom: var(--sp-5);
}

.footer-brand__logo img {
  height: 100px;
  width: auto;
}

.footer-brand__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background-color: var(--accent-subtle);
  border-color: var(--accent-border);
  color: var(--accent);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col--genres ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--sp-6);
  row-gap: var(--sp-3);
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background-color: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color var(--t-fast);
  pointer-events: none;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--accent-dark, var(--accent));
  filter: brightness(1.1);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-credit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

.footer-credit a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--text-primary);
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================================
   18. ARTIST ARCHIVE PAGE
   ============================================================ */

.archive-hero {
  background: linear-gradient(to bottom, var(--bg-alt) 0%, var(--bg-base) 100%);
  margin-top: -206px;
  padding-top: calc(160px + var(--sp-16));
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border);
}

.archive-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.archive-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.filter-bar {
  background-color: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-4);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.filter-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.5rem 2.25rem 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text-secondary);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a93aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: all var(--t-fast);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--accent-border);
  color: var(--text-primary);
  outline: none;
}

.filter-select option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

.filter-bar__count {
  margin-left: auto;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-bar__count strong {
  color: var(--text-primary);
}

.archive-layout {
  padding-block: var(--sp-10) var(--sp-20);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.archive-no-results {
  text-align: center;
  padding-block: var(--sp-20);
  grid-column: 1 / -1;
}

.archive-no-results h3 {
  font-size: 1.375rem;
  margin-bottom: var(--sp-3);
}

.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-12);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
  text-decoration: none;
  transition: all var(--t-fast);
}

.page-numbers:hover,
.page-numbers.current {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-base);
}

.page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
  width: auto;
}

.page-numbers.next,
.page-numbers.prev {
  width: auto;
  padding-inline: var(--sp-4);
}

/* ============================================================
   19. SINGLE ARTIST (PRODUCT) PAGE
   ============================================================ */

/* ============================================================
   ARTIST PROFILE HERO
   ============================================================ */

.artist-hero {
  position: relative;
  min-height: 440px;
  margin-top: -165px;
  padding-top: 165px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--bg-base);
}

.artist-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.artist-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artist-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(10, 35, 81, 0.68) 50%,
    rgba(10, 35, 81, 0.96) 100%
  );
}

.artist-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-10);
  width: 100%;
}

.artist-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.artist-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color var(--t-fast);
}

.artist-hero__breadcrumb a:hover {
  color: #fff;
}

.artist-hero__breadcrumb svg {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.artist-hero__genres {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.artist-hero__name {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   ARTIST SINGLE (below-hero layout)
   ============================================================ */

.artist-single {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-20);
}

.artist-single__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-10);
  align-items: start;
}

.artist-single__breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.artist-single__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.artist-single__breadcrumb a:hover {
  color: var(--accent);
}

.artist-single__breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.artist-gallery {
  margin-bottom: var(--sp-8);
}

.artist-gallery__main {
  aspect-ratio: 14 / 14;
  overflow: hidden;
  border-radius: var(--r-lg);
  background-color: var(--bg-alt);
  margin-bottom: 4px;
  cursor: pointer;
}

.artist-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-smooth);
}

.artist-gallery__main:hover img {
  transform: scale(1.02);
}

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

.artist-gallery__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-alt);
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
}

.artist-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-smooth), filter var(--t-smooth);
}

.artist-gallery__thumb:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.artist-gallery__thumb.active {
  border-color: var(--accent);
}

.artist-single__header {
  margin-bottom: var(--sp-6);
}

.artist-single__genres {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.artist-single__name {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.artist-single__locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

.artist-single__location-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-right: var(--sp-1);
}

.artist-video {
  margin-bottom: var(--sp-8);
}

.artist-video__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.artist-video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background-color: var(--bg-alt);
}

.artist-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.artist-bio {
  margin-bottom: var(--sp-8);
}

.artist-bio__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.artist-bio__content {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.artist-bio__content p + p {
  margin-top: var(--sp-4);
}

.artist-details {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.artist-details__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--sp-5);
}

.artist-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.artist-detail-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.artist-detail-item__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Artist Tabs */
.artist-tabs {
  margin-bottom: var(--sp-8);
}

.artist-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--sp-6);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.artist-tabs__nav::-webkit-scrollbar {
  display: none;
}

.artist-tabs__nav::after {
  content: '';
  flex-shrink: 0;
  width: var(--sp-4);
}

.artist-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.artist-tab:hover {
  color: var(--text-primary);
}

.artist-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.artist-tab-panel {
  display: none;
  padding-top: var(--sp-2);
}

.artist-tab-panel.is-active {
  display: block;
}

/* ── Artist Reviews ───────────────────────────────────────────── */
.artist-reviews {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.artist-review {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}

.artist-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}

.artist-review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.artist-review__author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.artist-review__date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.artist-review__stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.review-star {
  color: var(--border);
}

.review-star--filled {
  color: #f5a623;
}

.artist-review__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.artist-review__body p:last-child {
  margin-bottom: 0;
}

.artist-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

.artist-enquiry-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-5);
}

.artist-enquiry-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.artist-enquiry-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.artist-enquiry-card .btn {
  margin-bottom: var(--sp-3);
}

.artist-enquiry-card__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.similar-artists {
  padding-block: var(--sp-16);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-10);
}

/* Hide YIKES plugin-injected tab headings (we use our own tab nav) */
[class*="yikes-custom-woo-tab-title"] {
  display: none;
}

/* Constrain any iframes injected by plugins (e.g. YIKES tab content) */
.wc-tab iframe,
.artist-tab-panel iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  border-radius: var(--r-md);
  display: block;
}

/* YouTube facade thumbnails */
.yt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}

.yt-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background var(--t-fast);
}

.yt-facade:hover::after,
.yt-facade:focus::after {
  background: rgba(0, 0, 0, 0.05);
}

.yt-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.yt-facade__play svg {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform var(--t-fast);
}

.yt-facade:hover .yt-facade__play svg,
.yt-facade:focus .yt-facade__play svg {
  transform: scale(1.1);
}

/* Lay out multiple plugin-injected iframes in a responsive 2-column grid */
.wc-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  align-items: start;
}

/* YIKES wraps each iframe in a <p> — strip its default spacing */
.wc-tab > p {
  margin: 0;
  min-width: 0;
}

@media (max-width: 600px) {
  .wc-tab {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   20. ENQUIRY PANEL (SHORTLIST)
   ============================================================ */

.panel-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-smooth);
}

.panel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.enquiry-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: var(--z-panel);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-smooth);
  overflow: hidden;
}

.enquiry-panel.open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-header__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.panel-close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--text-secondary);
}

.panel-close:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.panel-close svg {
  width: 16px;
  height: 16px;
}

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
}

.panel-empty {
  text-align: center;
  padding-block: var(--sp-12);
}

.panel-empty svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin: 0 auto var(--sp-4);
}

.panel-empty h3 {
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
}

.shortlist-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
}

.shortlist-item__img {
  width: 72px;
  height: 60px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--bg-alt);
}

.shortlist-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shortlist-item__info {
  flex: 1;
  min-width: 0;
}

.shortlist-item__name {
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.shortlist-item__genres {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.shortlist-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
  background: none;
  border: none;
  padding: 0;
}

.shortlist-item__remove:hover {
  color: #e74c3c;
}

.shortlist-item__remove svg {
  width: 12px;
  height: 12px;
}

.panel-footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background-color: var(--bg-alt);
}

/* ============================================================
   21. ENQUIRY FORM (MODAL)
   ============================================================ */

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-panel) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-smooth);
}

.enquiry-modal.open {
  opacity: 1;
  pointer-events: all;
}

.enquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.enquiry-modal__box {
  position: relative;
  z-index: 1;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-10);
}

.enquiry-modal__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--text-secondary);
}

.enquiry-modal__close:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.enquiry-modal__close svg {
  width: 16px;
  height: 16px;
}

.enquiry-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.enquiry-modal__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
}

.form-steps {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.form-step-dot {
  height: 4px;
  flex: 1;
  border-radius: var(--r-full);
  background-color: var(--border-hover);
  transition: background-color var(--t-smooth);
}

.form-step-dot.active {
  background-color: var(--accent);
}

.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}

.form-label span {
  color: var(--accent);
  margin-left: 2px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  line-height: 1.5;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a93aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background-color: var(--bg-surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.form-success {
  text-align: center;
  padding-block: var(--sp-8);
  display: none;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background-color: rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
}

.form-error-msg {
  display: none;
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: var(--sp-2);
}

.form-control.has-error {
  border-color: #ef4444;
}

/* ============================================================
   22. PAGE TEMPLATES
   ============================================================ */

.page-hero {
  background: linear-gradient(to bottom, var(--bg-alt), var(--bg-base));
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + var(--sp-16));
  margin-top: -160px;
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: block;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.page-content {
  padding-block: var(--sp-16);
}

.page-content h2 {
  font-size: 1.625rem;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.page-content p {
  margin-bottom: var(--sp-5);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  list-style: revert;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-5);
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content li + li {
  margin-top: var(--sp-2);
}

/* ============================================================
   23. BLOG
   ============================================================ */

.post-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-smooth);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.post-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.post-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}

.post-card__title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.post-card__title a:hover {
  color: var(--accent);
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
}

.post-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.single-post {
  padding-block: var(--sp-16);
}

.single-post__header {
  max-width: var(--container-narrow);
  margin: 0 auto var(--sp-10);
  text-align: center;
}

.single-post__image {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-12);
}

.single-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post__content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.single-post__content p + p { margin-top: var(--sp-5); }

.single-post__content h2 {
  font-size: 1.625rem;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  color: var(--text-primary);
}

.single-post__content h3 {
  font-size: 1.25rem;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.single-post__content a {
  color: var(--accent-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 119, 204, 0.4);
}

/* ============================================================
   24. 404
   ============================================================ */

.error-404-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: var(--sp-12);
  text-align: center;
  position: relative;
}

.error-404__number {
  display: block;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.error-404__content {
  position: relative;
}

.error-404__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}

.error-404__text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
}

/* ============================================================
   25. UTILITIES & MISC
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge--accent {
  background-color: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   26. ANIMATIONS
   ============================================================ */

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease both;
}

.animate-fadeInUp--d1 { animation-delay: 0.1s; }
.animate-fadeInUp--d2 { animation-delay: 0.2s; }
.animate-fadeInUp--d3 { animation-delay: 0.3s; }

/* ============================================================
   27. RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root { --header-h: 90px; }

  .nav-primary,
  .header-phone { display: none; }

  .nav-toggle { display: flex; }

  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .artist-single__layout {
    grid-template-columns: 1fr;
  }

  .artist-single__main,
  .artist-sidebar {
    min-width: 0;
  }

  .artist-sidebar {
    position: static;
    max-width: 480px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .how-steps::before { display: none; }

  .how-step {
    padding: var(--sp-6);
    text-align: left;
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
  }

  .how-step__number {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    font-size: 1.125rem;
  }
}

/* ============================================================
   28. RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --sp-20: 3.5rem;
    --sp-24: 4rem;
    --sp-32: 5rem;
  }

  .container { padding-inline: var(--sp-4); }
  .section   { padding-block: var(--sp-12); }

  .site-logo img { height: 80px; width: auto; }

  .hero {
    min-height: 110vh;
    margin-top: -95px;
    flex-direction: column;
    justify-content: center;
    padding-bottom: var(--sp-10);
  }

  .hero-scroll {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-left: 50px;
    /* margin-top: var(--sp-10); */
  }

  .hero-stats {
    gap: var(--sp-4);
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-search__form {
    flex-direction: column;
  }

  .hero-search__select {
    flex: 1 1 auto;
    width: 100%;
  }

  .hero-search__btn {
    width: 100%;
    justify-content: center;
  }

  .artists-grid,
  .archive-grid,
  .posts-grid { grid-template-columns: 1fr; }

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

  .event-types-grid { grid-template-columns: 1fr; }

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

  .trust-bar__inner { justify-content: center; }
  .trust-divider { display: none; }
  .trust-stat { min-width: 40%; }

  .filter-bar__inner { gap: var(--sp-2); }
  .filter-bar__count { width: 100%; margin-left: 0; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .enquiry-panel { max-width: 100%; }

  .enquiry-modal__box { padding: var(--sp-6); }

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

  .artist-details__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   29. ABOUT PAGE
   ============================================================ */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.about-value-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--t-base), transform var(--t-smooth);
}

.about-value-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.about-value-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.about-value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.about-value-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================================
   30. CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info__title,
.contact-form-wrap__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--sp-4);
}

.contact-info__intro {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background-color: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a.contact-detail__value:hover {
  color: var(--accent);
}

.contact-social__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.contact-form-wrap {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

/* ============================================================
   31. FAQ PAGE
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-12);
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item.open,
.faq-item:hover {
  border-color: var(--accent-border);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-7);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}

.faq-item__question {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--t-smooth);
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer-inner {
  padding: 0 var(--sp-7) var(--sp-6);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item__answer-inner p + p { margin-top: var(--sp-3); }
.faq-item__answer-inner ul,
.faq-item__answer-inner ol {
  list-style: revert;
  padding-left: var(--sp-6);
  margin-top: var(--sp-3);
}

.faq-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}

.faq-cta p {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .faq-item__trigger { padding: var(--sp-5) var(--sp-5); }
  .faq-item__answer-inner { padding: 0 var(--sp-5) var(--sp-5); }
  .faq-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .faq-cta .btn { justify-content: center; }
}

/* ============================================================
   ARTIST HERO — mobile overrides
   ============================================================ */

@media (max-width: 768px) {
  .artist-hero {
    min-height: 320px;
    align-items: flex-end;
  }
}

/* Sidebar locations block */
.artist-sidebar__locations {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.artist-sidebar__locations-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.artist-sidebar__locations-label svg {
  color: var(--accent);
  flex-shrink: 0;
}

.artist-sidebar__locations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
