/* ══════════════════════════════════════════════════════
   ELITE ENTERTAINMENT & EVENTS — LUXURY STYLESHEET
   Pure Black · Metallic Gold · Premium Prestige
══════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --black:        #030303;
  --black-2:      #080808;
  --black-3:      #0d0d0d;
  --black-4:      #141414;
  --black-5:      #1b1b1b;

  --silver:       #c8c8c8;
  --silver-light: #e8e8e8;
  --silver-mid:   #b8b8b8;
  --silver-dark:  #8a8a8a;

  /* Luxury gold accent (default) */
  --gold:         #c9a84c;
  --gold-light:   #f3e5ab;
  --gold-dark:    #8a6f27;

  --gradient-gold: linear-gradient(135deg, #8a6f27 0%, #e8c86b 38%, #c9a84c 55%, #6e551c 100%);
  --gradient-dark: linear-gradient(180deg, #0d0d0d 0%, #030303 100%);

  --white:        #ffffff;
  --off-white:    #f5f5f5;

  --font-display:  'Bebas Neue', sans-serif;
  --font-heading:  'Cormorant Garamond', serif;
  --font-body:     'Montserrat', sans-serif;

  --container:    1280px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.6);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.8);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.9);
  --shadow-gold:  0 0 30px rgba(201, 168, 76, 0.2);

  --transition:   0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--silver-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ═══════════════════════════════════════════════════
   BUTTONS & ACCENTS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(200, 168, 76, 0.2);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 76, 0.4);
  filter: brightness(1.1);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 15px rgba(200, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════ */
.topbar {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.6rem 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--silver-mid);
}
.topbar-left a { color: var(--silver-light); }
.topbar-left a:hover { color: var(--gold); }
.topbar-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
}
.topbar-icon svg { width: 13px; height: 13px; }
.topbar-sep { color: rgba(255, 255, 255, 0.1); }

.topbar-right,
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.topbar-right a,
.topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #c9c9c9;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.topbar-right a svg,
.topbar-socials a svg { width: 14px; height: 14px; }
.topbar-right a:hover,
.topbar-socials a:hover {
  color: var(--gold);
  background: rgba(200, 168, 76, 0.1);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  overflow: visible;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-contact-info {
  display: none;
}

/* Logo / brand lockups from logo pack */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  max-width: min(52vw, 220px);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-logo--nav {
  height: 50px;
  width: 50px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 15px rgba(200,168,76,0.25);
  border: 1px solid rgba(200,168,76,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-logo--nav:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(200,168,76,0.45);
}
/* Only show one logo at a time: full/horizontal OR icon */
.brand-logo--nav-icon {
  display: none;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 15px rgba(200,168,76,0.25);
  border: 1px solid rgba(200,168,76,0.35);
}
.brand-logo--footer {
  height: auto;
  width: min(280px, 100%);
  max-width: 280px;
  max-height: 110px;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45)) drop-shadow(0 0 14px rgba(200,168,76,0.25));
  box-shadow: none;
  border: none;
  background: transparent;
}
.brand-link--footer { margin-bottom: 0.5rem; display: inline-block; }
.loading-brand-logo {
  width: min(200px, 55vw);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 0 28px rgba(200,168,76,0.35));
  animation: pulseLogo 2s infinite ease-in-out;
}
.modal-brand-logo {
  width: min(140px, 40vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(200,168,76,0.3));
}
.logo-main {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-mid);
  font-weight: 600;
  margin-top: 4px;
}
/* Mobile: keep the nav logo visible (pages use brand-logo--nav only;
   the old rule hid it and expected a missing brand-logo--nav-icon) */
@media (max-width: 900px) {
  .logo {
    max-width: 56px;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
  }
  .brand-logo--nav {
    display: block !important;
    height: 44px;
    width: 44px;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .brand-logo--nav-icon {
    display: none;
  }
}
@media (max-width: 520px) {
  .logo { max-width: 48px; }
  .brand-logo--nav {
    height: 42px;
    width: 42px;
  }
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9c9c9;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.has-dropdown:hover > a {
  color: var(--gold);
}

/* Clean desktop nav + compact dropdowns */
.main-nav .nav-primary {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-primary > li {
  position: relative;
  list-style: none;
}
/* All top labels same silver — never pure white (was making Hire / Account look odd) */
.main-nav .nav-top-link,
.main-nav .nav-primary > li > a.nav-top-link,
.main-nav .nav-primary > li.has-dropdown > a.nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c9c9 !important;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  opacity: 1;
}
.main-nav .nav-top-link:hover,
.main-nav .has-dropdown:hover > .nav-top-link,
.main-nav .has-dropdown:focus-within > .nav-top-link,
.main-nav .nav-top-link.is-current,
.main-nav .nav-primary > li.has-dropdown > a.nav-top-link:hover,
.main-nav .nav-primary > li.has-dropdown:hover > a.nav-top-link {
  color: var(--gold, #c9a84c) !important;
  background: rgba(200, 168, 76, 0.08);
}
.main-nav .nav-top-link .nav-caret,
.main-nav .has-dropdown > .nav-top-link .nav-caret {
  color: inherit;
  stroke: currentColor;
  opacity: 0.85;
}
.nav-caret {
  opacity: 0.85;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.main-nav .has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

/* Compact dropdown under each item */
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  max-width: 280px;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: #0c0c0c;
  border: 1px solid rgba(200, 168, 76, 0.22);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1200;
  pointer-events: none;
}
/* Artists: 2-column grid so every roster fits without long scroll */
.main-nav .dropdown.dropdown--cols {
  min-width: 420px;
  max-width: min(480px, 92vw);
  max-height: min(70vh, 520px);
  overflow: auto;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 0.35rem;
  padding: 0.55rem;
}
.main-nav .has-dropdown:hover > .dropdown.dropdown--cols,
.main-nav .has-dropdown:focus-within > .dropdown.dropdown--cols {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav .dropdown.dropdown--cols a {
  padding: 0.42rem 0.65rem;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Keep open when moving into the menu */
.main-nav .has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.main-nav .has-dropdown:hover > .dropdown,
.main-nav .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav .dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #c8c8c8;
  text-transform: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav .dropdown a:hover,
.main-nav .dropdown a.is-current {
  background: rgba(200, 168, 76, 0.12);
  color: #fff;
}

/* Hide broken mega-panel leftovers if any remain in HTML */
.nav-panel,
.nav-panel-grid,
.nav-panel-title,
.nav-panel-list {
  display: none !important;
}

/* Filter icon buttons (SVG, no emoji) */
.filter-icon-svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fleet-brand-fallback,
.yacht-type-icon,
.talent-style-icon {
  color: var(--gold, #c9a84c);
}

/* ── Compact catalogue pages (cars / yachts / models) ── */
.catalogue-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
}
.cat-page-head {
  padding: 5.5rem 0 1rem;
  border-bottom: 1px solid rgba(200, 168, 76, 0.12);
  background: linear-gradient(180deg, rgba(12,12,12,1) 0%, rgba(8,8,8,1) 100%);
}
.cat-page-head h1 {
  font-family: var(--font-heading, Georgia, serif);
  font-weight: 300;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: #fff;
  margin: 0.25rem 0 0.45rem;
  line-height: 1.15;
}
.cat-page-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--silver-mid, #aaa);
  max-width: 560px;
  line-height: 1.5;
}
.cat-main {
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}
.cat-toolbar {
  position: sticky;
  top: 64px;
  z-index: 50;
  margin-bottom: 1.1rem !important;
  padding: 0.75rem 0 0.85rem !important;
}
.cat-form-heading {
  font-family: var(--font-heading, Georgia, serif);
  font-weight: 300;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fff;
  text-align: center;
  margin: 0 0 1rem;
}
.catalogue-page .detail-content {
  padding-block: 1.5rem 2.5rem;
}
.catalogue-page .sf-wrap {
  margin-top: 0.5rem;
}
.catalogue-page .back-btn-wrap {
  margin-top: 1.5rem;
  text-align: center;
}
.catalogue-page .topbar {
  display: none;
}

@media (max-width: 900px) {
  .cat-page-head {
    padding: 4.75rem 0 0.85rem;
  }
  .cat-page-head h1 {
    font-size: 1.55rem;
  }
  .cat-page-sub {
    font-size: 0.8rem;
  }
  .cat-toolbar {
    top: 56px;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  .header-actions .header-cta {
    display: none;
  }
}

@media (min-width: 901px) {
  .catalogue-page .topbar {
    display: block;
  }
  .cat-page-head {
    padding-top: 6.5rem;
  }
}

/* How-it-works strip */
.cat-howto {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(200, 168, 76, 0.04);
}
.cat-howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
}
.cat-howto-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,168,76,0.12);
}
.cat-howto-steps strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
}
.cat-howto-steps span {
  font-size: 0.78rem;
  color: var(--silver-mid, #aaa);
  line-height: 1.4;
}
.cat-howto-steps em {
  font-style: normal;
  color: #eee;
  font-weight: 600;
}

/* In-page selection panel */
.cat-selection-panel {
  padding: 0 0 1.25rem;
}
.cat-selection-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 168, 76, 0.35);
  background: linear-gradient(135deg, rgba(200,168,76,0.1), rgba(0,0,0,0.35));
}
.cat-selection-box h3 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
}
.cat-selection-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cat-selection-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #eee;
  padding: 0.35rem 0.55rem 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(200,168,76,0.2);
}
.cat-sel-remove {
  appearance: none;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #ccc;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  cursor: pointer;
}
.cat-sel-remove:hover {
  background: rgba(255,80,80,0.25);
  color: #fff;
}
.cat-selection-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cat-form-block {
  max-width: 760px;
  margin: 0 auto;
}
.cat-form-lead {
  text-align: center;
  color: var(--silver-mid, #aaa);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}
.catalogue-page .topbar {
  display: block;
}
.catalogue-page .site-footer {
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .cat-howto-steps {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .cat-selection-box {
    flex-direction: column;
    align-items: stretch;
  }
  .cat-selection-btns .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.is-open span,
.nav-toggle[aria-expanded="true"] span {
  background: var(--gold, #c9a84c);
}

/* Preloader / Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html.intro-active,
body.intro-active {
  overflow: hidden;
}
.loading-screen--video {
  overflow: hidden;
  background: #000;
}
.loading-intro-video {
  position: relative;
  z-index: 1;
  width: 25vw;
  height: 25vh;
  max-width: min(25vw, 25vh * 16 / 9);
  max-height: min(25vh, 25vw * 9 / 16);
  min-width: 160px;
  min-height: 90px;
  object-fit: contain;
  object-position: center;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(200, 168, 76, 0.2);
}
@media (max-width: 640px) {
  .loading-intro-video {
    width: 55vw;
    height: auto;
    max-width: 55vw;
    max-height: 30vh;
    min-width: 140px;
  }
}
#fireworks-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.loading-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.loading-content--video {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.loading-skip {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  pointer-events: auto;
  appearance: none;
  border: 1px solid rgba(200, 168, 76, 0.45);
  background: rgba(0, 0, 0, 0.55);
  color: #e8c86b;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.loading-skip:hover {
  background: rgba(200, 168, 76, 0.18);
  border-color: rgba(200, 168, 76, 0.75);
  color: #fff;
}
@media (max-width: 640px) {
  .loading-skip {
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.65rem;
    padding: 0.55rem 0.85rem;
  }
}
.loading-logo {
  font-family: var(--font-display);
  font-size: 4.5rem;
  letter-spacing: 0.2em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseLogo 2s infinite ease-in-out;
  line-height: 1;
}
.loading-sub {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--silver-mid);
  margin-top: 0.6rem;
  font-weight: 600;
}
.loading-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.8rem auto 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.loading-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loadProgress 2.2s forwards cubic-bezier(0.1, 0.8, 0.1, 1);
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(0.97); opacity: 0.8; }
  50% { transform: scale(1.03); opacity: 1; }
}
@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   HERO SECTION (VIDEO OVERLAY & TRANSPARENT HEADER)
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 10rem 7rem;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%) contrast(105%);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.45) 0%, rgba(3, 3, 3, 0.98) 100%);
  z-index: 2;
}
.hero-grid-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.badge-line {
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--silver-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
}

.search-bar-floating {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  width: 100%;
  max-width: 1000px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.6rem 1.8rem;
  flex-grow: 1;
}
.search-field label {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.search-btn {
  background: var(--gradient-gold);
  border: none;
  padding: 0.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.search-btn span {
  font-size: 0.72rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.search-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(200, 168, 76, 0.4);
}

/* ─── FEATURES HORIZONTAL BAR ─── */
.features-bar {
  background: rgba(8, 8, 8, 0.9);
  border-top: 1px solid rgba(200, 168, 76, 0.15);
  border-bottom: 1px solid rgba(200, 168, 76, 0.15);
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
}
.features-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--silver-light);
}
.feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.feature-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}
.gold-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gradient-gold);
  margin: 1.25rem auto 0 auto;
}

/* ═══════════════════════════════════════════════════
   SERVICES / PORTFOLIO SECTION
═══════════════════════════════════════════════════ */
.services-section {
  padding-block: clamp(3.5rem, 6vw, 7rem);
  background: var(--black-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: #000;
  border-radius: 14px;
  border: 1px solid rgba(200, 168, 76, 0.14);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 160px;
  max-height: 260px;
  background-color: #0a0a0a;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-container .card-loop-video,
.offer-img .card-loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}
.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 40%, rgba(3,3,3,0.75) 100%);
  pointer-events: none;
}
.service-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-top: 0;
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 0.35rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 0.35rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.service-card p {
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  color: var(--silver-mid);
  margin: 0 0 1rem;
  min-height: 0;
  line-height: 1.55;
  flex: 1 1 auto;
}
.service-card .btn {
  margin-top: auto;
  width: auto;
  max-width: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 76, 0.55);
  box-shadow: var(--shadow-gold);
}
.service-card:hover .service-img-container .card-loop-video {
  transform: scale(1.05);
}
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hire-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  border: 2px solid rgba(200, 168, 76, 0.4);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.hire-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: var(--transition);
  z-index: 1;
}
.hire-item span {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1.5rem;
  transition: var(--transition);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}
.hire-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(200, 168, 76, 0.5);
  transform: translateY(-5px);
}
.hire-item:hover .hire-overlay {
  background: linear-gradient(180deg, rgba(200, 168, 76, 0.1) 0%, rgba(3, 3, 3, 0.9) 100%);
}
.hire-item:hover span {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   PREMIUM OFFERS SECTION
═══════════════════════════════════════════════════ */
.offer-section {
  padding-block: 7rem;
  background: var(--black);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}
.offer-card {
  background: var(--black-3);
  border: 1px solid rgba(200, 168, 76, 0.12);
  border-radius: 14px;
  padding: clamp(0.95rem, 2vw, 1.35rem);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.offer-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 120px;
  max-height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  border-radius: 10px;
  border: 1px solid rgba(200, 168, 76, 0.15);
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.offer-img--video {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 130px;
  max-height: 190px;
}
.offer-img--video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
}
.offer-card:hover .offer-img {
  border-color: var(--gold);
}
.offer-card:hover .offer-img .card-loop-video {
  transform: scale(1.05);
}
.offer-img .card-loop-video {
  transition: transform 0.45s ease;
}
.offer-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.offer-card p {
  font-size: clamp(0.74rem, 1.4vw, 0.82rem);
  color: var(--silver-mid);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1 1 auto;
}
.offer-card .offer-btn {
  margin-top: auto;
  align-self: flex-start;
}
.offer-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: auto;
  transition: var(--transition);
}
.offer-btn:hover {
  color: var(--white);
  padding-left: 4px;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ─── MIDDLE CALLOUT BANNER ─── */
.middle-banner {
  position: relative;
  padding-block: 6rem;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #030303 100%);
  border-top: 1px solid rgba(200, 168, 76, 0.15);
  border-bottom: 1px solid rgba(200, 168, 76, 0.15);
  overflow: hidden;
}
.middle-banner-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(200, 168, 76, 0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 80%, rgba(200, 168, 76, 0.04) 0%, transparent 55%);
  pointer-events: none;
}
.middle-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.middle-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════
   PROCESS WORKFLOW SECTION
═══════════════════════════════════════════════════ */
.process-section {
  padding-block: 7rem;
  background: var(--black-2);
}
.process-workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(200, 168, 76, 0.15);
}
.step-line {
  position: absolute;
  left: 50%;
  right: -50%;
  height: 1px;
  border-top: 1px dotted rgba(200, 168, 76, 0.35);
  top: 52%;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.78rem;
  color: var(--silver-mid);
  line-height: 1.7;
  max-width: 220px;
}
.process-step:hover .step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 25px rgba(200, 168, 76, 0.4);
}

/* ═══════════════════════════════════════════════════
   ARTISTS GRID
═══════════════════════════════════════════════════ */
.artists-section {
  padding-block: 7rem;
  background: var(--black);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.artist-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.artist-img-wrap {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: contrast(102%) grayscale(25%);
  transition: var(--transition-slow);
}
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.95) 95%);
}
.artist-card-body {
  padding: 1.8rem;
  background: var(--black-3);
}
.artist-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.artist-card p {
  font-size: 0.78rem;
  color: var(--silver-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  min-height: 40px;
}
.artist-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 168, 76, 0.2);
  padding-bottom: 4px;
  display: inline-block;
}
.artist-btn:hover {
  color: var(--white);
  border-color: var(--white);
  padding-left: 2px;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 168, 76, 0.25);
  box-shadow: var(--shadow-sm);
}
.artist-card:hover .artist-img-wrap {
  transform: scale(1.03);
  filter: contrast(105%) grayscale(0%);
}

/* ═══════════════════════════════════════════════════
   LEGACY SECTION (41 Years)
═══════════════════════════════════════════════════ */
.legacy-section {
  padding-block: 8rem;
  background: linear-gradient(180deg, #030303 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.legacy-content {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr;
  align-items: center;
  gap: 4rem;
}
.legacy-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.legacy-number {
  font-family: var(--font-heading);
  font-size: 7.5rem;
  font-weight: 300;
  line-height: 0.8;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legacy-years-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--silver-mid);
  margin-top: 1rem;
}
.legacy-divider-v {
  width: 1px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
}
.legacy-right p {
  font-size: 0.88rem;
  color: var(--silver-mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.signature-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.2rem;
}
.legacy-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.legacy-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legacy-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   COMPANY DOCUMENTS SECTION
═══════════════════════════════════════════════════ */
.docs-section {
  padding-block: 7rem;
  background: var(--black);
}
.docs-intro {
  max-width: 680px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 0.9rem;
  color: var(--silver-mid);
  line-height: 1.8;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}
.doc-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  transition: var(--transition);
}
.doc-card-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.doc-card-icon svg {
  width: 28px;
  height: 28px;
}
.doc-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.doc-card-body p {
  font-size: 0.78rem;
  color: var(--silver-mid);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.doc-ref {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(200, 168, 76, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.doc-card:hover {
  border-color: rgba(200, 168, 76, 0.2);
  transform: translateY(-3px);
}

.docs-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.doc-number-card {
  background: var(--black-3);
  border: 1px solid rgba(200, 168, 76, 0.08);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.doc-number-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--silver-mid); /* Readability fix: mid instead of dark */
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.doc-number-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.doc-number-note {
  font-size: 0.68rem;
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════════
   CLIENTS SECTION
═══════════════════════════════════════════════════ */
.clients-section {
  padding-block: 5rem;
  background: var(--black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.clients-track-wrap {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--black-2) 0%, transparent 100%);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--black-2) 0%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scrollTrack 35s linear infinite;
}
.client-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.client-logo:hover {
  color: var(--gold);
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-section {
  padding-block: 7rem;
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--black-3);
  border: 1px solid rgba(200, 168, 76, 0.12);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  color: var(--gold);
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--silver-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 168, 76, 0.08);
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.author-role {
  font-size: 0.68rem;
  color: var(--silver-mid); /* Readability fix: mid instead of dark */
  margin-top: 1px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.verified-badge svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════════════
   INSTAGRAM GRID SECTION
═══════════════════════════════════════════════════ */
.gallery-section {
  padding-block: 7rem;
  background: var(--black-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  filter: contrast(102%) grayscale(40%);
  transition: var(--transition-slow);
}
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.gallery-hover svg {
  width: 24px;
  height: 24px;
}
.gallery-item:hover {
  filter: contrast(105%) grayscale(0%);
  transform: scale(1.02);
  border-color: rgba(200, 168, 76, 0.3);
}
.gallery-item:hover .gallery-hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════ */
.contact-section {
  padding-block: 7rem;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-left p {
  font-size: 0.88rem;
  color: var(--silver-mid);
  margin-bottom: 3rem;
  line-height: 1.8;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 76, 0.2);
  background: var(--black-3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg {
  width: 18px;
  height: 18px;
}
.ci-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--silver-mid); /* Readability fix: mid instead of dark */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.ci-value:hover {
  color: var(--gold);
}

.quote-form {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3rem;
  border-radius: var(--radius-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--silver-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(200, 168, 76, 0.15);
}
.form-group textarea {
  resize: vertical;
}

/* Footer Banner (Book Today) */
.footer-banner {
  padding-block: 6rem;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #030303 100%);
  border-top: 1px solid rgba(200, 168, 76, 0.15);
}
.footer-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-top {
  padding: 6rem 0;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--silver-mid); /* Readability fix */
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-mid);
  transition: var(--transition);
}
.footer-socials a svg {
  width: 14px;
  height: 14px;
}
.footer-socials a:hover {
  background: rgba(200, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li svg {
  width: 14px;
  height: 14px;
  stroke: var(--silver-mid); /* Readability fix */
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.8rem;
  color: var(--silver-mid); /* Readability fix */
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2rem 0 2.25rem;
  font-size: 0.72rem;
  color: var(--silver-mid); /* Readability fix */
  position: relative;
  z-index: 2;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
}
.footer-bottom-links a {
  color: var(--silver-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════ */
/* Clearance so fixed controls never cover footer links */
body {
  padding-bottom: 5.5rem;
}
body.page-multi-enquiry {
  padding-bottom: 2rem;
}

/* Back to top — bottom LEFT, full gold (never shares the multi-enquiry corner) */
.back-to-top {
  position: fixed;
  left: 1.15rem;
  right: auto;
  bottom: 1.15rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8a6f27 0%, #e8c86b 42%, #c9a84c 100%);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(200, 168, 76, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 9993;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
.back-to-top svg {
  stroke: #0a0a0a;
  color: #0a0a0a;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(200, 168, 76, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  filter: brightness(1.05);
}
/* Multi-enquiry page: same left corner is fine (FAB is hidden) */
body.page-multi-enquiry .back-to-top,
body:has(#cart-list-mount) .back-to-top {
  left: 1.15rem;
  right: auto;
  bottom: 1.15rem;
}
@media (max-width: 640px) {
  body {
    padding-bottom: 5rem;
  }
  .back-to-top {
    left: 0.85rem;
    right: auto;
    bottom: 0.85rem;
    width: 46px;
    height: 46px;
  }
}

/* ═══════════════════════════════════════════════════
   SUBPAGES CUSTOM STYLES
═══════════════════════════════════════════════════ */
.detail-hero {
  padding-block: 8rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #080808 0%, #030303 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.detail-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.detail-hero p {
  font-size: 0.95rem;
  color: var(--silver-mid);
  max-width: 600px;
  margin: 0 auto;
}

.detail-content {
  padding-block: 5rem;
}

.search-wrap {
  max-width: 500px;
  margin: 0 auto 3rem auto;
}
.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 30px;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition);
  text-align: center;
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(200, 168, 76, 0.2);
}

.back-btn-wrap {
  margin-top: 4rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .services-grid { gap: 1.5rem; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .legacy-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .legacy-divider-v { display: none; }
  .legacy-right .section-title,
  .legacy-right .gold-divider { margin-inline: auto; text-align: center; }
  .docs-numbers { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .topbar { display: none !important; }
  body { padding-top: 72px; }
  body.nav-open,
  html.nav-open {
    overflow: hidden;
    touch-action: none;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(3, 3, 3, 0.98);
    z-index: 10050;
    overflow: visible;
  }
  .catalogue-page .site-header {
    z-index: 10050;
  }
  .header-inner {
    position: relative;
    z-index: 2;
  }
  .header-cta { display: none; }
  .header-actions { gap: 0.85rem; position: relative; z-index: 3; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-left { align-items: center; }
  .hero-actions { margin-bottom: 2.5rem; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(3, 3, 3, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem 2.5rem;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: none;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10040;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  }
  .main-nav.open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .main-nav .nav-primary {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.15rem;
  }
  .main-nav .nav-top-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
  }
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin: 0.15rem 0 0.35rem;
    padding: 0.35rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
  }
  .main-nav .has-dropdown.open > .dropdown {
    display: flex;
  }
  .main-nav .has-dropdown.open > .dropdown.dropdown--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: none;
    min-width: 0;
    max-width: none;
  }
  .main-nav .has-dropdown::after {
    display: none;
  }
  .nav-toggle { display: flex; }
  .header-actions .header-cta { display: none; }

  /* Mobile Drawer Contact Block */
  .mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-inline: 1rem;
  }
  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--silver-light);
    font-size: 0.88rem;
    font-weight: 500;
  }
  .mobile-contact-item a:hover { color: var(--gold); }
  .mobile-contact-item .topbar-icon { color: var(--gold); display: flex; align-items: center; }
  .mobile-contact-item .topbar-icon svg { width: 16px; height: 16px; }
  .mobile-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
  .mobile-socials a {
    width: 36px; height: 36px;
    background: var(--black-4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-mid);
    transition: var(--transition);
  }
  .mobile-socials a svg { width: 14px; height: 14px; }
  .mobile-socials a:hover {
    background: rgba(200, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hire-grid { grid-template-columns: repeat(3, 1fr); }
  .process-workflow { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .step-line { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .quote-form { padding: 2rem; }
}

@media (max-width: 768px) {
  .hire-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .doc-card { flex-direction: column; text-align: center; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hire-grid { grid-template-columns: 1fr; }
  .process-workflow { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-top-inner { grid-template-columns: 1fr; }
}

/* ─── INLINE SVG ICON CONTRAST FIXES ─── */
.ci-icon svg,
.doc-card-icon svg,
.legacy-badge svg {
  stroke: var(--gold) !important;
  fill: none !important;
  stroke-width: 2px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* ─── POPULAR SEARCH TAG PILLS ─── */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 850px;
  margin-inline: auto;
}
.tag-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver-light);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tag-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(200, 168, 76, 0.2);
  transform: translateY(-2px);
}

/* ─── AUTOCOMPLETE DROPDOWN (with artist photos) ─── */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: min(420px, 92vw);
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(200, 168, 76, 0.35);
  border-radius: 16px;
  margin-top: 0.55rem;
  max-height: 360px;
  overflow-y: auto;
  z-index: 2000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 24px rgba(200, 168, 76, 0.12);
  display: none;
}
.autocomplete-item {
  padding: 0.75rem 1.25rem;
  color: var(--silver-light);
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.autocomplete-item--media {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.9rem;
}
.autocomplete-item--media .ac-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(200,168,76,0.25);
  background: #1a1a1a;
}
.autocomplete-item--media .ac-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.autocomplete-item--media .ac-meta { flex: 1; min-width: 0; }
.autocomplete-item--media .ac-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autocomplete-item--media .ac-style {
  font-size: 0.7rem;
  color: var(--silver-mid);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autocomplete-item--media .ac-tag {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,76,0.35);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  flex-shrink: 0;
}
.autocomplete-item:last-child {
  border-bottom: none;
}
.autocomplete-item:hover {
  background: rgba(200, 168, 76, 0.12);
  color: var(--gold);
}
.autocomplete-item:hover .ac-name { color: var(--gold-light); }

/* Artist profile page */
.artist-profile {
  padding: 7rem 0 2rem;
  min-height: 70vh;
}
.artist-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 2.5rem;
  align-items: start;
}
.artist-profile-photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(200,168,76,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(200,168,76,0.12);
  aspect-ratio: 1 / 1;
  background: #111;
}
.artist-profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.artist-profile-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.15;
}
.artist-style-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(200,168,76,0.4);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.artist-full-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--silver-light);
  max-width: 640px;
  margin: 0 0 1.5rem;
}
.artist-share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.artist-share-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-right: 0.25rem;
}
.artist-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--silver-light);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: inherit;
}
.artist-share-btn:hover {
  border-color: rgba(200,168,76,0.5);
  color: var(--gold-light);
  background: rgba(200,168,76,0.1);
  transform: translateY(-2px);
}
.artist-share-fb:hover { border-color: #3b5998; color: #8ab4f8; }
.artist-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.artist-lineup-block {
  margin: 1rem 0 1.25rem;
  max-width: 420px;
}
.artist-website-line {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.85rem;
  color: #bbb;
}
.artist-website-line a {
  color: var(--gold, #c9a84c);
  text-decoration: none;
  font-weight: 600;
}
.artist-website-line a:hover { text-decoration: underline; }
.artist-yt-wrap {
  margin-top: 1.25rem;
  width: 100%;
}
.artist-yt-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin: 0 0 0.55rem;
}
.artist-yt-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,168,76,0.25);
  background: #000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.artist-yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.artist-lineup-accordion {
  width: 100%;
  margin: 0;
}
.artist-lineup-block .act-lineup-item {
  align-items: flex-start;
  text-align: left;
}
.home-act-tile-name a {
  color: inherit;
  text-decoration: none;
}
.home-act-tile-name a:hover { color: var(--gold-light); }
.act-card-name a {
  color: inherit;
  text-decoration: none;
}
.act-card-name a:hover { color: var(--gold-light); }
.act-card-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .artist-profile { padding-top: 6rem; }
  .artist-profile-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .artist-profile-photo-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ─── CUSTOM MODAL POPUPS ─── */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.custom-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.custom-modal-card {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(200, 168, 76, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--gold-glow);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.custom-modal-overlay.active .custom-modal-card {
  transform: translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--silver-mid);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close-btn:hover {
  color: var(--gold);
}

/* ─── HERO SHOWCASE & TRANSITIONS ─── */
@keyframes gentle-pulse {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.025) translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 168, 76, 0.2);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-slideshow-container {
    grid-template-columns: 1fr !important;
    height: 360px !important;
    gap: 1rem !important;
  }
}

/* Homepage: video meets navbar — topbar + header overlay hero */
body.page-home {
  --home-header-offset: 6.75rem;
  padding-top: 0 !important; /* never double-offset with fixed header */
}
body.page-home .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
body.page-home .site-header {
  position: fixed;
  top: var(--topbar-h, 2.15rem);
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 70%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
body.page-home .site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.65);
}
body.page-home .hero-events {
  margin-top: 0;
  width: 100%;
  /* Video starts at the very top of the viewport, under fixed navbar */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  padding-top: calc(var(--home-header-offset) + 1rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
  padding-inline: 0;
  box-sizing: border-box;
}
body.page-home .hero-events-inner {
  width: 100%;
  max-width: min(1100px, 100%);
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}
@media (max-width: 900px) {
  body.page-home {
    --home-header-offset: 4.5rem;
    padding-top: 0 !important;
  }
  body.page-home .site-header {
    top: 0; /* topbar hidden on mobile */
  }
  body.page-home .hero-events {
    min-height: auto;
    min-height: 100svh;
    padding-top: calc(var(--home-header-offset) + 0.75rem);
  }
}

/* ═══════════════════════════════════════════════════
   HERO — FULL-BLEED EVENT VIDEO
═══════════════════════════════════════════════════ */
.hero-events,
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-block: 6.5rem 3.5rem;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5) saturate(1.15);
}
/* YouTube hero background (cover crop, no interaction, silent) */
.hero-yt-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}
.hero-yt-bg::after {
  /* Soft mask over YouTube chrome / title flash */
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}
.hero-yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.12);
  border: 0;
  pointer-events: none;
  filter: brightness(0.78) contrast(1.08) saturate(1.15);
}
@media (max-width: 700px) {
  .hero-yt-bg iframe {
    /* Prefer covering portrait phone screens without giant letterboxing */
    width: max(100%, 220vh);
    height: max(100%, 100%);
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.hero-events .hero-video,
.hero-cinematic .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  /* Keep video bright/exciting under text */
  filter: brightness(0.78) contrast(1.12) saturate(1.3);
  transform: scale(1.04);
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-events .hero-video.is-active,
.hero-cinematic .hero-video.is-active {
  opacity: 1;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -0.6%); }
}
.hero-photo-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-photo-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  filter: brightness(0.78) contrast(1.1) saturate(1.2);
}
.hero-photo-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 16s ease-in-out infinite alternate;
}
.hero-events .hero-video-overlay,
.hero-cinematic .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Lighter overlay so motion reads clearly */
  background:
    linear-gradient(180deg,
      rgba(3,3,3,0.55) 0%,
      rgba(3,3,3,0.22) 28%,
      rgba(3,3,3,0.28) 52%,
      rgba(3,3,3,0.72) 78%,
      rgba(3,3,3,0.94) 100%),
    radial-gradient(ellipse 90% 55% at 50% 45%, rgba(201,168,76,0.14) 0%, transparent 58%);
  pointer-events: none;
}
.hero-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 140px 50px rgba(0,0,0,0.7);
  pointer-events: none;
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.35) 2px,
    rgba(0,0,0,0.35) 3px
  );
  pointer-events: none;
}
.hero-particle-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(243,229,171,0.5), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(201,168,76,0.45), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,0.28), transparent),
    radial-gradient(1px 1px at 85% 25%, rgba(243,229,171,0.4), transparent),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.2), transparent);
  animation: particleDrift 14s linear infinite;
  pointer-events: none;
  opacity: 0.75;
}
@keyframes particleDrift {
  0% { transform: translateY(0); opacity: 0.55; }
  50% { opacity: 0.9; }
  100% { transform: translateY(-22px); opacity: 0.55; }
}

.hero-events-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}
.hero-events-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(200,168,76,0.35);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,0.6);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}
.hero-badge-center {
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  text-align: center;
  gap: 0.75rem;
}
.hero-events-copy {
  max-width: 900px;
  margin-inline: auto;
}
.hero-title-main {
  font-size: clamp(2.7rem, 7vw, 5rem) !important;
  font-family: var(--font-heading) !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  margin-bottom: 1rem !important;
  color: var(--white) !important;
  text-align: center !important;
  text-shadow: 0 6px 48px rgba(0,0,0,0.65);
  letter-spacing: -0.01em;
}
.hero-title-line2 {
  display: inline-block;
  font-size: 0.72em;
  color: var(--silver-light);
  font-weight: 300;
}
.hero-title-accent {
  color: var(--gold);
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(201,168,76,0.4));
}
.hero-sub-center {
  font-size: clamp(0.95rem, 2vw, 1.12rem) !important;
  color: rgba(245,245,245,0.88) !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
  text-align: center !important;
  max-width: 720px !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.hero-events-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.9rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  max-width: 720px;
  width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 5.5rem;
  padding: 0.15rem 0.5rem;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.12);
}

.hero-event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 860px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--silver-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.hero-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(200,168,76,0.55);
  background: rgba(200,168,76,0.12);
  color: var(--gold-light);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 16px rgba(200,168,76,0.15);
}

.hero-events-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.hero-cta-primary,
.hero-cta-secondary {
  border-radius: 30px !important;
  padding: 0.9rem 1.85rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
}
.hero-cta-primary {
  box-shadow: 0 8px 28px rgba(200,168,76,0.35);
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,168,76,0.5);
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: scrollHint 2.2s ease-in-out infinite;
}
.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(6px); opacity: 0.85; }
}

.hero-content-center {
  position: relative;
  z-index: 3;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 1.75rem !important;
  width: 100%;
  padding-top: 1.5rem;
}
.hero-copy {
  max-width: 880px;
  margin-inline: auto;
}

/* ─── HERO SEARCH (professional luxury bar) ─── */
.hero-search {
  width: 100%;
  max-width: 760px;
  margin: 0.25rem auto 0;
  position: relative;
  z-index: 5;
}
.hero-search-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(200, 168, 76, 0.35);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(200, 168, 76, 0.08);
  overflow: visible;
  min-height: 64px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-search-bar:focus-within {
  border-color: rgba(200, 168, 76, 0.65);
  box-shadow:
    0 0 0 1px rgba(200, 168, 76, 0.15) inset,
    0 18px 52px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(200, 168, 76, 0.12);
}
.hero-search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 0.55rem 0.35rem 0.55rem 1.15rem;
  position: relative;
}
.hero-search-field--query {
  flex: 1.35 1 0;
}
.hero-search-field--category {
  flex: 1 1 0;
  max-width: 280px;
}
.hero-search-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 168, 76, 0.85);
  opacity: 0.9;
}
.hero-search-field-body {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.hero-search-field-body label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 168, 76, 0.9);
  margin: 0 0 0.15rem;
  line-height: 1.2;
}
.hero-search-field-body input,
.hero-search-field-body select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #f2f2f2;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.hero-search-field-body input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}
.hero-search-field-body select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.15rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #c9a84c 50%),
    linear-gradient(135deg, #c9a84c 50%, transparent 50%);
  background-position: calc(100% - 8px) 52%, calc(100% - 3px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.hero-search-field-body option,
.hero-search-field-body optgroup {
  background: #121212;
  color: #fff;
}
.hero-search-divider {
  width: 1px;
  align-self: stretch;
  margin: 0.85rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(200, 168, 76, 0.35) 50%,
    rgba(255, 255, 255, 0.12) 80%,
    transparent 100%
  );
  flex-shrink: 0;
}
.hero-search-submit {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.4rem 0.4rem 0.4rem 0.15rem;
  padding: 0 1.35rem;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a6f27 0%, #e8c86b 45%, #c9a84c 100%);
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 168, 76, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.hero-search-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(200, 168, 76, 0.45);
}
.hero-search-submit:active {
  transform: translateY(0);
}
.hero-search-submit svg {
  flex-shrink: 0;
}
/* Autocomplete sits under the query field */
.hero-search-field--query .autocomplete-dropdown {
  left: 0.5rem;
  right: 0.5rem;
  top: calc(100% + 0.45rem);
  width: auto;
  min-width: min(420px, 92vw);
}

/* Legacy search classes (kept for any residual markup) */
.search-capsule-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}
.search-bar-capsule {
  display: none !important;
}
.search-btn-round { display: none !important; }
.mic-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,76,0.4);
  background: rgba(200,168,76,0.08);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  animation: micGlow 3.5s ease-in-out infinite;
}
.mic-icon-wrap svg {
  width: 24px;
  height: 24px;
}
@keyframes micGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(200,168,76,0.15); }
  50% { box-shadow: 0 0 28px rgba(200,168,76,0.4); }
}

.form-footnote {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--silver-dark);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   TICKET COMPANIES — INFINITE MARQUEE
═══════════════════════════════════════════════════ */
.ticket-marquee-section {
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(200, 168, 76, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.75rem 0 1.5rem;
  overflow: hidden;
  position: relative;
}
.ticket-marquee-label {
  text-align: center;
  margin-bottom: 1.1rem;
  padding-inline: 1rem;
}
.ticket-marquee-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.ticket-marquee-hint {
  font-size: 0.78rem;
  color: var(--silver-mid);
}
.ticket-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticket-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  width: max-content;
  animation: ticketMarquee 42s linear infinite;
  padding-block: 0.5rem;
}
.ticket-marquee:hover .ticket-marquee-track {
  animation-play-state: paused;
}
@keyframes ticketMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Venue partners marquee */
.venue-marquee-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border-top: 1px solid rgba(200, 168, 76, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3rem 0 2.25rem;
  overflow: hidden;
}
.venue-marquee-section .section-header {
  margin-bottom: 1.5rem;
}
.venue-marquee {
  margin-top: 0.5rem;
}
.venue-marquee-track {
  gap: 2rem;
  animation-duration: 48s;
}
.venue-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 64px;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.venue-logo:hover {
  border-color: rgba(200, 168, 76, 0.4);
  background: rgba(200, 168, 76, 0.06);
  transform: translateY(-2px);
}
.venue-logo img {
  display: block;
  max-height: 44px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}
.venue-logo .venue-logo-fallback {
  display: none;
}
.venue-logo.is-text .venue-logo-fallback,
.venue-logo.is-text > span {
  display: block;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  text-align: center;
}
.venue-logo.is-text img {
  display: none;
}
@media (max-width: 640px) {
  .venue-marquee-track { gap: 1rem; animation-duration: 36s; }
  .venue-logo { min-width: 120px; min-height: 56px; padding: 0.5rem 0.85rem; }
  .venue-logo img { max-height: 36px; max-width: 120px; }
  .venue-logo.is-text > span { font-size: 0.62rem; letter-spacing: 0.08em; }
}

.ticket-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 52px;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  white-space: nowrap;
}
.ticket-logo:hover {
  border-color: rgba(200,168,76,0.45);
  background: rgba(200,168,76,0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.ticket-logo span {
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
}
.tl-ticketek {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  letter-spacing: 0.06em !important;
}
.tl-ticketmaster {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em !important;
  text-transform: lowercase;
}
.tl-star { color: var(--gold); font-size: 1.1rem; vertical-align: super; line-height: 0; }
.tl-livenation {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.14em !important;
  border: 1.5px solid rgba(255,255,255,0.75);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.tl-eventbrite {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: #f05537 !important;
  letter-spacing: -0.02em !important;
}
.tl-humanitix {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold) !important;
}
.tl-moshtix {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: lowercase;
  letter-spacing: 0.02em !important;
}
.tl-oztix {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em !important;
  color: var(--gold-light) !important;
}
.tl-trybooking {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em !important;
}

/* Featured CMS artist strip */
#cms-featured-artists,
.cms-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.featured-artist-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.featured-artist-card:hover {
  border-color: rgba(200,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.featured-artist-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.featured-artist-body {
  padding: 1.1rem 1.2rem 1.35rem;
}
.featured-artist-body h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.featured-artist-genre {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.featured-artist-rate {
  font-size: 0.85rem;
  color: #55c555;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

/* Event calendar row mobile */
.evt-row-card {
  gap: 1rem;
}
@media (max-width: 640px) {
  .evt-row-card {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1.1rem 1.2rem !important;
  }
  .evt-row-card > div:first-child {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .evt-row-card > div:last-child {
    margin-left: 0 !important;
    width: 100%;
  }
  .evt-row-card > div:last-child a,
  .evt-row-card > div:last-child button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ─── RESPONSIVE: HERO SEARCH + MARQUEE + UI ─── */
@media (max-width: 900px) {
  .hero-events,
  .hero-cinematic {
    padding-block: 5.5rem 2.75rem;
    min-height: auto;
  }
  .hero-events-inner { gap: 1.15rem; }
  .hero-stat-divider { display: none; }
  .hero-events-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 0.5rem;
  }
  .mic-icon-wrap { display: none; }
  .hero-search {
    max-width: 100%;
  }
  .hero-search-bar {
    flex-wrap: wrap;
    border-radius: 20px;
    min-height: 0;
    padding: 0.35rem;
  }
  .hero-search-field {
    flex: 1 1 100%;
    max-width: none;
    padding: 0.55rem 0.85rem;
  }
  .hero-search-field--category {
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .hero-search-divider { display: none; }
  .hero-search-submit {
    width: 100%;
    margin: 0.25rem 0.35rem 0.35rem;
    min-height: 48px;
  }
  .hero-search-field--query .autocomplete-dropdown {
    left: 0.35rem;
    right: 0.35rem;
    min-width: 0;
  }
  .features-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .feature-divider { display: none; }
  .ticket-marquee-track { gap: 1.75rem; animation-duration: 32s; }
  .ticket-logo { min-width: 120px; height: 46px; padding: 0.4rem 0.9rem; }
}

@media (max-width: 600px) {
  .hero-events,
  .hero-cinematic {
    padding-block: 5rem 2.25rem;
  }
  .hero-content-center { gap: 1.25rem !important; }
  .hero-events-cta {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }
  .hero-events-cta .btn { width: 100%; }
  .search-btn-round {
    width: 44px !important;
    height: 44px !important;
  }
  .hero-pill {
    font-size: 0.68rem;
    padding: 0.42rem 0.8rem;
  }
  .popular-tags-wrap .tags-container {
    gap: 0.5rem;
  }
  .tag-pill {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
  }
  .custom-modal-card {
    margin: 1rem;
    padding: 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  #signup-modal .custom-modal-card [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
  .topbar-left { font-size: 0.65rem; gap: 0.4rem; }
  .analytics-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.15rem; }
  .hero-title-main { font-size: clamp(2.15rem, 9vw, 2.85rem) !important; }
  .hero-events-stats { grid-template-columns: 1fr 1fr; }
  .vendor-callout-card {
    flex-direction: column !important;
    text-align: center;
    padding: 1.25rem !important;
  }
  .vendor-callout-card > div { flex-direction: column !important; }
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
  .main-nav > ul > li > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .btn, .tag-pill, .evt-filter-btn {
    min-height: 44px;
  }
  .ticket-marquee:hover .ticket-marquee-track {
    animation-play-state: running;
  }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  .site-header .header-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .back-to-top {
    left: max(1.15rem, env(safe-area-inset-left));
    right: auto;
    bottom: max(1.15rem, env(safe-area-inset-bottom));
  }
  .elite-cart-fab {
    bottom: max(1.15rem, env(safe-area-inset-bottom)) !important;
    right: max(1rem, env(safe-area-inset-right)) !important;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .hero-video,
  .ticket-marquee-track,
  .clients-track,
  .hero-particle-layer,
  .mic-icon-wrap,
  .cat-card,
  .cat-card-media img,
  .cat-card-shine,
  .act-card {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════
   ENTERTAINMENT CATEGORIES — CARDS + PAGES
═══════════════════════════════════════════════════ */
.categories-showcase {
  padding-block: 6rem 5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 55%),
    var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.categories-intro {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--silver-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}
.categories-intro strong { color: var(--gold); font-weight: 600; }

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ══ Homepage categories: equal covers + equal tiles ══ */
.home-roster-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.5rem 0 2rem;
  max-width: 1000px;
  margin-inline: auto;
}
.home-roster {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 0.25rem;
}
.home-folder-block {
  padding: 1.25rem 1.2rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(200,168,76,0.07), transparent 55%),
    rgba(255,255,255,0.02);
  scroll-margin-top: 90px;
}
.home-folder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.home-folder-head-left {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex: 1;
}
.home-folder-cover-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,168,76,0.25);
  background: #111;
}
.home-folder-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-folder-icon-badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(200,168,76,0.4);
  color: var(--gold, #c9a84c);
}
.cat-hub-icon {
  width: 14px;
  height: 14px;
  display: block;
}
.home-folder-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.home-folder-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.25rem;
}
.home-folder-short {
  font-size: 0.8rem;
  color: var(--silver-mid);
  line-height: 1.45;
  margin: 0;
  max-width: 480px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-folder-link {
  border-radius: 30px !important;
  text-transform: none !important;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Equal act tiles — always same size */
.home-act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 1100px) {
  .home-act-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.home-act-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0c0c0c;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.home-act-tile:hover,
.home-act-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200,168,76,0.45);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  outline: none;
}
.home-act-tile-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #151515;
}
.home-act-tile-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-act-tile-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.55rem 0.45rem 0.65rem;
  min-height: 0;
  background: rgba(0,0,0,0.35);
}
.home-act-tile-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #eee;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
.home-act-tile-name:hover { color: var(--gold, #c9a84c); }
.home-act-tile .btn-cart-add {
  margin-top: 0.2rem;
  width: auto;
  max-width: 100%;
  align-self: center;
}
.home-act-tile-style {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(200,168,76,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  width: 100%;
}
.home-act-tile--rec {
  border-color: rgba(200,168,76,0.45);
  box-shadow: 0 0 0 1px rgba(200,168,76,0.15);
}
.home-act-rec {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a6f27, #c9a84c);
  color: #0a0a0a;
  white-space: nowrap;
  pointer-events: none;
}
.home-act-lineup {
  width: 100%;
  text-align: left;
  font-size: 0.58rem;
  color: #bbb;
  margin: 0.1rem 0 0.15rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,168,76,0.15);
  padding: 0.25rem 0.35rem;
}
.home-act-lineup summary {
  cursor: pointer;
  text-align: center;
  color: #e8c86b;
  font-weight: 700;
  letter-spacing: 0.04em;
  list-style: none;
}
.home-act-lineup summary::-webkit-details-marker { display: none; }
.home-act-lineup ul {
  list-style: none;
  margin: 0.35rem 0 0.15rem;
  padding: 0;
  max-height: 7rem;
  overflow: auto;
}
.home-act-lineup li {
  padding: 0.2rem 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.3;
  color: #ccc;
}
.home-act-lineup li strong { color: #eee; font-weight: 700; }
.home-act-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px dashed rgba(200,168,76,0.35);
  background: rgba(200,168,76,0.05);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.home-act-more:hover {
  background: rgba(200,168,76,0.12);
  border-color: rgba(200,168,76,0.55);
}

@media (max-width: 1100px) {
  .home-act-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .home-act-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; }
  .home-folder-head { flex-direction: column; align-items: stretch; }
  .home-folder-link { width: 100%; text-align: center; justify-content: center; }
  .home-folder-cover-wrap { width: 64px; height: 64px; }
  .home-act-tile-meta { min-height: 0; padding: 0.45rem 0.35rem 0.55rem; }
  .home-act-tile-name { font-size: 0.68rem; }
  .home-act-tile .btn-cart-add {
    font-size: 0.52rem;
    padding: 0.35rem 0.4rem;
    letter-spacing: 0.03em;
    white-space: normal;
    line-height: 1.2;
    width: 100%;
  }
  .home-act-tile .btn-cart-add span {
    display: inline;
  }
}
@media (max-width: 420px) {
  .home-act-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem; }
  .home-folder-block { padding: 1rem 0.85rem 1.1rem; }
  .home-act-tile .btn-cart-add span { font-size: 0.5rem; }
}

/* Folder pages / act cards — keep same square ratio */
.act-card-photo {
  aspect-ratio: 1 / 1 !important;
  position: relative;
}
.act-card-photo img {
  object-fit: cover !important;
  object-position: center top !important;
}
.act-card-hover-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.88) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.act-card-hover-panel p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #f0f0f0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.act-card:hover .act-card-hover-panel {
  opacity: 1;
}
.folder-count-badge {
  display: inline-block;
  margin: 0 auto 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(200,168,76,0.35);
  background: rgba(0,0,0,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.folder-nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.folder-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--silver-light);
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.folder-chip:hover,
.folder-chip.is-active {
  border-color: rgba(200,168,76,0.5);
  color: var(--gold-light);
  background: rgba(200,168,76,0.1);
  transform: translateY(-2px);
}
.folder-hero .cat-page-hero-bg img {
  object-position: center center;
}

/* Premium add-ons: fluid columns that never crush cards */
.offers-grid--addons {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

/* Service / offer responsive stack */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card:last-child:nth-child(odd) {
    max-width: none;
  }
  .service-img-container,
  .offer-img,
  .offer-img--video {
    max-height: none;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .service-card .btn,
  .offer-card .offer-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .vendor-callout-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .vendor-callout-inner {
    flex-direction: column;
    align-items: center;
  }
}

.vendor-callout-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-gold);
}
.vendor-callout-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.vendor-callout-logo {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(200,168,76,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6), 0 0 16px rgba(200,168,76,0.3);
  flex-shrink: 0;
}
.vendor-callout-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
}
.vendor-callout-card p {
  font-size: 0.85rem;
  color: var(--silver-mid);
  margin: 0;
}
@media (max-width: 600px) {
  .vendor-callout-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .vendor-callout-inner {
    flex-direction: column;
  }
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--black-3);
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.45s ease;
  will-change: transform;
}
.cat-card:hover,
.cat-card:focus-visible {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(200,168,76,0.5);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,168,76,0.15),
    0 0 40px rgba(200,168,76,0.18);
  outline: none;
}
.cat-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.cat-card-count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(200,168,76,0.45);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cat-card-sections {
  font-size: 0.68rem;
  color: var(--silver-dark);
  line-height: 1.4;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: brightness(0.88) saturate(1.05);
}
.cat-card:hover .cat-card-media img,
.cat-card:focus-visible .cat-card-media img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.15);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,3,3,0.85) 100%);
  pointer-events: none;
}
.cat-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.14) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
}
.cat-card:hover .cat-card-shine {
  transform: translateX(120%);
}
.cat-card-body {
  padding: 1.35rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.cat-card-eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.cat-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.3s ease;
}
.cat-card:hover .cat-card-title { color: var(--gold-light); }
.cat-card-text {
  font-size: 0.82rem;
  color: var(--silver-mid);
  line-height: 1.55;
  margin: 0.15rem 0 0.5rem;
  flex: 1;
}
.cat-card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.35s ease, color 0.3s ease;
}
.cat-card:hover .cat-card-cta {
  gap: 0.75rem;
  color: var(--gold-light);
}

/* Category detail pages */
.cat-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 3.5rem;
  overflow: hidden;
}
.cat-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.45) saturate(1.05);
  transform: scale(1.04);
}
.cat-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,3,3,0.55) 0%, rgba(3,3,3,0.4) 40%, rgba(3,3,3,0.96) 100%),
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,168,76,0.12), transparent 70%);
}
.cat-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.cat-page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.cat-page-lead {
  color: var(--silver-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.cat-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.cat-page-body {
  padding-block: 3.5rem 5rem;
  background: var(--black);
}

.cat-roster-intro { margin: 2.5rem 0 1.5rem; text-align: center; }
.act-section { margin-bottom: 2.75rem; }
.act-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.act-section-banner {
  display: inline-block;
  background: linear-gradient(135deg, #a8893a 0%, #c9a84c 40%, #e8c86b 55%, #8a6f27 100%);
  color: #111;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(200,168,76,0.25);
}
.act-section-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-mid);
}
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.15rem;
  margin-top: 0.25rem;
}
.act-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.35s ease,
              background 0.3s ease;
  animation: actFadeIn 0.55s ease both;
  animation-delay: var(--delay, 0s);
}
@keyframes actFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.act-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,168,76,0.45);
  background: rgba(200,168,76,0.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 24px rgba(200,168,76,0.12);
}
.act-card-inner {
  text-align: center;
  padding: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.act-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  margin-bottom: 0.85rem;
}
.act-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.act-card:hover .act-card-photo img {
  transform: scale(1.08);
}
.act-card-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-bottom: 1px solid rgba(200,168,76,0.15);
}
.act-card-photo--placeholder span {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200,168,76,0.35);
  letter-spacing: 0.05em;
}
.act-card-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(200,168,76,0.45);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0 0.75rem;
}
.act-card:hover .act-card-num {
  color: var(--gold);
  transform: scale(1.08);
}
.act-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem;
  line-height: 1.3;
  padding: 0 0.85rem;
  text-align: center;
  width: 100%;
}
.act-card-name a {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.act-card-style {
  font-size: 0.62rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  min-height: 1.6em;
  padding: 0 0.85rem;
  text-align: center;
  width: 100%;
}
.act-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}
.act-card-btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 30px !important;
  text-transform: none !important;
  font-size: 0.68rem !important;
  padding: 0.55rem 0.75rem !important;
  justify-content: center;
}
.act-card--recommended {
  border-color: rgba(200,168,76,0.5);
  box-shadow: 0 0 0 1px rgba(200,168,76,0.18), 0 12px 32px rgba(0,0,0,0.35);
}
.act-rec-badge {
  display: inline-block;
  margin: 0 auto 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a6f27, #c9a84c);
  color: #0a0a0a;
}
.act-lineup-accordion {
  width: calc(100% - 1.7rem);
  margin: 0 auto 0.65rem;
  text-align: left;
  border: 1px solid rgba(200,168,76,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  padding: 0.35rem 0.55rem;
}
.act-lineup-summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8c86b;
  padding: 0.25rem 0;
}
.act-lineup-summary::-webkit-details-marker { display: none; }
.act-lineup-summary span { color: #999; font-weight: 600; }
.act-lineup-list {
  list-style: none;
  margin: 0.25rem 0 0.15rem;
  padding: 0;
}
.act-lineup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  padding: 0.4rem 0.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.act-lineup-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #eee;
}
.act-lineup-role {
  font-size: 0.62rem;
  color: rgba(200,168,76,0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cat-sheet-wrap { margin: 0 0 2rem; }
.cat-sheet-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.cat-sheet-note {
  color: var(--silver-mid);
  font-size: 0.88rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.55;
}
.cat-sheet {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,168,76,0.25);
  background: #fff;
  box-shadow: var(--shadow-md), 0 0 30px rgba(200,168,76,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cat-sheet--primary {
  border-width: 2px;
  border-color: rgba(200,168,76,0.45);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 0 40px rgba(200,168,76,0.18);
}
.cat-sheet:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(200,168,76,0.2);
}
.cat-sheet img {
  width: 100%;
  height: auto;
  display: block;
}
.cat-sheet figcaption {
  background: var(--black-3);
  color: var(--silver-mid);
  font-size: 0.78rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Mobile: pan/zoom friendly sheet */
@media (max-width: 700px) {
  .cat-sheet--primary {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cat-sheet--primary img {
    min-width: 640px;
  }
}

.cat-enquiry {
  margin-top: 1rem;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(200,168,76,0.22);
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(200,168,76,0.06), transparent 60%),
    var(--black-3);
}
.cat-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.cat-enquiry-copy p {
  color: var(--silver-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cat-enquiry-copy strong { color: var(--gold); }
.cat-enquiry-bullets {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cat-enquiry-bullets li {
  font-size: 0.85rem;
  color: var(--silver-light);
  padding-left: 1.25rem;
  position: relative;
}
.cat-enquiry-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-gold);
}
.cat-enquiry-phones {
  font-size: 0.88rem !important;
  line-height: 1.9 !important;
}
.cat-enquiry-phones a { color: var(--gold); }
.cat-enquiry-phones a:hover { color: var(--gold-light); }

.cat-act-chip {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  background: rgba(200,168,76,0.12);
  border: 1px solid rgba(200,168,76,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cat-form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.cat-form-status--info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--silver-light);
}
.cat-form-status--success {
  background: rgba(42,90,42,0.25);
  border: 1px solid rgba(85,197,85,0.35);
  color: #9fef9f;
}
.cat-form-status--warn {
  background: rgba(200,168,76,0.1);
  border: 1px solid rgba(200,168,76,0.35);
  color: var(--gold-light);
}
.cat-form-status--error {
  background: rgba(120,30,30,0.25);
  border: 1px solid rgba(255,100,100,0.35);
  color: #ff9a9a;
}

@media (max-width: 900px) {
  .cat-cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cat-enquiry-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cat-enquiry { padding: 1.5rem; }
  .cat-page-hero { min-height: 42vh; padding-top: 7rem; }
}
@media (max-width: 600px) {
  .categories-showcase { padding-block: 4rem 3.5rem; }
  .act-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .act-card { padding: 0.9rem 0.75rem 1rem; }
  .act-card-name { font-size: 0.85rem; }
  .cat-page-hero-actions { flex-direction: column; align-items: stretch; }
  .cat-page-hero-actions .btn { width: 100%; }
}
@media (max-width: 400px) {
  .act-grid { grid-template-columns: 1fr; }
}


