:root {
  --ink: #101014;
  --soft-ink: #2a2730;
  --muted: #77727f;
  --paper: #f8f4ec;
  --paper-deep: #ede5d8;
  --white: #ffffff;
  --accent: #8b5fd3;
  --accent-2: #d8c7f7;
  --royal: #25152f;
  --line: rgba(25, 20, 30, 0.12);
  --shadow: 0 28px 90px rgba(22, 15, 35, 0.16);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  text-wrap: pretty;
  overflow-x: hidden;
}

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

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

.ambient-film {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 16%, rgba(139, 95, 211, 0.26), transparent 28%),
    linear-gradient(135deg, #faf7f0 0%, #eee3d6 54%, #f7f1e8 100%);
}

.ambient-film span {
  position: absolute;
  width: 34vw;
  height: 70vh;
  border: 1px solid rgba(139, 95, 211, 0.12);
  transform: rotate(16deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(139, 95, 211, 0.05));
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-film span:nth-child(1) {
  right: -8vw;
  top: 12vh;
}

.ambient-film span:nth-child(2) {
  left: -14vw;
  top: 58vh;
  animation-delay: -4s;
}

.ambient-film span:nth-child(3) {
  right: 18vw;
  bottom: -38vh;
  animation-delay: -8s;
}

@keyframes drift {
  from {
    transform: translateY(-18px) rotate(16deg);
  }
  to {
    transform: translateY(24px) rotate(12deg);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 8, 13, 0.22);
  backdrop-filter: blur(24px);
  transition:
    background 240ms ease,
    color 240ms ease,
    border-color 240ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(248, 244, 236, 0.82);
}

.brand,
.desktop-nav,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  width: 128px;
  height: 36px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.78))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.desktop-nav {
  gap: 30px;
  color: currentColor;
  font-size: 14px;
}

.desktop-nav a {
  opacity: 0.78;
}

.header-action {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0.88;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #0b0910;
}

.hero-bg,
.hero-bg img,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transform: scale(1.02);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 10, 0.92) 0%, rgba(8, 7, 10, 0.62) 42%, rgba(8, 7, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 7, 10, 0.9), transparent 50%);
}

.hero-noise {
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

@keyframes slowZoom {
  to {
    transform: scale(1.08) translateX(1.2vw);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 148px 22px 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.44fr);
  gap: 70px;
  align-items: end;
}

.hero-copyblock {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: pretty;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5.2vw, 70px);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 720;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #fff;
  border-color: var(--accent);
  background: linear-gradient(135deg, #7b4ec2, #a783dc);
  box-shadow: 0 16px 42px rgba(139, 95, 211, 0.28);
}

.button.quiet {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  align-self: end;
  max-width: 310px;
  padding: 0 0 18px 20px;
  border-left: 1px solid rgba(216, 199, 247, 0.42);
  color: rgba(255, 255, 255, 0.72);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.hero-note p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.section {
  padding: 122px max(22px, calc((100vw - var(--max)) / 2));
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.split,
.cabin-layout,
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 78px;
  align-items: start;
}

.section-title {
  max-width: 820px;
}

.soft-copy p,
.cabin-copy p,
.moment-card p,
.apply-copy p,
.contact-card small,
.form-result {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.soft-copy p {
  font-size: 20px;
}

.immersive {
  padding: 0 max(22px, calc((100vw - var(--max)) / 2)) 120px;
}

.cinema-frame {
  position: relative;
  max-width: var(--max);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #100c16;
  box-shadow: var(--shadow);
}

.cinema-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(139, 95, 211, 0.34), transparent 34%),
    linear-gradient(145deg, #08070a, #24142f 55%, #0e0b12);
}

.road {
  position: absolute;
  inset: auto -10% 0;
  height: 46%;
  background:
    linear-gradient(170deg, transparent 0 42%, rgba(255, 255, 255, 0.14) 43%, transparent 44%),
    linear-gradient(8deg, rgba(255, 255, 255, 0.06), transparent 45%);
  animation: roadMove 1.2s linear infinite;
}

@keyframes roadMove {
  to {
    background-position: 120px 0, 0 0;
  }
}

.car-glow {
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 44%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(139, 95, 211, 0.54), transparent);
  filter: blur(24px);
}

.carrier {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: min(340px, 42vw);
  aspect-ratio: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background:
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.08) 24px 30px),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.04);
}

.cat-eye {
  position: absolute;
  left: 44%;
  top: 48%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f4e6b0;
  box-shadow: 32px 0 0 #f4e6b0, 0 0 18px rgba(244, 230, 176, 0.6), 32px 0 18px rgba(244, 230, 176, 0.6);
}

.cinema-text {
  position: absolute;
  left: 42px;
  bottom: 42px;
  max-width: 640px;
}

.cinema-text p {
  color: var(--accent-2);
  font-size: 18px;
}

.cinema-text h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 64px);
}

.cabin {
  background: rgba(255, 255, 255, 0.5);
}

.seat-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.seat {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(37, 21, 47, 0.1);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--soft-ink);
  font-weight: 760;
  text-align: center;
}

.seat.main {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(139, 95, 211, 0.96), rgba(37, 21, 47, 0.98)),
    var(--royal);
}

.seat.aisle {
  background: #f1e9dc;
}

.seat.soft {
  background: #fff;
}

.moments {
  background: #100d14;
  color: #fff;
}

.moments .eyebrow {
  color: var(--accent-2);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.moment-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.moment-card span {
  display: block;
  margin-bottom: 88px;
  color: var(--accent-2);
  font-weight: 760;
}

.moment-card p {
  color: rgba(255, 255, 255, 0.68);
}

.proof {
  background: var(--paper-deep);
}

.proof-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.proof-line:last-child {
  border-bottom: 0;
}

.proof-line span {
  color: var(--accent);
  font-weight: 760;
}

.proof-line strong {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
}

.application {
  background: #fffaf3;
}

.contact-card,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 70px rgba(37, 21, 47, 0.08);
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 34px;
  padding: 20px;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
}

.contact-card strong {
  color: var(--royal);
  font-size: 22px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(37, 21, 47, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 95, 211, 0.13);
}

.form-button {
  width: 100%;
  border-radius: 8px;
}

.form-result {
  min-height: 26px;
  margin: 0;
}

.site-footer {
  padding: 30px max(22px, calc((100vw - var(--max)) / 2));
  background: #0c0910;
  color: rgba(255, 255, 255, 0.66);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-ready .reveal:not(.is-visible) {
  opacity: 0.01;
  transform: translateY(18px);
}

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

body[data-motion="still"] *,
body[data-motion="still"] *::before,
body[data-motion="still"] *::after {
  animation: none !important;
  transition-duration: 0.01ms !important;
}

@media (max-width: 940px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    height: 60px;
    padding-inline: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 112px 18px 58px;
  }

  .hero-note {
    max-width: 360px;
  }

  .section {
    padding: 80px 18px;
  }

  .immersive {
    padding: 0 18px 80px;
  }

  .cinema-frame {
    min-height: 560px;
  }

  .split,
  .cabin-layout,
  .apply-layout,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .moment-card {
    min-height: auto;
  }

  .moment-card span {
    margin-bottom: 42px;
  }

  .proof-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 98px;
  }

  .header-action {
    padding: 8px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions .button,
  .form-row,
  .button {
    width: 100%;
  }

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

  .cinema-text {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .carrier {
    right: 10%;
    width: 78vw;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
