:root {
  --ink: #041313;
  --deep: #071d1c;
  --deep-2: #0b2c2a;
  --gold: #d6a64a;
  --gold-soft: #f0cd85;
  --teal: #1f8f86;
  --coral: #d9826b;
  --mist: #dcebe7;
  --white: #fffdf8;
  --muted: #9eb1ad;
  --line: rgba(240, 205, 133, .18);
  --shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: auto; }
.full { width: 100%; }
.muted { color: var(--muted); }
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 200;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--gold);
  color: #102018;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 19, 19, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand b {
  display: block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d6e2df;
  font-size: 13px;
}
.nav-links a:hover { color: var(--gold-soft); }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 49;
  padding: 14px 0;
  background: rgba(4, 19, 19, .82);
  backdrop-filter: blur(18px);
}
.mobile-menu-panel {
  width: min(420px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #061918;
  box-shadow: var(--shadow);
}
.mobile-menu-links {
  display: grid;
  margin-bottom: 12px;
}
.mobile-menu-links a {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #e4eeeb;
  font-weight: 700;
  font-size: 14px;
}
.mobile-menu-links a:hover { color: var(--gold-soft); }
body.menu-open { overflow: hidden; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #13200f;
  box-shadow: 0 14px 32px rgba(214, 166, 74, .18);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 8, .82), rgba(2, 8, 8, .32), rgba(2, 8, 8, .72)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=2200&q=85") center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 19, 19, .05), rgba(4, 19, 19, .95));
}
.hero-copy {
  padding: 18vh 0 10vh;
}
.eyebrow, .kicker {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}
h1 { font-size: clamp(54px, 8vw, 104px); max-width: 820px; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { margin: 0; }
.hero p, .page-hero p, .lede {
  max-width: 700px;
  color: #d4dfdc;
  font-size: 18px;
  line-height: 1.7;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-audience-link {
  margin-top: 22px;
  font-size: 13px;
  color: #9bacaa;
}
.hero-audience-link a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: #061716;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 16px 0;
  color: #9bacaa;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section { padding: 104px 0; }
.section.compact { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, #08211f, #061918); }
.section-mini { margin-top: 42px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.inset-top { margin-top: 34px; }

.cards, .category-grid, .package-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.content-grid .panel {
  display: grid;
  gap: 12px;
  align-content: start;
}
.empty-state {
  display: grid;
  gap: 12px;
  align-content: center;
}
.empty-state h3 {
  margin: 0;
}
.empty-state .btn {
  justify-self: start;
}
.preview-empty {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}
.preview-empty span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.preview-empty b {
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}
.content-index {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: #031110;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-methods h2 {
  overflow-wrap: anywhere;
  font-size: 34px;
}
.card, .category-card, .package-card, .panel, .process-grid article {
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .025));
}
.card {
  overflow: hidden;
  min-width: 0;
}
.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-body { padding: 18px; }
.tag, .status-pill, .chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(214, 166, 74, .26);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* GOMotion Verified.
   Modelled on an assay hallmark rather than a social-media tick: hairline
   rules, an engraved seal, wide letterspacing and no fill. A tick in a
   coloured pill is mass-market signalling and reads as cheap next to a
   Playfair headline. Restraint is what makes a mark of assurance look earned.
   Never render it on an unvetted profile. */

.verified-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  margin-left: 10px;
  padding: 5px 11px 5px 9px;
  border: 1px solid rgba(214, 166, 74, .34);
  /* Nearly square: a pill reads as app UI, an engraved plate does not. */
  border-radius: 3px;
  /* Double rule, like the edge of a certificate. */
  box-shadow: inset 0 0 0 1px rgba(240, 205, 133, .07);
  background:
    linear-gradient(180deg, rgba(240, 205, 133, .09), rgba(214, 166, 74, .03));
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  /* Champagne rather than bright gold. Solid colour first so the text stays
     legible where background-clip is unsupported. */
  color: var(--gold-soft);
  background-clip: padding-box;
}
.verified-mark__label {
  background: linear-gradient(100deg, #c9a05e 0%, #f3d79a 42%, #e0bd76 68%, #f6e2b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: .06em;
}
@supports not (background-clip: text) {
  .verified-mark__label { -webkit-text-fill-color: currentColor; }
}
.verified-mark svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--gold);
}

/* Full lockup for a profile hero, where the mark has room to be a seal.
   Hairline rules flank it the way a certification stamp is ruled off. */
.verified-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 0;
  color: var(--gold-soft);
}
.verified-seal::before,
.verified-seal::after {
  content: "";
  width: clamp(18px, 6vw, 46px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 166, 74, .5), transparent);
}
.verified-seal__body { display: flex; align-items: center; gap: 10px; }
.verified-seal svg { width: 26px; height: 26px; flex: none; color: var(--gold); }
.verified-seal__text { display: grid; gap: 3px; }
.verified-seal__primary {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #c9a05e 0%, #f3d79a 45%, #f6e2b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .verified-seal__primary { -webkit-text-fill-color: currentColor; }
}
.verified-seal__secondary {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

.card h3 { margin: 12px 0 8px; font-size: 20px; }
.card p, .category-card p, .package-card p, .process-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.card-bottom, .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: #d9e6e3;
  font-size: 12px;
}
.card-bottom a { color: var(--gold-soft); font-weight: 700; }

.category-card, .package-card, .process-grid article {
  min-height: 232px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.category-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(4, 19, 19, .18), rgba(4, 19, 19, .92)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=82") center/cover;
  opacity: .38;
}
.category-card > *, .package-card > * { position: relative; z-index: 1; }
.category-card span, .package-card span, .process-grid small {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.category-card h3, .package-card h3 { margin: 54px 0 10px; font-size: 22px; }
.category-music:before { background-image: linear-gradient(180deg, rgba(4, 19, 19, .18), rgba(4, 19, 19, .92)), url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=1200&q=82"); }
.category-dance:before { background-image: linear-gradient(180deg, rgba(4, 19, 19, .18), rgba(4, 19, 19, .92)), url("https://images.unsplash.com/photo-1518609878373-06d740f60d8b?auto=format&fit=crop&w=1200&q=82"); }
.category-dj:before { background-image: linear-gradient(180deg, rgba(4, 19, 19, .18), rgba(4, 19, 19, .92)), url("https://images.unsplash.com/photo-1571266028243-d220c9c3b61b?auto=format&fit=crop&w=1200&q=82"); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.cinema-panel {
  min-height: 540px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(4, 19, 19, .78)),
    url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=1600&q=85") center/cover;
  box-shadow: var(--shadow);
}
.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}
.feature-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.feature-list b { display: block; margin-bottom: 6px; }
.feature-list span { color: var(--muted); font-size: 13px; line-height: 1.55; }

.package-grid { grid-template-columns: repeat(3, 1fr); }
.package-card b { color: var(--gold-soft); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid h3 { margin: 28px 0 8px; font-size: 18px; }

.final-cta {
  max-width: 820px;
  text-align: center;
}
.final-cta h1, .final-cta h2 { margin: 10px auto 16px; }
.final-cta p { color: var(--muted); line-height: 1.7; }
.page-hero {
  padding: 78px 0 46px;
  background:
    linear-gradient(180deg, rgba(4, 19, 19, .62), rgba(4, 19, 19, .96)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1800&q=84") center/cover;
}
.compact-hero { padding-bottom: 38px; }
.performer-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.performer-portrait {
  position: relative;
  margin: 0;
  min-width: 0;
}
.performer-portrait img {
  box-shadow: var(--shadow);
  background: #031110;
}
.performer-portrait figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(4, 19, 19, .78);
  backdrop-filter: blur(14px);
}
.performer-portrait figcaption span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.performer-portrait figcaption b { font-size: 13px; }
.image-fallback {
  object-fit: contain !important;
  padding: 22px;
  background: radial-gradient(circle at center, rgba(214, 166, 74, .14), rgba(3, 17, 16, .92));
}

.builder-hero {
  padding: 96px 0 46px;
  background:
    linear-gradient(180deg, rgba(4, 19, 19, .58), rgba(4, 19, 19, .95)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=84") center/cover;
}
.builder-hero h1 { margin: 10px 0 16px; }
.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.builder-main { min-width: 0; }
.step-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}
.step-bar span {
  padding: 13px 10px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.step-bar span:first-child { color: var(--gold-soft); background: rgba(214, 166, 74, .08); }
.panel {
  padding: 22px;
  min-width: 0;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.panel-head h2 { margin: 4px 0 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid > div, .stack-form, label {
  display: grid;
  gap: 7px;
}
.full-span { grid-column: 1 / -1; }
label, .form-grid > div > label {
  color: #c6d3d0;
  font-size: 11px;
}
input, select, textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #041716;
  color: var(--white);
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(214, 166, 74, .62); }
.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0 16px;
}
.toolbar h2 { margin-bottom: 6px; font-size: 31px; }
.toolbar span { color: var(--muted); font-size: 12px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.chip {
  background: transparent;
  cursor: pointer;
}
.chip.active { background: rgba(214, 166, 74, .12); }
.media-review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.media-review-tabs .chip {
  gap: 6px;
  text-decoration: none;
}
.media-review-tabs b { color: var(--white); }
.builder-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.selectable { transition: transform .18s ease, border-color .18s ease; }
.selectable.selected {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.availability {
  display: inline-flex;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}
.availability.available { color: #7ed8b5; }
.availability.limited { color: var(--gold-soft); }
.availability.on_hold { color: var(--coral); }
.availability.booked, .availability.unavailable { color: #ef9292; }
.select-btn {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  border: 1px solid rgba(214, 166, 74, .30);
  border-radius: 8px;
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
}
.select-btn:disabled { cursor: not-allowed; color: #8e8e8e; border-color: rgba(255, 255, 255, .12); }
.summary {
  position: sticky;
  top: 98px;
}
.summary h2 { margin: 8px 0 16px; font-size: 31px; }
.selected-list { display: grid; gap: 8px; margin: 16px 0; }
.selected-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
}
.price-box {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.price-box > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
}
/* #priceBreakdown is a direct child div of .price-box too, so the rule above
   would otherwise beat the browser's default [hidden] styling and the
   breakdown rows would stay visible (as flex, just with no content) when
   builder.js hides them for a pricing-hidden viewer. */
.price-box > div[hidden] {
  display: none;
}
.price-box .total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 18px;
}
.small-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .72);
}
.modal.hidden { display: none; }
.modal-card {
  position: relative;
  width: min(820px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
}
.modal-card h2 { margin: 8px 0 20px; }
.x {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: white;
  cursor: pointer;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: calc(100vh - 76px);
}
.admin-nav {
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: #061615;
}
.admin-nav h3 { margin: 0 0 8px; }
.admin-nav p { color: var(--muted); font-size: 12px; line-height: 1.45; }
.admin-nav p span { color: var(--gold-soft); }
.admin-nav nav { display: grid; gap: 6px; margin-top: 22px; }
.admin-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #cbd8d5;
  font-size: 13px;
}
.admin-nav a:hover { background: rgba(255, 255, 255, .05); }
.admin-main {
  min-width: 0;
  padding: 34px;
}
.admin-main h1 { font-size: 42px; margin-bottom: 8px; }
.admin-main h2 { font-size: 26px; margin: 0 0 16px; }
.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.stats > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.stats b { display: block; color: var(--gold-soft); font-size: 30px; }
.stats b { overflow-wrap: anywhere; }
.stats span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 18px;
  align-items: start;
}
.launch-stats { margin-bottom: 18px; }
.launch-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.launch-check {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}
.launch-check h2 { font-size: 22px; }
.launch-check a {
  grid-column: 1 / -1;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}
.launch-check.ready { border-color: rgba(126, 216, 181, .24); }
.launch-check.warning { border-color: rgba(233, 131, 91, .34); }
.launch-check.blocked { border-color: rgba(239, 146, 146, .42); }
.table-wrap { overflow: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
th, td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
  vertical-align: top;
}
th { color: var(--muted); font-weight: 600; }
.pipeline-list { display: grid; gap: 10px; }
.pipeline-list div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detail-grid small {
  display: block;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d9e5e2;
}
.check-row input { width: auto; }
.danger-form { margin-top: 22px; }
.danger-btn, .link-btn {
  border: 0;
  background: none;
  color: #ef9292;
  cursor: pointer;
}
.success-link { color: #7ed8b5; }
.auth-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 48px;
  align-items: center;
}
.login-panel { padding: 28px; }
.oauth-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-divider:before, .form-divider:after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, .1);
}

.marketplace-hero .wrap { display: grid; gap: 24px; }
.marketplace-hero-grid, .reels-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
}
.marketplace-preview, .reel-preview {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(5, 21, 20, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.preview-head span, .trust-mini span, .reel-empty span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.preview-head b { color: var(--white); font-size: 13px; }
.preview-stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.preview-artist {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}
.preview-artist:hover { background: rgba(214, 166, 74, .08); }
.preview-artist img {
  width: 66px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  background: #031110;
}
.preview-artist b {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
}
.preview-artist small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.preview-artist strong {
  color: var(--gold-soft);
  font-size: 12px;
  white-space: nowrap;
}
.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.trust-mini span {
  padding: 7px 8px;
  border: 1px solid rgba(214, 166, 74, .22);
  border-radius: 8px;
  background: rgba(214, 166, 74, .07);
}
.profile-trust { max-width: 620px; }
.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
}
.policy-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #cbd8d5;
  font-size: 13px;
}
.policy-nav a.active, .policy-nav a:hover {
  color: var(--gold-soft);
  background: rgba(214, 166, 74, .08);
}
.policy-body {
  display: grid;
  gap: 14px;
}
.marketplace-search {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(160px, 220px) auto;
  gap: 12px;
  align-items: end;
  max-width: 760px;
}
.marketplace-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.market-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}
.market-meta b { color: var(--gold-soft); }
.profile-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-links a {
  padding: 9px 11px;
  border: 1px solid rgba(214, 166, 74, .26);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.media-grid figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.media-grid img, .media-grid video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #031110;
}
.media-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}
.media-grid figcaption b { color: var(--white); }
.media-grid figcaption span { color: var(--gold-soft); }
.media-grid figcaption small { color: var(--muted); line-height: 1.45; }
.media-grid figcaption a { color: var(--gold-soft); font-weight: 700; }
.compact-media { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reels-grid video { aspect-ratio: 9 / 16; }
.reel-preview video {
  width: 100%;
  max-height: 380px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: #031110;
}
.reel-preview > div:not(.reel-empty) {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.reel-preview b, .reel-empty b {
  display: block;
  color: var(--white);
  font-size: 18px;
}
.reel-preview a, .reel-empty a {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}
.reel-empty {
  display: grid;
  gap: 12px;
  min-height: 320px;
  align-content: end;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(4, 19, 19, .1), rgba(4, 19, 19, .88)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=900&q=82") center/cover;
}
.admin-media-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.media-actions {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}
.media-actions form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.review-form {
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.review-form label {
  min-width: min(100%, 180px);
  flex: 1 1 180px;
}
.review-form .check-row {
  flex: 0 0 auto;
  min-width: auto;
}
.review-form input {
  min-height: 36px;
  padding: 9px 10px;
}
.conversation-list { display: grid; gap: 12px; }
.conversation-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.conversation-row p, .conversation-row small { color: var(--muted); font-size: 12px; }
.conversation-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.detail-grid.single { grid-template-columns: 1fr; }
.message-list {
  display: grid;
  gap: 12px;
  max-height: 58vh;
  overflow: auto;
  padding-right: 4px;
}
.message-bubble {
  width: min(78%, 720px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}
.message-bubble.own {
  justify-self: end;
  background: rgba(214, 166, 74, .12);
  border-color: rgba(214, 166, 74, .24);
}
.message-bubble.system {
  width: 100%;
  background: rgba(31, 143, 134, .12);
}
.message-bubble div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.message-bubble small { color: var(--muted); }
.message-bubble p {
  margin: 0;
  color: #d9e6e3;
  line-height: 1.55;
  white-space: pre-wrap;
}
.message-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.flash-wrap {
  position: fixed;
  top: 90px;
  right: 18px;
  z-index: 80;
  display: grid;
  gap: 8px;
}
.flash {
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #102018;
  font-size: 12px;
  box-shadow: var(--shadow);
}
.flash.error { background: #ef9292; color: #230808; }
.flash.warning { background: var(--coral); color: #230808; }
.flash.success { background: #7ed8b5; color: #08231d; }

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-size: 11px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a { color: var(--gold-soft); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: grid; }
  .hero-copy { padding-top: 14vh; }
  .split, .builder-layout, .admin-shell, .auth-layout, .admin-grid, .profile-shell, .conversation-layout, .marketplace-hero-grid, .reels-hero-grid, .policy-layout, .launch-checks { grid-template-columns: 1fr; }
  .summary { position: static; }
  .cards, .builder-cards, .category-grid, .package-grid, .marketplace-grid, .media-grid, .admin-media-grid, .content-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .stats { grid-template-columns: 1fr 1fr; }
  .marketplace-search { grid-template-columns: 1fr 1fr; }
  .marketplace-search .btn { grid-column: 1 / -1; }
  .admin-nav {
    position: sticky;
    top: 76px;
    z-index: 40;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .admin-nav nav {
    display: flex;
    overflow: auto;
    padding-bottom: 4px;
  }
  .policy-nav { position: static; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav > .btn { display: none; }
  .brand { min-width: 0; }
  .brand b { font-size: 12px; }
  .brand small { font-size: 9px; }
  .brand img { width: 48px; height: 48px; }
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .page-hero { padding: 54px 0 36px; }
  .section { padding: 78px 0; }
  .section-head, .toolbar, .admin-head, .footer-row { align-items: flex-start; flex-direction: column; }
  .cards, .builder-cards, .category-grid, .package-grid, .process-grid, .stats, .form-grid, .detail-grid, .step-bar, .marketplace-grid, .media-grid, .admin-media-grid, .marketplace-search, .message-form, .content-grid, .contact-methods { grid-template-columns: 1fr; }
  .full-span { grid-column: auto; }
  .cinema-panel { min-height: 340px; }
  .admin-main { padding: 24px 16px; }
  .message-bubble { width: 100%; }
  .conversation-row { align-items: flex-start; flex-direction: column; }
  .preview-artist {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .preview-artist strong {
    grid-column: 2;
    justify-self: start;
  }
  .performer-portrait figcaption {
    position: static;
    margin-top: 10px;
  }
}

/* ---------------------------------------------------------------------
   Artist application wizard.
   Same hallmark restraint as the verified mark: hairline rules, muted
   gold accents, Playfair for headings, no filled progress bars — a
   thin gold line and a numbered marker instead of an app-style stepper.
--------------------------------------------------------------------- */

.apply-hero { padding-bottom: 64px; }
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 56px;
  align-items: start;
}
.apply-intro h1 { margin: 10px 0 16px; }
.apply-benefits {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.apply-benefits li {
  padding-left: 20px;
  border-left: 1px solid rgba(214, 166, 74, .28);
  color: var(--mist);
  font-size: 14px;
  line-height: 1.55;
}
.apply-benefits b { color: var(--gold-soft); font-weight: 600; }

.apply-panel { padding: 32px; }

.apply-progress { margin-bottom: 26px; }
.apply-progress ol {
  display: flex;
  gap: 0;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.apply-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.apply-progress li:not(:last-child)::after {
  content: "";
  flex: 1;
  height: 1px;
  margin: 0 6px;
  background: rgba(214, 166, 74, .18);
}
.apply-progress li.is-done:not(:last-child)::after { background: rgba(214, 166, 74, .5); }
.apply-progress__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 166, 74, .3);
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.apply-progress li.is-active .apply-progress__dot {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(214, 166, 74, .1);
}
.apply-progress li.is-done .apply-progress__dot {
  border-color: rgba(214, 166, 74, .6);
  color: var(--gold);
  background: rgba(214, 166, 74, .06);
}
.apply-progress__label {
  display: none;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.apply-progress li.is-active .apply-progress__label { display: inline; color: var(--gold-soft); }
.apply-progress__count {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.apply-step-title {
  margin: 0 0 6px;
  font-size: 22px;
}
.apply-note {
  margin: 0 0 20px;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.5;
}
.apply-form { gap: 14px; }
.apply-rule {
  margin: 6px 0;
  border: none;
  border-top: 1px solid rgba(214, 166, 74, .16);
}
.apply-help {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.4;
}
.apply-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.apply-check input { width: auto; }
.apply-error {
  margin: 0;
  color: #ef9292;
  font-size: 12px;
}
.apply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.apply-actions .btn-primary { margin-left: auto; }

.apply-review-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.apply-review-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
}
.apply-review-list dt, .apply-review-list span:first-child {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.apply-review-list dd { margin: 0; color: var(--white); }

.apply-submitted {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 0;
  text-align: center;
}
.apply-submitted .verified-seal { justify-content: center; margin: 22px auto; }
.apply-submitted h1 { margin: 0 0 14px; }
.apply-submitted p { color: var(--mist); font-size: 15px; line-height: 1.6; }
.apply-reference {
  display: inline-block;
  margin: 18px 0 26px;
  padding: 10px 18px;
  border: 1px solid rgba(214, 166, 74, .3);
  border-radius: 4px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .apply-layout { grid-template-columns: 1fr; gap: 32px; }
  .apply-panel { padding: 22px; }
  .apply-progress__label { display: none !important; }
  .apply-review-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* Admin: application status filter pills and review detail. */
.status-pill-active {
  border-color: var(--gold);
  background: rgba(214, 166, 74, .16);
  color: var(--gold-soft);
}
.admin-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}
.admin-review-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-review-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
}
.admin-review-list dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.admin-review-list dd { margin: 0; }
.admin-decision-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .admin-review-grid { grid-template-columns: 1fr; }
  .admin-review-list li { grid-template-columns: 1fr; gap: 2px; }
}
