:root {
  --navy: #061d43;
  --navy-2: #0a2e62;
  --navy-3: #041532;
  --ice: #f4fbff;
  --ice-2: #e3f3fb;
  --aqua: #00c7c7;
  --cyan: #26e4ff;
  --flame: #ffb24a;
  --white: #ffffff;
  --muted: #5d6f8a;
  --muted-2: #7c8da5;
  --line: rgba(6, 29, 67, 0.10);
  --shadow: 0 18px 44px rgba(6, 29, 67, 0.13);
  --soft-shadow: 0 12px 28px rgba(6, 29, 67, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --page-x: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ice);
}

body {
  margin: 0;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 178, 74, 0.16), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(38, 228, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #f2fbff 42%, #ffffff 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(122deg, transparent 0%, rgba(0, 199, 199, 0.08) 24%, transparent 46%),
    linear-gradient(58deg, transparent 0%, rgba(255, 178, 74, 0.09) 20%, transparent 42%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(6, 29, 67, 0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 29, 67, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

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

.page-shell {
  min-height: 100vh;
}

.announcement {
  padding: 8px 12px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 253, 255, 0.86);
  border-bottom: 1px solid rgba(6, 29, 67, 0.08);
  backdrop-filter: blur(18px);
}

.nav,
.hero-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - var(--page-x) * 2), var(--max));
  margin: 0 auto;
}


.nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}

.nav-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(0, 199, 199, 0.19);
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-title {
  overflow: hidden;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(6, 29, 67, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 22px rgba(6, 29, 67, 0.07);
  backdrop-filter: blur(14px);
}

.lang-option {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: rgba(6, 29, 67, 0.62);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  color: var(--navy);
  transform: translateY(-1px);
}

.lang-option.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 58%, #00aeca 100%);
  box-shadow: 0 7px 16px rgba(6, 29, 67, 0.18);
}

.nav-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(6, 29, 67, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(6, 29, 67, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 29, 67, 0.11);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 29, 67, 0.08);
  box-shadow: 0 18px 44px rgba(6, 29, 67, 0.12);
  backdrop-filter: blur(18px);
  transition: max-height 0.24s ease, padding 0.24s ease, margin 0.24s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-header[data-menu-open="true"] .nav-links {
  max-height: 430px;
  padding: 8px;
  margin-top: 4px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(6, 29, 67, 0.84);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
  background: rgba(6, 29, 67, 0.045);
}

.mobile-menu-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 50%, #00aeca 100%) !important;
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.18), 0 0 22px rgba(0, 199, 199, 0.14);
}

.btn,
.pass-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.pass-action:hover,
.pass-action:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 50%, #00aeca 100%);
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.22), 0 0 22px rgba(0, 199, 199, 0.18);
}

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 67, 0.16);
}

.nav-cta {
  display: none;
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 6px;
  background: var(--ice);
  isolation: isolate;
}

.hero-art {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  background: var(--ice);
}

.hero-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(56px, 18vw, 160px);
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(244, 251, 255, 0) 0%,
    rgba(244, 251, 255, 0.10) 38%,
    rgba(244, 251, 255, 0.70) 78%,
    rgba(244, 251, 255, 1) 100%);
}

.hero-art picture,
.hero-art img {
  display: block;
  width: 100%;
}

.hero-art img {
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin-top: clamp(-96px, -6vw, -18px);
  padding-top: 0;
}

.hero-spacer {
  display: none;
}

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

.meta-card {
  display: grid;
  min-height: 76px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 10px 7px;
  overflow: hidden;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(6, 29, 67, 0.07);
  box-shadow: 0 10px 24px rgba(6, 29, 67, 0.07);
  backdrop-filter: blur(12px);
}

.meta-card::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 199, 199, 0.70), rgba(255, 178, 74, 0.58));
}

.meta-label {
  margin: 0;
  color: #087f9a;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.meta-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(14px, 4.2vw, 18px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.meta-card span:last-child {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 26px 0;
}

.overview {
  padding-top: 12px;
  padding-bottom: 22px;
}

.section-kicker {
  margin: 0 0 9px;
  color: #087f9a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 9.2vw, 44px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.split {
  display: grid;
  gap: 22px;
}

.copy-stack {
  min-width: 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.stat {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 82px;
  padding: 13px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 29, 67, 0.07);
  box-shadow: 0 10px 24px rgba(6, 29, 67, 0.07);
}

.stat strong {
  display: block;
  min-width: 0;
  color: var(--navy);
  font-size: clamp(18px, 5vw, 23px);
  line-height: 1;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.countdown-panel {
  position: relative;
  overflow: hidden;
  padding: 20px 16px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 199, 199, 0.34), transparent 36%),
    radial-gradient(circle at 98% 0%, rgba(255, 178, 74, 0.20), transparent 34%),
    linear-gradient(135deg, #041637 0%, #082759 50%, #06334a 100%);
  box-shadow: 0 18px 44px rgba(6, 29, 67, 0.20);
  isolation: isolate;
}

.countdown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.20;
  background:
    linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.26) 20%, transparent 44%),
    linear-gradient(48deg, transparent 0%, rgba(38, 228, 255, 0.28) 18%, transparent 38%);
}

.countdown-glow {
  position: absolute;
  right: -118px;
  bottom: -136px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(38, 228, 255, 0.32), transparent 64%);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-panel h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(28px, 8.4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.panel-copy {
  max-width: 460px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.52;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 15px;
}

.countdown div {
  min-width: 0;
  padding: 10px 4px;
  border-radius: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.countdown strong {
  display: block;
  font-size: clamp(19px, 6vw, 28px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.countdown span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7.5px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tickets {
  padding-top: 18px;
  padding-bottom: 24px;
}

.ticket-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.ticket-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.pass-card {
  padding: 22px 18px 18px;
  border-radius: 22px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.95));
  border: 1px solid rgba(6, 29, 67, 0.10);
  box-shadow: 0 14px 34px rgba(6, 29, 67, 0.10);
}

.pass-card::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -112px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 199, 199, 0.13), transparent 66%);
}

.pass-card.featured {
  border-color: rgba(0, 199, 199, 0.20);
  box-shadow: 0 18px 44px rgba(0, 199, 199, 0.13), 0 12px 28px rgba(6, 29, 67, 0.09);
}

.launch-pass-card {
  border-color: rgba(255, 178, 74, 0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 178, 74, 0.24), transparent 34%),
    radial-gradient(circle at 100% 18%, rgba(38, 228, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 255, 0.96));
  box-shadow: 0 22px 48px rgba(255, 178, 74, 0.14), 0 16px 36px rgba(6, 29, 67, 0.12);
}

.launch-pass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 178, 74, 0.14), transparent 32%, rgba(0, 199, 199, 0.12) 100%);
}

.launch-pass-card .pass-icon {
  color: #c7650b;
  filter: drop-shadow(0 8px 16px rgba(255, 178, 74, 0.22));
}

.launch-pass-card .pass-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--flame), var(--cyan));
}

.pass-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  color: #0a6f88;
}

.pass-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pass-icon svg {
  fill: rgba(0, 199, 199, 0.08);
  stroke-width: 2;
}

.pass-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 6.2vw, 28px);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.pass-fit {
  position: relative;
  z-index: 1;
  margin: 9px auto 0;
  max-width: 220px;
  color: #0a6f88;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.pass-divider {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 2px;
  margin: 17px auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a6f88, rgba(255, 178, 74, 0.88));
}

.pass-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.pass-benefits li {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.28;
}

.pass-benefits small {
  display: block;
  margin-top: 2px;
  color: rgba(6, 29, 67, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.benefit-icon {
  width: 25px;
  height: 25px;
  color: #0a2e62;
}

.pass-action {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  color: var(--navy);
  background: rgba(6, 29, 67, 0.045);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 67, 0.10);
}

.pass-action:hover,
.pass-action:focus-visible {
  background: rgba(0, 199, 199, 0.11);
}

.pass-action-primary,
.pass-action-primary:visited {
  min-height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 50%, #00aeca 100%);
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.22), 0 0 22px rgba(0, 199, 199, 0.18);
  text-decoration: none;
}

.pass-action-primary:hover,
.pass-action-primary:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #082d63 0%, #064083 48%, #00c7c7 100%);
  box-shadow: 0 18px 36px rgba(6, 29, 67, 0.28), 0 0 28px rgba(0, 199, 199, 0.24);
}

.pass-action-muted {
  cursor: default;
  color: rgba(6, 29, 67, 0.64);
  background: rgba(6, 29, 67, 0.035);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 67, 0.08);
}

.pass-action-muted:hover,
.pass-action-muted:focus-visible {
  transform: none;
  background: rgba(6, 29, 67, 0.035);
}

.more-passes-note {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(6, 29, 67, 0.09);
  border-radius: 999px;
  color: rgba(6, 29, 67, 0.68);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(6, 29, 67, 0.07);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}


/* Venue and accommodation */
.venue {
  padding-top: 24px;
  padding-bottom: 30px;
}

.venue-showcase {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 178, 74, 0.22), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(38, 228, 255, 0.20), transparent 36%),
    linear-gradient(135deg, #041637 0%, #082759 52%, #062338 100%);
  box-shadow: 0 22px 54px rgba(6, 29, 67, 0.18);
  isolation: isolate;
}

.venue-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  background:
    linear-gradient(128deg, transparent 0%, rgba(255, 255, 255, 0.20) 17%, transparent 38%),
    linear-gradient(48deg, transparent 0%, rgba(38, 228, 255, 0.24) 16%, transparent 36%);
}

.venue-showcase::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 178, 74, 0.23), transparent 65%);
}

.venue-copy {
  display: grid;
  gap: 12px;
}

.venue .section-kicker {
  color: var(--cyan);
}

.venue .section-title {
  color: var(--white);
  font-size: clamp(42px, 12vw, 72px);
}

.venue .section-lead,
.venue-copy p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 15px;
  line-height: 1.58;
}

.venue-address {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.10);
  font-style: normal;
  backdrop-filter: blur(12px);
}

.venue-address span:first-child {
  color: var(--flame);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-address strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.15;
}

.venue-address span:not(:first-child) {
  font-size: 14px;
  line-height: 1.4;
}

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

.venue-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}

.venue-photo-main {
  aspect-ratio: 4 / 3;
}

.venue-photo-secondary {
  aspect-ratio: 16 / 9;
}

.venue-photo img,
.hotel-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-img-centric,
.hotel-img-place {
  object-position: center top;
}

.venue-photo-main img {
  object-position: center center;
}

.venue-photo-secondary img {
  object-position: center center;
}

.accommodation {
  padding-top: 26px;
  padding-bottom: 34px;
}

.accommodation-intro {
  max-width: 840px;
}

.accommodation-intro .section-title {
  font-size: clamp(40px, 10.8vw, 68px);
}

.accommodation-intro p:not(.section-kicker):not(.section-lead) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.hotel-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hotel-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(6, 29, 67, 0.10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.95));
  box-shadow: 0 16px 38px rgba(6, 29, 67, 0.10);
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 199, 199, 0.13), transparent 66%);
}

.hotel-photo-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ice-2);
}

.hotel-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 29, 67, 0), rgba(6, 29, 67, 0.28));
}

.hotel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.hotel-eyebrow {
  margin: 0 0 8px;
  color: #0a6f88;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hotel-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 7.5vw, 38px);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hotel-rate {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 178, 74, 0.22), rgba(38, 228, 255, 0.14));
  box-shadow: inset 0 0 0 1px rgba(6, 29, 67, 0.08);
}

.hotel-rate strong {
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hotel-rate span {
  color: rgba(6, 29, 67, 0.70);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hotel-details {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.hotel-details div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(6, 29, 67, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.hotel-details dt {
  margin: 0 0 5px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hotel-details dd {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.38;
}

.hotel-book-btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  color: var(--navy);
  background: linear-gradient(135deg, var(--flame) 0%, #ffe0aa 48%, var(--cyan) 118%);
  box-shadow: 0 16px 32px rgba(255, 178, 74, 0.24), 0 10px 24px rgba(0, 199, 199, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.hotel-book-btn:hover,
.hotel-book-btn:focus-visible {
  background: linear-gradient(135deg, #ffc263 0%, #fff0c9 48%, #63efff 118%);
  box-shadow: 0 20px 38px rgba(255, 178, 74, 0.30), 0 14px 28px rgba(0, 199, 199, 0.17), inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.accommodation-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(6, 29, 67, 0.09);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(6, 29, 67, 0.07);
  font-size: 14px;
  line-height: 1.55;
}

.closing {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 42px;
  isolation: isolate;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -2;
  height: min(128vw, 600px);
  background-image: url("../assets/the-north-closing-mobile.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

  /* French closing artwork */
  html[lang="fr"] .closing::before {
  background-image: url("../assets/the-north-closing-mobile-fr.webp");
 }

.closing::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: min(130vw, 610px);
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 88%,
    rgba(255, 255, 255, 0.76) 97%,
    #ffffff 100%);
}

.closing-inner {
  display: grid;
  gap: 10px;
}

.closing-art-spacer {
  min-height: min(124vw, 585px);
}

.closing-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-strip {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(6, 29, 67, 0.09);
  border-radius: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(6, 29, 67, 0.07);
  backdrop-filter: blur(14px);
}

.contact-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.contact-strip a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.contact-strip a:hover,
.contact-strip a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: #087f9a;
}

.footer-email {
  color: var(--navy);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  min-height: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 16px;
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 29, 67, 0.10);
  box-shadow: 0 12px 30px rgba(6, 29, 67, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(6, 29, 67, 0.11);
}

.social-link-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 50%, #00aeca 100%);
  border-color: rgba(255, 255, 255, 0.26);
}

.social-link-primary:hover,
.social-link-primary:focus-visible {
  background: linear-gradient(135deg, #08275a 0%, #0a3574 50%, #00b8d5 100%);
}

.social-link span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-link small {
  color: currentColor;
  opacity: 0.72;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 24px 0 32px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(6, 29, 67, 0.08);
}

.footer-inner {
  display: grid;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.footer-inner strong {
  color: var(--navy);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 359px) {
  .hero-meta {
    gap: 6px;
  }
}

@media (min-width: 520px) {
  :root {
    --page-x: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 11px 14px;
    font-size: 10px;
  }

  .hero-meta {
    gap: 10px;
  }

  .meta-card {
    min-height: 92px;
    padding: 13px 10px;
    border-radius: 20px;
  }

  .meta-card strong {
    font-size: clamp(19px, 4.5vw, 26px);
  }

  .meta-card span:last-child {
    font-size: 10px;
  }

  .pass-card {
    padding: 21px 15px 16px;
  }

  .pass-benefits li {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 9px;
    font-size: 12px;
  }

  .contact-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 11px 16px;
    border-radius: 999px;
  }

  .contact-strip a {
    font-size: 14px;
  }

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

@media (min-width: 720px) {
  :root {
    --page-x: 20px;
  }

  .announcement {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 12px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 10px;
  }

  .language-toggle {
    min-height: 40px;
  }

  .lang-option {
    width: 33px;
    height: 33px;
    font-size: 10px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 230px;
    max-height: none;
    padding: 4px;
    margin: 0;
    overflow: visible;
    border-radius: 999px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.66);
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(6, 29, 67, 0.08);
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 0;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
  }

  .mobile-menu-cta {
    display: none !important;
  }

  .nav-cta {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-height: 40px;
    padding: 11px 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  .btn,
  .pass-action {
    min-height: 46px;
    padding: 13px 18px;
    font-size: 12px;
  }

  .hero {
    padding-bottom: 10px;
  }

  .hero-art::after {
    height: clamp(88px, 12vw, 170px);
  }

  .hero-meta {
    gap: 12px;
  }

  .meta-card {
    min-height: 106px;
    padding: 17px 16px;
    border-radius: 22px;
  }

  .meta-card::before {
    width: 44px;
    height: 3px;
  }

  .meta-label {
    font-size: 10px;
  }

  .section {
    padding: 42px 0;
  }

  .overview {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .section-title {
    font-size: clamp(48px, 7.2vw, 76px);
    line-height: 0.94;
  }

  .section-lead {
    font-size: 18px;
  }

  .stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat {
    min-height: 104px;
    padding: 17px 16px;
  }

  .countdown-panel {
    padding: 30px;
    border-radius: 30px;
  }

  .countdown-panel h3 {
    font-size: clamp(46px, 6vw, 68px);
  }

  .panel-copy {
    font-size: 16px;
  }

  .countdown div {
    padding: 16px 10px;
    border-radius: 20px;
  }

  .countdown span {
    font-size: 10px;
  }

  .tickets {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .ticket-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .more-passes-note {
    margin-top: 18px;
    padding: 11px 18px;
    font-size: 11px;
  }

  .pass-card {
    padding: 25px 18px 18px;
    border-radius: 28px;
  }

  .pass-icon {
    width: 54px;
    height: 54px;
  }

  .pass-card h3 {
    font-size: clamp(21px, 2.7vw, 30px);
  }

  .pass-fit {
    font-size: 10px;
  }

  .pass-benefits {
    gap: 13px;
  }

  .pass-benefits li {
    font-size: 13px;
  }

  .closing {
    padding-bottom: 72px;
  }

  .closing::before {
    height: clamp(300px, 38.05vw, 740px);
    background-image: url("../assets/the-north-closing-banner.webp");
    background-size: 100% auto;
  }

  .closing::after {
    height: clamp(300px, 38.5vw, 750px);
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 90%,
      rgba(255, 255, 255, 0.74) 98%,
      #ffffff 100%);
  }

  .closing-art-spacer {
    min-height: clamp(300px, 38.05vw, 740px);
  }

  .closing-copy p {
    font-size: 18px;
    line-height: 1.6;
  }

  .contact-strip {
    margin-top: 18px;
  }

  .social-links {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-size: 14px;
    text-align: left;
  }

  html[lang="fr"] .closing::before {
    background-image: url("../assets/the-north-closing-banner-fr.webp");
  }
}

@media (min-width: 980px) {
  :root {
    --page-x: 22px;
    --shadow: 0 28px 90px rgba(6, 29, 67, 0.16);
    --soft-shadow: 0 18px 52px rgba(6, 29, 67, 0.11);
  }

  .hero-inner {
    margin-top: clamp(-112px, -6vw, -56px);
  }

  .meta-card {
    min-height: 118px;
    padding: 20px 20px;
  }

  .meta-card strong {
    font-size: clamp(28px, 3.2vw, 40px);
  }

  .meta-card span:last-child {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .section {
    padding: 52px 0;
  }

  .overview {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: center;
    gap: clamp(36px, 5vw, 70px);
  }

  .section-title {
    font-size: clamp(60px, 5.4vw, 86px);
  }

  .section-lead {
    font-size: 20px;
    line-height: 1.65;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .stat {
    min-height: 104px;
    padding: 20px;
    border-radius: 22px;
  }

  .stat strong {
    font-size: clamp(24px, 2.1vw, 30px);
  }

  .stat span {
    font-size: 11px;
  }

  .countdown-panel {
    padding: clamp(32px, 4vw, 46px);
    border-radius: 34px;
  }

  .countdown-panel h3 {
    font-size: clamp(52px, 4.7vw, 76px);
    line-height: 0.92;
  }

  .panel-copy {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.65;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .countdown div {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .countdown strong {
    font-size: clamp(38px, 4vw, 56px);
  }

  .tickets {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .ticket-grid {
    gap: 18px;
    margin-top: 36px;
  }

  .launch-pass-card {
    transform: translateY(-4px);
  }

  .more-passes-note {
    margin-top: 20px;
  }

  .pass-card {
    min-height: 412px;
    padding: 30px 24px 22px;
    border-radius: 30px;
  }

  .pass-card h3 {
    font-size: clamp(26px, 2.5vw, 34px);
  }

  .pass-fit {
    font-size: 10.5px;
  }

  .pass-benefits {
    gap: 14px;
  }

  .pass-benefits li {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 11px;
    font-size: 14px;
  }

  .benefit-icon {
    width: 27px;
    height: 27px;
  }

  .closing {
    padding-bottom: 92px;
  }

  .closing::before {
    height: clamp(360px, 38.05vw, 740px);
    background-size: 100% auto;
  }

  .closing::after {
    height: clamp(360px, 38.5vw, 750px);
  }

  .closing-art-spacer {
    min-height: clamp(360px, 38.05vw, 740px);
  }
}





@media (min-width: 720px) {
  .venue {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .venue-showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
  }

  .venue .section-title {
    font-size: clamp(58px, 6.4vw, 82px);
  }

  .venue .section-lead,
  .venue-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .venue-gallery {
    gap: 12px;
  }

  .venue-photo {
    border-radius: 26px;
  }

  .venue-photo-main {
    aspect-ratio: 16 / 11;
  }

  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    margin-top: 28px;
  }

  .hotel-card {
    border-radius: 30px;
  }

  .hotel-photo-wrap {
    aspect-ratio: 4 / 3;
  }

  .hotel-content {
    padding: 22px;
  }

  .hotel-details {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 12px;
  }

  .accommodation-note {
    max-width: 860px;
    margin-top: 22px;
    font-size: 15px;
  }
}

@media (min-width: 980px) {
  .venue {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .venue-showcase {
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
    gap: 34px;
    padding: 34px;
    border-radius: 40px;
  }

  .venue-address {
    max-width: 390px;
    margin-top: 12px;
    padding: 18px;
    border-radius: 22px;
  }

  .venue-address strong {
    font-size: 22px;
  }

  .venue-photo-main {
    aspect-ratio: 16 / 10;
  }

  .venue-photo-secondary {
    aspect-ratio: 16 / 8.4;
  }

  .accommodation {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .accommodation-intro {
    max-width: 940px;
  }

  .accommodation-intro .section-title {
    font-size: clamp(58px, 5.4vw, 80px);
  }

  .accommodation-intro p:not(.section-kicker):not(.section-lead) {
    font-size: 18px;
    line-height: 1.62;
  }

  .hotel-grid {
    gap: 22px;
    margin-top: 36px;
  }

  .hotel-card {
    border-radius: 34px;
  }

  .hotel-photo-wrap {
    aspect-ratio: 4 / 3;
  }

  .hotel-content {
    padding: 26px;
  }

  .hotel-card h3 {
    font-size: clamp(36px, 3.2vw, 46px);
  }

  .hotel-rate strong {
    font-size: 28px;
  }

  .hotel-details dd {
    font-size: 15px;
  }
}


@media (min-width: 720px) {
  .ticket-grid.ticket-grid--two-passes {
    grid-template-columns: repeat(2, minmax(280px, 380px));
    justify-content: center;
    max-width: 880px;
    margin-inline: auto;
  }
}

/* Artists preview and artists page */
.artists-preview {
  padding-top: 10px;
  padding-bottom: 26px;
}

.artists-preview-inner {
  position: relative;
  overflow: hidden;
  padding: 20px 14px 15px;
  border: 1px solid rgba(6, 29, 67, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 178, 74, 0.19), transparent 34%),
    radial-gradient(circle at 100% 4%, rgba(38, 228, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(6, 29, 67, 0.09);
  backdrop-filter: blur(14px);
}

.artists-preview-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.20;
  background:
    linear-gradient(128deg, transparent 0%, rgba(0, 199, 199, 0.26) 22%, transparent 44%),
    linear-gradient(48deg, transparent 0%, rgba(255, 178, 74, 0.26) 20%, transparent 42%);
}

.artists-preview-cta {
  width: 100%;
  margin-top: 16px;
}

.artists-mini-carousel {
  position: relative;
  min-width: 0;
  margin-top: 18px;
}

.artists-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.artists-mini-carousel:not(.is-scrollable) .artists-carousel-controls {
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  visibility: hidden;
}

.artists-carousel-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(6, 29, 67, 0.10);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(6, 29, 67, 0.10);
  font: inherit;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.artists-carousel-button:hover:not(:disabled),
.artists-carousel-button:focus-visible {
  transform: translateY(-1px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 52%, #00aeca 100%);
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.16);
}

.artists-carousel-button:disabled {
  cursor: default;
  opacity: 0.42;
  box-shadow: none;
}

.artists-mini-track {
  display: flex;
  min-width: 0;
  gap: 8px;
  margin: 0 -2px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(6, 29, 67, 0.24) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.artists-mini-track::-webkit-scrollbar {
  height: 6px;
}

.artists-mini-track::-webkit-scrollbar-track {
  background: transparent;
}

.artists-mini-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(6, 29, 67, 0.22);
}

.artists-mini-track:focus-visible {
  border-radius: 20px;
  outline: 3px solid rgba(0, 199, 199, 0.34);
  outline-offset: 4px;
}

.artist-mini-card {
  display: grid;
  flex: 0 0 clamp(128px, 42vw, 170px);
  min-width: 0;
  gap: 7px;
  align-content: start;
  padding: 6px 6px 9px;
  border: 1px solid rgba(6, 29, 67, 0.08);
  border-radius: 19px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(6, 29, 67, 0.08);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.artist-mini-card:hover,
.artist-mini-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(6, 29, 67, 0.12);
}

.artist-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(6, 29, 67, 0.10);
}

.artist-mini-card span,
.artist-mini-card small {
  display: block;
  min-width: 0;
  text-align: center;
}

.artist-mini-card span {
  color: var(--navy);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.artist-mini-card small {
  color: #087f9a;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.artists-page main {
  overflow: hidden;
}

.artists-hero {
  position: relative;
  padding-top: 22px;
  padding-bottom: 12px;
  isolation: isolate;
}

.artists-hero::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto;
  z-index: -2;
  height: 340px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 178, 74, 0.18), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(38, 228, 255, 0.20), transparent 34%);
}

.artists-hero-inner {
  position: relative;
  overflow: hidden;
  padding: 26px 18px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 199, 199, 0.36), transparent 34%),
    radial-gradient(circle at 98% 8%, rgba(255, 178, 74, 0.24), transparent 34%),
    linear-gradient(135deg, #041637 0%, #082759 52%, #06334a 100%);
  box-shadow: 0 22px 52px rgba(6, 29, 67, 0.22);
  isolation: isolate;
}

.artists-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.20;
  background:
    linear-gradient(128deg, transparent 0%, rgba(255, 255, 255, 0.26) 20%, transparent 44%),
    linear-gradient(48deg, transparent 0%, rgba(38, 228, 255, 0.28) 18%, transparent 38%);
}

.artists-hero .section-kicker {
  color: var(--cyan);
}

.artists-hero .section-title {
  max-width: 760px;
  color: var(--white);
}

.artists-hero .section-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-hero-actions .btn {
  flex: 1 1 138px;
}

.artists-directory {
  padding-top: 12px;
}

.artist-list {
  display: grid;
  gap: 18px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  border: 1px solid rgba(6, 29, 67, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 199, 199, 0.12), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(255, 178, 74, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(6, 29, 67, 0.11);
}

.artist-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--flame));
}

.artist-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 10px 10px 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ice-2);
  box-shadow: 0 16px 38px rgba(6, 29, 67, 0.12);
}

.artist-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-content {
  padding: 18px 16px 20px;
}

.artist-country {
  margin: 0 0 8px;
  color: #087f9a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.artist-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.artist-details {
  margin-top: 16px;
}

.artist-details summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 52%, #00aeca 100%);
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.18), 0 0 20px rgba(0, 199, 199, 0.13);
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.artist-details summary::after {
  content: "+";
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1;
}

.artist-details summary:hover,
.artist-details summary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6, 29, 67, 0.22), 0 0 22px rgba(0, 199, 199, 0.16);
}

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

.artist-details .when-open {
  display: none;
}

.artist-details[open] .when-open {
  display: inline;
}

.artist-details[open] .when-closed {
  display: none;
}

.artist-bio {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.artist-bio p {
  margin: 0;
}

.artist-page-cta {
  padding-top: 8px;
  padding-bottom: 40px;
}

.artist-page-cta-card {
  position: relative;
  overflow: hidden;
  padding: 24px 18px;
  border: 1px solid rgba(6, 29, 67, 0.09);
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 178, 74, 0.18), transparent 34%),
    radial-gradient(circle at 100% 10%, rgba(38, 228, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(6, 29, 67, 0.10);
}

.artist-page-cta-card h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(30px, 8.4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.artist-page-cta-card p:not(.section-kicker) {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.artist-page-cta-card .btn {
  width: 100%;
  margin-top: 18px;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 52%, #00aeca 100%);
  box-shadow: 0 10px 22px rgba(6, 29, 67, 0.14);
}

@media (min-width: 520px) {
  .artists-preview-inner {
    padding: 22px 18px 18px;
  }

  .artists-preview-cta,
  .artist-page-cta-card .btn {
    width: auto;
  }

  .artist-mini-card {
    flex-basis: clamp(150px, 34vw, 190px);
  }

  .artist-mini-card span {
    font-size: 12px;
  }

  .artist-mini-card small {
    font-size: 8.5px;
  }

  .artist-content {
    padding: 22px 20px 24px;
  }
}

@media (min-width: 720px) {
  .nav-links {
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .artists-preview {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .artists-preview-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 22px;
    padding: 30px;
    border-radius: 32px;
  }

  .artists-preview-copy .section-title {
    font-size: clamp(44px, 5.4vw, 68px);
  }

 .artists-mini-carousel {
    margin-top: 0;
  }

  .artists-carousel-controls {
    margin-bottom: 12px;
  }

  .artists-mini-track {
    gap: 12px;
    margin: 0 -3px;
    padding: 2px 3px 14px;
    scroll-padding-inline: 3px;
  }

  .artist-mini-card {
    flex-basis: clamp(142px, 22vw, 178px);
    padding: 8px 8px 11px;
    border-radius: 22px;
  }

  .artist-mini-card img {
    border-radius: 17px;
  }

  .artists-hero {
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .artists-hero-inner {
    padding: 40px 34px;
    border-radius: 34px;
  }

  .page-hero-actions .btn {
    flex: 0 0 auto;
  }

  .artists-directory {
    padding-top: 20px;
  }

  .artist-list {
    gap: 24px;
  }

  .artist-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    padding: 10px;
    border-radius: 32px;
  }

  .artist-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.14fr) minmax(260px, 0.86fr);
  }

  .artist-card:nth-child(even) .artist-photo-wrap {
    order: 2;
  }

  .artist-card:nth-child(even) .artist-content {
    order: 1;
  }

  .artist-photo-wrap {
    margin: 0;
    border-radius: 24px;
  }

  .artist-content {
    align-self: center;
    padding: 26px 24px;
  }

  .artist-content h2 {
    font-size: clamp(36px, 5vw, 56px);
  }

  .artist-details {
    margin-top: 20px;
  }

  .artist-details summary {
    display: none;
  }

  .artist-bio {
    margin-top: 0;
    font-size: 15.5px;
  }

  .artist-page-cta {
    padding-bottom: 62px;
  }

  .artist-page-cta-card {
    padding: 36px 32px;
    border-radius: 34px;
  }

  .artist-page-cta-card p:not(.section-kicker) {
    font-size: 17px;
  }
}

@media (min-width: 980px) {
  .artists-preview-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1fr);
    gap: 36px;
    padding: 38px;
  }

  .artists-mini-track {
    margin: 0;
    padding: 2px 0 12px;
    scroll-padding-inline: 0;
  }

  .artist-mini-card {
    flex-basis: calc((100% - 48px) / 5);
  }

  .artists-preview-copy .section-title {
    font-size: clamp(56px, 4.7vw, 78px);
  }

  .artists-preview-cta {
    margin-top: 22px;
  }

  .artist-mini-card span {
    font-size: 12px;
  }

  .artist-mini-card small {
    font-size: 8.5px;
  }

  .artists-hero {
    padding-top: 44px;
    padding-bottom: 30px;
  }

  .artists-hero-inner {
    padding: 56px;
    border-radius: 38px;
  }

  .artists-hero .section-title {
    font-size: clamp(64px, 6.2vw, 96px);
  }

  .artists-hero .section-lead {
    font-size: 20px;
  }

  .page-hero-actions {
    margin-top: 26px;
  }

  .artist-list {
    gap: 30px;
  }

  .artist-card {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    padding: 12px;
    border-radius: 36px;
  }

  .artist-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  }

  .artist-photo-wrap {
    border-radius: 28px;
  }

  .artist-content {
    padding: clamp(32px, 4vw, 52px);
  }

  .artist-country {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .artist-content h2 {
    font-size: clamp(46px, 4.2vw, 70px);
  }

  .artist-bio {
    gap: 14px;
    font-size: 17px;
    line-height: 1.7;
  }

  .artist-page-cta-card {
    padding: 46px;
  }

  .artist-page-cta-card h2 {
    font-size: clamp(48px, 4.5vw, 72px);
  }
}

@media (min-width: 1100px) {
  .nav-links {
    flex-wrap: nowrap;
    min-width: max-content;
  }
}

.section-scroll-title {
  scroll-margin-top: 86px;
}

@media (min-width: 720px) {
  .section-scroll-title {
    scroll-margin-top: 104px;
  }
}

.hotel-card--single {
  max-width: 1060px;
  margin: 24px auto 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 178, 74, 0.18), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(38, 228, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.95));
}

.hotel-card--single .hotel-photo-wrap {
  aspect-ratio: 4 / 3;
}

.hotel-card--single .hotel-content {
  padding: 20px;
}

.hotel-card--single .hotel-book-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 50%, #00aeca 100%);
  box-shadow: 0 14px 28px rgba(6, 29, 67, 0.22), 0 0 22px rgba(0, 199, 199, 0.18);
}

.hotel-card--single .hotel-book-btn:hover,
.hotel-card--single .hotel-book-btn:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #082d63 0%, #064083 48%, #00c7c7 100%);
  box-shadow: 0 18px 36px rgba(6, 29, 67, 0.28), 0 0 28px rgba(0, 199, 199, 0.24);
}

@media (min-width: 840px) {
  .hotel-card--single {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    align-items: stretch;
    margin-top: 34px;
    border-radius: 34px;
  }

  .hotel-card--single .hotel-photo-wrap {
    height: 100%;
    min-height: 430px;
    aspect-ratio: auto;
  }

  .hotel-card--single .hotel-content {
    justify-content: center;
    padding: clamp(28px, 4vw, 44px);
  }

  .hotel-card--single .hotel-book-btn {
    width: min(100%, 320px);
  }
}

html {
  scroll-padding-top: 132px;
}

.section,
.section-kicker,
.section-title {
  scroll-margin-top: 132px;
}

@media (min-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  .section,
  .section-kicker,
  .section-title {
    scroll-margin-top: 112px;
  }
}

.venue-showcase {
  align-items: start;
  min-height: 0;
}

.venue-gallery {
  align-self: start;
  align-content: start;
}

.venue-photo-main {
  aspect-ratio: 900 / 603;
}

.venue-photo-secondary {
  aspect-ratio: 900 / 447;
}

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

.venue-photo-main img {
  object-position: center top;
}

.venue-photo-secondary img {
  object-position: center center;
}

.hotel-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(6, 29, 67, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 178, 74, 0.20), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(38, 228, 255, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.64),
    0 14px 30px rgba(6, 29, 67, 0.06);
}

.hotel-note-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #082d63 52%, #00aeca 100%);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hotel-note-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hotel-note-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.hotel-note-copy p:last-child {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 420px) {
  .hotel-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px;
  }

  .hotel-note-label {
    width: fit-content;
  }

  .hotel-note-copy p {
    font-size: 12.5px;
  }
}

@media (min-width: 840px) {
  .hotel-note {
    padding: 16px;
  }

  .hotel-note-copy p {
    font-size: 13.5px;
  }
}