:root {
  color-scheme: dark;
  --ink: #100505;
  --ink-soft: #1a0809;
  --paper: #fff4df;
  --paper-soft: #ead9bd;
  --white: #fffaf1;
  --muted: rgba(255, 250, 241, 0.68);
  --line: rgba(255, 250, 241, 0.15);
  --red: #a90821;
  --red-deep: #650713;
  --pink: #ef168f;
  --orange: #ff5a19;
  --yellow: #ffcf45;
  --max: 1240px;
  --header-h: 76px;
  --radius: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--pink);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1.1rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: var(--line);
  background: rgba(10, 3, 3, 0.92);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

body.nav-open .site-header {
  background: #0a0303;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  color: var(--pink);
}

.brand-large {
  font-size: clamp(1.55rem, 4vw, 2.8rem);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: clamp(1rem, 4vw, 1.5rem) 1rem calc(2rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 22, 143, 0.22), transparent 20rem),
    linear-gradient(180deg, #100505 0%, #080202 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.25rem;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.65rem, 7vw, 2.25rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "↘";
  color: var(--pink);
  font-family: inherit;
  font-size: 0.8em;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pink);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.icon-link,
.text-action {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-link:hover,
.text-action:hover,
.icon-link:focus-visible,
.text-action:focus-visible {
  color: var(--pink);
}

.nav-toggle {
  position: relative;
  z-index: 120;
  justify-self: end;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--red), var(--pink));
  color: #fff;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 14px 34px rgba(194, 10, 66, 0.3);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(239, 22, 143, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.btn-small {
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.74rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 4rem) 1rem 4rem;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("../img/muycaliente-hero.jpg") center / cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 4, 4, 0.12);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 2, 2, 0.9) 0%, rgba(9, 2, 2, 0.58) 48%, rgba(9, 2, 2, 0.2) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(16, 5, 5, 0.08) 45%, rgba(9, 2, 2, 0.42) 100%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-label {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(239, 22, 143, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 11px rgba(239, 22, 143, 0); }
}

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

h1,
h2 {
  margin-bottom: 1rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.86;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.7rem, 17vw, 11rem);
}

h2 {
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h1 em,
h2 span {
  color: var(--pink);
  font-style: normal;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.05;
}

p {
  color: var(--muted);
}

.claim {
  margin-bottom: 0.65rem;
  color: var(--paper);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 850;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.spotlight-actions,
.vip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.4rem;
}

.next-pill {
  display: grid;
  gap: 0.1rem;
  width: min(100%, 520px);
  margin-top: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(8, 2, 2, 0.5);
  padding: 0.9rem 1rem;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease;
}

.next-pill:hover,
.next-pill:focus-visible {
  background: rgba(8, 2, 2, 0.76);
  transform: translateX(4px);
}

.next-pill span {
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-pill strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.next-pill small {
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  display: none;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--pink), transparent);
}

.section,
.event-spotlight {
  padding: 5rem 1rem;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.event-spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 22, 143, 0.2), transparent 28rem),
    radial-gradient(circle at 0% 80%, rgba(255, 90, 25, 0.15), transparent 30rem),
    var(--ink);
}

.event-spotlight::before {
  content: none;
}

.spotlight-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.spotlight-copy h2 {
  max-width: 9ch;
}

.lede {
  color: var(--paper);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
}

.feature-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.feature-lines div {
  display: grid;
  gap: 0.1rem;
  border-left: 3px solid var(--pink);
  padding: 0.4rem 0 0.4rem 0.85rem;
}

.feature-lines span {
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-lines strong {
  font-size: 0.96rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-lines small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.9rem;
}

.location-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 22, 143, 0.16);
  color: var(--pink);
  font-size: 1.3rem;
}

.location-card div {
  display: grid;
}

.location-card strong {
  font-size: 0.9rem;
}

.location-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.location-card a {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-note {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.events-section {
  background: var(--paper);
  color: var(--ink);
}

.events-section p {
  color: rgba(16, 5, 5, 0.62);
}

.events-section .section-label {
  color: var(--red);
}

.section-head {
  max-width: 850px;
  margin-bottom: 2.25rem;
}

.split-heading {
  max-width: none;
}

.split-heading h2 {
  max-width: 10ch;
}

.split-heading > p {
  max-width: 520px;
  font-weight: 650;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.tour-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(16, 5, 5, 0.12);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 16px 45px rgba(72, 16, 10, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(72, 16, 10, 0.15);
}

.tour-media {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #250609;
}

.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.tour-card:hover .tour-media img {
  transform: scale(1.035);
}

.card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  padding: 0.45rem 0.7rem;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0 1rem 1rem;
}

.tour-date strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.65rem;
  line-height: 0.8;
}

.tour-date span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.tour-info {
  min-width: 0;
  padding-bottom: 1rem;
}

.tour-info p {
  margin-bottom: 0.25rem;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-info h3 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.tour-info span {
  display: block;
  overflow: hidden;
  color: rgba(16, 5, 5, 0.55);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow-link {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 1rem 1rem 0;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.25rem;
  transition: background 180ms ease, transform 180ms ease;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  background: var(--pink);
  transform: rotate(8deg);
}

.all-events-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.events-section .btn-secondary {
  border-color: rgba(16, 5, 5, 0.2);
  color: var(--ink);
}

.events-section .btn-secondary:hover,
.events-section .btn-secondary:focus-visible {
  background: var(--ink);
  color: #fff;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 207, 69, 0.2), transparent 24rem),
    linear-gradient(135deg, #9d071d, #e41476 65%, #fc5922);
  padding-bottom: 5.5rem;
}

.marquee {
  display: flex;
  width: max-content;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(20, 3, 3, 0.18);
  transform: rotate(-2deg) translateX(-2%) translateY(-0.4rem);
}

.marquee span {
  flex: none;
  padding: 0.45rem 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 5vw, 4rem);
  line-height: 1;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

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

.manifesto-inner {
  padding-top: 6rem;
}

.manifesto .section-label,
.manifesto p,
.manifesto h2 span {
  color: #fff;
}

.manifesto h2 {
  max-width: 10ch;
}

.manifesto-inner > p:not(.section-label) {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.vibe-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.vibe-stats div {
  display: grid;
  gap: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 0.7rem;
}

.vibe-stats strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 5vw, 3.4rem);
  line-height: 1;
}

.vibe-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vip-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 2, 2, 0.96), rgba(9, 2, 2, 0.55)),
    url("../img/event-openair-20260725-crowd.jpg") center 52% / cover;
}

.vip-section::after {
  content: "VIP";
  position: absolute;
  right: -0.02em;
  bottom: -0.16em;
  color: rgba(255, 255, 255, 0.045);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(12rem, 34vw, 31rem);
  line-height: 0.8;
  pointer-events: none;
}

.vip-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.vip-grid h2 {
  max-width: 8ch;
}

.vip-copy {
  max-width: 600px;
}

.faq-section {
  background: #0b0303;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-layout .section-head {
  margin-bottom: 0;
}

.faq-layout h2 {
  max-width: 7ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--paper);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--pink);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 650px;
  padding: 0 2rem 1.2rem 0;
}

.contact-strip {
  padding: 3.5rem 1rem;
  background: var(--yellow);
  color: var(--ink);
}

.contact-strip .section-label {
  color: var(--red);
}

.contact-strip h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.contact-strip-inner {
  display: grid;
  gap: 1.5rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-actions a {
  border: 1px solid rgba(16, 5, 5, 0.25);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.social-actions a:hover,
.social-actions a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070202;
  padding: 3.5rem 1rem 7rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-inner > p:not(.copyright) {
  max-width: 430px;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  margin: 1.8rem 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pink);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.76rem;
}

.sticky-ticket {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 90;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--red), var(--pink));
  color: white;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-ticket span {
  color: var(--yellow);
}

.sticky-ticket.is-hidden,
body.nav-open .sticky-ticket {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.legal-page {
  min-height: 100svh;
  padding-top: 3rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(239, 22, 143, 0.18), transparent 25rem),
    var(--ink);
}

.legal-page h1 {
  max-width: none;
  margin-top: 1.6rem;
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-page .section-inner {
  max-width: 820px;
}

.legal-page h2 {
  margin-top: 2.2rem;
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.2;
  text-transform: none;
}

.legal-page a:not(.brand):not(.btn) {
  color: var(--pink);
  text-decoration: underline;
}

@media (min-width: 700px) {
  .site-header,
  .hero,
  .section,
  .event-spotlight,
  .contact-strip {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .section,
  .event-spotlight {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero {
    padding-bottom: 5rem;
  }

  .scroll-cue {
    display: flex;
    right: 1.5rem;
  }

  .spotlight-grid {
    gap: 3.25rem;
  }

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

  .tour-card-featured {
    grid-column: 1 / -1;
  }

  .tour-card-featured .tour-media {
    aspect-ratio: 16 / 8;
  }

  .poster-stamp {
    right: -1.5rem;
    width: 130px;
    height: 130px;
    font-size: 1.15rem;
  }

  .split-heading,
  .contact-strip-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 3rem;
  }

  .contact-strip-inner {
    align-items: center;
  }

  .social-actions {
    justify-content: flex-end;
  }

  .vibe-stats {
    max-width: 760px;
    gap: 1.5rem;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
  }

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

  .header-actions {
    display: flex;
  }

  .hero {
    align-items: center;
  }

  .event-list {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .tour-card-featured {
    grid-column: span 6;
  }

  .tour-card:not(.tour-card-featured) {
    grid-column: span 3;
  }

  .tour-card-featured .tour-media,
  .tour-media {
    aspect-ratio: 1 / 1;
  }

  .faq-layout,
  .vip-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 5rem;
    align-items: start;
  }

  .sticky-ticket {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    min-width: 210px;
  }
}

@media (max-width: 979px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .hero-actions .btn,
  .spotlight-actions .btn,
  .vip-actions .btn {
    width: 100%;
  }

  .location-card {
    grid-template-columns: auto 1fr;
  }

  .location-card a {
    grid-column: 2;
  }

  .tour-card {
    gap: 0.55rem;
  }

  .tour-date {
    padding-left: 0.75rem;
  }

  .arrow-link {
    width: 38px;
    height: 38px;
    margin-right: 0.75rem;
  }

  .vibe-stats {
    grid-template-columns: 1fr;
  }
}

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