* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text: #1a1a1a;
  --muted: #475569;
  --border: #e2e8f0;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --accent: #f59e0b;
  --accent-strong: #fbbf24;
  --max-width: 1120px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "DM Sans", -apple-system, sans-serif;
  color: var(--text);
  background: #111;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-header {
  width: 100%;
  z-index: 20;
}

body.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

body.page-home {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.page-home .site-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

body.page-home .page-main {
  flex: 1;
  display: flex;
  background: transparent;
  min-height: min(100vh, 100dvh);
}

body.page-home .banner {
  flex: 1;
  width: 100%;
  min-height: min(100vh, 100dvh);
}

body:not(.page-home) .site-header {
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem 0.9rem max(0.75rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* First primary link — nudge right per layout */
.nav-links > a:first-of-type {
  margin-left: 0.2in;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.site-header .nav-btn {
  font-size: 1.0625rem;
}

.nav-btn.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.nav-spacer {
  flex: 1;
}

.nav-btns,
.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-secondary,
.nav-btn--login {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
}

.button-secondary:hover,
.nav-btn--login:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-primary,
.nav-btn--signup {
  background: var(--accent);
  color: #1f1300;
  border: 1px solid transparent;
}

.button-primary:hover,
.nav-btn--signup:hover {
  background: var(--accent-strong);
}

.banner {
  min-height: 560px;
  background: #1a1a1a url("/assets/live-banner-local-entertainment.png") center center / cover no-repeat;
  position: relative;
  padding-top: 5.5rem;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 26%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 54%);
  pointer-events: none;
}

.banner-actions {
  position: absolute;
  left: 50%;
  bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 3rem);
  max-width: 900px;
}

.banner-actions .button {
  min-width: 180px;
}

.page-main {
  flex: 1;
  background: #fff;
}

.page-hero {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #111827 100%);
  color: #fff;
  padding: 5.5rem 1.5rem 3.5rem;
}

.page-hero-inner,
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-panel {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero h1,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p,
.section-intro,
.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.section-alt {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section h2 {
  color: inherit;
  margin-bottom: 0.9rem;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card,
.panel,
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card h3,
.panel h3,
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card p,
.panel p,
.step-card p,
.bullet-list li {
  color: var(--muted);
}

.section-dark .card p,
.section-dark .bullet-list li {
  color: rgba(255, 255, 255, 0.82);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.metric {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bullet-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.step-grid {
  display: grid;
  gap: 1.25rem;
}

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #1f1300;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.signup-flow {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #111827 100%);
  color: #fff;
  text-align: center;
}

.signup-flow .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.dreamify-steps {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 2rem auto 0;
}

.dreamify-step {
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.dreamify-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1f1300;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dreamify-step h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  margin-bottom: 0.45rem;
}

.dreamify-step p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.process-step-page {
  text-align: center;
}

.process-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
}

.process-pill.active {
  background: var(--accent);
  color: #1f1300;
  border-color: transparent;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.signup-choice-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.signup-choice-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-choice-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: min(100%, 480px);
}

.signup-choice-buttons .button {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 140px;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .signup-choice-buttons {
    flex-direction: column;
    width: min(100%, 340px);
  }

  .signup-choice-buttons .button {
    flex: none;
    width: 100%;
  }
}

/* Secondary buttons default to light-on-dark; this page is on white — restore contrast */
.signup-choice-buttons .button-secondary {
  background: var(--surface-soft);
  color: var(--text);
  border: 2px solid var(--border);
  backdrop-filter: none;
}

.signup-choice-buttons .button-secondary:hover {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--text);
}

.signup-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.signup-path-grid--single {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.signup-path-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.4rem;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.signup-path-card.active {
  border-color: rgba(251, 191, 36, 0.75);
  background: rgba(251, 191, 36, 0.12);
}

.signup-path-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signup-path-card h3 {
  margin: 0.85rem 0 0.5rem;
  color: #fff;
}

.signup-path-card p,
.signup-path-card li {
  color: rgba(255, 255, 255, 0.82);
}

.signup-path-card .bullet-list {
  margin-top: 0.85rem;
}

.signup-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.signup-note {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.home-links {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}

.home-summary {
  margin-top: 3rem;
}

.page-talent {
  background: #f7f7f7;
}

.page-venues-setup {
  background: #f7f7f7;
}

.page-venues-setup .page-main {
  background: #f7f7f7;
}

.page-venues-setup .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.page-talent .page-main,
.page-talent-profile .page-main,
.page-booking .page-main,
.page-booking-feedback .page-main {
  background: #f7f7f7;
}

.page-talent .page-hero,
.page-talent-profile .page-hero,
.page-booking .page-hero,
.page-booking-feedback .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.hero-note {
  max-width: 720px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-metric strong {
  color: #fff;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.filter-field {
  display: grid;
  gap: 0.35rem;
}

.filter-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 0.7rem;
}

.filter-field select,
.filter-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.search-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.search-insight-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.search-insight-card strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #0f172a;
}

.search-insight-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.recommendation-banner {
  display: none;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border: 1px solid #fed7aa;
}

.recommendation-banner.active {
  display: grid;
}

.recommendation-banner strong {
  color: #9a3412;
}

.recommendation-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recommendation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-tray {
  display: none;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.compare-tray.active {
  display: grid;
}

.compare-tray-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-tray-head p {
  color: var(--muted);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.compare-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 0.95rem;
  background: #f8fafc;
  display: grid;
  gap: 0.5rem;
}

.compare-card strong {
  color: #0f172a;
}

.compare-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-card .button {
  width: 100%;
}

.marketplace-shell {
  display: grid;
  gap: 1.25rem;
}

.marketplace-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.marketplace-copy {
  display: grid;
  gap: 0.4rem;
}

.marketplace-copy h2 {
  margin-bottom: 0;
}

.marketplace-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.marketplace-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
}

.marketplace-toolbar .filter-field select {
  width: 100%;
  min-width: 140px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
}

.filter-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.talent-card {
  background: var(--surface);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.talent-card-cover {
  position: relative;
  min-height: 150px;
  border-radius: 18px;
  padding: 0.85rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #fb923c 0%, #f43f5e 50%, #7c3aed 100%);
  overflow: hidden;
}

.talent-card-cover::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(2px);
}

.talent-card-save {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.talent-card-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.talent-card-body {
  padding: 0.85rem 0.15rem 0.15rem;
}

.talent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.talent-card.recommended-card {
  border-color: #fbbf24;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.12);
}

.talent-card-header,
.talent-profile-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.talent-card-header {
  justify-content: space-between;
}

.talent-card-summary {
  flex: 1;
}

.talent-avatar,
.talent-profile-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59e0b 0%, #fb7185 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.talent-avatar {
  width: 56px;
  height: 56px;
  font-size: 0.96rem;
  margin-top: -2rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 1;
}

.talent-profile-avatar {
  width: 96px;
  height: 96px;
  font-size: 1.4rem;
}

.talent-card-header h3,
.talent-profile-copy h1 {
  margin-bottom: 0.3rem;
}

.talent-card-header h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.talent-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 0.15rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.availability-pill,
.recommendation-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.availability-pill {
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #334155;
}

.availability-pill.available {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.availability-pill.limited {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

.availability-pill.unavailable {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.recommendation-pill {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.talent-subtitle,
.talent-location {
  color: var(--muted);
}

.talent-subtitle,
.talent-location,
.talent-price {
  font-size: 0.9rem;
}

.talent-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.talent-rating strong {
  color: #111827;
}

.rating-value {
  color: #111827;
  font-weight: 700;
}

.rating-star {
  color: var(--accent);
  font-size: 1rem;
}

.page-hero .talent-rating strong,
.page-hero .rating-value,
.page-hero .talent-rating span:not(.rating-star),
.page-hero .talent-location {
  color: rgba(255, 255, 255, 0.86);
}

.talent-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0.8rem 0 0.95rem;
}

.talent-meta p {
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.talent-tags,
.profile-tag-list,
.review-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.talent-tag,
.profile-tag,
.review-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 600;
}

.talent-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.talent-price {
  color: var(--muted);
  font-size: 0.88rem;
}

.talent-price strong {
  color: var(--text);
  display: block;
  font-size: 0.97rem;
}

.talent-price span {
  display: block;
  margin-top: 0.08rem;
}

.talent-link {
  text-decoration: none;
}

.talent-card .button {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.compare-toggle {
  min-width: 108px;
}

.talent-card .button-secondary,
.profile-side-panel .button-secondary,
.booking-card .button-secondary,
.booking-summary-card .button-secondary,
.feedback-card .button-secondary,
.thank-you-card .button-secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #dbe3ee;
  backdrop-filter: none;
}

.talent-card .button-secondary:hover,
.profile-side-panel .button-secondary:hover,
.booking-card .button-secondary:hover,
.booking-summary-card .button-secondary:hover,
.feedback-card .button-secondary:hover,
.thank-you-card .button-secondary:hover {
  background: #f8fafc;
}

.results-summary {
  margin-bottom: 1.2rem;
  color: #6b7280;
  font-size: 0.94rem;
}

.profile-hero-card {
  padding: 1.1rem 1.1rem 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.profile-lead {
  max-width: 720px;
}

.profile-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-bottom: 1.1rem;
}

.profile-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-progress-section {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.page-talent .booking-progress-section--under-nav,
.page-venues-setup .booking-progress-section--under-nav {
  padding: 0.85rem 1.5rem 1.1rem;
  margin-top: 0;
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}

.page-talent .booking-progress-section--under-nav .booking-progress-shell,
.page-venues-setup .booking-progress-section--under-nav .booking-progress-shell {
  margin-bottom: 0;
}

.page-talent .booking-progress-section--under-nav .booking-progress-header h2,
.page-venues-setup .booking-progress-section--under-nav .booking-progress-header h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.booking-progress-shell {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.booking-progress-header {
  display: grid;
  gap: 0.35rem;
}

.booking-progress-header h2 {
  margin-bottom: 0;
}

.booking-progress-header p {
  color: var(--muted);
}

.booking-progress-header a {
  color: #c2410c;
  font-weight: 600;
}

.booking-progress-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.booking-progress-footer-note {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-progress-footer-note a {
  color: #c2410c;
  font-weight: 600;
}

.booking-progress-footer-note--accent {
  color: #0f172a;
}

.booking-progress-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-step-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.booking-step-bar::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  right: 19px;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
}

.booking-step-bar[data-progress="1"]::after,
.booking-step-bar[data-progress="2"]::after,
.booking-step-bar[data-progress="3"]::after,
.booking-step-bar[data-progress="4"]::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b 0%, #fb7185 100%);
  z-index: 0;
}

.booking-step-bar[data-progress="1"]::after {
  width: 0;
}

.booking-step-bar[data-progress="2"]::after {
  width: calc(33.333% - 12px);
}

.booking-step-bar[data-progress="3"]::after {
  width: calc(66.666% - 6px);
}

.booking-step-bar[data-progress="4"]::after {
  width: calc(100% - 38px);
}

.booking-step-item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid #dbe3ee;
  background: #fff;
}

.booking-step-node {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #dbe3ee;
  color: #64748b;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.booking-step-copy {
  display: grid;
  gap: 0.15rem;
}

.booking-step-label-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-step-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
}

.booking-step-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-step-item.is-complete .booking-step-node,
.booking-step-item.is-current .booking-step-node {
  border-color: #f59e0b;
  color: #9a3412;
}

.booking-step-item.is-complete,
.booking-step-item.is-current {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.booking-step-item.is-complete .booking-step-node {
  background: #fff7ed;
}

.booking-step-item.is-current .booking-step-node {
  background: #f59e0b;
  color: #1f1300;
}

.venue-workflow-list {
  counter-reset: vw;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.venue-workflow-list li {
  counter-increment: vw;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 2px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  position: relative;
  padding-left: 3.25rem;
}

.venue-workflow-list li::before {
  content: counter(vw);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #1f1300;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

.venue-workflow-list strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.venue-workflow-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue-setup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #edf2f7;
}

.venue-setup-actions--wrap {
  justify-content: flex-end;
}

.venue-setup-hint {
  min-height: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.venue-setup-hint--warn {
  color: #b45309;
  font-weight: 600;
}

.artist-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.artist-pick-item {
  cursor: pointer;
  margin: 0;
}

.artist-pick-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.artist-pick-card {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #f8fafc;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}

.artist-pick-item input:focus-visible + .artist-pick-card {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.artist-pick-item input:checked + .artist-pick-card {
  border-color: #f59e0b;
  background: #fffbeb;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.18);
}

.artist-pick-name {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.02rem;
}

.artist-pick-meta {
  font-size: 0.82rem;
  color: #64748b;
}

.artist-pick-rate {
  font-size: 0.88rem;
  font-weight: 700;
  color: #9a3412;
  margin-top: 0.25rem;
}

.venue-setup-review {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.venue-setup-review li {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 0.25rem;
}

.venue-setup-review strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.venue-setup-review span {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.venue-setup-summary .booking-summary-list strong {
  display: block;
}

.booking-stack {
  display: grid;
  gap: 1.25rem;
}

.booking-card,
.booking-summary-card,
.feedback-card,
.thank-you-card {
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.booking-card h3,
.feedback-card h3,
.thank-you-card h3,
.booking-summary-card h3 {
  margin-bottom: 0.75rem;
}

.booking-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.booking-step-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-field {
  display: grid;
  gap: 0.45rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #475569;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  font: inherit;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.booking-field textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-textarea-compact {
  min-height: 88px !important;
}

.booking-field-group {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #edf2f7;
}

.booking-field-group-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.booking-field-hint {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.booking-field input[type="file"] {
  width: 100%;
  padding: 0.65rem 0;
  font: inherit;
  font-size: 0.88rem;
  color: #475569;
}

.confirmation-specs-item .confirmation-specs-detail {
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.booking-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.service-option {
  position: relative;
  display: block;
}

.service-option input {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #f59e0b;
  z-index: 2;
  cursor: pointer;
}

.service-option-card {
  display: grid;
  gap: 0.4rem;
  min-height: 132px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #dbe3ee;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.service-option-card strong {
  color: #0f172a;
}

.service-option-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-option input:checked + .service-option-card {
  border-color: #f59e0b;
  background: #fff7ed;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.16);
  transform: translateY(-1px);
}

.selected-services-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.selected-service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.booking-summary-card {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.booking-summary-list,
.confirmation-summary-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.booking-summary-list li,
.confirmation-summary-list li {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
  padding: 0.7rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.booking-summary-list strong,
.confirmation-summary-list strong {
  color: #0f172a;
}

.booking-summary-total {
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

.booking-summary-total strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.pricing-breakdown {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-line strong {
  color: #0f172a;
}

.pricing-line.total-line {
  padding-top: 0.85rem;
  border-top: 1px dashed #dbe3ee;
  font-size: 1rem;
}

.booking-payment-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.booking-process-card {
  background: #fff;
  border: 2px solid #dbe3ee;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.booking-process-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.booking-process-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
}

.thank-you-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.confirmation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feedback-stars {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.feedback-star-btn {
  min-width: 54px;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feedback-star-btn:hover,
.feedback-star-btn.active {
  transform: translateY(-1px);
  border-color: #f59e0b;
  background: #fff7ed;
}

.feedback-meta {
  display: grid;
  gap: 0.85rem;
}

.feedback-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-weight: 600;
}

.talent-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

.talent-profile-copy {
  display: grid;
  gap: 0.9rem;
}

.talent-profile-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.profile-stat-grid,
.review-grid,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.profile-stat,
.availability-card,
.review-card {
  background: var(--surface);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.profile-stat strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.profile-stat span,
.availability-card p,
.review-card p,
.review-card small {
  color: var(--muted);
}

.profile-side-panel {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.profile-side-panel .panel {
  display: grid;
  gap: 1rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.profile-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.profile-list li {
  color: var(--muted);
}

.profile-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.review-card strong,
.availability-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.empty-state {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

.site-footer {
  background: #ffffff;
  min-height: 0.5in;
  height: auto;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}

.footer-image-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.25rem);
  padding: 0.7rem 1.5rem;
  border-top: 1px solid #e8e8e8;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.footer-image-strip img {
  height: 32px;
  width: auto;
  max-width: min(112px, 22vw);
  object-fit: contain;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .footer-image-strip {
    gap: 0.65rem;
    padding: 0.6rem 1rem;
  }

  .footer-image-strip img {
    height: 26px;
    max-width: 24vw;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-inner {
  display: block;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-column h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #c2410c;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .nav-logo {
  color: #0f172a;
}

.site-footer .nav-logo-text {
  color: #0f172a;
  text-shadow: none;
}

.venue-setup-subnav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.venue-setup-subnav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}

.venue-setup-subnav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.venue-setup-subnav a:hover {
  color: #0f172a;
}

.venue-setup-subnav a.is-active {
  color: #c2410c;
  border-bottom-color: #f59e0b;
}

.venue-setup-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.venue-setup-link-card.panel {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .nav-spacer {
    display: none;
  }

  .banner {
    min-height: 420px;
  }

  .banner-actions {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    width: calc(100% - 2rem);
  }

  .banner-actions .button {
    min-width: 0;
    width: 100%;
  }

  .page-hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 1rem;
  }

  .marketplace-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .talent-card-header,
  .talent-profile-head {
    flex-direction: column;
  }

  .talent-profile-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout,
  .confirmation-grid {
    grid-template-columns: 1fr;
  }

  .booking-step-bar {
    grid-template-columns: 1fr;
  }

  .booking-step-bar::before,
  .booking-step-bar::after {
    display: none;
  }

  .booking-step-item {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
  }

  .booking-form-grid,
  .booking-inline-grid {
    grid-template-columns: 1fr;
  }

  .profile-side-panel {
    position: static;
  }

  .booking-summary-card {
    position: static;
  }

  .home-links {
    margin-top: -2.5rem;
  }

  .setlist-song-table-head,
  .setlist-song-row {
    grid-template-columns: 1fr;
  }

  .setlist-song-num {
    display: none;
  }

  .setlist-journey {
    grid-template-columns: 1fr;
  }

  .setlist-journey::before {
    display: none;
  }
}

/* Set lists (talent / venues) */
body.page-setlists {
  background: #f7f7f7;
}

body.page-setlists .page-main {
  background: #f7f7f7;
}

body.page-setlists .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.talent-setlist-cta {
  margin-top: 1.25rem;
  max-width: 720px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.talent-setlist-cta a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.talent-setlist-cta a:hover {
  color: #fde68a;
}

.setlist-workspace-inner {
  max-width: var(--max-width);
}

.setup-banner {
  grid-column: 1 / -1;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.92rem;
  line-height: 1.45;
  color: #1e293b;
}

.setup-banner strong {
  color: #0f172a;
}

body.page-setlists-setup .setlist-mode-bar {
  display: none;
}

body.page-setlists-setup .setlist-journey {
  margin-bottom: 1rem;
}

.publish-profile-status {
  flex-basis: 100%;
}

.talent-setlist-live-badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.profile-setlists-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1rem;
}

.profile-setlist-card .setlist-readonly-meta {
  margin-top: 0.35rem;
}

.profile-setlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.85rem;
}

.setlist-mode-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-mode-copy h2 {
  margin-top: 0.35rem;
  font-size: 1.5rem;
}

.setlist-mode-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  background: #f8fafc;
  border-radius: 999px;
  border: 2px solid #dbe3ee;
}

.setlist-mode-btn {
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.setlist-mode-btn:hover {
  color: var(--text);
}

.setlist-mode-btn.active {
  background: var(--surface);
  color: var(--text);
  border: 1px solid #dbe3ee;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.setlist-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}

.setlist-journey::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  top: 1.15rem;
  height: 2px;
  background: #dbe3ee;
  z-index: 0;
}

.setlist-journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #fff;
}

.setlist-journey-step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.setlist-journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.setlist-journey-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 700;
}

.setlist-journey-step.is-current {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.14);
}

.setlist-journey-step.is-current .setlist-journey-num {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #9a3412;
}

.setlist-talent-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 2px solid #d8e2ee;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.setlist-talent-bar label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.setlist-talent-select,
.setlist-select {
  font: inherit;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  min-width: 200px;
}

.setlist-talent-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.setlist-panel.is-hidden {
  display: none;
}

.setlist-toolbar {
  margin-bottom: 1rem;
}

.setlist-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.setlist-inline-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.setlist-legend {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.55;
}

.setlist-song-editor {
  background: var(--surface);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.setlist-song-table-head {
  display: grid;
  grid-template-columns: 36px minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-soft);
  border-bottom: 2px solid #dbe3ee;
}

.setlist-song-rows {
  display: flex;
  flex-direction: column;
}

.setlist-song-row {
  display: grid;
  grid-template-columns: 36px minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #dbe3ee;
}

.setlist-song-row:last-child {
  border-bottom: none;
}

.setlist-song-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 0.45rem;
  text-align: center;
}

.setlist-input,
.setlist-textarea {
  font: inherit;
  font-size: 0.88rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 2px solid #dbe3ee;
  background: #fff;
  resize: vertical;
}

.setlist-input:focus,
.setlist-textarea:focus,
.setlist-select:focus,
.setlist-talent-select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.setlist-textarea {
  min-height: 3rem;
}

.setlist-save-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}

.setlist-status {
  font-size: 0.88rem;
  color: var(--muted);
}

.setlist-readonly {
  background: var(--surface);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-readonly-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.setlist-readonly-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.setlist-readonly-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.setlist-readonly-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dbe3ee;
}

.setlist-readonly-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setlist-readonly-item.is-placeholder {
  opacity: 0.65;
}

.setlist-readonly-title {
  margin-bottom: 0.35rem;
}

.setlist-readonly-lyrics {
  font-size: 0.88rem;
  color: var(--text);
  white-space: pre-wrap;
  margin: 0.35rem 0;
  line-height: 1.45;
}

.setlist-readonly-video {
  margin-top: 0.35rem;
}

.setlist-video-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.setlist-video-link:hover {
  color: #1d4ed8;
}

.setlist-muted {
  font-size: 0.85rem;
  color: var(--muted);
}

.setlist-venue-review-card {
  background: var(--surface-soft);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-venue-review-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.setlist-review-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.setlist-reviews-history h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.setlist-reviews-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.setlist-review-item {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 2px solid #dbe3ee;
  border-radius: 12px;
  font-size: 0.88rem;
}

.setlist-review-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.setlist-review-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.setlist-review-item p {
  margin: 0;
  line-height: 1.45;
  color: var(--text);
}
