@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bree+Serif&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --ink: #07150f;
  --green: #0a532f;
  --green-dark: #00351f;
  --green-black: #031b12;
  --red: #c91d2e;
  --yellow: #f4cc18;
  --cream: #f3e8c8;
  --paper: #fff9e7;
  --miami-teal: #62b8ae;
  --miami-teal-dark: #276f69;
  --miami-coral: #e86868;
  --miami-sand: #e7c78e;
  --miami-green: #477442;
  --white: #fffdf6;
  --max: 1240px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--green-black);
  color: var(--cream);
  font-family: "Oswald", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-departing .selector-stage {
  opacity: .72;
  transform: scale(.992);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.brand-logo {
  width: 128px;
  height: 72px;
  object-fit: contain;
}

.selector-header,
.event-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.selector-header-note,
.event-header-meta {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.event-switcher {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.event-switcher:hover {
  transform: translateY(-2px);
}

.event-switcher svg {
  width: 16px;
  height: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font: 700 .88rem/1 "Oswald", Arial, sans-serif;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, background .16s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(.94);
}

.button-dark {
  background: var(--green-black);
  color: var(--cream);
}

.button-yellow {
  background: var(--yellow);
  color: var(--green-black);
}

.button-miami {
  background: var(--miami-coral);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--miami-teal-dark);
}

.eyebrow {
  display: block;
  margin-bottom: 13px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Event selector */
.selector-page {
  background:
    radial-gradient(circle at 9% 10%, rgba(244, 204, 24, .12), transparent 30%),
    radial-gradient(circle at 89% 84%, rgba(232, 104, 104, .14), transparent 34%),
    linear-gradient(145deg, #061c13, #00351f 55%, #06251a);
}

.selector-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

.selector-header,
.selector-main,
.selector-footer {
  position: relative;
  z-index: 1;
}

.selector-stage {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 54px;
  transition: opacity .3s ease, transform .3s ease;
}

.selector-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.selector-title {
  max-width: 770px;
  margin: 0;
  color: var(--paper);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
  text-transform: uppercase;
}

.selector-title span {
  display: block;
  color: var(--yellow);
}

.selector-lead {
  max-width: 330px;
  margin: 0 0 4px;
  color: rgba(243, 232, 200, .78);
  font-size: 1rem;
  line-height: 1.55;
}

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

.event-ticket {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 38% 1fr;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, opacity .28s ease;
}

.event-ticket::after {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 38%;
  width: 1px;
  border-left: 2px dashed currentColor;
  opacity: .35;
  content: "";
}

.event-ticket:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(-.35deg);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .38);
}

.event-ticket:nth-child(2):hover {
  transform: translateY(-8px) rotate(.35deg);
}

.event-ticket.is-selected {
  z-index: 5;
  transform: translateY(-14px) scale(1.035);
}

.ticket-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.event-ticket:hover .ticket-image img {
  transform: scale(1.04);
}

.ticket-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 34px 30px 42px;
}

.ticket-copy::before,
.ticket-copy::after {
  position: absolute;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #06301f;
  content: "";
}

.ticket-copy::before { top: -13px; }
.ticket-copy::after { bottom: -13px; }

.ticket-medellin {
  background: var(--cream);
  color: var(--green-black);
}

.ticket-medellin .ticket-image img {
  object-position: center top;
}

.ticket-miami {
  background: #f0dba5;
  color: #173a35;
}

.ticket-miami .ticket-image img {
  object-position: center 76%;
}

.ticket-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 25px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ticket-stamp {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-6deg);
  letter-spacing: .08em;
}

.ticket-miami .ticket-stamp {
  color: var(--miami-coral);
  transform: rotate(5deg);
}

.ticket-name {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}

.ticket-miami .ticket-name {
  color: var(--miami-teal-dark);
  font-family: "Bree Serif", Georgia, serif;
  letter-spacing: -.04em;
  text-transform: none;
}

.ticket-subtitle {
  margin: 15px 0 0;
  color: currentColor;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: .76;
}

.ticket-details {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 2px solid currentColor;
}

.ticket-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-day {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.8rem;
  line-height: .8;
}

.ticket-month,
.ticket-place {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ticket-enter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ticket-enter svg {
  width: 18px;
  transition: transform .18s ease;
}

.event-ticket:hover .ticket-enter svg {
  transform: translateX(4px);
}

.selector-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
  color: rgba(243, 232, 200, .65);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}

.selector-help::before,
.selector-help::after {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.selector-footer,
.event-footer {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(243, 232, 200, .2);
  color: rgba(243, 232, 200, .7);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-credit img {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  object-fit: cover;
}

/* El Traído */
.traido-page {
  background: var(--green-dark);
}

.traido-page .event-header {
  color: var(--cream);
}

.traido-page .event-switcher:hover {
  background: var(--cream);
  color: var(--green-black);
}

.pixel-band {
  height: 26px;
  background:
    linear-gradient(135deg, transparent 10px, var(--cream) 10px 14px, transparent 14px) 0 0 / 42px 26px repeat-x,
    linear-gradient(45deg, transparent 10px, var(--cream) 10px 14px, transparent 14px) 21px 0 / 42px 26px repeat-x,
    var(--green-black);
}

.traido-hero-shell {
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  background: var(--cream);
  color: var(--ink);
}

.traido-hero {
  display: grid;
  width: min(100%, var(--max));
  min-height: 690px;
  margin: 0 auto;
  grid-template-columns: 1.06fr .94fr;
}

.traido-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 58px;
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 84%, rgba(243, 232, 200, 0) 100%);
}

.traido-copy .eyebrow {
  color: var(--green);
}

.traido-title {
  margin: 0;
  text-transform: uppercase;
}

.traido-title span {
  display: block;
  color: var(--green-black);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: .95;
}

.traido-title strong {
  display: block;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(5rem, 9vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
  text-shadow: 5px 5px 0 rgba(0, 53, 31, .1);
}

.traido-lead {
  max-width: 620px;
  margin: 25px 0 0;
  color: #2a332d;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 28px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.fact {
  min-width: 145px;
  flex: 1;
  padding: 15px 18px 15px 0;
}

.fact small,
.detail-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: .98rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.traido-poster {
  position: relative;
  overflow: hidden;
  background: #102c20;
}

.traido-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.event-marquee {
  overflow: hidden;
  border-bottom: 2px solid var(--green-black);
  background: var(--yellow);
  color: var(--green-black);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "✦";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.lineup-section {
  padding: 74px 0;
  background: var(--green-dark);
}

.lineup-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 70px;
}

.section-heading small {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .92;
  text-transform: uppercase;
}

.artists {
  border-top: 2px solid var(--cream);
}

.artist-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(243, 232, 200, .38);
}

.artist-row span {
  color: var(--yellow);
  font-size: .68rem;
}

.artist-row strong {
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  text-transform: uppercase;
}

.artist-row.headliner strong {
  color: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
}

.utility-section {
  padding: 68px 0;
  background: var(--cream);
  color: var(--green-black);
}

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

.utility-card {
  min-height: 280px;
  padding: 40px;
  border: 2px solid var(--green-black);
}

.utility-card small {
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.utility-card h3 {
  margin: 12px 0 10px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.utility-card p {
  max-width: 490px;
  margin: 0 0 24px;
  color: #3b463f;
  line-height: 1.55;
}

.closing-section {
  padding: 52px 0;
  background: var(--red);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.closing-inner h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.closing-inner p {
  margin: 8px 0 0;
}

.traido-page .event-footer {
  border-top: 0;
}

/* Miami */
.miami-page {
  background: var(--miami-teal);
  color: #173a35;
}

.miami-page .event-header {
  color: #173a35;
}

.miami-page .event-switcher:hover {
  background: #173a35;
  color: var(--paper);
}

.miami-topline {
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--miami-coral) 0 42px, var(--miami-sand) 42px 84px, var(--miami-green) 84px 126px, #285f88 126px 168px);
}

.miami-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.05fr .95fr;
  border-top: 2px solid rgba(23, 58, 53, .55);
  border-bottom: 2px solid rgba(23, 58, 53, .55);
  background: #eacb90;
}

.miami-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(40px, calc((100vw - var(--max)) / 2 + 20px));
  padding-right: 58px;
}

.miami-copy .eyebrow {
  color: var(--miami-coral);
}

.miami-title {
  margin: 0;
  color: var(--miami-teal-dark);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
}

.miami-title span {
  display: block;
  margin-top: 12px;
  color: var(--miami-coral);
  font-family: "Oswald", Arial, sans-serif;
  font-size: .31em;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.miami-lead {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
}

.miami-page .fact-row {
  border-color: #173a35;
}

.miami-page .fact small {
  color: var(--miami-coral);
}

.miami-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--miami-teal-dark);
}

.miami-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.miami-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 33%;
  background: linear-gradient(transparent, rgba(23, 58, 53, .72));
  content: "";
}

.miami-location {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
}

.miami-location strong {
  display: block;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.75rem;
}

.miami-location span {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.experience-section {
  padding: 78px 0;
  background: var(--miami-teal);
}

.miami-heading {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  margin-bottom: 44px;
}

.miami-heading h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.miami-heading p {
  max-width: 600px;
  margin: 5px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.experience-card {
  min-height: 225px;
  padding: 28px;
  border: 2px solid rgba(23, 58, 53, .7);
  background: rgba(240, 219, 165, .7);
  box-shadow: 5px 5px 0 rgba(23, 58, 53, .18);
}

.experience-card span {
  color: var(--miami-coral);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 2rem;
}

.experience-card h3 {
  margin: 28px 0 8px;
  color: var(--miami-teal-dark);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.experience-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.5;
}

.miami-details {
  padding: 72px 0;
  background: #173a35;
  color: var(--paper);
}

.details-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
  align-items: start;
}

.details-layout h2 {
  margin: 0;
  color: var(--miami-coral);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .88;
}

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

.detail-card {
  min-height: 126px;
  padding: 24px;
  border: 1px solid rgba(255, 249, 231, .32);
}

.detail-card small {
  color: var(--miami-sand);
}

.detail-card strong {
  display: block;
  font-size: 1.18rem;
}

.detail-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 249, 231, .68);
  font-size: .85rem;
}

.miami-buy {
  padding: 56px 0;
  background: var(--miami-coral);
  color: var(--paper);
}

.miami-buy .closing-inner h2 {
  font-family: "Bree Serif", Georgia, serif;
  text-transform: none;
}

.miami-buy .button {
  background: #173a35;
  box-shadow: 5px 5px 0 var(--miami-sand);
}

.miami-page .event-footer {
  border-top: 0;
  color: rgba(23, 58, 53, .8);
}

.sticky-purchase {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: none;
  min-height: 54px;
  align-items: center;
  gap: 16px;
  padding: 8px 9px 8px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .34);
}

.sticky-purchase span {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sticky-purchase .button {
  min-height: 38px;
  padding: 10px 16px;
  box-shadow: none;
}

.traido-page .sticky-purchase {
  background: var(--green-black);
}

.miami-page .sticky-purchase {
  background: var(--paper);
  color: #173a35;
}

@media (max-width: 1050px) {
  .selector-intro {
    grid-template-columns: 1fr;
  }

  .selector-lead {
    max-width: 620px;
  }

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

  .event-ticket {
    min-height: 340px;
    grid-template-columns: 34% 1fr;
  }

  .event-ticket::after {
    left: 34%;
  }

  .traido-hero,
  .miami-hero {
    grid-template-columns: 1fr 1fr;
  }

  .traido-copy,
  .miami-copy {
    padding: 54px 36px;
  }
}

@media (max-width: 780px) {
  .container,
  .selector-header,
  .event-header,
  .selector-stage,
  .selector-footer,
  .event-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .selector-header,
  .event-header {
    min-height: 74px;
  }

  .brand-logo {
    width: 102px;
    height: 58px;
  }

  .selector-header-note,
  .event-header-meta {
    display: none;
  }

  .selector-stage {
    padding: 20px 0 38px;
  }

  .selector-title {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .selector-intro {
    gap: 18px;
    margin-bottom: 25px;
  }

  .ticket-grid {
    gap: 18px;
  }

  .event-ticket {
    min-height: 0;
    grid-template-columns: 118px 1fr;
  }

  .event-ticket::after {
    top: 18px;
    bottom: 18px;
    left: 118px;
  }

  .ticket-copy {
    min-width: 0;
    padding: 24px 19px 22px 27px;
  }

  .ticket-copy::before,
  .ticket-copy::after {
    left: -10px;
    width: 20px;
    height: 20px;
  }

  .ticket-copy::before { top: -10px; }
  .ticket-copy::after { bottom: -10px; }

  .ticket-kicker {
    margin-bottom: 17px;
  }

  .ticket-stamp {
    min-height: 27px;
    padding: 4px 7px;
    font-size: .58rem;
  }

  .ticket-name {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .ticket-subtitle {
    font-size: .82rem;
  }

  .ticket-details {
    align-items: center;
    margin-top: 20px;
    padding-top: 14px;
  }

  .ticket-day {
    font-size: 2.2rem;
  }

  .ticket-enter span {
    display: none;
  }

  .selector-help {
    margin-top: 22px;
  }

  .traido-hero,
  .miami-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .traido-copy,
  .miami-copy {
    padding: 46px 22px 40px;
  }

  .traido-copy {
    background: var(--cream);
  }

  .traido-title strong {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .fact-row {
    margin: 26px 0 23px;
  }

  .fact {
    min-width: 50%;
    padding: 12px 10px 12px 0;
  }

  .hero-actions .button {
    flex: 1;
  }

  .traido-poster,
  .miami-visual {
    height: 118vw;
    min-height: 470px;
    max-height: 720px;
  }

  .lineup-section,
  .experience-section,
  .miami-details,
  .utility-section {
    padding: 54px 0;
  }

  .lineup-grid,
  .miami-heading,
  .details-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .utility-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .utility-card {
    min-height: 0;
    padding: 29px 24px;
  }

  .experience-card {
    min-height: 0;
  }

  .closing-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .closing-inner .button {
    width: 100%;
  }

  .miami-title {
    font-size: clamp(4rem, 21vw, 6.8rem);
  }

  .miami-location {
    align-items: start;
    flex-direction: column;
  }

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

  .selector-footer,
  .event-footer {
    min-height: 100px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }

  .sticky-purchase {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
  }

  .traido-page .event-footer,
  .miami-page .event-footer {
    margin-bottom: 74px;
  }
}

@media (max-width: 470px) {
  .event-ticket {
    grid-template-columns: 92px 1fr;
  }

  .event-ticket::after {
    left: 92px;
  }

  .ticket-copy {
    padding-left: 22px;
  }

  .ticket-kicker > span:first-child,
  .ticket-subtitle,
  .ticket-month span {
    display: none;
  }

  .ticket-name {
    font-size: 2.45rem;
  }

  .ticket-miami .ticket-name {
    font-size: 2.2rem;
  }

  .ticket-details {
    gap: 10px;
  }

  .ticket-place {
    font-size: .62rem;
  }
}

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