:root {
  --ink: #061322;
  --ink-soft: #0d2033;
  --mist: #eef1ec;
  --paper: #f8f8f4;
  --white: #ffffff;
  --acid: #d8ff3e;
  --acid-dark: #b8dc2c;
  --line: rgba(6, 19, 34, 0.14);
  --hero-progress: 0;
  --stage-one-copy-opacity: 1;
  --stage-two-copy-opacity: 0;
  --stage-three-copy-opacity: 0;
  --header-height: 72px;
  --radius: 4px;
  color-scheme: light;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 18px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(6, 19, 34, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand > span:last-child > span {
  color: var(--acid);
}

.brand-mark {
  position: relative;
  display: block;
  width: 26px;
  height: 22px;
}

.brand-mark i {
  position: absolute;
  right: 0;
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--acid);
  transform: skewX(-30deg);
}

.brand-mark i:nth-child(1) { top: 2px; width: 15px; }
.brand-mark i:nth-child(2) { top: 9px; width: 21px; }
.brand-mark i:nth-child(3) { top: 16px; width: 26px; }

.desktop-nav,
.header-cta {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 2px;
}

.language-selector {
  position: relative;
  display: inline-flex;
  min-width: 58px;
  height: 44px;
  align-items: center;
}

.language-selector::after {
  position: absolute;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.language-selector select {
  width: 100%;
  height: 36px;
  padding: 0 25px 0 10px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 3px;
  background: rgba(6, 19, 34, 0.54);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.language-selector option {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  padding: calc(var(--header-height) + env(safe-area-inset-top) + 36px) 24px calc(28px + env(safe-area-inset-bottom));
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a:not(.button) {
  display: flex;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 8vw, 2.3rem);
}

.mobile-menu .button {
  margin-top: 24px;
}

.cinematic-hero {
  position: relative;
  height: 210svh;
  height: 210dvh;
  min-height: 1200px;
  background: var(--ink);
}

.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-poster,
.hero-reduced-poster,
.hero-poster img,
.hero-reduced-poster img,
.hero-video,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster,
.hero-reduced-poster {
  overflow: hidden;
}

.hero-reduced-poster {
  display: none;
}

.hero-poster img,
.hero-reduced-poster img,
.hero-video {
  display: block;
  object-fit: cover;
  object-position: 50% 54%;
}

.hero-poster img {
  transform: scale(calc(1.015 + (var(--hero-progress) * 0.035)));
  transform-origin: 50% 70%;
  transition: opacity 400ms ease;
  will-change: transform;
}

.hero-video {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.hero-video.is-ready {
  visibility: visible;
}

.hero-video-sequence.is-ready {
  opacity: 1;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 10, 20, 0.66) 0%, rgba(2, 10, 20, 0.05) 28%, rgba(2, 10, 20, 0.12) 56%, rgba(2, 10, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(2, 10, 20, 0.42), transparent 70%);
}

.hero-grain {
  display: none;
  z-index: 3;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-media-status {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-height) + env(safe-area-inset-top) + 10px);
  right: 18px;
  max-width: min(72vw, 360px);
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(6, 19, 34, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 650;
  line-height: 1.4;
  text-align: right;
}

.hero-media-status[hidden] {
  display: none;
}

html[data-scrub-mode="lite"] .hero-shade {
  background: linear-gradient(180deg, rgba(2, 10, 20, 0.58), transparent 38%, rgba(2, 10, 20, 0.82));
}

.hero-copy {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: max(104px, calc(78px + env(safe-area-inset-bottom)));
  left: 18px;
  max-width: 570px;
  transform: translateY(calc(var(--hero-progress) * -12px));
  pointer-events: none;
}

.hero-stage-one {
  opacity: var(--stage-one-copy-opacity);
}

.hero-stage-two {
  opacity: var(--stage-two-copy-opacity);
}

.hero-stage-copy h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.8rem, 13vw, 5.2rem);
  text-wrap: balance;
}

.final-cta {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: max(104px, calc(78px + env(safe-area-inset-bottom)));
  left: 18px;
  max-width: 650px;
  opacity: var(--stage-three-copy-opacity);
  transform: translateY(calc(18px - (var(--stage-three-copy-opacity) * 18px)));
  pointer-events: none;
}

.final-cta:not([inert]) {
  pointer-events: auto;
}

.final-cta h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.65rem, 11.5vw, 5rem);
  text-wrap: balance;
}

.final-cta > p {
  max-width: 38ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.55;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: #50600a;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.15rem, 15vw, 5.35rem);
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--acid);
  font-weight: 400;
}

.hero-intro {
  max-width: 34ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.97rem;
  line-height: 1.55;
}

html[lang="hu"] .hero-stage-two h2,
html[lang="de"] .hero-stage-two h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 10.8vw, 4.7rem);
}

html[lang="hu"] .final-cta h2,
html[lang="de"] .final-cta h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 10.5vw, 4.7rem);
}

.hero-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.text-link.light {
  color: var(--white);
}

.journey-status {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-number {
  color: var(--acid);
}

.status-line {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.status-line i {
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: scaleX(var(--hero-progress));
  transform-origin: left center;
}

.scroll-cue {
  display: none;
}

.section-shell {
  width: min(100% - 36px, 1240px);
  margin-inline: auto;
}

.booking-section {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  background: var(--paper);
}

.booking-layout {
  display: grid;
  gap: 48px;
}

.booking-intro h2,
.section-heading h2,
.closing-inner h2 {
  font-size: clamp(2.65rem, 11vw, 4.8rem);
}

.booking-intro h2 em,
.closing-inner h2 em {
  color: #50600a;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 50ch;
  margin: 28px 0 0;
  color: #53606a;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #33404b;
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  display: grid;
  width: 22px;
  height: 22px;
  place-content: center;
  border-radius: 50%;
  background: #e6efbd;
  color: #384405;
  font-style: normal;
}

.booking-card {
  padding: 24px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(6, 19, 34, 0.16);
}

.form-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.form-heading span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.form-heading small,
.form-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 16px;
}

.field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

.field select option {
  background: var(--ink);
}

.booking-summary {
  display: grid;
  margin: 24px 0 18px;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-summary > span {
  display: grid;
  min-height: 75px;
  padding: 14px 4px;
  align-content: center;
  gap: 4px;
}

.booking-summary > span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-summary small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.booking-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
}

.process-section {
  padding: 84px 0 96px;
  background: var(--mist);
}

.section-heading {
  max-width: 850px;
}

.section-heading h2 em {
  color: #52620c;
}

.process-grid {
  display: grid;
  margin: 55px 0 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  background: var(--line);
}

.process-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  background: var(--mist);
}

.step {
  color: #718082;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-icon {
  display: grid;
  width: 65px;
  height: 65px;
  margin-top: 40px;
  place-content: center;
  border-radius: 50%;
  background: var(--acid);
}

.process-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.process-card h3 {
  margin: 30px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.process-card p {
  max-width: 37ch;
  margin: 0;
  color: #56636b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.promise-section {
  display: grid;
  min-height: 850px;
  background: var(--ink);
  color: var(--white);
}

.promise-image {
  min-height: 430px;
  background: url("./assets/media/posters/skypark-mobile.webp") center 54% / cover no-repeat;
}

.promise-copy {
  padding: 68px 18px 78px;
}

.promise-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 12vw, 5.6rem);
}

.promise-copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.stats {
  display: grid;
  margin: 42px 0 34px;
  grid-template-columns: repeat(3, 1fr);
}

.stats div {
  display: grid;
  padding: 0 10px;
  gap: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats dt {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 5vw, 2rem);
}

.stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.63rem;
  line-height: 1.35;
}

.closing-section {
  padding: 92px 0;
  background: var(--acid);
  text-align: center;
}

.closing-inner {
  display: grid;
  justify-items: center;
}

.closing-inner .eyebrow::before {
  display: none;
}

.closing-inner .button {
  margin-top: 34px;
}

.site-footer {
  padding: 65px 18px calc(24px + env(safe-area-inset-bottom));
  background: #030c15;
  color: var(--white);
}

.footer-main {
  display: grid;
  gap: 24px;
}

.footer-brand {
  width: fit-content;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-main nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.77rem;
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 20px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.64rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 599px) {
  .hero {
    height: 190svh;
    height: 190dvh;
    min-height: 1100px;
  }
}

@media (min-width: 600px) {
  :root { --header-height: 80px; }

  .site-header { padding-inline: 30px; }
  .hero-grain { display: block; }
  .header-tools { gap: 10px; }
  .hero-media-status { right: 30px; }
  .section-shell { width: min(100% - 60px, 1240px); }

  .cinematic-hero {
    height: 240svh;
    height: 240dvh;
  }

  .hero-poster img,
  .hero-reduced-poster img,
  .hero-video {
    object-position: 53% 50%;
  }

  .hero-copy {
    right: auto;
    bottom: max(120px, calc(95px + env(safe-area-inset-bottom)));
    left: 40px;
    width: min(55vw, 620px);
  }

  .final-cta {
    right: auto;
    bottom: max(120px, calc(95px + env(safe-area-inset-bottom)));
    left: 40px;
    width: min(62vw, 700px);
  }

  .final-cta h2 { font-size: clamp(3.5rem, 7.8vw, 6rem); }
  .hero-stage-copy h2 { font-size: clamp(3.7rem, 8vw, 6.2rem); }

  h1 {
    font-size: clamp(3.9rem, 8.8vw, 5rem);
  }

  .hero-intro { font-size: 1.04rem; }
  .journey-status { right: 40px; left: 40px; }

  .booking-section,
  .process-section { padding-block: 110px; }

  .booking-intro h2,
  .section-heading h2,
  .closing-inner h2 { font-size: clamp(4rem, 8vw, 6.4rem); }

  .booking-card { padding: 34px; }
  .field-grid { grid-template-columns: 1fr 0.7fr; }

  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card { min-height: 390px; }

  .promise-section { grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr); min-height: 760px; }
  .promise-image {
    min-height: 760px;
    background-image: url("./assets/media/posters/skypark-tablet-portrait.webp");
    background-position: 51% 50%;
  }
  .promise-copy { display: flex; padding: 80px 46px; flex-direction: column; justify-content: center; }
  .promise-copy h2 { font-size: clamp(3.8rem, 7vw, 6.4rem); }

  .closing-section { padding-block: 125px; }

  .site-footer { padding: 75px 30px 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-main > p { grid-column: 1; }
  .footer-main nav { grid-column: 2; grid-row: 1 / span 2; justify-self: end; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .site-header { padding-inline: 42px; }
  .menu-button { display: none; }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
  }

  .language-selector { min-width: 60px; }

  .desktop-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .booking-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 6vw;
  }

  .field-grid { grid-template-columns: 1fr 0.58fr 1fr 0.58fr; }

  .process-card { padding: 34px; }
}

@media (min-width: 1100px) {
  .cinematic-hero {
    height: 280svh;
    height: 280dvh;
  }

  .hero-poster img,
  .hero-reduced-poster img,
  .hero-video { object-position: 50% 50%; }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 10, 20, 0.54), transparent 28%, rgba(2, 10, 20, 0.22) 65%, rgba(2, 10, 20, 0.76)),
      linear-gradient(90deg, rgba(2, 10, 20, 0.8) 0%, rgba(2, 10, 20, 0.28) 43%, transparent 68%);
  }

  .hero-copy {
    top: 50%;
    bottom: auto;
    left: max(60px, calc((100vw - 1240px) / 2));
    width: min(45vw, 650px);
    transform: translateY(calc(-44% - (var(--hero-progress) * 16px)));
  }

  .final-cta {
    top: 50%;
    bottom: auto;
    left: max(60px, calc((100vw - 1240px) / 2));
    width: min(47vw, 720px);
    transform: translateY(calc(-44% + 18px - (var(--stage-three-copy-opacity) * 18px)));
  }

  .final-cta h2 { font-size: clamp(4rem, 5.5vw, 6.8rem); }
  .hero-stage-copy h2 { font-size: clamp(4.2rem, 5.7vw, 7rem); }

  html[lang="hu"] .hero-stage-two h2,
  html[lang="de"] .hero-stage-two h2 {
    max-width: 13.5ch;
    font-size: clamp(3.7rem, 4.75vw, 5.8rem);
  }

  html[lang="hu"] .final-cta h2,
  html[lang="de"] .final-cta h2 {
    max-width: 13.5ch;
    font-size: clamp(3.8rem, 4.8vw, 5.9rem);
  }

  h1 { font-size: clamp(5.6rem, 7.2vw, 8.4rem); }

  .journey-status {
    right: max(60px, calc((100vw - 1240px) / 2));
    bottom: 35px;
    left: auto;
    width: min(42vw, 520px);
  }

  .hero-media-status {
    right: max(60px, calc((100vw - 1240px) / 2));
  }

  .scroll-cue {
    position: absolute;
    z-index: 4;
    bottom: 35px;
    left: max(60px, calc((100vw - 1240px) / 2));
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: calc(1 - (var(--hero-progress) * 4));
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .scroll-cue i {
    display: block;
    width: 38px;
    height: 1px;
    background: var(--acid);
  }

  .booking-section { padding-block: 145px; }
  .process-section { padding-block: 135px 150px; }

  .promise-section { grid-template-columns: minmax(0, 1.2fr) minmax(460px, 0.8fr); }
  .promise-image {
    background-image: url("./assets/media/posters/skypark-desktop.webp");
    background-position: 56% 50%;
  }

  .promise-copy { padding: 7vw; }
  .closing-section { padding-block: 155px; }
  .site-footer { padding-inline: max(42px, calc((100vw - 1240px) / 2)); }
}

@media (min-width: 1500px) {
  .site-header { padding-inline: max(52px, calc((100vw - 1440px) / 2)); }
  .hero-copy { left: max(70px, calc((100vw - 1440px) / 2)); }
  .final-cta { left: max(70px, calc((100vw - 1440px) / 2)); }
  .scroll-cue { left: max(70px, calc((100vw - 1440px) / 2)); }
  .journey-status { right: max(70px, calc((100vw - 1440px) / 2)); }
  .hero-media-status { right: max(70px, calc((100vw - 1440px) / 2)); }
}

@media (min-width: 600px) and (max-width: 1099px) and (orientation: landscape) {
  .cinematic-hero {
    height: 210svh;
    height: 210dvh;
    min-height: 1050px;
  }

  .hero-copy {
    bottom: max(64px, calc(48px + env(safe-area-inset-bottom)));
    left: 36px;
    width: min(54vw, 560px);
  }

  .final-cta {
    bottom: max(64px, calc(48px + env(safe-area-inset-bottom)));
    left: 36px;
    width: min(62vw, 620px);
  }

  .final-cta h2 { font-size: clamp(3rem, 6.7vw, 4.8rem); }

  .hero-copy .eyebrow { margin-bottom: 10px; }
  h1 { font-size: clamp(3.5rem, 8.5vw, 5.4rem); }
  .hero-intro { margin-top: 14px; font-size: 0.88rem; }
  .hero-actions { margin-top: 18px; }
  .journey-status { display: none; }
}

@media (min-width: 1100px) and (max-height: 780px) {
  .hero-copy { top: 52%; }
  h1 { font-size: clamp(4.4rem, 6.4vw, 6.6rem); }
  .hero-copy .eyebrow { margin-bottom: 10px; }
  .hero-intro { margin-top: 14px; }
  .hero-actions { margin-top: 20px; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: #e4ff73; }
  .desktop-nav a:hover,
  .footer-main nav a:hover { color: var(--acid); }
  .header-cta:hover { border-color: var(--acid); color: var(--acid); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .cinematic-hero { height: 100svh; height: 100dvh; min-height: 560px; }
  .hero-poster,
  .hero-video { display: none !important; }
  .hero-reduced-poster { display: block; }
  .hero-reduced-poster img,
  .hero-copy,
  .final-cta { transform: none; }
  .hero-stage-one,
  .hero-stage-two { display: none; }
  .hero-stage-three { opacity: 1; }
  .scroll-cue { display: none; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header,
  .scroll-cue,
  .journey-status,
  .hero-actions,
  .booking-card { display: none; }
  .cinematic-hero,
  .hero-sticky { height: 70vh; min-height: 0; }
  .reveal { opacity: 1; transform: none; }
}
