: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: 320px;
  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);
}

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

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

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

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



