@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
  --ink: #0b0b0d;
  --panel: #151316;
  --panel-soft: #20191b;
  --white: #fbf7ef;
  --muted: #cfc4b6;
  --gold: #c79a42;
  --gold-soft: #efd693;
  --red: #8f1724;
  --line: rgba(251, 247, 239, 0.14);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --header-height: 110px;
  --button-radius: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--ink);
  letter-spacing: 0;
}

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

main { padding-top: var(--header-height); }

.home-page main { padding-top: var(--header-height); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 10, 0.76);
  border-bottom: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 118px;
  height: 92px;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-weight: 800;
  overflow: visible;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small { display: block; line-height: 1.05; }

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.15vw, 14px);
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgba(239, 214, 147, 0.28);
  border-radius: var(--button-radius);
  background: rgba(251, 247, 239, 0.035);
  color: var(--muted);
  line-height: 1;
  font-weight: 650;
  box-shadow: 0 0 0 rgba(217, 164, 65, 0);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.site-nav a::after {
  content: none;
}

.site-nav a:hover {
  color: var(--gold-soft);
  transform: none;
}

.site-nav a:focus-visible {
  color: var(--gold-soft);
  outline: 2px solid rgba(239, 214, 147, 0.72);
  outline-offset: 2px;
  transform: none;
}

.site-nav a:active {
  transform: translateY(1px) scale(0.975);
  transition-duration: 90ms;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: rgba(239, 214, 147, 0.88);
  background: linear-gradient(180deg, #efd693 0%, #c79a42 100%);
  box-shadow: 0 8px 22px rgba(199, 154, 66, 0.18);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 84px);
}

.home-hero {
  min-height: clamp(620px, calc(100svh - var(--header-height)), 870px);
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: 0;
  justify-content: flex-end;
  overflow: hidden;
}

.home-hero .hero-image {
  object-position: center top;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.42) 0%, rgba(11, 11, 13, 0.08) 38%, rgba(11, 11, 13, 0) 72%);
}

.home-hero .hero-overlay {
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.32) 0%, rgba(11, 11, 13, 0.04) 40%, rgba(11, 11, 13, 0) 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Bodoni 72", "Didot", Georgia, "Times New Roman", serif;
  font-size: 4.45rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 16px;
  font-family: "Bodoni 72", "Didot", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 700;
}


.hero-content-actions {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  justify-content: flex-end;
  margin-top: 0;
  padding-bottom: clamp(14px, 3vh, 28px);
}

.home-hero-title {
  width: min(50%, 700px);
  max-width: none;
  margin: 0 0 clamp(16px, 2.2vh, 24px);
  font-size: clamp(3rem, 5.7vw, 6.6rem);
  font-weight: 600;
  line-height: 0.82;
  text-align: left;
  text-transform: uppercase;
}

.home-hero-title span {
  display: block;
}

.hero-content-actions .hero-actions {
  margin-top: 0;
}

.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;
}
.hero-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-actions,
.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-finder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin-top: 30px;
  padding: 12px;
  border: 1px solid rgba(243, 210, 138, 0.28);
  background: rgba(11, 11, 13, 0.72);
  box-shadow: var(--shadow);
}

.quick-finder label {
  display: grid;
  gap: 6px;
}

.quick-finder span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.button:hover,
button:hover,
.button:focus-visible,
button:focus-visible {
  transform: translateY(-2px) scale(1.015);
}

.button:active,
button:active {
  transform: translateY(1px) scale(0.98);
}

.button.primary,
button {
  background: linear-gradient(180deg, #f0d991 0%, #c79a42 52%, #9f7330 100%);
  color: #15100b;
  box-shadow: 0 10px 26px rgba(199, 154, 66, 0.18);
}

.button.secondary {
  background: rgba(251, 247, 239, 0.08);
  border-color: var(--line);
  color: var(--white);
}

.turnstile-wrap {
  min-height: 0;
}

.turnstile-wrap.is-configured {
  min-height: 68px;
}

.turnstile-wrap.is-unconfigured,
.turnstile-wrap.has-error {
  color: #f0b5ae;
  font-size: 0.9rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.form-status.is-error { color: #f4a7a7; }
.form-status.is-success { color: var(--gold-soft); }

.section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.roster-heading {
  padding-bottom: clamp(20px, 3vw, 36px);
}

.roster-grid-section {
  padding-top: 0;
}

.home-info,
.shows-section,
.booking-focus {
  padding-top: clamp(54px, 7vw, 90px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.simple-heading {
  display: block;
  max-width: 900px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-grid article {
  border-top: 1px solid rgba(243, 210, 138, 0.35);
  padding-top: 20px;
}

.info-grid p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070708;
}

.proof-strip div {
  padding: 22px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child { border-right: 0; }

.proof-strip strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: 40px;
  align-items: end;
  background: #100f11;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.section-heading + p,
.media-band p,
.booking p,
.assistant-section p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading a {
  color: var(--gold-soft);
  font-weight: 800;
  white-space: nowrap;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shows-section {
  position: relative;
  background: var(--ink);
}

.home-show-grid .show-card {
  min-height: 0;
}

.show-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  background: #030303;
}

.show-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.show-card-hero-link {
  display: block;
  overflow: hidden;
}

.show-card-hero-link:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: -2px;
}

.show-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  padding: 16px 14px 18px;
  background: #030303;
  background-image: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.show-card-title {
  margin: 0;
  max-width: 100%;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.16;
  font-weight: 800;
}

.show-card p {
  min-height: 58px;
  color: var(--muted);
  line-height: 1.45;
}

.markets { background: var(--panel-soft); }

.market-grid,
.testimonials,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.market-grid article,
.quote,
.assistant-card,
.booking-form,
.detail-card,
.process-grid article,
.faq-grid details {
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.055);
  padding: 24px;
}

.market-grid p,
.quote span,
.detail-card p,
.detail-card li,
.process-grid p,
.faq-grid p { color: var(--muted); line-height: 1.55; }

.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-weight: 900;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.78fr);
  gap: 34px;
  background: #100f11;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-copy {
  columns: 2 260px;
  column-gap: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.media-band,
.assistant-section,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(310px, 0.68fr);
  gap: 36px;
  align-items: center;
}

.video-frame {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.45);
  background:
    linear-gradient(rgba(11, 11, 13, 0.35), rgba(11, 11, 13, 0.92)),
    url("assets/stage-hero.png") center / cover;
  box-shadow: var(--shadow);
  color: var(--gold-soft);
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(217, 164, 65, 0.45);
  background: #050505;
}

.media-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.media-note a {
  color: var(--gold-soft);
  font-weight: 800;
}

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

.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.assistant-section { background: #100f11; }

.chat-log {
  min-height: 170px;
  color: var(--muted);
  line-height: 1.55;
}

.chat-log strong { color: var(--gold-soft); display: block; }

.chat-form,
.booking-form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form textarea,
.booking-form button { grid-column: 1 / -1; }

.booking-focus {
  background: #100f11;
  border-top: 1px solid var(--line);
}

.booking-copy {
  align-self: start;
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-points span {
  border: 1px solid rgba(243, 210, 138, 0.28);
  color: var(--gold-soft);
  padding: 8px 10px;
  font-size: 0.86rem;
}

.booking-panel {
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070708;
}

.site-footer p { margin: 0; }

.footer-watermark {
  flex-basis: 100%;
  display: block;
  width: 100%;
  margin-left: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(251, 247, 239, 0.08);
  color: #a9a9aa;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.site-footer .footer-watermark a {
  color: #bdbdbf;
  font-weight: 600;
}

.site-footer .footer-watermark .preview-return {
  color: inherit;
  font-weight: inherit;
}

.page-hero {
  padding: 82px clamp(18px, 5vw, 72px) 72px;
  background: url("assets/stage-hero.png") center / cover;
}

.page-hero h1 {
  max-width: 760px;
  font-size: 3.65rem;
}

.contact-hero {
  background-image: url("assets/stage-hero-no-text.png?v=20260524");
  background-color: rgba(11, 11, 13, 0.68);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
  gap: 0;
  align-items: start;
}

.contact-details p {
  color: var(--muted);
  line-height: 1.65;
}

.compact-about {
  padding: 20px;
  border: 1px solid rgba(243, 210, 138, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.compact-about .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.compact-about h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.compact-about p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.compact-about p + p {
  margin-top: 10px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-list a,
.site-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.site-footer .footer-booking-link {
  color: var(--muted);
  font-weight: 400;
  text-decoration-color: rgba(239, 214, 147, 0.5);
  text-underline-offset: 4px;
}

.site-footer .footer-booking-link:hover {
  color: var(--white);
}

.site-footer .footer-booking-link:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.contact-form {
  box-shadow: var(--shadow);
}

.roster-tools {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070708;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 40px;
  border-radius: var(--button-radius);
  background: rgba(251, 247, 239, 0.06);
  border-color: var(--line);
  color: var(--white);
}

.filter.active {
  background: linear-gradient(180deg, #f0d991 0%, #c79a42 56%, #9f7330 100%);
  color: #15100b;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 24px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

details + details { margin-top: 16px; }

.page-hero.compact { min-height: 360px; }

.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.show-hero {
  min-height: clamp(480px, calc(100svh - var(--header-height)), 820px);
  display: flex;
  align-items: flex-end;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #050505;
}

.show-hero-actions {
  margin: 0;
  padding: clamp(20px, 4vw, 42px) clamp(18px, 5vw, 72px);
  padding-left: var(--show-actions-left, clamp(18px, 5vw, 72px));
  width: 100%;
  justify-content: flex-start;
  background: #050505;
  border-top: 1px solid rgba(251, 247, 239, 0.08);
  border-bottom: 1px solid rgba(251, 247, 239, 0.08);
}

.show-intro-card h1 {
  margin-bottom: 16px;
}

.video-first-card {
  border-color: rgba(243, 210, 138, 0.35);
}

.section-cta {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.show-main {
  display: grid;
  gap: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery div {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background-image: var(--tone), url("assets/stage-hero.png");
  background-size: cover;
  background-position: center;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #080709;
  border: 1px solid var(--line);
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
}

.show-about-sections {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  margin-top: 28px;
}

.show-about-section {
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(251, 247, 239, 0.12);
}

.show-about-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.show-about-section h3 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.18;
}

.show-about-section p {
  max-width: 78ch;
  margin: 0 0 14px;
  line-height: 1.65;
}

.show-about-section p:last-child {
  margin-bottom: 0;
}

.show-about-list {
  display: grid;
  gap: 12px;
  max-width: 82ch;
}

.show-about-quote {
  margin: 18px 0 0;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--gold);
}

.show-about-quote p {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-style: italic;
}

.show-testimonials {
  display: grid;
  gap: 18px;
}

.show-testimonial {
  margin: 0;
  padding: 6px 0 6px 20px;
  border-left: 2px solid var(--gold);
}

.show-testimonial p {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
}

.show-testimonial cite {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 0.9rem;
  font-style: normal;
}

.show-about-cta {
  margin-top: 20px !important;
}

.what-to-expect-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.sticky-card {
  position: sticky;
  top: 98px;
  align-self: start;
}

@media (max-width: 1080px) {
  h1 { font-size: 3.55rem; }
  h2 { font-size: 2.45rem; }
  .page-hero h1 { font-size: 3.05rem; }
  .hero-content { max-width: 620px; }
  .show-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .show-layout { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --header-height: 144px; }

  .site-header {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .brand-mark {
    width: 96px;
    height: 74px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    font-size: 0.92rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 10px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: clamp(44px, 8vw, 72px);
    justify-content: center;
  }
  h1 { font-size: 2.35rem; line-height: 1.08; }
  h2 { font-size: 2rem; line-height: 1.12; }
  .home-hero {
    min-height: clamp(540px, calc(100svh - var(--header-height)), 720px);
    height: auto;
    padding: 20px clamp(18px, 5vw, 72px) 0;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 0;
  }

  .home-hero .hero-image {
    object-fit: cover;
    object-position: center;
    background: #050505;
  }

  .home-hero .hero-overlay {
    background: linear-gradient(0deg, rgba(11, 11, 13, 0.16) 0%, rgba(11, 11, 13, 0) 48%);
  }

  .hero-content-actions {
    position: relative;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 0 18px;
  }

  .home-hero-title {
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(2rem, 9vw, 4rem);
    line-height: 0.84;
    text-align: left;
  }

  .hero-content-actions .hero-actions {
    justify-content: flex-start;
    margin-top: 0;
  }
  .hero-content { max-width: 100%; }

.hero-copy { font-size: 1rem; line-height: 1.5; }
  .hero-actions { margin-top: 24px; }
  .eyebrow { font-size: 0.68rem; margin-bottom: 10px; }
  .page-hero {
    padding-top: clamp(44px, 8vw, 72px);
    padding-bottom: 52px;
  }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero.compact { min-height: 300px; }
  .show-hero,
  body.version-b .show-hero {
    min-height: 0;
    display: block;
    padding: calc(100vw * 9 / 16) 0 0;
    background-size: 100% auto;
    background-position: center top;
  }
  .show-hero-actions {
    width: 100%;
    margin: 0;
    padding: 12px clamp(18px, 5vw, 30px) 14px;
    padding-left: var(--show-actions-left, 0px);
    background: #050505;
    border-top: 1px solid rgba(251, 247, 239, 0.08);
  }
  .page-hero p { font-size: 0.98rem; }
  .intro,
  .info-grid,
  .media-band,
  .assistant-section,
  .contact-section,
  .booking,
  .testimonials,
  .seo-section,
  .roster-tools { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .show-grid,
  .market-grid,
  .proof-strip,
  .process-grid,
  .faq-grid,
  .booking-form { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-finder { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    overflow-x: visible;
    font-size: 0.75rem;
  }

  .site-nav a {
    width: 100%;
    min-width: 0;
    padding: 8px 4px;
  }

  .home-hero {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    padding: 0;
    background: #050505;
  }

  .home-hero .hero-image {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .home-hero .hero-overlay {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-area: 1 / 1;
    background: linear-gradient(0deg, rgba(11, 11, 13, 0.52) 0%, rgba(11, 11, 13, 0.08) 72%);
  }

  .home-hero .hero-content-actions {
    display: contents;
  }

  .home-hero-title {
    z-index: 2;
    grid-area: 1 / 1;
    align-self: end;
    width: auto;
    margin: 0 clamp(18px, 5vw, 30px) clamp(12px, 3vw, 18px);
    font-size: clamp(1.9rem, 8.6vw, 3.2rem);
  }

  .hero-content-actions .hero-actions {
    z-index: 2;
    grid-area: 2 / 1;
    width: 100%;
    gap: 10px;
    margin: 0;
    padding: 10px clamp(18px, 5vw, 30px) 14px;
    background: #050505;
  }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
  padding-top: 20px;
}

.compact-contact-hero,
.booking-hero {
  min-height: 360px;
}

.contact-details-panel {
  position: static;
}

.contact-details-panel .button {
  margin-top: 22px;
}

.contact-list span {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list .protected-contact {
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  column-gap: 12px;
}

.protected-contact strong {
  grid-column: 1 / -1;
}

.protected-contact-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-reveal {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 0;
  background: transparent;
  color: var(--gold-soft);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-reveal:hover,
.contact-reveal:focus-visible {
  border-color: var(--white);
  background: var(--gold-soft);
  color: #15100b;
}

.contact-list strong {
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.simple-contact-form {
  align-self: start;
}

.simple-contact-form input,
.simple-contact-form textarea,
.simple-contact-form .turnstile-wrap,
.simple-contact-form .form-status,
.simple-contact-form button {
  grid-column: 1 / -1;
}

.booking-page-section {
  display: grid;
  justify-content: center;
  padding-top: 20px;
}

.full-booking-form {
  width: min(100%, 980px);
}

.form-group,
.form-details {
  grid-column: 1 / -1;
  border: 1px solid rgba(243, 210, 138, 0.22);
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.form-group legend,
.form-details summary {
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.form-group-open,
.form-group-grid,
.form-details[open] .form-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-group textarea,
.form-help {
  grid-column: 1 / -1;
}

.form-details summary {
  cursor: pointer;
  list-style-position: inside;
}

.form-details .form-group-grid {
  margin-top: 16px;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
@media (max-width: 780px) {
  .contact-page-grid,
  .form-group-open,
  .form-group-grid,
  .form-details[open] .form-group-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-panel {
    position: static;
  }
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.35) opacity(0.82);
  cursor: pointer;
}
