: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: 76px;
}

* { 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); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 164px;
  padding: 6px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.50) 0%, rgba(11, 11, 13, 0.15) 100%);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  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(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.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(720px, calc(100svh - var(--header-height)), 980px);
  padding-top: clamp(24px, 5vw, 64px);
  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;
  justify-content: flex-start;
  margin-top: auto;
  padding-bottom: clamp(24px, 5vh, 54px);
}

.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;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.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;
}

.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);
}

.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;
}

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

.home-show-grid .show-card p {
  min-height: 72px;
}

.show-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  background: var(--panel);
}

.show-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image, url("assets/stage-hero.png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transform: none;
}

.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.48), rgba(11, 11, 13, 0.05) 52%, rgba(11, 11, 13, 0));
}

.show-card-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: inherit;
  padding: 24px;
}

.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;
}

.poster-placeholder {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border: 1px dashed rgba(243, 210, 138, 0.5);
  background:
    linear-gradient(rgba(11, 11, 13, 0.62), rgba(11, 11, 13, 0.88)),
    url("assets/stage-hero.png") center / cover;
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.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; }

.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:
    linear-gradient(90deg, rgba(11, 11, 13, 0.96), rgba(11, 11, 13, 0.48)),
    url("assets/stage-hero-no-text.png?v=20260524");
}

.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;
}

.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;
  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);
  width: 100%;
}

.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);
}

.poster-image {
  display: block;
  width: min(100%, 460px);
  margin-top: 18px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  box-shadow: var(--shadow);
}

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

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

.repertoire-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.repertoire-list span {
  border: 1px solid rgba(243, 210, 138, 0.28);
  background: rgba(217, 164, 65, 0.08);
  color: var(--gold-soft);
  padding: 8px 10px;
  font-size: 0.9rem;
}

.testimonial-card p:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
  color: var(--white);
}

.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) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .brand-mark {
    width: 132px;
    height: 132px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .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: 0;
    height: calc(100vw / 1.7768);
    padding: 0 clamp(18px, 5vw, 72px);
    justify-content: flex-end;
    overflow: visible;
    margin-bottom: 58px;
  }

  .home-hero .hero-image {
    object-fit: contain;
    object-position: center top;
    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: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    padding: 0 clamp(18px, 5vw, 72px);
    transform: translateY(50%);
  }

  .hero-content-actions .hero-actions {
    justify-content: center;
    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 { min-height: max(420px, calc(100svh - var(--header-height))); }
  .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; }
  .spec-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

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

.contact-details-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.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 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;
}

.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;
}
