@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gravity-night: #07141F;
  --gravity-petrol: #0B3538;
  --gravity-teal: #16A9A6;
  --gravity-brass: #C99A48;
  --gravity-copper: #A96036;
  --gravity-cream: #F1E8D8;
  --gravity-white: #F6F7F5;
  --gravity-text-dark-muted: #596160;
  --gravity-text-light-muted: #AAB6B5;
  --gravity-radius-small: 6px;
  --gravity-radius-medium: 10px;
  --gravity-content-width: 1440px;
  --gravity-text-width: 680px;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(88px, 10vw, 144px);
  --header-h: 84px;
  --gravity-font-body: "Manrope", "Inter", system-ui, sans-serif;
  --gravity-font-display: "Sora", "Manrope", system-ui, sans-serif;
}

}*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--gravity-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--gravity-white);
  background: var(--gravity-night);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body:not(:has(.hero)):not(:has(.page-hero)) {
  padding-top: var(--header-h);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--gravity-font-display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gravity-teal); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--gravity-brass);
  color: var(--gravity-night);
  padding: 10px 16px;
  border-radius: var(--gravity-radius-small);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.prose { max-width: var(--gravity-text-width); }
.prose h2 {
  font-size: clamp(28px, 2.5vw, 36px);
  margin: 36px 0 12px;
}
.section { padding: var(--section) 0; position: relative; overflow: visible; }
.section--petrol { background: var(--gravity-petrol); }
.section--tight { padding: clamp(80px, 8vw, 110px) 0; }

.media-row { width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.has-media--split-right .media-row,
.has-media--split-left .media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.has-media--split-left .media-row { direction: rtl; }
.has-media--split-left .media-row > * { direction: ltr; }
.has-media--band .media-row {
  display: grid;
  gap: 40px;
}
.section__photo { margin: 0; }
.section__photo:not(.section__photo--framed) img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  border-radius: 10px;
}
.section__photo--framed {
  max-width: 100%;
  margin: 0;
}
.picture-frame {
  display: block;
  position: relative;
  aspect-ratio: 1200 / 900;
  isolation: isolate;
  background: none;
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
}
.picture-frame__photo {
  position: absolute;
  left: 8.083%;
  top: 14.5%;
  width: 83.833%;
  height: 76%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  max-width: none;
  max-height: none;
  z-index: 0;
  transform-origin: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  a.picture-frame:hover .picture-frame__photo {
    transform: scale(1.04);
    filter: brightness(1.06) saturate(1.03);
  }
}
.picture-frame__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: fill;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
}
.has-media--band .section__photo {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.has-media--band .section__photo img {
  border-radius: 0;
  height: min(52vh, 560px);
  max-height: none;
}
.section__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.92);
}
.section.has-media--backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7, 20, 31, 0.62) 0%, rgba(7, 20, 31, 0.86) 100%);
  pointer-events: none;
}
.section.section--petrol.has-media--backdrop::after {
  background: linear-gradient(180deg, rgba(11, 53, 56, 0.58) 0%, rgba(7, 20, 31, 0.82) 100%);
}
.section.has-media--backdrop > .wrap,
.section.has-media--backdrop > .media-row {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--gravity-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gravity-teal);
  margin-bottom: 18px;
}
.eyebrow--brass { color: var(--gravity-brass); }
.section-title {
  font-size: clamp(38px, 4.6vw, 64px);
  margin-bottom: 24px;
}
.section-title--tight {
  max-width: calc(100% - 30px);
}
.lead { font-size: 20px; color: var(--gravity-cream); }
.muted { color: var(--gravity-text-light-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--gravity-radius-small);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gravity-brass); color: var(--gravity-night); }
.btn--primary:hover { background: #d4ab5c; }
.btn--ghost { background: transparent; border-color: rgba(246, 247, 245, 0.28); color: var(--gravity-white); }
.btn--ghost:hover { border-color: var(--gravity-cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gravity-cream);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--gravity-white); }
.text-link::after { content: "→"; transition: transform 0.2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  background: rgba(7, 20, 31, 0.88);
  backdrop-filter: blur(16px);
}
.site-header.is-hero {
  background: transparent;
  backdrop-filter: none;
}
.site-header.is-hero.is-scrolled,
.site-header.is-solid {
  background: rgba(7, 20, 31, 0.88);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--gravity-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}
.wordmark span { color: var(--gravity-brass); }
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand img {
  height: 44px;
  width: auto;
  max-width: min(240px, 58vw);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--gravity-cream);
  opacity: 0.82;
}
.nav a:hover { opacity: 1; color: var(--gravity-white); }
.nav a.is-active {
  opacity: 1;
  color: var(--gravity-white);
}
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.lang-switch a { text-decoration: none; opacity: 0.45; transition: opacity 0.2s ease, color 0.2s ease; }
.lang-switch a:hover { opacity: 1; color: var(--gravity-white); }
.lang-switch a.is-active,
.lang-switch a.is-active:hover { opacity: 1; color: var(--gravity-brass); }
.lang-switch span { opacity: 0.3; }
.social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social__link {
  display: grid;
  place-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.social__link:focus-visible {
  outline: 2px solid var(--gravity-brass);
  outline-offset: 3px;
}
.site-header .social--header,
.coming-soon__tools .social--header {
  flex-shrink: 0;
}
.social--header .social__link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  isolation: isolate;
  background: #07141f;
  opacity: 0.96;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social--header .social__link:hover {
  opacity: 1;
  transform: scale(1.08);
}
.social--header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.social--footer {
  margin-top: 22px;
  gap: 10px;
}
.social--footer .social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 72, 0.4);
  color: var(--gravity-cream);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.social--footer .social__link:hover {
  border-color: var(--gravity-brass);
  color: var(--gravity-white);
  background: rgba(201, 154, 72, 0.14);
}
.social--footer svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gravity-white);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background: var(--gravity-night);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__media img {
  position: absolute;
  /* Headerfoto’s zijn 1280×853 met een 205×65 logo linksboven; zoom die hoek weg. */
  inset: auto 0 0 auto;
  width: calc(100% * 1280 / (1280 - 205));
  height: calc(100% * 853 / (853 - 65));
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transform-origin: 54% 42%;
  transition: opacity 1.2s ease;
}
.hero__media img.is-on {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__media:not([data-hero-rotate]) img.is-on {
    animation: hero-ken-in 22s ease-in-out infinite alternate;
  }
  .hero__media[data-hero-rotate] img.is-zoom-in {
    animation: hero-ken-in 8.5s ease-out forwards;
  }
  .hero__media[data-hero-rotate] img.is-zoom-out {
    animation: hero-ken-out 8.5s ease-out forwards;
  }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.28) 0%, rgba(7, 20, 31, 0.18) 38%, rgba(7, 20, 31, 0.92) 78%, var(--gravity-night) 100%),
    linear-gradient(0deg, var(--gravity-night) 0%, transparent 22%);
}
.hero__gear {
  position: absolute;
  right: -6%;
  bottom: -16%;
  z-index: 1;
  width: min(640px, 70vw);
  aspect-ratio: 1;
  opacity: 0.34;
  pointer-events: none;
}
.hero:not(.coming-soon) .hero__gear {
  width: min(1100px, 96vw);
  right: -14%;
  bottom: -26%;
  opacity: 0.42;
}
.page-hero .hero__gear {
  width: min(760px, 82vw);
  right: -12%;
  bottom: -24%;
  opacity: 0.38;
}
.hero__gear img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform-origin: 50% 50%;
  animation: spin 80s linear infinite;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 10vh, 120px);
}
.hero h1 {
  font-size: clamp(46px, 7vw, 118px);
  letter-spacing: -0.045em;
  max-width: 16ch;
}
.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.22em;
  row-gap: 0;
}
.hero-title__gravity {
  display: inline-flex;
  align-items: center;
}
.hero-title__v {
  font-size: 1.5em;
  line-height: 0.72;
  letter-spacing: -0.08em;
}
.hero-title__tower {
  display: inline-block;
}
.hero__byline {
  margin-top: 12px;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.55vw, 22px);
  color: var(--gravity-cream);
  letter-spacing: 0.01em;
}
.hero__claim {
  font-size: clamp(20px, 2vw, 28px);
  max-width: 28ch;
  margin-top: 18px;
  color: var(--gravity-cream);
}
.hero__claim strong {
  font-weight: 700;
  font-size: 1.12em;
  color: var(--gravity-white);
}
.hero__stats-line {
  margin-top: 18px;
  color: var(--gravity-brass);
  font-family: var(--gravity-font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: clamp(22px, 2.6vw, 38px);
  text-shadow: 0 0 22px rgba(201, 154, 72, 0.38);
}

.page-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 72px;
}
.page-hero .hero__media img { object-position: center 26%; }
.page-hero h1 { font-size: clamp(42px, 6vw, 88px); max-width: 14ch; }
.page-hero--wide h1 { max-width: 18ch; }

.dates-section { overflow: visible; }
.decor--dates {
  top: 10%;
  right: -8%;
  width: min(420px, 38vw);
  opacity: 0.22;
}
.dates-list { max-width: 920px; }
.dates-list__item {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: 10px 56px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(169, 96, 54, 0.4);
}
.dates-list__item:first-child { padding-top: 4px; }
.dates-list__when time {
  font-family: var(--gravity-font-display);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gravity-cream);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dates-list__badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px 4px;
  border: 1px solid rgba(201, 154, 72, 0.5);
  color: var(--gravity-brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  border-radius: 2px;
}
.dates-list__badge--now {
  border-color: rgba(22, 169, 166, 0.55);
  color: var(--gravity-teal);
}
.dates-list__place {
  font-family: var(--gravity-font-display);
  font-size: clamp(26px, 2.35vw, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dates-list__flag {
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(246, 247, 245, 0.14);
  background: rgba(7, 20, 31, 0.4);
}
.dates-list__flag svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dates-list__event {
  margin: 8px 0 0;
  color: var(--gravity-text-light-muted);
}
.dates-list__event a {
  color: var(--gravity-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dates-list__event a:hover { color: var(--gravity-white); }
.dates-list__ext {
  margin-left: 0.35em;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.dates-list__item:last-of-type {
  border-bottom: 0;
  padding-bottom: 8px;
}
.dates-list__more {
  position: relative;
  margin-top: 56px;
  padding: 8px 0 8px 0;
  max-width: 38ch;
}
.dates-list__more::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--gravity-brass), var(--gravity-teal));
}
.dates-list__more-kicker {
  margin: 0;
  font-family: var(--gravity-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gravity-brass);
}
.dates-list__more-title {
  margin: 12px 0 8px;
  font-family: var(--gravity-font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--gravity-white);
}
.dates-list__more-text {
  margin: 0;
  color: var(--gravity-text-light-muted);
}
.dates-list__more-gear {
  position: absolute;
  right: -118px;
  top: 4px;
  width: 128px;
  height: auto;
  max-width: none;
  opacity: 0.55;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: spin 80s linear infinite;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  border-top: 1px solid rgba(201, 154, 72, 0.25);
  border-bottom: 1px solid rgba(201, 154, 72, 0.25);
  padding: 56px 0;
}
.stat { text-align: left; overflow: visible; }
.stat__value {
  display: inline-block;
  font-family: var(--gravity-font-display);
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  color: var(--gravity-brass);
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-4deg);
  transform-origin: left bottom;
  text-shadow: 0 0 28px rgba(201, 154, 72, 0.28);
}
.stat__unit {
  display: inline-block;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 0.18em;
  vertical-align: 0.28em;
}
.stat-grid--fit {
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  column-gap: 0;
}
.stat-grid--fit .stat__value {
  font-size: clamp(26px, 2.8vw, 46px);
  letter-spacing: -0.03em;
}
.stat-grid .stat:nth-child(even) .stat__value {
  color: var(--gravity-teal);
  transform: rotate(3deg);
  text-shadow: 0 0 28px rgba(22, 169, 166, 0.28);
}
.stat-grid .stat:nth-child(3) .stat__value,
.stat-grid .stat:nth-child(4n+3) .stat__value {
  color: var(--gravity-brass);
  transform: rotate(-2.4deg);
  text-shadow: 0 0 28px rgba(201, 154, 72, 0.28);
}
.stat-grid .stat:nth-child(4n) .stat__value {
  color: var(--gravity-teal);
  transform: rotate(4deg);
  text-shadow: 0 0 28px rgba(22, 169, 166, 0.28);
}
.stat__label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gravity-cream);
}
.stat__value--punch {
  display: inline-block;
  color: var(--gravity-brass);
  transform: rotate(-3deg);
  transform-origin: left bottom;
  text-shadow: 0 0 28px rgba(201, 154, 72, 0.28);
  font-variant-numeric: tabular-nums;
}

.divider {
  display: block;
  width: min(1100px, 86%);
  height: auto;
  margin: 0 auto;
  opacity: 0.92;
}

.experiment {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}
.experiment__gauge {
  position: relative;
  min-width: 0;
  align-self: stretch;
}
.gauge {
  position: relative;
  top: 0;
  will-change: transform;
}
.gauge__art {
  position: relative;
  width: 100%;
  overflow: visible;
  --gauge-cx: 49.24%;
  --gauge-cy: 37.2%;
  --gauge-face: 33.3%;
  --gauge-needle: 27%;
  --gauge-hub-x: 45.09%;
  --gauge-hub-y: 52.68%;
  --gauge-rot: 171.62deg;
}
.gauge__base {
  width: 100%;
  height: auto;
  display: block;
}
.gauge__needle {
  position: absolute;
  left: var(--gauge-cx);
  top: var(--gauge-cy);
  width: var(--gauge-needle);
  height: auto;
  max-width: none;
  z-index: 1;
  transform-origin: var(--gauge-hub-x) var(--gauge-hub-y);
  transform: translate(-45.09%, -52.68%) rotate(var(--gauge-rot));
  pointer-events: none;
  will-change: transform;
}
.gauge__scale {
  position: absolute;
  left: var(--gauge-cx);
  top: var(--gauge-cy);
  width: var(--gauge-face);
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}
.gauge__num {
  fill: #241910;
  font-family: var(--gravity-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.gauge__unit {
  fill: #241910;
  font-family: var(--gravity-font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.phases { display: grid; gap: 28px; }
.phase {
  padding: 28px 0 28px 28px;
  border-left: 1px solid rgba(22, 169, 166, 0.35);
}
.phase__code {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gravity-brass);
  font-weight: 700;
  margin-bottom: 8px;
}
.phase h3 { font-size: clamp(28px, 2.4vw, 36px); margin-bottom: 12px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(11, 53, 56, 0.45);
  border: 1px solid rgba(246, 247, 245, 0.06);
  border-radius: var(--gravity-radius-medium);
  padding: 28px 24px;
}
.feature h3,
.feature p {
  position: relative;
  z-index: 1;
}
.feature h3 {
  font-size: 15px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  color: #e8c57a;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(7, 20, 31, 0.95),
    0 0 22px rgba(7, 20, 31, 0.85);
}
.feature p {
  color: var(--gravity-white);
  font-size: 16px;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.88),
    0 0 14px rgba(7, 20, 31, 0.9),
    0 0 24px rgba(7, 20, 31, 0.7);
}
.feature__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.92) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.92) 100%);
}
.feature__wash img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.feature--fog .feature__wash { opacity: 0.62; }
.feature--gears .feature__wash {
  inset: auto -6% -14% auto;
  width: 72%;
  aspect-ratio: 1;
  height: auto;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 78%);
}
.feature--gears .feature__wash img {
  object-fit: contain;
  object-position: center;
  transform-origin: 50% 50%;
  animation: spin 36s linear infinite;
}
.feature--sign .feature__wash { opacity: 0.62; }
.feature--audio .feature__wash { opacity: 0.55; }
.feature--fire .feature__wash { opacity: 0.38; }
.feature--fire .feature__wash img {
  object-position: center 30%;
  mix-blend-mode: screen;
}
.feature--water .feature__wash {
  overflow: hidden;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, #000 22%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, #000 22%, #000 70%, transparent 100%);
}
.feature--water .feature__wash img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 162%;
  max-height: none;
  mix-blend-mode: screen;
}
.feature--rgb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(125deg, #16A9A6, #3d7eff, #b14dff, #e4476f, #C99A48, #16A9A6);
  background-size: 280% 280%;
  opacity: 0.48;
  animation: rgb-shift 10s linear infinite;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spec {
  border-top: 1px solid rgba(201, 154, 72, 0.35);
  padding-top: 18px;
}
.spec strong {
  display: block;
  font-family: var(--gravity-font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--gravity-brass);
  transform: rotate(-3.2deg);
  transform-origin: left bottom;
  text-shadow: 0 0 22px rgba(201, 154, 72, 0.22);
  line-height: 1.1;
  white-space: pre-line;
}
.spec:nth-child(even) strong {
  color: var(--gravity-teal);
  transform: rotate(2.8deg);
  text-shadow: 0 0 22px rgba(22, 169, 166, 0.22);
}
.spec:nth-child(3) strong,
.spec:nth-child(4n+3) strong {
  color: var(--gravity-brass);
  transform: rotate(-2.2deg);
  text-shadow: 0 0 22px rgba(201, 154, 72, 0.22);
}
.spec:nth-child(4n) strong {
  color: var(--gravity-teal);
  transform: rotate(3.6deg);
  text-shadow: 0 0 22px rgba(22, 169, 166, 0.22);
}
.spec span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gravity-text-light-muted);
}
.spec .spec__note {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}
.spec-grid--plain .spec strong,
.spec-grid--plain .spec:nth-child(even) strong,
.spec-grid--plain .spec:nth-child(3) strong,
.spec-grid--plain .spec:nth-child(4n+3) strong,
.spec-grid--plain .spec:nth-child(4n) strong {
  transform: none;
}

.monitor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vehicle-list { display: grid; gap: 0; list-style: none; max-width: 720px; }
.vehicle-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 154, 72, 0.42);
  color: var(--gravity-cream);
}
.vehicle-list li:first-child {
  border-top: 1px solid rgba(201, 154, 72, 0.42);
}
.sustain-list { columns: 2; gap: 40px; list-style: none; max-width: 900px; }
.sustain-list li { break-inside: avoid; padding: 8px 0 8px 18px; position: relative; color: var(--gravity-cream); }
.sustain-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gravity-teal);
  position: absolute;
  left: 0;
  top: 16px;
}

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  background: rgba(7, 20, 31, 0.35);
  border: 1px solid rgba(201, 154, 72, 0.2);
  border-radius: var(--gravity-radius-medium);
  padding: 28px;
}
.contact-card h3 { font-size: 22px; margin-bottom: 10px; }
.contact-card a,
.feature a {
  color: var(--gravity-cream);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.feature a:hover { color: var(--gravity-white); }
main a[href^="tel:"]:hover,
main a[href^="mailto:"]:hover,
main a[href^="tel:"]:focus-visible,
main a[href^="mailto:"]:focus-visible {
  color: var(--gravity-brass);
  text-shadow: 0 0 18px rgba(201, 154, 72, 0.45);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  max-width: 860px;
}
.has-media--split-right .form,
.has-media--split-left .form {
  max-width: none;
}
.form .full { grid-column: 1 / -1; }
.form label { display: grid; gap: 8px; font-size: 14px; font-weight: 600; }
.form input, .form select, .form textarea {
  background: rgba(246, 247, 245, 0.04);
  border: 1px solid rgba(246, 247, 245, 0.14);
  border-radius: var(--gravity-radius-small);
  min-height: 52px;
  padding: 12px 14px;
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  color: var(--gravity-cream);
  background-color: #0B3538;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C99A48' d='M1.2 1.3L6 6.1l4.8-4.8 1.2 1.2L6 8.4 0 2.5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 42px;
  border-color: rgba(201, 154, 72, 0.45);
  cursor: pointer;
  color-scheme: dark;
}
.form select:hover {
  border-color: var(--gravity-brass);
}
.form select option,
.form select optgroup {
  color: #07141F;
  background-color: #F1E8D8;
}
.form textarea { min-height: 160px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-status { padding: 16px 18px; border-radius: var(--gravity-radius-small); margin-bottom: 20px; max-width: 860px; }
.form-status--ok { background: rgba(22, 169, 166, 0.16); border: 1px solid var(--gravity-teal); }
.form-status--err { background: rgba(169, 96, 54, 0.18); border: 1px solid var(--gravity-copper); }
.field-error { color: #e8b08a; font-size: 13px; font-weight: 500; }

.gallery-grid {
  columns: 3;
  gap: 16px;
}
.gallery-grid a {
  position: relative;
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 20, 31, 0.38) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease;
}
.gallery-grid a::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 20, 31, 0.72);
  border: 1px solid rgba(201, 154, 72, 0.62);
  color: var(--gravity-brass);
  font-family: var(--gravity-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.gallery-grid a:active img {
  transform: scale(1.045);
  filter: contrast(1.08) brightness(1.06) saturate(1.04);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-grid a::before,
  .gallery-grid a::after {
    opacity: 0;
  }
  .gallery-grid a:hover img,
  .gallery-grid a:focus-visible img {
    transform: scale(1.05);
    filter: contrast(1.1) brightness(1.07) saturate(1.06);
  }
  .gallery-grid a:hover::before,
  .gallery-grid a:focus-visible::before {
    opacity: 1;
    background: linear-gradient(180deg, rgba(7, 20, 31, 0.04) 40%, rgba(7, 20, 31, 0.42) 100%);
  }
  .gallery-grid a:hover::after,
  .gallery-grid a:focus-visible::after {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(11, 53, 56, 0.88);
  }
}
.gallery-videos { margin-top: 72px; scroll-margin-top: calc(var(--header-h) + 20px); }
.gallery-videos--solo { margin-top: 0; }
.gallery-videos .section-title { margin-bottom: 8px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.video-grid a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  color: inherit;
}
.video-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.video-grid a:hover img { transform: scale(1.04); }
.video-grid__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 20, 31, 0.28);
  pointer-events: none;
}
.video-grid__play::before,
.video-grid__play::after {
  grid-area: 1 / 1;
}
.video-grid__play::before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(201, 154, 72, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.video-grid__play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--gravity-night);
  margin-left: 4px;
}
.video-grid__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 31, 0.84));
  font-size: 14px;
  font-weight: 600;
  color: var(--gravity-cream);
}
.empty-state {
  border: 1px dashed rgba(201, 154, 72, 0.35);
  padding: 48px;
  border-radius: var(--gravity-radius-medium);
  color: var(--gravity-text-light-muted);
}

.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 31, 0.94);
  backdrop-filter: blur(16px);
  display: none;
  z-index: 80;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px 20px;
  gap: 12px;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
}
.lightbox figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.lightbox__stage img {
  max-width: min(1200px, 86vw);
  max-height: min(68vh, calc(100vh - 220px));
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox.is-video img { display: none; }
.lightbox__video {
  width: min(1200px, 86vw, calc(68vh * 16 / 9));
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: min(68vh, calc(100vh - 220px));
  border: 0;
  border-radius: 8px;
  background: #000;
}
.lightbox__video[hidden] { display: none !important; }
.lightbox__nav, .lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 31, 0.55);
  border: 1px solid rgba(246, 247, 245, 0.16);
  color: var(--gravity-white);
  font-size: 28px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 1;
  padding: 0;
}
.lightbox__prev,
.lightbox__next {
  padding-bottom: 5px;
}
.lightbox__nav[hidden] { display: none; }
.lightbox__close { position: absolute; top: 16px; right: 18px; font-size: 26px; z-index: 2; }
.lightbox__prev, .lightbox__next { flex: 0 0 auto; }
.lightbox figcaption {
  position: static;
  transform: none;
  margin-top: 12px;
  color: var(--gravity-cream);
  font-size: 14px;
  text-align: center;
  max-width: 60ch;
}
.lightbox__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: min(1100px, 94vw);
  padding: 6px 4px 10px;
  scrollbar-width: thin;
}
.lightbox__thumbs[hidden] { display: none; }
.lightbox__thumbs button {
  flex: 0 0 auto;
  width: 76px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(246, 247, 245, 0.06);
  cursor: pointer;
  opacity: 0.5;
}
.lightbox__thumbs button.is-on {
  opacity: 1;
  border-color: var(--gravity-brass);
}
.lightbox__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
  border-radius: 0;
}

.tuv-badge {
  margin: 28px 0 0;
  position: relative;
  z-index: 2;
}
.tuv-badge img {
  width: min(148px, 42vw);
  height: auto;
  mix-blend-mode: lighten;
}
.tech-with-tuv {
  display: flex;
  align-items: flex-start;
  gap: 20px 36px;
  max-width: calc(var(--gravity-text-width) + 160px);
}
.tech-with-tuv .prose {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}
.tech-with-tuv .tuv-badge {
  flex: 0 0 auto;
  margin: 0;
}
.tech-with-tuv .tuv-badge img {
  width: min(140px, 30vw);
}

.plan-figure {
  margin: 36px 0 8px;
  max-width: min(560px, 100%);
  position: relative;
  z-index: 2;
}
.plan-figure a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 72, 0.28);
  background: var(--gravity-cream);
}
.plan-figure img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.plan-figure a:hover img { transform: scale(1.03); }
.plan-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gravity-text-light-muted);
}
@media (min-width: 900px) {
  .specs-with-plan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px 48px;
    align-items: start;
  }
  .specs-with-plan .plan-figure {
    margin: 0;
    max-width: none;
  }
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.site-footer {
  position: relative;
  padding: 96px 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(201, 154, 72, 0.18);
}
.site-footer__bg {
  position: absolute;
  inset: 10% 0 auto;
  font-family: var(--gravity-font-display);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(246, 247, 245, 0.035);
  text-align: center;
  pointer-events: none;
  line-height: 0.8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  position: relative;
}
.footer-grid a { text-decoration: none; color: var(--gravity-text-light-muted); transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gravity-white); }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-copy {
  margin-top: 56px;
  color: var(--gravity-text-light-muted);
  font-size: 14px;
  position: relative;
  display: grid;
  gap: 8px;
}
.footer-copy a {
  color: var(--gravity-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copy a:hover { color: var(--gravity-white); }
.footer-credit { margin: 0; }

.decor {
  position: absolute;
  pointer-events: none;
  height: auto;
  max-width: none;
  z-index: 0;
}
.decor--corner-tl {
  top: 0;
  left: 0;
  width: min(620px, 56vw);
  opacity: 0.78;
}
.decor--cluster {
  top: 2%;
  right: -4%;
  width: min(620px, 58vw);
  opacity: 0.82;
}
.decor--pipe-bl {
  left: -6%;
  bottom: -8%;
  width: min(520px, 54vw);
  opacity: 0.76;
}
.decor--pipe-tl {
  top: -108px;
  left: 0;
  bottom: auto;
  width: min(480px, 46vw);
  opacity: 0.82;
  z-index: 1;
}
.decor--steam-edge {
  top: 0;
  bottom: 0;
  left: 0;
  width: min(980px, 86vw);
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.34;
  z-index: 0;
}
.decor--ornament {
  left: -1%;
  bottom: -4%;
  width: min(420px, 48vw);
  opacity: 0.72;
}
.decor--ride {
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
  z-index: 1;
}
.decor--ride-stats {
  display: none;
}
.section:has([data-float-spaceman]) {
  z-index: 1;
}
.decor--spaceman {
  right: 8%;
  top: -340px;
  width: min(420px, 44vw);
  opacity: 1;
  z-index: 1;
  will-change: transform;
}
.decor--spaceman-aside {
  top: 8%;
  right: 1%;
  width: min(380px, 34vw);
}
.decor--spacewoman {
  left: 0;
  bottom: 0;
  width: min(380px, 36vw);
  opacity: 1;
  z-index: 1;
}
.decor--footer-gear {
  right: -4%;
  bottom: -12%;
  width: min(560px, 58vw);
  opacity: 0.36;
  transform-origin: 50% 50%;
  animation: spin 90s linear infinite;
}
.decor-spot {
  display: flex;
  justify-content: center;
  margin: -24px auto;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.decor-spot--mobile { display: none; }
.decor-spot img {
  width: min(640px, 86vw);
  height: auto;
  opacity: 0.92;
}
.reveal { opacity: 0; transform: translateY(18px); animation: none; }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }

.address { color: var(--gravity-cream); }

@media (min-width: 900px) {
  .section:has(.decor--pipe-tl) > .wrap,
  .section:has(.decor--pipe-tl) > .media-row {
    padding-left: min(220px, 20vw);
  }
  .section:has(.decor--spacewoman) > .wrap {
    padding-left: min(240px, 22vw);
  }
  .section:has(.decor--ride-ascent) > .wrap {
    padding-right: min(280px, 26vw);
  }
  .section:has(.decor--cluster):has(.stat-grid--fit) > .wrap {
    padding-right: min(168px, 15vw);
  }
  .section:has(> .decor--spaceman-aside):not(.has-media--split-right):not(.has-media--split-left) > .wrap,
  .section:has(> .decor--spaceman-aside):not(.has-media--split-right):not(.has-media--split-left) > .media-row {
    padding-right: min(340px, 32vw);
  }
  .has-media--split-right .spec-grid,
  .has-media--split-left .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .social--header .social__link { width: 40px; height: 40px; }
}

@media (max-width: 1024px) {
  .stat-grid, .feature-grid, .spec-grid, .monitor-grid, .contact-cards, .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid--fit {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    justify-items: start;
    column-gap: 0;
  }
  .experiment { grid-template-columns: 1fr; }
  .gauge { position: relative; top: 0; max-width: 340px; margin-inline: auto; }
  .gallery-grid { columns: 2; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sustain-list { columns: 1; }
  .has-media--split-right .media-row,
  .has-media--split-left .media-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-header .social--header { margin-left: auto; }
  .social--header .social__link { width: 40px; height: 40px; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(7, 20, 31, 0.96);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px var(--gutter) 36px;
    gap: 18px;
  }
  .nav.is-open { display: flex; }
  .nav a.is-active {
    color: var(--gravity-brass);
    border-left: 3px solid var(--gravity-brass);
    padding-left: 12px;
    margin-left: -15px;
  }
  .hero:not(.coming-soon) {
    min-height: calc(100dvh - 150px);
  }
  .hero:not(.coming-soon) .hero__gear {
    bottom: 6%;
    right: -18%;
    width: min(720px, 94vw);
  }
  .page-hero {
    min-height: clamp(410px, calc(78vh - 150px), 710px);
  }
  .page-hero .hero__gear {
    bottom: calc(-24% + 70px);
  }
  .stat-grid, .feature-grid, .spec-grid, .monitor-grid, .contact-cards, .footer-grid, .form { grid-template-columns: 1fr; }
  .stat-grid--fit {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    max-width: 100%;
    margin-inline: 0;
    text-align: center;
    gap: 24px 16px;
  }
  .stat-grid--fit .stat { text-align: center; overflow: hidden; }
  .stat-grid--fit .stat__value {
    font-size: clamp(20px, 5.2vw, 30px);
    transform-origin: center bottom;
    white-space: normal;
    max-width: 100%;
  }
  .gallery-grid { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  .decor--corner-tl {
    left: auto;
    right: 0;
    width: min(320px, 78vw);
    opacity: 0.55;
    transform: scaleX(-1);
  }
  .decor--cluster {
    top: -18%;
    right: -6%;
    width: min(280px, 70vw);
    opacity: 0.55;
  }
  .section:has(.decor--cluster) {
    z-index: 1;
  }
  .decor--pipe-bl,
  .decor--ornament { width: min(280px, 70vw); opacity: 0.55; }
  .decor--ornament {
    left: auto;
    right: -10%;
    transform: scaleX(-1);
  }
  .decor--pipe-tl {
    top: -56px;
    left: auto;
    right: -16%;
    width: min(280px, 70vw);
    opacity: 0.55;
    transform: scaleX(-1);
    z-index: 1;
  }
  .decor--steam-edge {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
  }
  .decor--ride-ascent { display: none; }
  .decor--ride-stats {
    display: block;
    top: 8.2rem;
    bottom: auto;
    left: auto;
    right: -2%;
    width: min(300px, 72vw);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    z-index: 1;
  }
  .section--home-stats .wrap {
    padding-left: 12px;
    padding-right: min(58vw, 260px);
  }
  .decor-spot--mobile { display: flex; }
  .decor--spaceman { width: min(200px, 52vw); top: auto; bottom: 10px; right: 0; }
  .decor--spaceman-aside { display: none; }
  .decor--spacewoman { width: min(200px, 52vw); left: auto; right: 0; }
  .tech-with-tuv {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 14px 18px;
  }
  .tech-with-tuv .tuv-badge {
    margin-top: 2px;
  }
  .tech-with-tuv .tuv-badge img {
    width: min(92px, 26vw);
  }
  .divider { width: min(720px, 78%); }
  .dates-list__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0;
  }
  .dates-list__year { display: none; }
  .dates-list__place {
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(22px, 6.2vw, 28px);
  }
  .dates-list__more-gear {
    display: block;
    width: 84px;
    right: -8px;
    top: auto;
    bottom: -10px;
    opacity: 0.32;
  }
  .dates-list__when {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }
  .dates-list__badge {
    margin: 0;
    order: 2;
  }
  .dates-list__when time {
    order: 1;
    white-space: normal;
    letter-spacing: 0.1em;
  }
  .decor--dates {
    width: min(260px, 58vw);
    opacity: 0.14;
    right: -12%;
  }
}

@media (max-width: 469px) {
  .btn-row > .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .gauge__art { --gauge-rot: 441.62deg; }
  .gauge__needle { will-change: auto; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hero-ken-in {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}
@keyframes hero-ken-out {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}
@keyframes rgb-shift {
  0% { background-position: 0% 40%; filter: hue-rotate(0deg); }
  50% { background-position: 100% 60%; filter: hue-rotate(180deg); }
  100% { background-position: 0% 40%; filter: hue-rotate(360deg); }
}
@keyframes drift {
  from { transform: translate(14px, -26px); }
  to { transform: translate(-30px, 36px); }
}

.coming-soon-body {
  padding-top: 0;
  min-height: 100%;
}
html:has(.coming-soon-body) {
  height: 100%;
  overflow: hidden;
}
.coming-soon.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--gravity-night);
}
.coming-soon .hero__media {
  overflow: hidden;
}
.coming-soon .hero__media img {
  object-position: center center;
  filter: brightness(0.62) saturate(1.08);
}
.coming-soon__bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  min-height: var(--header-h);
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  padding-top: 8px;
}
.coming-soon .brand {
  flex: 0 1 auto;
  min-width: 0;
}
.coming-soon .brand img {
  height: auto;
  max-height: 40px;
  max-width: min(180px, 42vw);
  width: auto;
}
.coming-soon__tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.coming-soon__tools .social--header .social__link {
  width: 40px;
  height: 40px;
}
.coming-soon__unlock {
  position: relative;
}
.coming-soon__lock {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--gravity-cream);
  opacity: 0.55;
  cursor: pointer;
  list-style: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.coming-soon__lock::-webkit-details-marker,
.coming-soon__lock::marker {
  display: none;
  content: "";
}
.coming-soon__lock svg {
  width: 20px;
  height: 20px;
  display: block;
}
.coming-soon__lock:hover,
.coming-soon__unlock[open] .coming-soon__lock {
  opacity: 1;
  color: var(--gravity-brass);
}
.coming-soon__unlock-form {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(240px, calc(100vw - 32px));
  padding: 14px;
  background: rgba(7, 20, 31, 0.96);
  border: 1px solid rgba(201, 154, 72, 0.35);
  border-radius: var(--gravity-radius-small);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.coming-soon__unlock-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: rgba(246, 247, 245, 0.06);
  border: 1px solid rgba(246, 247, 245, 0.16);
  border-radius: var(--gravity-radius-small);
  color: var(--gravity-cream);
}
.coming-soon__unlock-form .btn {
  min-height: 44px;
  width: 100%;
}
.coming-soon__unlock-error {
  margin: 0;
  font-size: 13px;
  color: #e8a0a0;
}
.coming-soon .decor--spaceman {
  top: auto;
  right: 2%;
  bottom: 6%;
  width: min(360px, 42vw);
  z-index: 1;
  animation: drift 14s ease-in-out infinite alternate;
}
.coming-soon__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: 28px 0 clamp(40px, 6vh, 80px);
}
.coming-soon h1 {
  font-size: clamp(40px, 7vw, 118px);
  letter-spacing: -0.045em;
}
.coming-soon__soon {
  margin-top: 10px;
  font-family: var(--gravity-font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--gravity-brass);
}
.coming-soon__contact {
  margin-top: 36px;
  display: grid;
  gap: 6px;
  color: var(--gravity-cream);
}
.coming-soon__contact a { text-decoration: none; transition: color 0.2s ease, text-shadow 0.2s ease; }
.coming-soon__contact a:hover,
.coming-soon__contact a:focus-visible {
  color: var(--gravity-brass);
  text-shadow: 0 0 18px rgba(201, 154, 72, 0.45);
}
.coming-soon .hero__media::after {
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.42) 0%, rgba(7, 20, 31, 0.28) 36%, rgba(7, 20, 31, 0.78) 72%, var(--gravity-night) 100%),
    linear-gradient(0deg, rgba(7, 20, 31, 0.55) 0%, transparent 42%);
}
.site-footer .brand img {
  height: 48px;
  width: auto;
  max-width: min(240px, 58vw);
}

@media (max-width: 480px) {
  .coming-soon__tools { gap: 10px; }
  .coming-soon__tools .social--header .social__link { width: 34px; height: 34px; }
  .coming-soon .brand img { max-width: min(140px, 36vw); }
}

@media (max-height: 740px) {
  .coming-soon h1 { font-size: clamp(32px, 5.4vw, 64px); }
  .coming-soon__soon { font-size: clamp(22px, 3vw, 32px); }
  .coming-soon__contact { margin-top: 18px; }
  .coming-soon__content { padding-bottom: 28px; }
  .coming-soon .brand img { max-height: 32px; }
}

@media (orientation: landscape) and (max-height: 560px) {
  .coming-soon__bar { min-height: 56px; padding-top: 4px; }
  .coming-soon .hero__claim { display: none; }
}

.legal-prose { max-width: 72ch; }
.legal-prose h2 { margin-top: 1.6em; }

.footer-cookie-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--gravity-text-light-muted);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.footer-cookie-btn:hover,
.footer-cookie-btn:focus-visible {
  color: var(--gravity-white);
}

.coming-soon__legal {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--gravity-text-light-muted);
}
.coming-soon__legal a {
  color: var(--gravity-text-light-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.coming-soon__legal a:hover { color: var(--gravity-white); }
.coming-soon-body:has([data-consent-banner]:not([hidden])) .coming-soon__content {
  padding-bottom: 150px;
}

.consent__banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(8, 16, 24, 0.94);
  border-top: 1px solid rgba(201, 154, 72, 0.28);
  backdrop-filter: blur(12px);
  padding: 14px 0 16px;
}
.consent__banner[hidden],
.consent__panel[hidden] {
  display: none !important;
}
.consent__inner {
  width: min(var(--gravity-content-width), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}
.consent__copy {
  min-width: 0;
  max-width: 62ch;
}
.consent__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--gravity-cream);
}
.consent__title {
  font-weight: 700;
  margin-bottom: 4px !important;
  color: var(--gravity-white);
}
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.consent__actions [data-consent-accept],
.consent__actions [data-consent-reject] {
  min-width: 11.2rem;
}
.consent__settings-btn {
  min-width: 0;
}
.consent__panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 10, 16, 0.62);
}
.consent__dialog {
  width: min(440px, 100%);
  background: var(--gravity-night);
  border: 1px solid rgba(201, 154, 72, 0.28);
  border-radius: var(--gravity-radius-medium);
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.consent__dialog h2 {
  margin: 0 0 18px;
  font-size: 22px;
}
.consent__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 247, 245, 0.08);
}
.consent__row span {
  display: grid;
  gap: 4px;
}
.consent__row small {
  color: var(--gravity-text-light-muted);
  font-size: 13px;
  line-height: 1.4;
}
.consent__row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gravity-brass);
}
.consent__dialog .consent__actions {
  margin-top: 18px;
}

@media (max-width: 860px) {
  .consent__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .consent__actions [data-consent-accept],
  .consent__actions [data-consent-reject],
  .consent__settings-btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
}

@media (max-width: 469px) {
  .consent__actions [data-consent-accept],
  .consent__actions [data-consent-reject],
  .consent__settings-btn {
    flex: 1 1 100%;
  }
}
