:root {
  --bg: #05080d;
  --bg-soft: #0b1119;
  --surface: rgba(12, 18, 27, 0.74);
  --surface-strong: rgba(14, 20, 31, 0.92);
  --surface-light: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(186, 198, 214, 0.3);
  --text: #eef4fb;
  --muted: #aab5c5;
  --accent: #b8c6d8;
  --accent-strong: #e8f0fa;
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 20px 52px rgba(0, 0, 0, 0.24);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --font-display: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-ui);
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(186, 198, 214, 0.14), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(72, 93, 124, 0.18), transparent 22%),
    radial-gradient(circle at 14% 68%, rgba(186, 198, 214, 0.1), transparent 18%),
    linear-gradient(180deg, #091018 0%, #060a10 22%, #04070c 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 79px,
      rgba(255, 255, 255, 0.018) 79px,
      rgba(255, 255, 255, 0.018) 80px
    );
  opacity: 0.4;
}

body::after {
  background:
    radial-gradient(circle at 20% 22%, rgba(214, 224, 238, 0.08), transparent 8%),
    radial-gradient(circle at 82% 36%, rgba(214, 224, 238, 0.06), transparent 9%),
    radial-gradient(circle at 32% 84%, rgba(214, 224, 238, 0.05), transparent 7%);
  filter: blur(36px);
  opacity: 0.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

.page-shell::before {
  top: 10rem;
  left: -14rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(186, 198, 214, 0.12), transparent 68%);
}

.page-shell::after {
  right: -12rem;
  bottom: 12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(79, 97, 129, 0.18), transparent 70%);
}

.site-header,
.hero,
.section,
.site-footer,
.lightbox {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 0.9rem 0 0;
  transition: padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  min-height: 4.75rem;
  padding: 0.8rem 1.1rem 0.8rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04)),
    rgba(7, 11, 17, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  width: clamp(8.8rem, 12vw, 10.8rem);
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  min-width: 0;
}

.site-nav a,
.lang-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 0.08rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235, 242, 250, 0.7);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.28rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0.18);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.lang-button:hover,
.lang-button:focus-visible,
.contact-action:hover,
.footer-top-link:hover,
.footer-legal a:hover,
.footer-credit-link:hover {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

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

.lang-button {
  min-width: 2.4rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  letter-spacing: 0.13em;
}

.lang-button.is-active {
  color: #091018;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.lang-switch-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 1.05rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-0.2rem);
}

.nav-toggle span:last-child {
  transform: translateY(0.2rem);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
}

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

.hero-media {
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.25) 0%, rgba(4, 7, 12, 0.72) 68%, rgba(4, 7, 12, 0.95) 100%),
    linear-gradient(90deg, rgba(4, 7, 12, 0.66), rgba(4, 7, 12, 0.2) 36%, rgba(4, 7, 12, 0.52));
}

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

img[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  transform-origin: center;
  transition: transform 180ms linear;
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(214, 224, 238, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.22), rgba(5, 8, 13, 0.56) 42%, rgba(5, 8, 13, 0.92));
}

.hero-ornaments {
  overflow: hidden;
}

.hero-orb,
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 180ms linear;
  will-change: transform;
}

.hero-orb-one {
  top: 20%;
  left: 9%;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(186, 198, 214, 0.16), transparent 72%);
  filter: blur(20px);
}

.hero-orb-two {
  right: 12%;
  bottom: 22%;
  width: 17rem;
  height: 17rem;
  background: radial-gradient(circle, rgba(120, 158, 205, 0.12), transparent 70%);
  filter: blur(26px);
}

.hero-ring-one {
  left: 50%;
  bottom: 18%;
  width: min(72vw, 40rem);
  height: min(72vw, 40rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate3d(-50%, var(--parallax-y, 0px), 0);
}

.hero-layout {
  position: relative;
  width: min(980px, calc(100% - 2rem));
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  text-transform: uppercase;
  color: #eef4fb;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
}

/* Chrome look for all large page headings */
.section-heading h2,
.experience-copy h2,
.visit-copy h2,
.sponsors-title,
.all-gallery-title,
.legal-shell h1,
.legal-shell h2 {
  color: #dce5f1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 2px rgba(18, 24, 34, 0.34),
    0 12px 24px rgba(0, 0, 0, 0.28);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-heading h2,
  .experience-copy h2,
  .visit-copy h2,
  .sponsors-title,
  .all-gallery-title,
  .legal-shell h1,
  .legal-shell h2 {
    color: transparent;
    background-image:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 12%,
        #b3bece 28%,
        #6b7688 42%,
        #ecf3fc 56%,
        #566173 72%,
        #d7e0ee 86%,
        #fbfdff 100%
      ),
      linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 16%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(54, 63, 76, 0.5) 58%,
        rgba(255, 255, 255, 0.72) 70%,
        rgba(255, 255, 255, 0) 86%
      );
    background-size: 100% 100%, 180% 100%;
    background-position: 0 50%, 38% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  font-weight: 800;
  color: #dce5f1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 2px 1px rgba(18, 24, 34, 0.36),
    0 12px 26px rgba(0, 0, 0, 0.34);
  background-image:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 10%,
      #b4bfce 26%,
      #6d7888 42%,
      #eff5fd 56%,
      #566171 71%,
      #dce5f0 85%,
      #f8fcff 100%
    ),
    linear-gradient(
      102deg,
      rgba(255, 255, 255, 0) 18%,
      rgba(255, 255, 255, 0.95) 38%,
      rgba(255, 255, 255, 0.15) 52%,
      rgba(255, 255, 255, 0.9) 62%,
      rgba(255, 255, 255, 0) 78%
    ),
    linear-gradient(
      92deg,
      rgba(48, 56, 67, 0) 10%,
      rgba(48, 56, 67, 0.58) 36%,
      rgba(48, 56, 67, 0.08) 50%,
      rgba(48, 56, 67, 0.52) 66%,
      rgba(48, 56, 67, 0) 90%
    ),
    linear-gradient(
      180deg,
      rgba(20, 27, 36, 0.42) 0%,
      rgba(20, 27, 36, 0) 22%,
      rgba(20, 27, 36, 0) 78%,
      rgba(20, 27, 36, 0.44) 100%
    );
  background-size: 100% 100%, 260% 100%, 240% 100%, 100% 100%;
  background-position: 0 50%, 135% 50%, -25% 50%, 0 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chrome-sweep 7.5s linear infinite;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title-accent {
    color: #dce5f1;
    background-image: none;
    -webkit-text-fill-color: initial;
    animation: none;
  }
}

.hero-meta {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.hero-subline,
.hero-parking,
.hero-registration,
.section-lead,
.editorial-copy p,
.timeline-text,
.experience-item span,
.visit-card p,
.contact-form span,
.form-note,
.footer-copyright {
  margin: 0;
  color: var(--muted);
}

.hero-subline {
  max-width: 42rem;
  font-size: 1rem;
}

.hero-parking,
.hero-registration {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.52rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  margin: 0;
}

.hero-parking::before,
.hero-registration::before {
  display: inline-grid;
  place-items: center;
  width: 1.04rem;
  height: 1.04rem;
  flex: 0 0 auto;
  border: 1px solid rgba(186, 198, 214, 0.46);
  background: rgba(12, 18, 27, 0.72);
  color: rgba(226, 235, 246, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
}

.hero-parking::before {
  content: "P";
  width: 1.04rem;
  height: 1.04rem;
  border: 1px solid rgba(186, 198, 214, 0.54);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(12, 18, 27, 0.72);
  color: rgba(236, 243, 252, 0.97);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 0.55rem rgba(190, 206, 226, 0.24);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.hero-registration::before {
  content: "\2713";
  border-radius: 50%;
  font-size: 0.62rem;
}

.hero-spotlight {
  display: inline-grid;
  gap: 0.18rem;
  padding: 0.92rem 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-md);
}

.hero-spotlight span,
.editorial-label,
.timeline-day-header span,
.visit-card h3,
.experience-item strong,
.partner-card span,
.lightbox-caption span,
.footer-title,
.contact-form span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-spotlight span,
.editorial-label,
.timeline-day-header span,
.lightbox-caption span,
.footer-title,
.contact-form span {
  color: var(--accent);
}

.hero-spotlight strong,
.hero-stat strong,
.timeline-day-header strong,
.editorial-copy h3,
.visit-card h3,
.experience-item strong,
.lightbox-caption strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(38rem, 100%);
}

.hero-stat {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 12, 18, 0.58);
  box-shadow: var(--shadow-md);
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  color: var(--text);
}

.hero-stat span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-countdown {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
}

.hero-countdown-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 242, 250, 0.76);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
}

.countdown-unit {
  width: min(20vw, 6rem);
  min-width: 5.1rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0.8rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.07), transparent 36%),
    rgba(7, 11, 17, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-md);
}

.countdown-scale,
.countdown-needle {
  display: none;
}

.countdown-readout {
  display: grid;
  justify-items: center;
  gap: 0.26rem;
}

.countdown-value {
  display: inline-flex;
  align-items: center;
  gap: 0.04em;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--text);
}

.countdown-digit {
  position: relative;
  width: 0.62em;
  height: 1.08em;
  overflow: hidden;
}

.countdown-reel-track {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  transform: translateY(calc(var(--digit-index, 0) * -1.08em));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.countdown-reel-track > span {
  display: grid;
  place-items: center;
  height: 1.08em;
}

.countdown-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235, 242, 250, 0.62);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(186, 198, 214, 0.45);
  color: #091018;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 34px rgba(186, 198, 214, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 6.4rem 0;
}

.section[id] {
  scroll-margin-top: 7.5rem;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading,
.visit-copy,
.experience-copy {
  max-width: 48rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.experience-copy h2,
.visit-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-lead {
  margin-top: 0.95rem;
  max-width: 42rem;
  font-size: 1rem;
}

.intro-section {
  padding-top: 4.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.editorial-card,
.timeline-day,
.experience-shell,
.visit-card,
.map-card,
.contact-form,
.partner-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 18, 0.8);
  box-shadow: var(--shadow-md);
}

.info-card {
  min-height: 13rem;
  padding: 1.55rem;
  border-radius: 26px;
}

.info-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.info-card h3,
.editorial-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1;
}

.info-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 1.3rem;
}

.editorial-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1.35rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.editorial-card.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.editorial-card.reverse .editorial-media {
  order: 2;
}

.editorial-card.reverse .editorial-copy {
  order: 1;
}

.editorial-media {
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.03);
  transition: transform 180ms linear;
}

.editorial-media-split {
  display: grid;
  gap: 0.9rem;
}

.editorial-media-split img {
  min-height: 15rem;
}

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 0.7rem 0.25rem 0.7rem 0;
}

.editorial-copy p {
  font-size: 0.98rem;
}

.schedule-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--accent);
}

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

.timeline-day {
  padding: 1.55rem 1.4rem;
  border-radius: 28px;
}

.timeline-day-header {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 1.2rem;
}

.timeline-day-header strong {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

.timeline-day-events {
  display: grid;
  gap: 0.95rem;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 7.2rem 1.5rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.timeline-time {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.timeline-marker {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.9rem;
  bottom: -0.9rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.timeline-entry:first-child .timeline-marker::before {
  top: 0.7rem;
}

.timeline-entry:last-child .timeline-marker::before {
  bottom: 0.7rem;
}

.timeline-marker span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.32rem rgba(186, 198, 214, 0.14);
  transform: translate(-50%, -50%);
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.8rem, 1fr));
  gap: 0.9rem;
}

.experience-item,
.visit-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.experience-item strong,
.visit-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.experience-item span,
.visit-card p {
  font-size: 0.94rem;
}

.gallery-section {
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.filter-button {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 250, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(186, 198, 214, 0.28);
  color: var(--text);
}

.filter-button.is-active {
  background: rgba(186, 198, 214, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
}

.gallery-item:nth-child(5n + 1) {
  grid-column: span 8;
}

.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-item:nth-child(5n + 2) .gallery-card,
.gallery-item:nth-child(5n + 5) .gallery-card {
  aspect-ratio: 4 / 5;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.72));
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(186, 198, 214, 0.24);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--gallery-shift, 0px), 0) scale(1.02);
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: translate3d(0, var(--gallery-shift, 0px), 0) scale(1.06);
  filter: saturate(1.08);
}

.partners-grid {
  overflow: hidden;
  padding: 0.2rem 0;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.partners-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 82s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.partners-grid.is-running .partners-track {
  animation-play-state: running;
}

.partners-grid:hover .partners-track {
  animation-play-state: paused;
}

.partner-card {
  width: 13.5rem;
  min-height: 8.8rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 24px;
}

.partner-card img {
  width: 100%;
  max-width: 9.8rem;
  height: 3.6rem;
  object-fit: contain;
}

.partner-card span,
.partner-card strong {
  text-align: center;
}

.partner-card span {
  color: var(--muted);
}

.partner-card.is-text-only strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 250, 0.78);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(186, 198, 214, 0.22);
}

.contact-action::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(186, 198, 214, 0.13);
}

.visit-side {
  display: grid;
  gap: 1rem;
}

.map-card {
  border-radius: 30px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 23rem;
  border: 0;
  filter: saturate(0.86) contrast(0.96) brightness(0.94);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 30px;
  overflow: visible;
}

.form-honeypot {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.62rem;
  padding-top: 0.1rem;
}

.form-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: rgba(186, 198, 214, 0.92);
}

.form-consent .form-consent-text {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.45;
}

.form-consent .form-consent-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  text-decoration-thickness: 1px;
}

.form-captcha {
  display: grid;
  gap: 0.44rem;
  margin-top: 0.14rem;
  padding: 0.8rem 0.92rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.form-captcha-title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(206, 218, 234, 0.88);
  font-weight: 700;
}

.form-captcha-shell {
  min-height: 0;
}

.form-captcha-note {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(171, 186, 207, 0.84);
  line-height: 1.45;
}

.form-captcha-status {
  margin: 0;
  min-height: 1.05rem;
  font-size: 0.76rem;
}

.form-captcha-status[data-state="pending"] {
  color: var(--accent);
}

.form-captcha-status[data-state="success"] {
  color: #90d2a3;
}

.form-captcha-status[data-state="error"] {
  color: #f3a58f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(186, 198, 214, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-note {
  min-height: 1.4rem;
  font-size: 0.88rem;
}

.form-note[data-state="pending"] {
  color: var(--accent);
}

.form-note[data-state="success"] {
  color: #90d2a3;
}

.form-note[data-state="error"] {
  color: #f3a58f;
}

.contact-form .button[disabled] {
  opacity: 0.7;
  cursor: progress;
}

.site-footer {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  gap: 1.2rem;
}

.footer-inner,
.footer-credit-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-title {
  margin: 0 0 0.28rem;
}

#footer-copy,
.footer-copyright {
  margin: 0;
}

.footer-links,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-top-link,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 250, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
}

.footer-top-link:hover,
.footer-top-link:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(186, 198, 214, 0.22);
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: rgba(235, 242, 250, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-credit-link img {
  width: auto;
  height: 1.4rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 13, 0.86);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(74rem, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.lightbox-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 18, 0.88);
  box-shadow: var(--shadow-lg);
}

.lightbox-figure img {
  width: 100%;
  max-height: min(76vh, 52rem);
  object-fit: contain;
  background: #060a10;
}

.lightbox-caption {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.15rem 1.2rem;
}

.lightbox-caption strong {
  font-size: 1.18rem;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 7, 12, 0.86);
}

.privacy-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(76rem, 100%);
  height: min(88vh, 54rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 15, 22, 0.98), rgba(6, 10, 16, 0.97)),
    rgba(7, 12, 19, 0.98);
  box-shadow: var(--shadow-lg);
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(8, 13, 20, 0.8);
}

.privacy-modal-title {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.privacy-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.privacy-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1119;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, calc(34px + var(--reveal-float-y, 0px)), 0);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(var(--reveal-float-x, 0px), var(--reveal-float-y, 0px), 0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes chrome-sweep {
  0% {
    background-position: 0 50%, 135% 50%, -25% 50%, 0 50%;
  }

  50% {
    background-position: 0 50%, 40% 50%, 45% 50%, 0 50%;
  }

  100% {
    background-position: 0 50%, -55% 50%, 130% 50%, 0 50%;
  }
}

@keyframes hero-headline-flash {
  0% {
    filter: brightness(1) saturate(1);
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  }

  38% {
    filter: brightness(1.3) saturate(1.16);
    text-shadow:
      0 10px 24px rgba(0, 0, 0, 0.34),
      0 0 30px rgba(207, 220, 238, 0.56),
      0 0 52px rgba(171, 193, 220, 0.42);
  }

  100% {
    filter: brightness(1.3) saturate(1.16);
    text-shadow:
      0 10px 24px rgba(0, 0, 0, 0.34),
      0 0 30px rgba(207, 220, 238, 0.56),
      0 0 52px rgba(171, 193, 220, 0.42);
  }
}

@keyframes hero-headline-chrome {
  0% {
    background-position: 0 50%, 138% 50%, -28% 50%;
  }

  100% {
    background-position: 0 50%, 34% 50%, 118% 50%;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 1rem;
  }

  .visit-grid,
  .experience-shell,
  .editorial-card,
  .editorial-card.reverse {
    grid-template-columns: 1fr;
  }

  .editorial-card.reverse .editorial-media,
  .editorial-card.reverse .editorial-copy {
    order: initial;
  }

  .editorial-copy {
    padding-right: 0;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1) {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    padding-inline: 1rem;
    border-radius: 28px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    justify-self: end;
  }

  .lang-switch {
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.15rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(7, 11, 17, 0.92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0 0.2rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-stats,
  .intro-grid,
  .experience-grid,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .gallery-header,
  .footer-inner,
  .footer-credit-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .header-inner {
    gap: 0.65rem;
    min-height: 4.35rem;
  }

  .brand-mark {
    width: 7.5rem;
  }

  .lang-switch {
    min-width: 0;
    padding: 0.18rem;
  }

  .lang-button {
    min-width: 2rem;
    padding-inline: 0.55rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-copy {
    gap: 1rem;
  }

  .hero-subline {
    font-size: 0.94rem;
  }

  .countdown-unit {
    min-width: 4.6rem;
    border-radius: 22px;
  }

  .section {
    padding: 5rem 0;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .timeline-marker {
    display: none;
  }

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

  .gallery-item,
  .gallery-item:nth-child(5n + 1) {
    grid-column: span 2;
  }

  .partner-card {
    width: 11.2rem;
  }

  .contact-action {
    width: 100%;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    display: none;
  }

  .privacy-modal {
    padding: 0.6rem;
  }

  .privacy-modal-dialog {
    width: 100%;
    height: min(90vh, 48rem);
    border-radius: 16px;
  }

  .privacy-modal-header {
    padding: 0.7rem 0.8rem;
  }

  .privacy-modal-close {
    width: 2.3rem;
    height: 2.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .partners-track {
    animation: none !important;
    transform: none !important;
  }

  img[data-parallax],
  .hero-orb,
  .hero-ring,
  .editorial-media img,
  .gallery-item img {
    transform: none !important;
  }
}

/* 2026 refresh: fluid layout, less card-like UI, stable countdown */
:root {
  --container: min(1300px, calc(100% - 2.8rem));
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(186, 198, 214, 0.38);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.2);
}

body {
  background:
    radial-gradient(circle at 10% 4%, rgba(186, 198, 214, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(109, 157, 227, 0.14), transparent 23%),
    linear-gradient(180deg, #0a111a 0%, #060c14 28%, #050911 100%);
}

.section + .section {
  border-top: 0;
}

.section {
  padding: 7rem 0;
}

.site-header {
  padding: 0;
}

.site-header,
.site-header.is-scrolled {
  inset: 0 0 auto;
  top: 0;
  padding-top: 0 !important;
}

.site-header .header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.65rem, 1.4vw, 1.2rem);
  padding: 0.68rem 1.35rem 0.68rem 1.35rem;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.03)),
    rgba(2, 3, 6, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 24px 52px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.site-nav {
  width: auto;
  margin: 0 auto;
  justify-content: center;
  gap: clamp(0.4rem, 0.9vw, 0.82rem);
}

.site-nav a {
  min-height: 2.5rem;
  padding: 0 0.18rem;
  white-space: nowrap;
}

.hero {
  justify-content: center;
  padding: 9.8rem 0 6.2rem;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-ornaments {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.14) 0%, rgba(4, 7, 12, 0.58) 58%, rgba(4, 7, 12, 0.92) 82%, rgba(4, 7, 12, 0) 100%),
    linear-gradient(90deg, rgba(4, 7, 12, 0.54), rgba(4, 7, 12, 0.14) 36%, rgba(4, 7, 12, 0.42));
}

.hero-layout {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-copy {
  width: min(900px, 100%);
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.hero-meta {
  justify-items: center;
}

.hero-subline {
  max-width: 54rem;
  margin-inline: auto;
}

.hero-stats {
  width: min(44rem, 100%);
}

.countdown {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.countdown-unit {
  width: auto;
  min-width: 0;
  aspect-ratio: auto;
  padding: 0.3rem 0.6rem 0.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.countdown-unit + .countdown-unit {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.countdown-value {
  font-size: clamp(2rem, 5.2vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  letter-spacing: 0.22em;
}

.info-card,
.editorial-card,
.timeline-day,
.experience-shell,
.visit-card,
.partner-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.intro-grid {
  gap: 2.15rem;
}

.info-card {
  min-height: 0;
  border-left: 2px solid rgba(186, 198, 214, 0.44);
  border-radius: 0;
  padding: 0 0 0 1.1rem;
}

.info-card:nth-child(2) {
  margin-top: 0;
}

.info-card:nth-child(3) {
  margin-top: 0;
}

.story-grid {
  gap: 2.9rem;
}

.editorial-card,
.editorial-card.reverse {
  gap: 2.2rem;
  padding: 0;
  border-radius: 0;
  align-items: center;
}

.editorial-media {
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.editorial-copy {
  gap: 1rem;
  padding: 0;
}

.timeline {
  gap: 2.5rem;
}

.timeline-day {
  border-radius: 0;
  padding: 0;
}

.timeline-day + .timeline-day {
  margin-top: 0.15rem;
  padding-top: 2.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.experience-shell {
  padding: 0;
  gap: 2.4rem;
}

.experience-item,
.visit-card {
  padding: 0.55rem 0 0.55rem 1rem;
  border: 0;
  border-left: 2px solid rgba(186, 198, 214, 0.38);
  border-radius: 0;
  background: transparent;
}

.gallery-grid {
  --masonry-row: 8px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: var(--masonry-row);
  grid-auto-flow: dense;
  gap: 0.72rem;
}

.gallery-item,
.gallery-item:nth-child(5n + 1) {
  grid-column: span 3;
  margin: 0;
}

.gallery-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
}

.gallery-item:nth-child(5n + 2) .gallery-card,
.gallery-item:nth-child(5n + 5) .gallery-card {
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: none;
  filter: none;
}

.partners-grid {
  mask-image: none;
}

.partner-card {
  width: 11.8rem;
  min-height: 7rem;
  padding: 0.25rem;
  gap: 0.5rem;
}

.map-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(8, 13, 20, 0.5);
  box-shadow: var(--shadow-md);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(8, 13, 20, 0.52);
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.reveal {
  transform: translate3d(0, 28px, 0);
}

.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .site-header .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    justify-content: center;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1) {
    grid-column: span 4;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    width: 100%;
    grid-template-columns: auto auto auto;
    border-radius: 0;
    padding-inline: 0.9rem;
  }

  .site-nav {
    width: auto;
    justify-content: center;
    gap: 0.28rem;
    border-radius: 0;
    left: 0;
    right: 0;
  }

  .lang-switch-desktop {
    display: none;
  }

  .site-nav .lang-switch-mobile {
    display: inline-flex;
    justify-self: center;
    margin-top: 0.55rem;
  }

  .hero {
    padding-top: 8.3rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(430px, 100%);
  }

  .countdown-unit + .countdown-unit {
    border-left: 0;
  }

  .countdown-unit:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .countdown-unit:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 0.8rem;
  }

  .info-card:nth-child(2),
  .info-card:nth-child(3) {
    margin-top: 0;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1) {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 5.2rem 0;
  }

  .site-header .header-inner {
    border-radius: 0;
  }

  .hero-layout {
    width: min(100% - 1.2rem, 100%);
  }

  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.95rem);
  }

  .countdown-value {
    font-size: clamp(1.7rem, 9.5vw, 2.6rem);
  }

  .gallery-grid {
    --masonry-row: 6px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1) {
    grid-column: span 3;
  }

  .editorial-media {
    border-radius: 24px;
  }
}

/* Vintage / automotive mood layer */
:root {
  --vintage-brass: #b3c0d2;
  --vintage-copper: #7f90a7;
  --vintage-ivory: #e4ebf4;
  --vintage-steel: #28313b;
  --vintage-carbon: #1a222d;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(178, 193, 212, 0.2), transparent 20%),
    radial-gradient(circle at 84% 8%, rgba(84, 107, 130, 0.18), transparent 21%),
    linear-gradient(180deg, #10161e 0%, #090f17 32%, #070c14 100%);
}

body::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 46px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.008) 0 1px,
      transparent 1px 36px
    );
  opacity: 0.36;
}

.site-header .header-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 13, 19, 0.92), rgba(3, 5, 8, 0.9)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 22px 48px rgba(0, 0, 0, 0.52);
}

.site-nav a {
  letter-spacing: 0.11em;
  font-size: 0.86rem;
  color: rgba(232, 240, 249, 0.82);
}

.site-nav a::after {
  height: 2px;
  bottom: -0.22rem;
  background: linear-gradient(90deg, transparent, var(--vintage-brass), transparent);
}

.eyebrow,
.hero-countdown-title,
.hero-spotlight span,
.editorial-label,
.timeline-day-header span {
  color: var(--vintage-brass);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      104deg,
      transparent 0 22%,
      rgba(255, 255, 255, 0.035) 22% 24%,
      transparent 24% 26%,
      rgba(170, 184, 204, 0.08) 26% 27%,
      transparent 27% 100%
    );
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 8.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0) 0%, rgba(7, 12, 20, 0.9) 82%, rgba(7, 12, 20, 1) 100%);
  z-index: 0;
}

.hero-layout {
  z-index: 1;
}

.button-primary {
  border-color: rgba(170, 184, 204, 0.52);
  background: linear-gradient(135deg, #d6e0ee, var(--vintage-copper));
  color: #161f2a;
  box-shadow: 0 14px 26px rgba(118, 132, 152, 0.32);
}

.button-secondary,
.lang-switch {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.countdown-value {
  color: var(--vintage-ivory);
}

.countdown-unit + .countdown-unit {
  border-left-color: rgba(170, 184, 204, 0.35);
}

.info-card,
.experience-item,
.visit-card {
  border-left-color: rgba(170, 184, 204, 0.55);
}

.timeline-day + .timeline-day {
  border-top-color: rgba(170, 184, 204, 0.24);
}

.timeline-marker::before {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(170, 184, 204, 0.38) 0 5px,
      transparent 5px 10px
    );
}

.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.gallery-card::after {
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 22, 0.78) 100%);
}

.partner-card img {
  filter: saturate(0.95) contrast(1.03);
}

.footer-top-link,
.footer-legal a {
  border-color: rgba(170, 184, 204, 0.34);
}

@media (max-width: 700px) {
  .site-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    position: relative;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    z-index: 62;
  }

  .site-nav {
    grid-column: 1 / -1;
    top: 100%;
    margin-top: 0;
    padding: 0.82rem 0.95rem 0.95rem;
    gap: 0.06rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(9, 12, 18, 0.97), rgba(3, 5, 8, 0.97)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(16px) saturate(120%);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0) scaleY(0.96);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0);
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease,
      clip-path 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scaleY(1);
    clip-path: inset(0 0 0 0);
  }

  .site-nav a,
  .site-nav .lang-switch-mobile {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
    transition:
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms ease;
  }

  .site-nav.is-open a,
  .site-nav.is-open .lang-switch-mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 40ms;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 62ms;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 84ms;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 106ms;
  }

  .site-nav.is-open a:nth-child(5) {
    transition-delay: 128ms;
  }

  .site-nav.is-open a:nth-child(6) {
    transition-delay: 150ms;
  }

  .site-nav.is-open .lang-switch-mobile {
    transition-delay: 172ms;
  }

  .site-nav a {
    justify-content: center;
    min-height: 2.7rem;
    padding: 0;
  }

  .lang-switch-desktop {
    display: none;
  }

  .site-nav .lang-switch-mobile {
    display: inline-flex;
    justify-self: center;
    margin-top: 0.5rem;
  }
}

/* Hero bottom fade refinement */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-media,
.hero-overlay,
.hero-ornaments {
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-media::after {
  background:
    linear-gradient(
      180deg,
      rgba(6, 10, 16, 0.14) 0%,
      rgba(6, 10, 16, 0.42) 42%,
      rgba(10, 15, 22, 0.52) 76%,
      rgba(16, 22, 30, 0.64) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 8, 13, 0.4) 0%,
      rgba(5, 8, 13, 0.14) 34%,
      rgba(5, 8, 13, 0.34) 100%
    );
}

.hero-ornaments {
  display: none;
}

.hero-overlay,
.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: none;
}

.intro-section {
  position: relative;
  margin-top: -8rem;
  padding-top: 14rem;
  z-index: 4;
  isolation: isolate;
}

.intro-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8rem;
  height: 16rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 25, 0) 0%,
    rgba(11, 17, 25, 0.18) 24%,
    rgba(11, 17, 25, 0.44) 48%,
    rgba(11, 17, 25, 0.74) 70%,
    rgba(11, 17, 25, 0.92) 86%,
    rgba(11, 17, 25, 1) 100%
  );
  z-index: 0;
}

.intro-section > .container {
  position: relative;
  z-index: 1;
}

/* Mobile nav + language switch redesign */
@media (max-width: 980px) {
  .intro-section {
    margin-top: -5rem;
    padding-top: 10.8rem;
  }

  .intro-section::before {
    top: -5rem;
    height: 11rem;
  }

  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.62rem 0.88rem;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
      rgba(5, 8, 13, 0.9);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
  }

  .nav-toggle span {
    width: 1.18rem;
    height: 2px;
    border-radius: 2px;
    background: rgba(227, 236, 246, 0.96);
  }

  .site-nav {
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    align-items: stretch;
    padding: 0.85rem 0.92rem 0.95rem;
    gap: 0.08rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 16px 16px;
    background:
      linear-gradient(180deg, rgba(9, 13, 20, 0.97), rgba(5, 8, 13, 0.97)),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0) 22%,
        rgba(255, 255, 255, 0) 78%,
        rgba(255, 255, 255, 0.08)
      );
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px) saturate(112%);
    -webkit-backdrop-filter: blur(10px) saturate(112%);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transform-origin: top center;
    clip-path: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    max-height: 32rem;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 2.8rem;
    margin: 0.14rem 0;
    padding: 0 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(170, 184, 204, 0.12);
    border-color: rgba(170, 184, 204, 0.34);
  }

  .site-nav a,
  .site-nav .lang-switch-mobile {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
    transition:
      transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms ease;
  }

  .site-nav.is-open a,
  .site-nav.is-open .lang-switch-mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-nav .lang-switch-mobile {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.36rem;
    padding: 0.32rem;
    margin-top: 0.62rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav .lang-switch-mobile .lang-button {
    width: 100%;
    min-width: 0;
    min-height: 2.4rem;
    padding: 0;
    border-radius: 9px;
    border: 1px solid transparent;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
  }

  .site-nav .lang-switch-mobile .lang-button.is-active {
    border-color: rgba(170, 184, 204, 0.35);
    box-shadow: 0 8px 16px rgba(118, 132, 152, 0.2);
  }

  body::before,
  body::after {
    display: none;
  }
}

img[data-parallax],
.hero-orb,
.hero-ring {
  transition: none;
}

/* Odometer style countdown (km counter look) */
.hero-countdown .countdown {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.38rem;
}

.hero-countdown .countdown-unit {
  min-width: 0;
  min-height: auto;
  padding: 0.26rem 0.34rem 0.12rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.hero-countdown .countdown-unit + .countdown-unit {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-countdown .countdown-scale,
.hero-countdown .countdown-needle {
  display: none;
}

.hero-countdown .countdown-readout {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
}

.hero-countdown .countdown-value {
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  font-size: clamp(1.7rem, 4.4vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.hero-countdown .odometer-window {
  position: relative;
  width: 0.7em;
  height: 1.04em;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(7, 11, 17, 0.86), rgba(4, 7, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.24);
}

.hero-countdown .odometer-window::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-countdown .odometer-reel {
  display: grid;
  grid-auto-rows: 1.04em;
  width: 100%;
  height: 100%;
  transform: translateY(calc(var(--odometer-index, 0) * -1.04em));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-countdown .odometer-reel > span {
  display: grid;
  place-items: center;
  height: 1.04em;
}

.hero-countdown .countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .hero-countdown .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 0.24rem;
  }

  .hero-countdown .countdown-unit {
    min-height: auto;
    padding: 0.24rem 0.26rem 0.1rem;
  }

  .hero-countdown .countdown-unit + .countdown-unit {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 700px) {
  .hero-countdown .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.2rem;
  }

  .hero-countdown .countdown-unit {
    min-height: auto;
    padding: 0.16rem 0.2rem 0.06rem;
  }

  .hero-countdown .countdown-value {
    gap: 0.1rem;
    font-size: clamp(1.08rem, 5.4vw, 1.45rem);
  }

  .hero-countdown .odometer-window {
    width: 0.66em;
    height: 1em;
    border-radius: 4px;
  }

  .hero-countdown .countdown-label {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
}

/* Make event date line in hero clearly visible */
#hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: min(92vw, 44rem);
  padding: 0.5rem 1rem;
  margin-bottom: 0.3rem;
  border: 1px solid rgba(206, 219, 236, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(24, 34, 47, 0.78), rgba(10, 16, 25, 0.82)),
    linear-gradient(90deg, rgba(206, 219, 236, 0.16), rgba(206, 219, 236, 0));
  color: #dce6f2;
  font-size: clamp(0.92rem, 1.55vw, 1.14rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: none;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

#hero-kicker .hero-kicker-line {
  display: inline;
}

#hero-kicker .hero-kicker-prefix {
  opacity: 0.96;
}

#hero-kicker .hero-kicker-date,
#hero-kicker .hero-kicker-line-date {
  font-size: clamp(1.06rem, 2.2vw, 1.36rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #f5f9ff;
}

@media (max-width: 700px) {
  .hero-copy {
    gap: 0.66rem;
  }

  .hero-meta {
    gap: 0.18rem;
  }

  .hero-spotlight {
    padding: 0.64rem 0.82rem;
  }

  .hero-stats {
    gap: 0.42rem;
  }

  .hero-countdown {
    gap: 0.44rem;
  }

  #hero-kicker {
    max-width: 100%;
    padding: 0.46rem 0.76rem;
    font-size: clamp(0.78rem, 3.35vw, 0.94rem);
    letter-spacing: 0.06em;
    line-height: 1.3;
    flex-direction: column;
    gap: 0.08rem;
  }

  #hero-kicker .hero-kicker-line {
    display: block;
  }

  #hero-kicker .hero-kicker-line-date {
    font-size: clamp(0.96rem, 4.15vw, 1.14rem);
    letter-spacing: 0.05em;
  }
}

.partners-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.partners-all-link {
  min-width: min(100%, 20rem);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.gallery-all-link {
  min-width: min(100%, 20rem);
}

body.sponsors-page-body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 6%, rgba(186, 198, 214, 0.16), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(94, 121, 156, 0.17), transparent 23%),
    linear-gradient(180deg, #0b1119 0%, #070c14 100%);
}

.sponsors-main {
  padding: 7.2rem 0 3.4rem;
}

.sponsors-shell {
  width: var(--container);
  margin: 0 auto;
}

.sponsors-hero {
  margin-bottom: 2rem;
}

.sponsors-back {
  display: inline-flex;
  margin-bottom: 1rem;
}

.sponsors-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
}

.sponsors-lead {
  margin: 0.9rem 0 0;
  max-width: 50rem;
  color: var(--muted);
}

.sponsors-list-section {
  padding-top: 1rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.6rem, 1fr));
  gap: 0.9rem;
}

.sponsor-entry {
  display: grid;
  gap: 0.62rem;
  align-content: start;
  min-height: 11.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(11, 17, 25, 0.86);
}

.sponsor-entry.is-clickable {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sponsor-entry.is-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.sponsor-entry.is-clickable:focus-visible {
  outline: 2px solid rgba(232, 240, 250, 0.72);
  outline-offset: 2px;
}

.sponsor-entry-logo {
  width: 100%;
  min-height: 3.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.sponsor-entry-logo img {
  width: 100%;
  max-width: 9.5rem;
  height: 3.2rem;
  object-fit: contain;
}

.sponsor-entry-name {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(235, 242, 250, 0.9);
  line-height: 1.35;
}

.sponsor-entry-address {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(214, 223, 235, 0.72);
}

.sponsor-entry-address-line {
  display: block;
}

.sponsor-entry.is-text-only .sponsor-entry-logo {
  display: none;
}

/* Force all sponsor logos into white boxes (home + sponsors page) */
.partners-section .partner-card {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  padding: 0.52rem 0.62rem 0.46rem !important;
}

.partners-section .partner-card img {
  width: min(10.4rem, 100%);
  max-width: 100%;
  height: clamp(5.4rem, 7.6vw, 6.3rem);
  padding: clamp(0.2rem, 0.44vw, 0.3rem) clamp(0.2rem, 0.58vw, 0.38rem);
  border: 1px solid rgba(8, 12, 18, 0.24) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18) !important;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  filter: none !important;
  display: block;
}

.sponsors-page-body .sponsor-entry-logo {
  min-height: clamp(5.6rem, 7.8vw, 6.6rem);
  height: clamp(5.6rem, 7.8vw, 6.6rem);
  padding: clamp(0.2rem, 0.44vw, 0.3rem) clamp(0.2rem, 0.58vw, 0.38rem);
  border: 1px solid rgba(8, 12, 18, 0.24) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18) !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.sponsors-page-body .sponsor-entry-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 0;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: inherit;
}

@media (max-width: 700px) {
  .partners-section .partner-card img {
    height: clamp(5.9rem, 19vw, 7rem);
  }

  .sponsors-page-body .sponsor-entry-logo {
    min-height: clamp(6rem, 20vw, 7.2rem);
    height: clamp(6rem, 20vw, 7.2rem);
  }
}

/* Separate copyright/hosting row from footer main content */
.site-footer .footer-credit-shell {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer .footer-copyright {
  color: rgba(235, 242, 250, 0.68);
}

body.all-gallery-page-body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 6%, rgba(186, 198, 214, 0.16), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(94, 121, 156, 0.17), transparent 23%),
    linear-gradient(180deg, #0b1119 0%, #070c14 100%);
}

.all-gallery-main {
  padding: 7.2rem 0 3.4rem;
}

.all-gallery-shell {
  width: var(--container);
  margin: 0 auto;
}

.all-gallery-hero {
  margin-bottom: 1.8rem;
}

.all-gallery-back {
  display: inline-flex;
  margin-bottom: 1rem;
}

.all-gallery-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
}

.all-gallery-lead {
  margin: 0.9rem 0 0;
  max-width: 52rem;
  color: var(--muted);
}

.all-gallery-filters {
  justify-content: flex-start;
  margin-top: 1rem;
}

.all-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.8rem, 1fr));
  gap: 0.7rem;
}

.all-gallery-item {
  margin: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 12, 18, 0.78);
}

.all-gallery-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.all-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 9.8rem;
  max-height: 13.2rem;
  object-fit: cover;
}

@media (max-width: 700px) {
  .gallery-all-link,
  .partners-all-link {
    width: 100%;
  }

  .sponsors-main {
    padding-top: 6.5rem;
  }

  .all-gallery-main {
    padding-top: 6.5rem;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .all-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
  }
}

/* Legal pages */
.legal-main {
  padding: 8.6rem 0 3.6rem;
}

.legal-shell {
  width: var(--container);
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 1.6rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1rem;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
}

.legal-intro {
  margin: 0.95rem 0 0;
  max-width: 58rem;
  color: var(--muted);
}

.legal-section + .legal-section {
  margin-top: 1rem;
}

.legal-section .legal-shell {
  padding: 1.18rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 18, 0.72);
}

.legal-section h2 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.legal-section h3 {
  margin: 0.92rem 0 0.38rem;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-family: var(--font-display);
  color: var(--text);
}

.legal-section p,
.legal-section li {
  margin: 0.32rem 0;
  color: rgba(230, 238, 248, 0.88);
}

.legal-section ul {
  margin: 0.45rem 0 0;
  padding-left: 1.25rem;
}

/* Map consent */
.map-card {
  position: relative;
}

.map-consent-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.6rem;
  padding: 1.1rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 11, 17, 0.9), rgba(7, 11, 17, 0.96)),
    rgba(7, 11, 17, 0.94);
  z-index: 2;
}

.map-consent-overlay.is-hidden {
  display: none;
}

.map-consent-overlay-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}

.map-consent-overlay-text {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-consent-overlay .button {
  min-height: 2.4rem;
  font-size: 0.72rem;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 95;
  max-height: calc(100dvh - 1.8rem);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cookie-consent-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1rem;
  max-height: 100%;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(9, 13, 20, 0.96), rgba(5, 8, 13, 0.96)),
    rgba(5, 8, 13, 0.96);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px) saturate(114%);
  -webkit-backdrop-filter: blur(12px) saturate(114%);
}

.cookie-consent-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--text);
}

.cookie-consent-text {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-consent-actions,
.cookie-consent-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.82rem;
}

.cookie-consent-actions .button,
.cookie-consent-preferences-actions .button {
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  font-size: 0.72rem;
}

.cookie-consent-preferences {
  display: none;
  margin-top: 0.86rem;
  padding-top: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-consent.is-settings-open .cookie-consent-preferences {
  display: grid;
  gap: 0.65rem;
}

.cookie-consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.cookie-consent-option input {
  margin-top: 0.24rem;
}

.cookie-consent-option strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.cookie-consent-option small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.35;
}

.cookie-manage-button {
  position: fixed;
  right: 0.9rem;
  bottom: calc(0.9rem + 1px);
  z-index: 94;
  width: 2.7rem;
  height: 2.7rem;
  min-height: 0;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(7, 11, 17, 0.88);
  color: var(--text);
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
  line-height: 0;
  overflow: hidden;
  cursor: pointer;
}

.cookie-manage-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.14rem;
  height: 1.14rem;
  transform: translate(-50%, -50%);
  background:
    center / 1.14rem 1.14rem no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16' stroke='%23E2ECF9' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='9' cy='7' r='2' fill='%23E2ECF9'/%3E%3Ccircle cx='15' cy='12' r='2' fill='%23E2ECF9'/%3E%3Ccircle cx='11' cy='17' r='2' fill='%23E2ECF9'/%3E%3C/svg%3E");
}

@media (max-width: 700px) {
  .legal-main {
    padding-top: 7.3rem;
  }

  .legal-section .legal-shell {
    padding: 0.92rem;
  }

  .cookie-consent {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    top: calc(env(safe-area-inset-top, 0px) + 0.55rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.1rem);
  }

  .cookie-consent-inner {
    padding: 0.82rem;
    border-radius: 13px;
  }

  .cookie-manage-button {
    right: 0.55rem;
    bottom: 0.55rem;
  }
}

/* Final cinematic transition: hero -> intro section */
:root {
  --hero-transition-base: #0b1119;
  --hero-transition-mid: #0a1018;
  --hero-transition-deep: #080d15;
  --hero-fade-height: clamp(8rem, 17vw, 14rem);
  --intro-wash-height: clamp(18rem, 32vw, 26rem);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-transition-base);
}

.hero-media,
.hero-overlay,
.hero-ornaments {
  -webkit-mask-image: none;
  mask-image: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--hero-fade-height);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 25, 0) 0%,
    rgba(11, 17, 25, 0.18) 28%,
    rgba(11, 17, 25, 0.46) 52%,
    rgba(11, 17, 25, 0.78) 76%,
    rgba(11, 17, 25, 0.96) 92%,
    var(--hero-transition-base) 100%
  );
}

.hero-layout,
.hero-copy {
  position: relative;
  z-index: 3;
}

.intro-section {
  position: relative;
  margin-top: 0;
  padding-top: clamp(4.8rem, 7vw, 6.6rem);
  background: transparent;
  border-top: 0 !important;
  box-shadow: none;
  filter: none;
  isolation: auto;
}

.intro-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--intro-wash-height);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--hero-transition-base) 0%,
    rgba(10, 16, 24, 0.88) 26%,
    rgba(10, 16, 24, 0.56) 52%,
    rgba(8, 13, 21, 0.24) 76%,
    rgba(8, 13, 21, 0) 100%
  );
}

.hero + .intro-section {
  margin-top: 0;
}

.intro-section > .container {
  position: relative;
  z-index: 1;
}

main > .section,
main > .hero {
  border-top: 0 !important;
}

@media (max-width: 980px) {
  :root {
    --hero-fade-height: clamp(6.8rem, 20vw, 11rem);
    --intro-wash-height: clamp(14rem, 34vw, 20rem);
  }

  .intro-section {
    padding-top: clamp(4.3rem, 8vw, 5.8rem);
  }
}

@media (max-width: 700px) {
  :root {
    --hero-fade-height: clamp(5.8rem, 24vw, 8.6rem);
    --intro-wash-height: clamp(11rem, 38vw, 16rem);
  }

  .intro-section {
    padding-top: clamp(3.9rem, 9vw, 5rem);
  }
}

/* Final tuning: footer credit, larger desktop counter, better mobile spacing + schedule look */
.site-footer .footer-credit-link {
  font-size: 0.84rem;
  letter-spacing: 0.09em;
}

@media (min-width: 981px) {
  .site-footer .footer-credit-link {
    font-size: 0.9rem;
    letter-spacing: 0.095em;
  }

  .site-footer .footer-credit-link img {
    height: 1.52rem;
  }

  .hero-countdown .countdown {
    width: min(860px, 100%);
    gap: 0.34rem;
  }

  .hero-countdown .countdown-value {
    font-size: clamp(2.3rem, 5.6vw, 3.45rem);
  }

  .hero-countdown .odometer-window {
    width: 0.8em;
    height: 1.12em;
    border-radius: 6px;
  }

  .hero-countdown .countdown-label {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 700px) {
  :root {
    --mobile-content-gap: 16px;
  }

  body {
    padding-left: 0;
    padding-right: 0;
  }

  main,
  .site-footer,
  .sponsors-main,
  .all-gallery-main,
  .legal-main {
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    left: 0;
    right: 0;
  }

  .container:not(.header-inner),
  .hero-layout,
  .site-footer .footer-credit-shell,
  .sponsors-shell,
  .all-gallery-shell,
  .legal-shell {
    width: min(1300px, calc(100% - (2 * var(--mobile-content-gap))));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header .header-inner {
    width: 100%;
    margin-inline: 0;
    border-left: 0;
    border-right: 0;
    padding-inline: 0.62rem;
  }

  body::before,
  body::after {
    display: block;
  }

  .hero-countdown {
    margin-top: -0.3rem;
    transform: translateY(-5px);
  }

  .hero-copy {
    width: 100%;
    gap: 0.54rem;
    justify-items: center;
    text-align: center;
  }

  .hero-meta {
    gap: 0.14rem;
    margin-bottom: -0.06rem;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    display: grid;
    justify-items: center;
    text-align: center;
    text-wrap: balance;
  }

  .hero-title-line {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-title-line + .hero-title-line {
    margin-top: 0.02em;
  }

  .hero-title-accent {
    display: inline-block;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .hero-spotlight,
  .hero-stats {
    display: none;
  }

  .hero-countdown .countdown {
    gap: 0.2rem;
  }

  .hero-countdown-title {
    margin-top: 25px;
  }

  .hero-countdown .countdown-unit {
    padding: 0.2rem 0.24rem 0.08rem;
  }

  .hero-countdown .countdown-value {
    font-size: clamp(1.3rem, 6.8vw, 1.9rem);
  }

  .hero-countdown .odometer-window {
    width: 0.74em;
    height: 1.1em;
    border-radius: 5px;
  }

  .hero-countdown .countdown-label {
    font-size: 0.56rem;
    letter-spacing: 0.09em;
  }

  #hero-secondary {
    display: none !important;
  }

  .schedule-section .timeline {
    gap: 0.9rem;
  }

  .schedule-section .timeline-day {
    padding: 0.92rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
      rgba(8, 13, 20, 0.56);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .schedule-section .timeline-day + .timeline-day {
    margin-top: 0.7rem;
    padding-top: 0.92rem;
    border-top: 0;
  }

  .schedule-section .timeline-day-header {
    margin-bottom: 0.7rem;
    padding-bottom: 0.52rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .schedule-section .timeline-day-header span {
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    color: rgba(207, 218, 233, 0.86);
  }

  .schedule-section .timeline-day-header strong {
    font-size: clamp(1.12rem, 5vw, 1.32rem);
  }

  .schedule-section .timeline-entry {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.46rem 0.62rem;
    align-items: center;
    padding: 0.46rem 0.52rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
  }

  .schedule-section .timeline-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.2rem;
    min-height: 1.85rem;
    padding: 0 0.52rem;
    border: 1px solid rgba(186, 198, 214, 0.45);
    border-radius: 999px;
    background: rgba(8, 13, 20, 0.62);
    color: #e5edf8;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .schedule-section .timeline-marker {
    display: none;
  }

  .schedule-section .timeline-text {
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .site-footer .footer-legal {
    gap: 0.3rem 0.52rem;
  }

  .site-footer .footer-legal a {
    min-height: auto;
    padding: 0.22rem 0.08rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(220, 230, 243, 0.78);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-footer .footer-legal a:hover,
  .site-footer .footer-legal a:focus-visible {
    transform: none;
    border-color: transparent;
    color: rgba(236, 243, 251, 0.92);
  }
}

@media (max-width: 980px) {
  body {
    background:
      radial-gradient(circle at 16% 8%, rgba(186, 198, 214, 0.14), transparent 24%),
      radial-gradient(circle at 88% 16%, rgba(72, 93, 124, 0.18), transparent 22%),
      radial-gradient(circle at 14% 68%, rgba(186, 198, 214, 0.1), transparent 18%),
      linear-gradient(180deg, #091018 0%, #060a10 22%, #04070c 100%);
  }

  body::before,
  body::after {
    display: block;
  }
}

/* Revert chrome heading style outside hero: keep headings white */
.section-heading h2,
.experience-copy h2,
.visit-copy h2,
.sponsors-title,
.all-gallery-title,
.legal-shell h1,
.legal-shell h2 {
  color: #eef4fb;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  background-image: none;
  background-size: auto;
  background-position: 0 0;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

/* Subtle technical / oldtimer blueprint motifs in the global background */
body::before {
  background:
    radial-gradient(circle at 12% 22%, transparent 0 44px, rgba(186, 198, 214, 0.06) 44px 45px, transparent 45px 72px, rgba(186, 198, 214, 0.045) 72px 73px, transparent 73px),
    radial-gradient(circle at 86% 74%, transparent 0 54px, rgba(186, 198, 214, 0.055) 54px 55px, transparent 55px 88px, rgba(186, 198, 214, 0.04) 88px 89px, transparent 89px),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(255, 255, 255, 0.016) 79px, rgba(255, 255, 255, 0.016) 80px),
    repeating-linear-gradient(0deg, transparent 0, transparent 57px, rgba(255, 255, 255, 0.012) 57px, rgba(255, 255, 255, 0.012) 58px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.014), transparent);
  opacity: 0.44;
}

/* Final mobile navigation override: right-side drawer, left-aligned links */
@media (max-width: 980px) {
  .site-header .header-inner {
    position: relative;
    z-index: 82;
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    z-index: 84;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 83;
    width: min(88vw, 22rem);
    margin: 0;
    min-height: 100dvh;
    padding: calc(env(safe-area-inset-top, 0px) + 4.9rem) 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.22rem;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(6, 9, 15, 0.985), rgba(4, 7, 11, 0.985)),
      linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.07));
    box-shadow: -28px 0 58px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
    opacity: 1;
    pointer-events: none;
    transform: translate3d(104%, 0, 0);
    transform-origin: right center;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    clip-path: none;
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 3rem;
    margin: 0;
    padding: 0 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.08em;
    font-size: 0.76rem;
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(186, 198, 214, 0.13);
    border-color: rgba(186, 198, 214, 0.34);
  }

  .site-nav a,
  .site-nav .lang-switch-mobile {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav .lang-switch-mobile {
    display: grid;
    width: 100%;
    margin-top: 0.72rem;
    padding: 0.72rem 0 0;
    gap: 0.38rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
  }

  .site-nav .lang-switch-mobile .lang-button {
    min-height: 2.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.1em;
  }
}

/* Embedded privacy view for form popup */
html.privacy-embed .site-header,
html.privacy-embed .site-footer {
  display: none !important;
}

html.privacy-embed .legal-main {
  padding: 1rem 0 1.2rem !important;
}

html.privacy-embed .legal-hero {
  margin-bottom: 1rem;
}

html.privacy-embed .legal-back {
  display: none !important;
}

html.privacy-embed .legal-shell {
  width: min(1000px, calc(100% - 1.25rem));
}

/* Global text hover polish (desktop only) */
@media (hover: hover) and (pointer: fine) {
  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(h1, h2, h3),
  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(.timeline-day-header strong, .experience-item strong, .partner-card strong) {
    transition:
      color 220ms ease,
      text-shadow 260ms ease,
      filter 260ms ease;
  }

  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(p, li, .section-lead, .timeline-text, .experience-item span, .visit-card p, .partner-card span, .sponsor-entry-name) {
    transition: color 200ms ease, text-shadow 240ms ease;
  }

  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(h1, h2, h3):hover,
  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(.timeline-day-header strong, .experience-item strong, .partner-card strong):hover {
    color: #f7fbff;
    filter: brightness(1.08) saturate(1.06);
    text-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 20px rgba(190, 206, 226, 0.28);
  }

  .section-heading h2:hover,
  .experience-copy h2:hover,
  .visit-copy h2:hover,
  .sponsors-title:hover,
  .all-gallery-title:hover,
  .legal-shell h1:hover,
  .legal-shell h2:hover {
    filter: brightness(1.14) saturate(1.08);
    text-shadow:
      0 14px 30px rgba(0, 0, 0, 0.36),
      0 0 26px rgba(201, 215, 235, 0.34);
  }

  /* Hero heading: glow-only hover, no movement and no spacing shift */
  .hero h1 {
    transition:
      filter 240ms ease,
      text-shadow 260ms ease,
      color 220ms ease,
      background-position 520ms ease;
  }

  .hero h1:hover,
  .hero h1:focus-visible {
    transform: none;
    letter-spacing: -0.05em;
    filter: brightness(1.3) saturate(1.16);
    animation: hero-headline-flash 720ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    text-shadow:
      0 10px 24px rgba(0, 0, 0, 0.34),
      0 0 30px rgba(207, 220, 238, 0.56),
      0 0 52px rgba(171, 193, 220, 0.42);
  }

  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero h1:hover,
    .hero h1:focus-visible {
      color: transparent;
      background-image:
        linear-gradient(
          180deg,
          #ffffff 0%,
          #f6fbff 9%,
          #b1bccd 24%,
          #6b7789 40%,
          #f2f8ff 54%,
          #556171 70%,
          #d9e3f1 84%,
          #ffffff 100%
        ),
        linear-gradient(
          104deg,
          rgba(255, 255, 255, 0) 18%,
          rgba(255, 255, 255, 0.98) 39%,
          rgba(255, 255, 255, 0.18) 53%,
          rgba(255, 255, 255, 0.92) 65%,
          rgba(255, 255, 255, 0) 84%
        ),
        linear-gradient(
          90deg,
          rgba(38, 46, 56, 0) 11%,
          rgba(38, 46, 56, 0.58) 34%,
          rgba(38, 46, 56, 0.08) 51%,
          rgba(38, 46, 56, 0.54) 67%,
          rgba(38, 46, 56, 0) 90%
        );
      background-size: 100% 100%, 260% 100%, 220% 100%;
      background-position: 0 50%, 138% 50%, -28% 50%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation:
        hero-headline-flash 720ms cubic-bezier(0.22, 1, 0.36, 1) 1 both,
        hero-headline-chrome 1180ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    }
  }

  .hero h1:hover .hero-title-accent,
  .hero h1:focus-visible .hero-title-accent {
    text-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 16px rgba(190, 206, 226, 0.2);
  }

  :is(.hero, .section, .legal-main, .sponsors-main, .all-gallery-main) :is(p, li, .section-lead, .timeline-text, .experience-item span, .visit-card p, .partner-card span, .sponsor-entry-name):hover {
    color: rgba(238, 246, 255, 0.96);
    text-shadow: 0 0 12px rgba(190, 206, 226, 0.12);
  }

  .site-footer :is(.footer-title, #footer-copy, .footer-copyright, .footer-credit-link span, .footer-legal a) {
    transition: color 200ms ease, text-shadow 240ms ease;
  }

  .site-footer :is(.footer-title, #footer-copy, .footer-copyright, .footer-credit-link span, .footer-legal a):hover {
    color: #f1f7ff;
    text-shadow: 0 0 12px rgba(190, 206, 226, 0.16);
  }
}

/* Remove empty kicker labels and add modern heading underline */
.eyebrow:empty,
.editorial-label:empty {
  display: none;
}

.section-heading h2,
.experience-copy h2,
.visit-copy h2,
.sponsors-title,
.all-gallery-title,
.legal-shell h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.46rem;
}

.section-heading h2::after,
.experience-copy h2::after,
.visit-copy h2::after,
.sponsors-title::after,
.all-gallery-title::after,
.legal-shell h1::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(184, 198, 216, 0) 0%,
      rgba(184, 198, 216, 0.12) 22%,
      rgba(238, 245, 254, 0.18) 50%,
      rgba(184, 198, 216, 0.12) 78%,
      rgba(184, 198, 216, 0) 100%
    );
  box-shadow: none;
  opacity: 0.72;
}

/* Story copy: modern side line next to text blocks */
.story-grid .editorial-copy {
  position: relative;
  padding-left: 1.02rem;
}

.story-grid .editorial-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  bottom: 0.52rem;
  width: 1px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(184, 198, 216, 0.03) 0%,
      rgba(231, 240, 252, 0.16) 42%,
      rgba(184, 198, 216, 0.04) 100%
    );
  box-shadow: none;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .story-grid .editorial-copy {
    padding-left: 0.82rem;
  }

  .story-grid .editorial-copy::before {
    top: 0.4rem;
    bottom: 0.4rem;
  }
}
