:root {
  --bg: #07080f;
  --bg-elevated: #0f111a;
  --bg-card: #141824;
  --border: rgba(255, 255, 255, 0.08);
  --gold: #e5b82e;
  --gold-light: #f5d547;
  --gold-dark: #b8921f;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --green: #22c55e;
  --radius: 16px;
  --header-h: 80px;
  --max: 1200px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Oswald", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

main {
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  box-shadow: 0 8px 30px rgba(229, 184, 46, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(229, 184, 46, 0.35);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader img {
  width: min(220px, 60vw);
  animation: pulse 1.5s ease-in-out infinite;
}

.loader p {
  position: absolute;
  bottom: 30%;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(7, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch__btn {
  width: 38px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: 0.55;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.lang-switch__flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-switch__btn:hover {
  opacity: 1;
  transform: scale(1.05);
}

.lang-switch__btn.active {
  opacity: 1;
  background: rgba(229, 184, 46, 0.18);
  box-shadow: inset 0 0 0 1px rgba(229, 184, 46, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* Hero */
.hero {
  padding-top: var(--header-h);
}

.hero__video {
  position: relative;
  width: min(96%, 1440px);
  margin-inline: auto;
  aspect-ratio: 16 / 12;
  min-height: 520px;
  max-height: 85vh;
  overflow: hidden;
  background: #000;
}

.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__body {
  position: relative;
  padding: 3rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 8, 15, 0.92) 0%, rgba(7, 8, 15, 0.75) 50%, rgba(7, 8, 15, 0.98) 100%),
    radial-gradient(circle at 50% 30%, rgba(229, 184, 46, 0.08), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.live-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d4d4d8;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--gold);
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__secure {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tickets strip */
.tickets {
  padding: 3rem 0;
  background: linear-gradient(90deg, #12141f, #1a1d2e);
  border-block: 1px solid var(--border);
}

.tickets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.tickets__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(229, 184, 46, 0.12), rgba(229, 184, 46, 0.03));
  border: 1px solid rgba(229, 184, 46, 0.25);
}

.tickets__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.tickets__city {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0;
  text-transform: uppercase;
}

.tickets__tagline {
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

/* Ticket modal */
.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.ticket-modal[hidden] {
  display: none;
}

.ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.ticket-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(229, 184, 46, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.ticket-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.ticket-modal__close:hover {
  color: var(--gold);
  border-color: rgba(229, 184, 46, 0.35);
  background: rgba(229, 184, 46, 0.08);
}

.ticket-modal__dialog .section-title {
  margin-bottom: 0.75rem;
}

.ticket-modal__dialog .section-subtitle {
  margin-bottom: 1.5rem;
}

.ticket-modal__options {
  display: grid;
  gap: 0.85rem;
}

.ticket-modal__option {
  display: block;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.ticket-modal__option:hover {
  border-color: rgba(229, 184, 46, 0.45);
  background: rgba(229, 184, 46, 0.08);
  transform: translateY(-2px);
}

.ticket-modal__option strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.ticket-modal__option span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Image lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: calc(100vh - 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox__dialog img {
  width: 100%;
  max-height: calc(100vh - 3rem);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.image-lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  z-index: 2;
}

.image-lightbox__close:hover {
  color: var(--gold);
  border-color: rgba(229, 184, 46, 0.45);
  background: rgba(229, 184, 46, 0.12);
}

.image-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  z-index: 2;
}

.image-lightbox__nav:hover {
  color: var(--gold);
  border-color: rgba(229, 184, 46, 0.45);
  background: rgba(229, 184, 46, 0.12);
}

.image-lightbox__nav--prev {
  left: 1.25rem;
}

.image-lightbox__nav--next {
  right: 1.25rem;
}

.image-lightbox__nav[hidden] {
  display: none;
}

/* About */
.about {
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.stat-card__value {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 184, 46, 0.35);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: zoom-in;
}

.feature-card__body {
  padding: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Journey */
.journey {
  padding: 5rem 0;
  background: var(--bg-elevated);
}

.journey__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.journey__images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  align-self: start;
  min-height: 0;
}

.journey__image-item {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.journey__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rating-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.rating-badge strong {
  color: var(--gold);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d4d4d8;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.quote {
  margin: 2rem 0 0;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(229, 184, 46, 0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #e4e4e7;
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Gallery */
.gallery {
  padding: 5rem 0;
}

.gallery__divider {
  border: 0;
  height: 1px;
  margin: 1.5rem 0 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 46, 0.45), transparent);
}

.gallery__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery__tabs button {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.gallery__tabs button.active {
  background: rgba(229, 184, 46, 0.15);
  color: var(--gold);
  border-color: rgba(229, 184, 46, 0.3);
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  cursor: zoom-in;
}

.carousel__caption {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.carousel__btn:hover {
  background: rgba(229, 184, 46, 0.15);
  border-color: var(--gold);
}

.carousel__counter {
  color: var(--text-muted);
  font-size: 0.9rem;
  min-width: 4rem;
  text-align: center;
}

.gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Structure */
.structure {
  padding: 5rem 0;
  background: var(--bg-elevated);
}

.structure__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.structure__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: zoom-in;
}

.structure__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

.structure__item:hover img {
  transform: scale(1.06);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-elevated);
}

.testimonials__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.highlight-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.highlight-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
}

.highlight-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-slide {
  max-width: 920px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-slide img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.testimonial-slide img.is-fading {
  opacity: 0;
}

/* Contact */
.contact {
  padding: 5rem 0 0;
  background: var(--bg-elevated);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact__intro-text {
  margin-bottom: 1.5rem;
}

.contact__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.contact__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #d4d4d8;
  font-size: 0.95rem;
}

.contact__features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.contact__channels {
  display: grid;
  gap: 1rem;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.contact-channel:hover {
  border-color: rgba(229, 184, 46, 0.35);
}

.contact-channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(229, 184, 46, 0.12);
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-channel__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.contact-channel__body p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-channel__body a {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-channel__body a:hover {
  color: var(--gold);
}

.contact-channel__btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.contact-channel--location {
  display: block;
  padding: 1.25rem;
}

.contact-channel__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}

.contact-map {
  position: relative;
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-map__open {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-map__open:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #1a1a1a;
}

.contact__cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(229, 184, 46, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(229, 184, 46, 0.18);
}

.contact__cta-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__cta h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

/* Footer */
.footer {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
  background: #050508;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--text-muted);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer__contact-list li {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer__social a {
  display: inline-flex;
  color: var(--text-muted);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}

.footer__social a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.footer__social img,
.footer__social svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Floating actions */
.float-actions {
  position: fixed;
  left: 0;
  bottom: 2.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-actions__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem 0.8rem 0.85rem;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: none;
}

.float-actions__btn:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.float-actions__btn--whatsapp {
  background: #128c7e;
  color: #fff;
}

.float-actions__btn--whatsapp:hover {
  background: #0f7a6e;
  color: #fff;
}

.float-actions__btn--tickets {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
}

.float-actions__btn--tickets:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.float-actions__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-actions__btn--whatsapp .float-actions__icon {
  fill: currentColor;
  stroke: none;
}

.float-actions__btn--tickets .float-actions__icon {
  fill: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .stats-grid,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .structure__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .header__inner {
    gap: 0.5rem;
  }

  .logo img {
    height: 42px;
  }

  .header__actions {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .header__actions > .btn-primary {
    display: none;
  }

  .lang-switch {
    gap: 0.2rem;
    padding: 0.15rem;
  }

  .lang-switch__btn {
    width: 34px;
    height: 28px;
  }

  .lang-switch__flag {
    width: 20px;
    height: 14px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    background: rgba(7, 8, 15, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 99;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header__actions .btn-outline {
    display: none;
  }

  .hero__video {
    width: 100%;
    min-height: 240px;
    max-height: 55vh;
    aspect-ratio: 16 / 10;
    margin-inline: 0;
  }

  .hero__body {
    padding: 2rem 0 3rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 3rem);
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .hero__desc {
    font-size: 1rem;
    padding-inline: 0.25rem;
  }

  .live-badge {
    font-size: 0.8rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.65rem, 6.5vw, 2.5rem);
    overflow-wrap: anywhere;
  }

  .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 2rem;
  }

  .about,
  .journey,
  .gallery,
  .structure,
  .testimonials {
    padding: 3.5rem 0;
  }

  .contact {
    padding-top: 3.5rem;
  }

  .stats-grid,
  .features,
  .structure__grid,
  .testimonials__highlights,
  .contact__layout,
  .contact__grid,
  .footer__grid,
  .journey__grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .contact-channel {
    grid-template-columns: auto 1fr;
  }

  .contact-channel__btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .journey__images {
    order: -1;
    height: auto !important;
  }

  .journey__image-item {
    flex: none;
    height: 200px;
  }

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

  .tickets__card {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
  }

  .tickets__card .btn {
    width: 100%;
  }

  .structure__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery__cta .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    line-height: 1.35;
  }

  .ticket-modal__dialog {
    padding: 1.5rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer__bottom {
    padding-inline: 0.5rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .float-actions {
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 60px;
  }

  .logo img {
    height: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .hero__video {
    min-height: 200px;
    max-height: 48vh;
    aspect-ratio: 4 / 3;
  }

  .hero__stats {
    gap: 1rem 1.5rem;
  }

  .hero__stat strong {
    font-size: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 0.25rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }

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

  .stat-card__value {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.88rem;
  }

  .check-list li {
    font-size: 0.92rem;
  }

  .carousel__controls {
    gap: 0.75rem;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
  }

  .highlight-card strong {
    font-size: 1.65rem;
  }

  .contact__cta {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }

  .contact-map iframe {
    height: 220px;
  }

  .float-actions__btn {
    padding: 0.7rem 0.85rem 0.7rem 0.75rem;
    font-size: 0.72rem;
    gap: 0.4rem;
  }

  .float-actions__icon {
    width: 20px;
    height: 20px;
  }

  .image-lightbox {
    padding: 0.75rem;
  }

  .image-lightbox__close {
    top: max(0.75rem, env(safe-area-inset-top, 0px));
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .image-lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .image-lightbox__nav--prev {
    left: 0.5rem;
  }

  .image-lightbox__nav--next {
    right: 0.5rem;
  }

  .image-lightbox__dialog img {
    max-height: calc(100vh - 2rem);
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .lang-switch__btn {
    width: 30px;
    height: 26px;
  }

  .lang-switch__flag {
    width: 18px;
    height: 12px;
  }

  .hero__title {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

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

  .structure__item {
    aspect-ratio: 16 / 10;
  }

  .float-actions__label {
    display: none;
  }

  .float-actions__btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 0 14px 14px 0;
  }

  .float-actions__icon {
    width: 22px;
    height: 22px;
  }

  .tickets__city {
    font-size: 1.35rem;
  }
}
