:root {
  --orange: #f7602b;
  --orange-dark: #e14b18;
  --sky: #2f80ed;
  --sky-soft: #5aa7ff;
  --ink: #24252d;
  --muted: #6b7280;
  --line: #e6e8ee;
  --bg: #f4f6fa;
  --card: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Nunito, "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
}

h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}

h3 {
  font-size: 20px;
}

a {
  color: var(--sky);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker.light {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font: 800 16px Nunito, sans-serif;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(247, 96, 43, 0.28);
}

.btn:hover {
  background: var(--orange-dark);
}

.btn-light {
  background: #fff;
  color: var(--orange);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--orange);
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 8px;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  background:
    radial-gradient(circle at 85% 10%, #ffd0b8 0, transparent 28%),
    linear-gradient(180deg, #3d8dff 0%, #6eb3ff 78%, var(--bg) 78%);
  padding: 48px 0 64px;
  color: #fff;
}

.hero .lead {
  max-width: 720px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.hero .kicker {
  color: #ffe7dc;
}

.search-card {
  margin-top: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(20, 40, 80, 0.18);
}

.search-card label {
  background: #f4f6fa;
  border-radius: 14px;
  padding: 10px 14px;
}

.search-card label span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.search-card select {
  width: 100%;
  border: 0;
  background: transparent;
  font: 700 16px Nunito, sans-serif;
  color: var(--ink);
  min-height: 28px;
}

.search-btn {
  min-width: 160px;
  min-height: 64px;
  font-size: 18px;
}

.finder-result {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 12px 14px;
  background: #fff4ee;
  color: var(--orange-dark);
  border-radius: 12px;
  font-weight: 700;
}

.finder-result.visible {
  display: block;
}

.search-note,
.muted {
  color: var(--muted);
  font-size: 14px;
}

.search-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -8px;
}

.ticket,
.cards article,
.axes article,
.formats article,
.facts div,
.questions,
.compare,
.access aside,
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.05);
}

.ticket-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.dash {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sky) 0 8px, transparent 8px 14px);
}

.ticket p,
.muted {
  margin: 8px 0 0;
}

.ticket-price {
  margin-top: 14px;
  color: var(--orange);
}

.ticket-price span {
  font-size: 13px;
  margin-right: 4px;
}

.ticket-price b {
  font-size: 28px;
}

.intro {
  max-width: 720px;
  margin-bottom: 24px;
}

.cards,
.axes,
.places,
.formats,
.facts {
  display: grid;
  gap: 16px;
}

.cards,
.axes,
.places {
  grid-template-columns: repeat(3, 1fr);
}

.formats,
.facts {
  grid-template-columns: 1fr 1fr;
}

.cards span {
  color: var(--orange);
  font-weight: 800;
}

.places article {
  min-height: 180px;
  border: 0;
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.place-a {
  background: linear-gradient(180deg, rgba(20, 40, 80, 0.1), rgba(20, 40, 80, 0.72)), linear-gradient(135deg, #7eb6ff, #2f80ed);
}

.place-b {
  background: linear-gradient(180deg, rgba(20, 40, 80, 0.1), rgba(20, 40, 80, 0.72)), linear-gradient(135deg, #7ad7ff, #1f7a8c);
}

.place-c {
  background: linear-gradient(180deg, rgba(20, 40, 80, 0.1), rgba(20, 40, 80, 0.72)), linear-gradient(135deg, #b9c6d6, #3d4f66);
}

.places p {
  margin: 6px 0 0;
  font-weight: 800;
  color: #ffe1d4;
}

.formats {
  margin-top: 16px;
}

.questions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.how-grid,
.access,
.faq,
.about,
.cta-row,
.footer-row {
  display: grid;
  gap: 24px;
}

.how-grid,
.access,
.faq,
.about {
  grid-template-columns: 0.9fr 1.1fr;
}

.path {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.path li {
  display: flex;
  gap: 12px;
}

.path span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff1ea;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.calendar span {
  background: #f4f6fa;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-weight: 800;
}

.calendar .hot {
  background: #fff1ea;
  color: var(--orange);
}

.compare-label,
.compare-note,
.updated {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.cta {
  background: var(--orange);
  color: #fff;
  padding: 48px 0;
}

.cta-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-footer {
  background: #fff;
  padding: 28px 0 18px;
  border-top: 1px solid var(--line);
}

.footer-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.footer-row nav {
  display: flex;
  gap: 14px;
}

.footer-row a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .header-inner .btn {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    inset: 68px 0 auto 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .search-card,
  .tickets,
  .cards,
  .axes,
  .places,
  .formats,
  .facts,
  .questions,
  .how-grid,
  .access,
  .faq,
  .about,
  .cta-row,
  .footer-row,
  .calendar {
    grid-template-columns: 1fr;
  }

  .hero {
    background: linear-gradient(180deg, #3d8dff 0%, #6eb3ff 82%, var(--bg) 82%);
  }
}
