:root {
  color-scheme: dark;
  --ink: #050708;
  --ink-2: #0b1011;
  --paper: #f5f0ea;
  --muted: rgba(245, 240, 234, .7);
  --quiet: rgba(245, 240, 234, .54);
  --line: rgba(255, 255, 255, .16);
  --line-strong: rgba(255, 255, 255, .28);
  --rose: #ff6877;
  --rose-deep: #d94558;
  --rose-soft: #ffbdc5;
  --ember: #ffb13f;
  --green: #8fd7bd;
  --panel: rgba(5, 7, 8, .74);
  --panel-solid: #101516;
  --shadow: 0 28px 90px rgba(0, 0, 0, .58);
  --mx: 52%;
  --my: 46%;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 80;
  translate: 0 -160%;
  padding: 10px 14px;
  color: #16080b;
  background: var(--rose);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.skip-link:focus {
  translate: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow-x: hidden;
  background: #070b0c;
}

.backdrop,
.wash,
.light-field,
.rain,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.backdrop {
  z-index: -8;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(.9) contrast(1.08) brightness(.82);
  transform: scale(1.018);
  animation: bannerDrift 14s ease-in-out infinite alternate;
}

.tour-home .backdrop {
  object-fit: contain;
  object-position: right top;
  filter: saturate(.9) contrast(1.08) brightness(.86);
  transform: none;
  animation: none;
}

.tour-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -7;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 36vh, rgba(5, 7, 8, .34) 51vh, #050708 84vh),
    linear-gradient(90deg, transparent 48%, rgba(5, 7, 8, .12) 74%, rgba(5, 7, 8, .48) 100%);
}

.wash {
  z-index: -7;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, .94) 0%, rgba(5, 7, 8, .76) 34%, rgba(5, 7, 8, .24) 63%, rgba(5, 7, 8, .5) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, .18), rgba(5, 7, 8, .08) 42%, rgba(5, 7, 8, .88) 100%);
}

.light-field {
  z-index: -6;
  opacity: .72;
  background:
    radial-gradient(ellipse at 72% 57%, rgba(255, 177, 63, .28), transparent 8rem),
    radial-gradient(ellipse at 86% 57%, rgba(255, 177, 63, .22), transparent 7rem),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 236, 204, .14), transparent 17rem);
  mix-blend-mode: screen;
}

.rain {
  z-index: -5;
  opacity: .16;
  background-image:
    linear-gradient(112deg, transparent 0 42%, rgba(255,255,255,.18) 43%, transparent 44%),
    linear-gradient(112deg, transparent 0 57%, rgba(255,255,255,.1) 58%, transparent 59%);
  background-size: 230px 700px, 310px 840px;
  animation: rain 1.9s linear infinite;
}

.grain {
  z-index: -4;
  opacity: .16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.9) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.62) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

.tour-home .wash {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, .96) 0%, rgba(5, 7, 8, .82) 31%, rgba(5, 7, 8, .26) 62%, rgba(5, 7, 8, .08) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, .08) 0%, rgba(5, 7, 8, .18) 48%, rgba(5, 7, 8, .86) 100%);
}

.tour-home .light-field {
  background:
    radial-gradient(ellipse at 76% 41%, rgba(255, 177, 63, .24), transparent 8rem),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 236, 204, .1), transparent 16rem);
}

.tour-home .light-field::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(150px, 19vh, 250px);
  opacity: 0;
  background:
    radial-gradient(ellipse at 77% 48%, rgba(232, 246, 255, .62), transparent 9rem),
    radial-gradient(ellipse at 68% 72%, rgba(163, 205, 225, .26), transparent 13rem),
    linear-gradient(180deg, rgba(216, 238, 248, .12), transparent 92%);
  mix-blend-mode: screen;
  animation: lightningFlicker 8.5s infinite;
}

.shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 4vh, 44px);
  padding: clamp(32px, 6vh, 72px) 0 22px;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 234, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-wordmark::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--rose);
  box-shadow: 0 0 24px rgba(255, 104, 119, .75);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.footer-links a,
.privacy-link {
  color: rgba(245, 240, 234, .74);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 850;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.nav a {
  padding: 9px 10px;
}

.nav a[aria-current="page"],
.nav a:hover,
.footer-links a:hover,
.privacy-link:hover {
  color: var(--paper);
}

.nav-cta {
  border: 1px solid rgba(255, 104, 119, .48);
  background: rgba(255, 104, 119, .12);
}

.hero {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 430px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 80px);
}

.hero-main {
  transform: perspective(1000px) rotateX(calc((50% - var(--my)) * .025)) rotateY(calc((var(--mx) - 50%) * .025));
  transform-style: preserve-3d;
}

.logo {
  display: block;
  width: min(540px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .74));
}

.strap {
  display: block;
  width: min(540px, 100%);
  height: auto;
  margin-inline: auto;
  margin-top: clamp(16px, 2.3vw, 26px);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .66));
}

.show-copy {
  width: min(620px, 100%);
  margin: clamp(18px, 3vh, 28px) auto 0;
  padding: 20px 22px;
  color: rgba(245, 240, 234, .9);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 104, 119, .34), transparent 5px),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(5, 7, 8, .78);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .48), 0 0 0 1px rgba(255, 104, 119, .1) inset;
  backdrop-filter: blur(14px);
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.5;
  text-align: center;
}

.show-copy p {
  margin: 0;
}

.show-copy p + p {
  margin-top: 10px;
}

.hero-copy {
  width: min(500px, 100%);
  margin-top: clamp(22px, 4vh, 34px);
}

.eyebrow,
.panel-kicker,
.search-field label,
.count {
  color: var(--rose-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  line-height: .96;
  text-wrap: balance;
}

.lead {
  max-width: 35rem;
  margin: 18px 0 0;
  color: rgba(245, 240, 234, .76);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button,
.text-button,
.ticket-link,
.ticket-pending {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  padding: 0 16px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 950;
}

.button,
.ticket-link {
  color: #16080b;
  background: var(--rose);
  box-shadow: 0 14px 32px rgba(255, 104, 119, .2);
  transition: transform .16s ease, filter .16s ease;
}

.button:hover,
.ticket-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.text-button {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
}

.panel {
  position: relative;
  overflow: hidden;
  width: min(430px, 100%);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(255, 104, 119, .22), transparent 3px),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .028)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 57px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 104, 119, .72), transparent);
  pointer-events: none;
}

.panel-header {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px 20px;
}

.panel-title {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.panel-body {
  padding: 0 18px 18px;
}

.search-field input {
  width: 100%;
  min-height: 39px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .058);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search-field input:focus {
  border-color: rgba(255, 104, 119, .94);
  background: rgba(255, 255, 255, .088);
  box-shadow: 0 10px 26px rgba(255, 104, 119, .08);
}

.search-field input {
  width: 100%;
  height: 39px;
  border: 0;
  outline: 0;
  padding: 0 11px;
  color: var(--paper);
  background: transparent;
  font-size: 16px;
}

.tour-hero {
  grid-template-columns: minmax(0, 660px);
  align-items: start;
  justify-content: center;
  justify-items: center;
  gap: clamp(22px, 4vh, 34px);
  text-align: center;
}

.tour-hero .hero-main {
  width: min(660px, 100%);
  display: grid;
  justify-items: center;
}

.tour-card {
  width: min(660px, 100%);
  justify-self: center;
  text-align: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.tour-card::before {
  display: none;
}

.tour-card .panel-header {
  padding: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 9px;
}

.tour-card .panel-body {
  display: grid;
  gap: 14px;
  padding: 0;
}

.searches {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 104, 119, .28), transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03)),
    rgba(5, 7, 8, .82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 104, 119, .08) inset;
  backdrop-filter: blur(14px);
}

.search-field {
  width: min(100%, 520px);
}

.location-tools {
  width: min(100%, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.location-button,
.clear-search {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 2px;
  padding: 0 10px;
  color: rgba(245, 240, 234, .78);
  background: rgba(255, 255, 255, .055);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.location-button:hover,
.clear-search:hover {
  color: var(--paper);
  border-color: rgba(255, 104, 119, .46);
  background: rgba(255, 104, 119, .13);
}

.location-button:hover,
.clear-search:hover {
  transform: translateY(-1px);
}

.location-button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.location-status {
  color: rgba(245, 240, 234, .64);
  font-size: 12px;
  line-height: 1.35;
}

.search-field label {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 240, 234, .66);
  text-align: center;
}

.search-field input {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-bottom-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.dates-list {
  max-height: none;
  overflow: visible;
  padding-right: 0;
  display: grid;
  gap: 12px;
}

.month-heading {
  margin: 9px 0 -2px;
  color: var(--rose-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.date-card {
  display: grid;
  grid-template-columns: minmax(188px, .86fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 104, 119, .18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(5, 7, 8, .74);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
  transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.date-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .3);
  background:
    linear-gradient(90deg, rgba(255, 104, 119, .2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .024)),
    rgba(5, 7, 8, .82);
  box-shadow: 0 22px 66px rgba(0, 0, 0, .42);
}

.date-block {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  width: 100%;
  min-height: 74px;
  padding: 4px 18px 4px 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.date-day {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.5vw, 25px);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.time,
.city {
  color: rgba(245, 240, 234, .58);
  font-size: 12px;
}

.time {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: rgba(245, 240, 234, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
  font-weight: 850;
  letter-spacing: .08em;
}

.details {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
}

.venue {
  color: var(--paper);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.22;
}

.venue-link {
  text-decoration-color: rgba(255, 104, 119, .56);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.venue-link:hover {
  color: var(--rose-soft);
  text-decoration-color: var(--rose);
}

.ticket-cell {
  display: flex;
  justify-content: center;
}

.ticket-link,
.ticket-pending {
  min-width: 126px;
  min-height: 36px;
  padding: 0 12px;
  white-space: nowrap;
}

.ticket-pending {
  color: rgba(245, 240, 234, .72);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .055);
}

.ticket-sold-out {
  color: rgba(245, 240, 234, .86);
  border-color: rgba(255, 104, 119, .38);
  background: rgba(255, 104, 119, .13);
}

.state {
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 22px 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.venue-hero {
  gap: clamp(22px, 4vh, 34px);
}

.venue-card {
  display: grid;
  gap: clamp(24px, 4vh, 36px);
}

.venue-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.venue-heading h1 {
  max-width: 640px;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.venue-heading .eyebrow,
.venue-city {
  margin: 0;
}

.venue-city {
  color: rgba(245, 240, 234, .7);
  font-size: 15px;
}

.back-link {
  margin-bottom: 4px;
  color: var(--rose-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link::before {
  content: "\2190";
  margin-right: 7px;
}

.back-link:hover {
  color: var(--paper);
}

.venue-performances,
.venue-show-copy,
.venue-stay {
  text-align: left;
}

.venue-performances h2,
.venue-show-copy h2,
.venue-stay h2 {
  margin: 0;
  color: var(--rose-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.venue-performance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.venue-performance:first-of-type {
  margin-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.venue-performance-date {
  display: flex;
  align-items: center;
  gap: 14px;
}

.venue-performance .date-day {
  font-size: clamp(20px, 3vw, 27px);
}

.venue-show-copy {
  padding-top: 2px;
  color: rgba(245, 240, 234, .82);
  font-size: 15px;
  line-height: 1.58;
}

.venue-show-copy h2 {
  margin-bottom: 13px;
}

.venue-show-copy p {
  margin: 0;
}

.venue-show-copy p + p {
  margin-top: 10px;
}

.venue-stay {
  display: grid;
  gap: 10px;
}

.venue-stay p {
  margin: 0;
  color: rgba(245, 240, 234, .74);
  font-size: 14px;
  line-height: 1.5;
}

.venue-stay iframe {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
}

.venue-sticky-booking {
  display: none;
}

.site-footer {
  color: rgba(245, 240, 234, .64);
  font-size: 12px;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  justify-content: flex-end;
}

.amp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .86;
}

.amp-link img {
  display: block;
  width: 52px;
  height: auto;
}

.amp-label {
  color: rgba(245, 240, 234, .68);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@keyframes bannerDrift {
  from { transform: scale(1.018) translate3d(-.45%, -.2%, 0); }
  to { transform: scale(1.018) translate3d(.45%, .2%, 0); }
}

@keyframes rain {
  from { background-position: 0 0, 0 0; }
  to { background-position: -230px 700px, -310px 840px; }
}

@keyframes lightningFlicker {
  0%, 70%, 73%, 78%, 100% { opacity: 0; }
  71% { opacity: .42; }
  72% { opacity: .14; }
  74% { opacity: .68; }
  75% { opacity: .22; }
  76% { opacity: .52; }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 30px, 1240px);
  }

  .hero,
  .tour-hero {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .panel,
  .tour-card {
    justify-self: center;
  }

  .wash {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, .9), rgba(5, 7, 8, .34)),
      linear-gradient(180deg, rgba(5, 7, 8, .16), rgba(5, 7, 8, .82));
  }
}

@media (max-width: 700px) {
  .venue-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header,
  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .nav,
  .footer-links {
    justify-content: center;
  }

  .hero {
    padding-top: 27svh;
    gap: 18px;
  }

  .tour-hero {
    padding-top: 31svh;
  }

  .tour-hero .hero-main {
    justify-items: center;
  }

  .backdrop,
  .light-field {
    height: 46svh;
    object-position: 74% center;
    transform: none;
    animation: none;
  }

  .tour-home .backdrop {
    width: 100%;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.92) contrast(1.04) brightness(.82);
  }

  .tour-home .light-field {
    height: 100svh;
    background:
      radial-gradient(ellipse at 76% 41%, rgba(255, 177, 63, .2), transparent 8rem),
      radial-gradient(circle at var(--mx) var(--my), rgba(255, 236, 204, .08), transparent 16rem);
  }

  .tour-home .light-field::before {
    height: clamp(120px, 17svh, 180px);
    background:
      radial-gradient(ellipse at 62% 40%, rgba(232, 246, 255, .62), transparent 7rem),
      radial-gradient(ellipse at 54% 68%, rgba(163, 205, 225, .28), transparent 10rem),
      linear-gradient(180deg, rgba(216, 238, 248, .1), transparent 92%);
  }

  .wash {
    background:
      linear-gradient(180deg, rgba(5, 7, 8, .08) 0%, rgba(5, 7, 8, .16) 44%, rgba(5, 7, 8, .98) 100%),
      linear-gradient(90deg, rgba(5, 7, 8, .18), rgba(5, 7, 8, .05));
  }

  .tour-home .wash {
    background:
      linear-gradient(180deg, rgba(5, 7, 8, .08) 0%, rgba(5, 7, 8, .16) 30%, rgba(5, 7, 8, .66) 58%, rgba(5, 7, 8, .86) 100%),
      linear-gradient(90deg, rgba(5, 7, 8, .18), rgba(5, 7, 8, .04));
  }

  .rain {
    height: 46svh;
  }

  .tour-home .rain {
    height: 100svh;
  }

  .logo,
  .strap {
    width: min(360px, 90vw);
  }

  .show-copy {
    width: min(100%, 520px);
    padding: 15px 14px;
    font-size: 13px;
    line-height: 1.46;
  }

  .panel {
    width: 100%;
  }

  .panel-header {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .panel::before {
    top: 66px;
  }

  .searches {
    grid-template-columns: 1fr;
  }

  .search-field {
    text-align: center;
  }

  .search-field input {
    text-align: center;
  }

  .date-card {
    grid-template-columns: 1fr;
    align-items: start;
    text-align: center;
    justify-items: center;
    gap: 13px;
  }

  .date-block {
    width: 100%;
    justify-items: center;
    min-height: auto;
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .ticket-cell,
  .ticket-link,
  .ticket-pending {
    width: 100%;
    justify-content: center;
  }

  .venue-performance {
    display: grid;
    justify-items: center;
    gap: 13px;
    text-align: center;
  }

  .venue-performance-date {
    display: grid;
    justify-items: center;
    gap: 9px;
  }

  .venue-performances h2,
  .venue-show-copy h2 {
    text-align: center;
  }

  .venue-page .shell {
    width: min(100% - 28px, 660px);
    gap: 24px;
    padding-top: 18px;
  }

  .venue-page .venue-hero {
    width: 100%;
    padding-top: 25svh;
    gap: 18px;
  }

  .venue-page .hero-main,
  .venue-page .venue-card,
  .venue-page .venue-performances,
  .venue-page .venue-show-copy,
  .venue-page .venue-stay {
    width: 100%;
  }

  .venue-page .logo {
    width: min(300px, 82vw);
  }

  .venue-page .venue-card {
    gap: 26px;
  }

  .venue-page .venue-heading {
    gap: 7px;
  }

  .venue-page .venue-heading h1 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.08;
  }

  .venue-page .venue-performance {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 16px 0;
    text-align: center;
  }

  .venue-page .venue-performance-date {
    width: 100%;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .venue-page .date-day,
  .venue-page .time {
    text-align: center;
  }

  .venue-page .ticket-cell,
  .venue-page .ticket-link,
  .venue-page .ticket-pending {
    width: min(100%, 300px);
    margin-inline: auto;
    text-align: center;
  }

  .venue-page .venue-show-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .venue-page .venue-show-copy p {
    width: min(100%, 560px);
    text-align: center;
  }

  .venue-page .venue-stay {
    text-align: center;
  }
}

/* Editorial polish: a quieter, more cinematic homepage */
.tour-home:not(.venue-page) .shell {
  width: min(1380px, calc(100% - 48px));
}

.tour-home:not(.venue-page) .backdrop {
  object-fit: cover;
  object-position: right center;
  filter: saturate(.78) contrast(1.08) brightness(.72);
}

.tour-home:not(.venue-page) .wash {
  background:
    linear-gradient(90deg, rgba(5,7,8,.96) 0%, rgba(5,7,8,.77) 31%, rgba(5,7,8,.17) 63%, rgba(5,7,8,.06) 100%),
    linear-gradient(180deg, rgba(5,7,8,.08), rgba(5,7,8,.02) 64%, rgba(5,7,8,.86) 100%);
}

.tour-home:not(.venue-page) .rain {
  opacity: .07;
}

.tour-home:not(.venue-page) .grain {
  opacity: .06;
}

.home-nav {
  width: min(1380px, calc(100% - 48px));
  min-height: 66px;
}

.home-nav-mark {
  color: rgba(245,240,234,.58);
  letter-spacing: .16em;
}

.home-nav nav {
  gap: 28px;
}

.home-nav a,
.nav-share {
  font-size: 9px;
  letter-spacing: .16em;
}

.nav-share {
  min-height: 32px;
  border-color: rgba(255,255,255,.14);
  background: rgba(5,7,8,.18);
}

.home-hero {
  min-height: max(760px, 100svh);
  padding: 104px 4vw 74px;
}

.home-hero .home-hero-main {
  width: min(600px, 49vw);
}

.home-hero .logo {
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.72));
}

.home-hero .strap {
  width: min(470px, 84%);
  margin-top: 18px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-cta {
  min-height: 48px;
  padding-inline: 20px;
  box-shadow: 0 12px 36px rgba(255,104,119,.16);
}

.tour-experience {
  margin-inline: -24px;
  padding: clamp(72px, 8vw, 108px) max(24px, calc((100vw - 1380px) / 2 + 24px));
  background: #090d0e;
}

.tour-experience::before {
  display: none;
}

.tour-intro {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 64px;
  margin-bottom: 34px;
}

.tour-intro h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.01;
}

.tour-intro-copy {
  max-width: 34rem;
  font-size: 14px;
  line-height: 1.65;
}

.tour-controls {
  grid-template-columns: minmax(280px, 430px) auto 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

.tour-controls .search-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.tour-controls .search-field input,
.tour-controls .location-button {
  height: 48px;
  min-height: 48px;
  border-color: rgba(255,255,255,.14);
  border-radius: 0;
  background: #111617;
  box-shadow: none;
}

.tour-controls .search-field input:focus {
  border-color: rgba(255,104,119,.7);
  background: #141a1b;
  box-shadow: none;
}

.search-icon {
  bottom: 16px;
}

.tour-controls .location-button {
  border-color: rgba(255,104,119,.3);
  background: rgba(255,104,119,.08);
}

.tour-controls .location-status {
  color: rgba(245,240,234,.46);
  font-size: 11px;
}

.tour-workspace {
  min-height: 640px;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .7fr);
  border-color: rgba(255,255,255,.12);
  background: #0b0f10;
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}

.map-column,
.map-frame,
.tour-map {
  min-height: 640px;
}

.map-topline,
.map-reset {
  top: 16px;
  min-height: 34px;
  background: rgba(8,11,12,.78);
  box-shadow: none;
}

.map-topline {
  left: 16px;
}

.map-reset {
  right: 16px;
}

.leaflet-control-zoom {
  margin: 66px 0 0 16px !important;
}

.results-column {
  border-left-color: rgba(255,255,255,.1);
}

.results-head {
  min-height: 72px;
  padding: 17px 18px;
}

.tour-workspace .dates-list {
  max-height: 568px;
}

.tour-workspace .month-heading {
  padding: 10px 18px;
  background: rgba(11,15,16,.96);
}

.tour-workspace .date-card {
  min-height: 112px;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
}

.date-number {
  font-size: 31px;
}

.tour-workspace .venue {
  font-size: 17px;
}

.tour-workspace .card-actions {
  margin-top: 10px;
}

.tour-workspace .ticket-link,
.tour-workspace .ticket-pending {
  min-height: 30px;
  background: transparent;
  box-shadow: none;
}

.tour-workspace .ticket-link {
  color: var(--rose-soft);
  border-color: rgba(255,104,119,.28);
}

.tour-workspace .ticket-link:hover {
  color: #16080b;
  background: var(--rose);
}

.tour-workspace .card-map {
  display: none;
}

.tour-workspace .card-share {
  min-height: 30px;
  border-color: rgba(255,255,255,.1);
  background: transparent;
}

.map-selection {
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 480px;
  padding: 16px 18px;
  border-color: rgba(255,255,255,.16);
  background: rgba(8,11,12,.93);
}

.selection-title {
  font-size: 21px;
}

.story-section {
  padding: clamp(84px, 9vw, 132px) 4vw;
}

.story-section h2 {
  max-width: 880px;
  font-size: clamp(38px, 4.7vw, 66px);
}

.story-grid {
  grid-template-columns: minmax(280px, .85fr) minmax(280px, .6fr);
  gap: clamp(54px, 9vw, 130px);
  margin-top: clamp(36px, 5vw, 58px);
}

.story-lead {
  font-size: clamp(22px, 2.3vw, 32px);
}

@media (max-width: 760px) {
  .tour-home:not(.venue-page) .shell,
  .home-nav {
    width: min(100% - 28px, 1380px);
  }

  .home-nav {
    min-height: 56px;
  }

  .home-nav-mark {
    font-size: 7px;
  }

  .home-hero {
    min-height: 760px;
    padding: 30svh 0 58px;
  }

  .home-hero .home-hero-main {
    width: min(100%, 520px);
  }

  .home-hero .logo {
    width: min(430px, 96vw);
  }

  .home-hero .strap {
    width: min(390px, 90vw);
    margin-top: 14px;
  }

  .tour-experience {
    margin-inline: -14px;
    padding-inline: 16px;
  }

  .tour-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .tour-intro-copy {
    max-width: 32rem;
  }

  .tour-controls {
    grid-template-columns: 1fr auto;
  }

  .tour-controls .search-field {
    grid-column: 1 / -1;
  }

  .tour-controls .location-status {
    grid-column: 1 / -1;
    min-height: 15px;
    padding: 0;
  }

  .tour-controls .location-button {
    width: 100%;
  }

  .tour-workspace,
  .map-column,
  .map-frame,
  .tour-map,
  .results-column {
    min-height: 600px;
  }

  .tour-workspace .dates-list {
    max-height: 528px;
  }

  .tour-workspace .card-map {
    display: inline-flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .home-nav nav {
    gap: 0;
  }

  .nav-share {
    padding-inline: 10px;
  }

  .home-hero {
    min-height: 720px;
    padding-top: 29svh;
  }

  .hero-actions {
    width: auto;
  }

  .hero-actions .button {
    width: auto;
  }

  .tour-experience {
    margin-inline: -14px;
  }

  .tour-controls {
    grid-template-columns: 1fr;
  }

  .view-switcher {
    width: 100%;
  }
}

/* 2027 interactive tour experience */
.tour-home:not(.venue-page) .shell {
  width: min(1440px, calc(100% - 64px));
  display: block;
  padding: 0 0 28px;
}

.home-nav {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 64px));
  min-height: 72px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.home-nav-mark,
.home-nav a,
.nav-share {
  color: rgba(245,240,234,.75);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-nav-mark::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 16px var(--rose);
}

.home-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-nav a {
  text-decoration: none;
  transition: color .2s ease;
}

.home-nav a:hover {
  color: var(--paper);
}

.nav-share {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--paper);
  background: rgba(5,7,8,.28);
  cursor: pointer;
}

.home-hero {
  min-height: min(920px, 100svh);
  width: 100%;
  padding: 110px 5vw 72px;
  display: grid;
  place-items: center start;
  text-align: left;
}

.home-hero .home-hero-main {
  width: min(650px, 54vw);
  justify-items: start;
  text-align: left;
}

.hero-kicker,
.section-kicker,
.results-label {
  margin: 0;
  color: var(--rose-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-hero .logo {
  width: min(610px, 100%);
  margin: 9px 0 0;
}

.hero-line {
  margin: -4px 0 0;
  color: rgba(245,240,234,.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.1vw, 32px);
  line-height: 1.25;
  text-wrap: balance;
}

.home-hero .strap {
  width: min(510px, 92%);
  margin: 24px 0 0;
}

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

.hero-actions button {
  cursor: pointer;
}

.tour-experience {
  position: relative;
  z-index: 3;
  margin: 0 -32px;
  padding: clamp(64px, 8vw, 112px) max(32px, calc((100vw - 1440px) / 2 + 32px));
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(255,104,119,.1), transparent 28rem),
    linear-gradient(180deg, #080b0c, #0b0f10 60%, #080a0b);
  border-top: 1px solid rgba(255,255,255,.12);
}

.tour-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.3) .6px, transparent .6px);
  background-size: 7px 7px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.tour-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  align-items: end;
  gap: 48px;
  margin-bottom: 38px;
}

.tour-intro h2,
.story-section h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.tour-intro-copy {
  margin: 0;
  color: rgba(245,240,234,.64);
  font-size: 15px;
  line-height: 1.65;
}

.tour-controls {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 440px) auto minmax(120px, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.tour-controls .search-field {
  position: relative;
  width: 100%;
}

.tour-controls .search-field label {
  margin: 0 0 8px;
  text-align: left;
}

.tour-controls .search-field input {
  height: 52px;
  padding: 0 18px 0 45px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

.search-icon {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 17px;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(245,240,234,.55);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  rotate: 45deg;
  background: rgba(245,240,234,.55);
}

.tour-controls .location-button {
  min-height: 52px;
  padding: 0 18px;
  color: var(--paper);
  border-color: rgba(255,104,119,.42);
  background: rgba(255,104,119,.12);
  white-space: nowrap;
}

.location-dot {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  display: inline-block;
  border: 2px solid var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,104,119,.15);
}

.tour-controls .location-status {
  align-self: center;
  padding-left: 4px;
}

.view-switcher {
  display: none;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
}

.view-switcher button {
  min-width: 66px;
  min-height: 38px;
  border: 0;
  color: rgba(245,240,234,.55);
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.view-switcher button.is-active {
  color: var(--paper);
  background: rgba(255,255,255,.1);
}

.tour-workspace {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, .75fr);
  border: 1px solid rgba(255,255,255,.16);
  background: #0c1011;
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
}

.map-column,
.map-frame,
.tour-map {
  min-height: 680px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  background: #101718;
}

.tour-map {
  z-index: 1;
  filter: saturate(.55) contrast(1.08);
}

.map-loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(245,240,234,.55);
  background: #101718;
  font-family: Georgia, "Times New Roman", serif;
  transition: opacity .35s ease, visibility .35s ease;
}

.map-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.map-topline {
  position: absolute;
  z-index: 500;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  color: rgba(245,240,234,.8);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(7,10,11,.82);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .05em;
}

.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 0 rgba(255,104,119,.6);
  animation: livePulse 2.2s infinite;
}

.map-reset {
  position: absolute;
  z-index: 500;
  top: 20px;
  right: 20px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(245,240,234,.82);
  background: rgba(7,10,11,.82);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.map-selection {
  position: absolute;
  z-index: 600;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(90deg, rgba(255,104,119,.26), transparent 4px),
    rgba(7,10,11,.91);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  backdrop-filter: blur(18px);
}

.map-selection[hidden] {
  display: none;
}

.selection-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  color: rgba(245,240,234,.7);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.selection-date {
  display: block;
  padding-right: 30px;
  color: var(--rose-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.selection-title {
  margin: 7px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.selection-city {
  margin: 0;
  color: rgba(245,240,234,.58);
  font-size: 12px;
}

.selection-actions,
.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mini-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(245,240,234,.8);
  background: rgba(255,255,255,.05);
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.results-column {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border-left: 1px solid rgba(255,255,255,.13);
  background: #0b0f10;
}

.results-head {
  min-height: 82px;
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.results-head > div {
  display: grid;
  gap: 5px;
}

.results-head .count {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .08em;
}

.results-hint {
  max-width: 130px;
  color: rgba(245,240,234,.36);
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

.tour-workspace .dates-list {
  max-height: 598px;
  overflow: auto;
  display: block;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,104,119,.5) transparent;
}

.tour-workspace .month-heading {
  position: sticky;
  z-index: 3;
  top: 0;
  margin: 0;
  padding: 12px 20px;
  color: rgba(245,240,234,.48);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(11,15,16,.94);
  backdrop-filter: blur(10px);
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
  text-align: left;
  text-transform: uppercase;
}

.tour-workspace .date-card {
  position: relative;
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  justify-items: stretch;
  padding: 19px 20px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  transition: background .2s ease;
}

.tour-workspace .date-card:hover,
.tour-workspace .date-card.is-active {
  transform: none;
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(90deg, rgba(255,104,119,.13), transparent 55%),
    rgba(255,255,255,.025);
  box-shadow: inset 3px 0 var(--rose);
}

.tour-workspace .date-block {
  width: 54px;
  min-height: 58px;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 0;
  border: 0;
}

.date-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: .9;
}

.date-short-month {
  margin-top: 5px;
  color: var(--rose-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.tour-workspace .details {
  min-width: 0;
  display: block;
}

.tour-workspace .venue {
  display: block;
  padding-right: 18px;
  overflow: hidden;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-workspace .city {
  display: block;
  margin-top: 5px;
}

.tour-workspace .time {
  min-height: auto;
  margin-left: 5px;
  padding: 0;
  border: 0;
  color: rgba(245,240,234,.5);
  background: transparent;
  font-size: inherit;
}

.tour-workspace .card-actions {
  margin-top: 12px;
}

.tour-workspace .ticket-link,
.tour-workspace .ticket-pending {
  min-width: 105px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 9px;
}

.card-map,
.card-share {
  width: 34px;
  min-height: 32px;
  padding: 0;
  font-size: 14px;
}

.story-section {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 150px) 5vw;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.story-section h2 {
  max-width: 920px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(300px, .7fr);
  gap: clamp(50px, 10vw, 150px);
  margin-top: clamp(36px, 6vw, 72px);
}

.story-grid p {
  margin: 0;
}

.story-lead {
  color: rgba(245,240,234,.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.35;
}

.story-copy {
  color: rgba(245,240,234,.6);
  font-size: 15px;
  line-height: 1.72;
}

.story-copy p + p {
  margin-top: 18px;
}

.tour-home:not(.venue-page) .site-footer {
  padding: 28px 0 0;
}

.share-toast {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 24px;
  translate: -50% 20px;
  padding: 12px 16px;
  color: #16080b;
  background: var(--rose-soft);
  box-shadow: 0 12px 40px rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity .2s ease, translate .2s ease;
}

.share-toast.is-visible {
  opacity: 1;
  translate: -50% 0;
}

.leaflet-control-zoom {
  margin: 74px 0 0 20px !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow: none !important;
}

.leaflet-control-zoom a {
  color: var(--paper) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  background: rgba(7,10,11,.86) !important;
}

.leaflet-control-attribution {
  color: rgba(245,240,234,.38);
  background: rgba(7,10,11,.7) !important;
  font-size: 8px !important;
}

.leaflet-control-attribution a {
  color: rgba(245,240,234,.55);
}

.ghost-marker {
  background: transparent;
  border: 0;
}

.ghost-marker-dot {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  background: var(--rose);
  box-shadow: 0 3px 14px rgba(0,0,0,.65), 0 0 0 5px rgba(255,104,119,.16);
  transition: scale .18s ease;
}

.ghost-marker-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #31090f;
}

.ghost-marker.is-active .ghost-marker-dot,
.ghost-marker:hover .ghost-marker-dot {
  scale: 1.35;
  background: var(--ember);
  box-shadow: 0 3px 14px rgba(0,0,0,.65), 0 0 0 8px rgba(255,177,63,.2);
}

.user-marker {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #67d6ff;
  box-shadow: 0 0 0 8px rgba(103,214,255,.2), 0 4px 16px rgba(0,0,0,.5);
}

@keyframes livePulse {
  70% { box-shadow: 0 0 0 8px rgba(255,104,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,104,119,0); }
}

@media (max-width: 980px) {
  .tour-home:not(.venue-page) .shell,
  .home-nav {
    width: min(100% - 32px, 1440px);
  }

  .home-hero .home-hero-main {
    width: min(650px, 66vw);
  }

  .tour-experience {
    margin-inline: -16px;
    padding-inline: 24px;
  }

  .tour-workspace {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  }
}

@media (max-width: 760px) {
  .home-nav {
    min-height: 58px;
  }

  .home-nav-mark {
    font-size: 8px;
  }

  .home-nav nav a {
    display: none;
  }

  .home-nav nav {
    gap: 0;
  }

  .home-hero {
    min-height: 790px;
    padding: 31svh 0 60px;
    place-items: start center;
    text-align: center;
  }

  .home-hero .home-hero-main {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .home-hero .logo {
    width: min(390px, 96vw);
  }

  .hero-line {
    font-size: clamp(21px, 6.2vw, 28px);
  }

  .home-hero .strap {
    width: min(430px, 96vw);
  }

  .hero-actions {
    justify-content: center;
  }

  .tour-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-controls {
    grid-template-columns: 1fr auto;
  }

  .tour-controls .search-field,
  .tour-controls .location-status {
    grid-column: 1 / -1;
  }

  .tour-controls .location-button {
    width: 100%;
  }

  .view-switcher {
    display: flex;
  }

  .tour-workspace {
    min-height: 620px;
    display: block;
  }

  .map-column,
  .map-frame,
  .tour-map {
    min-height: 620px;
  }

  .results-column {
    min-height: 620px;
    border: 0;
  }

  .tour-workspace[data-tour-view="map"] .results-column,
  .tour-workspace[data-tour-view="list"] .map-column {
    display: none;
  }

  .tour-workspace .dates-list {
    max-height: 620px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .tour-home:not(.venue-page) .shell,
  .home-nav {
    width: min(100% - 24px, 1440px);
  }

  .home-hero {
    margin-inline: -4px;
  }

  .hero-kicker {
    font-size: 9px;
    letter-spacing: .17em;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-button {
    width: 100%;
  }

  .tour-experience {
    margin-inline: -12px;
    padding-inline: 14px;
  }

  .tour-controls {
    grid-template-columns: 1fr;
  }

  .view-switcher {
    width: 100%;
  }

  .view-switcher button {
    flex: 1;
  }

  .map-column,
  .map-frame,
  .tour-map,
  .tour-workspace,
  .results-column {
    min-height: 590px;
  }

  .map-topline {
    top: 12px;
    left: 12px;
  }

  .map-reset {
    top: 12px;
    right: 12px;
  }

  .leaflet-control-zoom {
    margin-left: 12px !important;
  }

  .map-selection {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .tour-workspace .date-card {
    padding-inline: 15px;
  }

  .results-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-pulse,
  .tour-home .rain,
  .tour-home .light-field::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(100% - 24px, 1240px);
    padding-top: 16px;
  }

  .brand-wordmark {
    font-size: 10px;
    letter-spacing: .16em;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav a {
    display: inline-flex;
    justify-content: center;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
  }

  .action-row {
    display: grid;
  }

  .panel-header,
  .panel-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel::before {
    left: 14px;
    right: 14px;
  }

  .dates-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 700px) {
  .venue-page .venue-performances {
    display: grid;
    justify-items: center;
  }

  .venue-page .venue-performances h2 {
    width: 100%;
    text-align: center;
  }

  .venue-page .venue-performance {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 0 20px;
    text-align: center;
  }

  .venue-page .venue-performance-date {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .venue-page .venue-performance .date-day,
  .venue-page .venue-performance .time {
    display: inline-flex;
    width: auto;
    margin-inline: auto;
    text-align: center;
  }

  .venue-page .venue-performance .ticket-cell {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .venue-page .venue-performance .ticket-link,
  .venue-page .venue-performance .ticket-pending {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .venue-page .venue-show-copy {
    width: min(100%, 580px);
    margin-inline: auto;
    padding-inline: 10px;
    text-align: left;
  }

  .venue-page .venue-show-copy h2 {
    text-align: center;
  }

  .venue-page .venue-show-copy p {
    width: 100%;
    text-align: left;
  }

  .venue-page .venue-stay {
    width: 100%;
    text-align: center;
  }

  .venue-page .venue-stay iframe {
    height: 430px;
  }

  .venue-page .venue-sticky-booking {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: rgba(5, 7, 8, .92);
    box-shadow: 0 -16px 36px rgba(0, 0, 0, .42);
    backdrop-filter: blur(16px);
  }

  .venue-page .venue-sticky-booking .ticket-link,
  .venue-page .venue-sticky-booking .ticket-pending {
    width: min(100%, 420px);
    min-height: 46px;
    margin-inline: auto;
  }
}
