/* ────────────────────────────────────────────────────────────
   ESA / Elevators · Purple premium · product-led
   ──────────────────────────────────────────────────────────── */

:root {
  /* dark surfaces (navy) */
  --bg-0:     #060d22;
  --bg-1:     #0a142f;
  --bg-2:     #0f1d44;
  --bg-3:     #16285a;
  --surface:  #112149;
  --surface-2:#1a2c63;

  /* light surfaces (cream) */
  --paper-bg: #faf6ec;
  --paper-bg-2: #f3ecdb;
  --cream:    #ede2c8;
  --white:    #ffffff;

  /* navy (primary brand) */
  --navy:        #0f1d44;
  --navy-deep:   #08122e;
  --navy-mid:    #1e3072;
  --navy-soft:   #3a4d8c;

  /* gold (accent) */
  --gold:        #c9a85c;
  --gold-light:  #dec27d;
  --gold-deep:   #a48538;
  --gold-warm:   #d4b878;

  /* text */
  --ink:        #08122e;
  --ink-soft:   #2c3a64;
  --ink-mute:   #6b7397;
  --paper:      #f5efe1;        /* on dark surfaces */
  --paper-soft: #c9d0e3;
  --paper-mute: #8893b8;

  --rule-dark:  rgba(201,168,92,.18);
  --rule-light: rgba(8,18,46,.12);

  /* type */
  --f-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-italic:  'Cormorant Garamond', 'Times New Roman', serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1320px;
  --gut: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.7,.05,.15,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
}

/* italic accent words use the serif */
em, .em-serif {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg-0);
  color: var(--paper);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { max-width: 100%; display: block; }

/* ───── aurora bg blobs (purple ambient lighting) ───── */
.aurora {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.blob--1 { width: 700px; height: 700px; background: #1e3072; top: -200px; left: -200px; opacity: .45; }
.blob--2 { width: 620px; height: 620px; background: #c9a85c; bottom: -200px; right: -200px; opacity: .18; }
.blob--3 { width: 520px; height: 520px; background: #0a1d3f; top: 40%;     left: 40%;   opacity: .35; }

/* ───── preloader ───── */
.preload {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 200;
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preload.is-gone { opacity: 0; visibility: hidden; }
.preload__cabin {
  position: relative;
  width: 60px; height: 80px;
  display: grid;
  place-items: center;
}
.preload__cable {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  transform: translateX(-50%);
  animation: cableTension 1.6s ease-in-out infinite;
}
@keyframes cableTension { 50% { height: 80px; } }
.preload__box {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(201,168,92,.5);
  animation: cabinDrop 1.6s ease-in-out infinite;
}
@keyframes cabinDrop {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(20px); }
}
.preload__txt {
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper-mute);
  white-space: nowrap;
}

/* ───── doors transition (page jump) ───── */
.doors {
  position: fixed; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 150;
  pointer-events: none;
  opacity: 0;
}
.doors.is-active { opacity: 1; }
.doors__panel {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-right: 1px solid rgba(220,194,125,.2);
  transition: transform .8s var(--ease);
}
.doors.is-closing .doors__panel--l { transform: translateX(0); }
.doors.is-closing .doors__panel--r { transform: translateX(0); }
.doors.is-open    .doors__panel--l { transform: translateX(-101%); }
.doors.is-open    .doors__panel--r { transform: translateX(101%); }

/* ───── nav ───── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1280px);
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(220,194,125,.16);
  border-radius: 999px;
  background: rgba(18, 7, 38, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.6);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo {
  display: inline-grid;
  place-items: center;
  filter: drop-shadow(0 4px 16px rgba(201,168,92,.4));
}
.brand-word {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.brand-word em { font-style: italic; font-weight: 400; color: var(--gold); }
.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13.5px;
  font-weight: 500;
}
.nav__links a {
  color: var(--paper-soft);
  position: relative;
  padding: 6px 2px;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%, var(--gold-deep));
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px -6px rgba(201,168,92,.55), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 0 rgba(0,0,0,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -6px rgba(201,168,92,.7), inset 0 1px 0 rgba(255,255,255,.3); }
.nav__cta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: 0 0 0 0 var(--navy-deep);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,92,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,92,0); }
}
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(220,194,125,.16);
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px; background: var(--paper);
  border-radius: 2px;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }

@media (max-width: 920px) {
  .nav { grid-template-columns: auto 1fr auto auto; gap: 12px; padding: 8px 10px 8px 14px; }
  .nav__links { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }
  .nav__burger { display: inline-block; }
  .nav.is-open .nav__links {
    display: grid;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(18,7,38,.95);
    border: 1px solid rgba(220,194,125,.16);
    border-radius: 18px;
    padding: 14px;
    text-align: center;
    gap: 12px;
  }
}

/* ───── side pill (current section indicator) ───── */
.pill {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(220,194,125,.18);
  border-radius: 999px;
  background: rgba(18,7,38,.65);
  backdrop-filter: blur(8px);
  font-family: 'Inter', monospace;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper-soft);
  white-space: nowrap;
}
.pill__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: none;
}

@media (max-width: 760px) { .pill { display: none; } }

/* ───── shared ───── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.kicker__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  display: inline-block;
}
.kicker__dot--live { background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2.4s var(--ease) infinite; }

.sec {
  position: relative;
  z-index: 5;
  padding: clamp(80px, 9vw, 140px) var(--gut);
}
.sec__head { max-width: 980px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec__head--row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  max-width: var(--maxw);
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec__head--center { text-align: center; max-width: 760px; margin-inline: auto; }
.sec__head--center .kicker { justify-content: center; }
.sec__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .98;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--paper);
}
.sec__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec__hint {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--paper-soft);
  max-width: 44ch;
  margin: 0;
}
@media (max-width: 760px) { .sec__head--row { grid-template-columns: 1fr; } }

/* ───── btn ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow: 0 12px 32px -8px rgba(201,168,92,.6), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 0 rgba(0,0,0,.08);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost {
  background: rgba(220,194,125,.06);
  color: var(--paper);
  border-color: rgba(220,194,125,.30);
}
.btn--ghost:hover { background: rgba(220,194,125,.14); border-color: rgba(220,194,125,.5); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .01em;
  transition: gap .3s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--gold); }

/* ────────────────────────────────────────  HERO  ──────────── */
.hero {
  position: relative;
  z-index: 5;
  padding: 120px var(--gut) 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding-bottom: 60px;
}
.hero__copy { display: flex; flex-direction: column; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(58px, 9.5vw, 152px);
  line-height: .92;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--paper);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 10%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  max-width: 50ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--paper-soft);
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__chips {
  list-style: none;
  margin: 0; padding: 24px 0 0;
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
  border-top: 1px solid var(--rule-dark);
}
.hero__chips li { display: grid; gap: 4px; }
.hero__chips b {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--paper);
  background: linear-gradient(135deg, var(--paper) 30%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__chips span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* ── hero art: real photo with treatment ── */
.hero-photo {
  position: relative;
  margin: 0;
  width: min(100%, 480px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-photo__halo {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(closest-side, rgba(201,168,92,.4), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}
.hero-photo__frame {
  position: relative;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(220,194,125,.28);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.7),
    0 0 0 8px rgba(201,168,92,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
  isolation: isolate;
}
.hero-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.85) contrast(1.05) brightness(.92) hue-rotate(-8deg);
  transition: transform 1.2s var(--ease);
}
.hero-photo:hover .hero-photo__frame img { transform: scale(1.04); }
.hero-photo__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,4,24,.0) 50%, rgba(10,4,24,.6) 100%),
    linear-gradient(135deg, rgba(201,168,92,.18), rgba(201,168,92,.06));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(220,194,125,.06) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(220,194,125,.06) 32px 33px);
  pointer-events: none;
}
.hero-photo__tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,4,24,.85);
  border: 1px solid rgba(220,194,125,.22);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-soft);
  z-index: 3;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.6);
}
.hero-photo__tag i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
.hero-photo__tag--top { top: 18px; left: 18px; }
.hero-photo__tag--bot {
  bottom: 18px; right: 18px;
  background: rgba(201,168,92,.16);
  border-color: rgba(201,168,92,.4);
  color: var(--gold);
}
.hero-photo__floor {
  position: absolute;
  top: 18px; right: 18px;
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 14px;
  background: rgba(10,4,24,.88);
  border: 1px solid rgba(220,194,125,.22);
  backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.6);
}
.hero-photo__floor em {
  font-style: italic;
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(201,168,92,.6);
  line-height: 1;
}
.hero-photo__floor b {
  position: absolute;
  bottom: 8px;
  font-size: 9px;
  letter-spacing: .26em;
  color: var(--gold-light);
  animation: arrowUp 1.4s ease-in-out infinite;
}

@media (max-width: 880px) {
  .hero-photo { max-width: 360px; margin: 0 auto; }
}

/* ── (legacy) cabin-frame retained for fallback ── */
.hero__art {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  display: grid;
  place-items: center;
}
.cabin-frame {
  position: relative;
  width: min(380px, 100%);
  height: 100%;
  display: grid;
  place-items: center;
}
.cabin-frame::before {
  content: '';
  position: absolute;
  inset: -20px -10px;
  background: radial-gradient(closest-side, rgba(201,168,92,.35), transparent 70%);
  filter: blur(40px);
}
.cabin-frame__rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(220,194,125,.4) 20%, rgba(220,194,125,.4) 80%, transparent);
}
.cabin-frame__rail--l { left: 16%; }
.cabin-frame__rail--r { right: 16%; }
.cabin-frame__cable {
  position: absolute;
  top: 0; bottom: 60%;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(220,194,125,.5));
  transform: translateX(-50%);
}
.cabin-frame__floors {
  position: absolute;
  left: 0;
  top: 6%; bottom: 6%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--paper-mute);
}
.cabin-frame__floors span {
  position: relative;
  padding-left: 12px;
}
.cabin-frame__floors span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--paper-mute);
}
.cabin-frame__floors .is-here { color: var(--gold); }
.cabin-frame__floors .is-here::before { background: var(--gold); width: 10px; box-shadow: 0 0 8px var(--gold); }

.cabin-frame__tag {
  position: absolute;
  right: -4px;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(220,194,125,.22);
  border-radius: 999px;
  background: rgba(18,7,38,.65);
  backdrop-filter: blur(8px);
  color: var(--paper-soft);
}
.tag-top { top: 8%; }
.tag-bot { bottom: 8%; color: var(--gold); border-color: rgba(201,168,92,.4); }

.cab {
  width: 65%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6));
  animation: cabFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes cabFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.cab__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(220,194,125,.22);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  font-family: var(--f-display);
}
.cab__floor {
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(201,168,92,.6);
  letter-spacing: 0;
}
.cab__arrow {
  font-size: 12px;
  color: var(--gold);
  animation: arrowUp 1.4s ease-in-out infinite;
}
@keyframes arrowUp {
  0%, 100% { opacity: .5; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-3px); }
}
.cab__body {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border: 1px solid rgba(220,194,125,.22);
  height: 280px;
  overflow: hidden;
}
.cab__interior {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, rgba(220,194,125,.06), transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(201,168,92,.15), transparent 70%);
}
.cab__panel {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 6px;
  z-index: 4;
}
.cab__btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(220,194,125,.08);
  border: 1px solid rgba(220,194,125,.2);
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--paper-soft);
  font-family: 'Inter', monospace;
}
.cab__btn--lit {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  box-shadow: 0 0 12px rgba(201,168,92,.6);
}
.cab__door {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(220,194,125,.18);
  z-index: 3;
}
.cab__door--l { left: 0; border-right: 0; }
.cab__door--r { right: 0; border-left: 0; }
.cab__seam {
  position: absolute;
  left: 50%; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light) 20%, var(--gold-light) 80%, transparent);
  box-shadow: 0 0 8px var(--gold);
  transform: translateX(-50%);
  z-index: 5;
  animation: seamGlow 3s ease-in-out infinite;
}
@keyframes seamGlow { 50% { opacity: .5; } }
.cab__base {
  height: 8px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(220,194,125,.22);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 380px; }
  .cabin-frame { width: min(280px, 100%); }
  .cabin-frame__floors { display: none; }
}

.hero__marquee {
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  padding: 16px 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,92,.04));
  overflow: hidden;
  margin: 0 calc(-1 * var(--gut));
}
.marq {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 300;
  color: var(--paper);
  animation: marquee 30s linear infinite;
}
.marq i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ────────────────────────────────────────  TOUR  ──────────── */
.tour {
  position: relative;
  z-index: 5;
  padding: clamp(60px, 8vw, 120px) var(--gut) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,92,.18), transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(220,194,125,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, #14082c 50%, var(--bg-0) 100%);
}
.tour__intro {
  max-width: 980px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
}
.tour__intro .kicker { justify-content: center; }
.tour__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--paper);
}
.tour__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 10%, var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tour__sub {
  margin: 0 auto 18px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--paper-soft);
  max-width: 52ch;
}
.tour__hint {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding: 8px 14px;
  border: 1px solid var(--rule-dark);
  border-radius: 999px;
  animation: hintBob 2.4s ease-in-out infinite;
}
@keyframes hintBob {
  0%, 100% { transform: translateY(0); opacity: .8; }
  50%      { transform: translateY(4px); opacity: 1; }
}

.tour__stage {
  --cabin-y: 0;
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

/* sticky elevator visual */
.tour__visual {
  position: sticky;
  top: 90px;
  height: calc(100vh - 110px);
  display: grid;
  place-items: center;
}
.tour__shaftbox {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 100%;
  display: grid;
  align-items: stretch;
}

/* LED display floats top-left */
.tour__display {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(220,194,125,.22);
  background: rgba(10,4,24,.88);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
}
.tour__display-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(201,168,92,.6);
  line-height: 1;
  letter-spacing: 0;
}
.tour__display-dir {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* shaft container */
.tour__shaft {
  position: relative;
  height: 80vh;
  max-height: 760px;
  min-height: 460px;
  margin: 0 auto;
  width: 88%;
  max-width: 380px;
  border: 1px solid rgba(220,194,125,.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(40,20,82,.55), rgba(10,4,24,.85));
  box-shadow:
    inset 0 0 100px rgba(201,168,92,.18),
    0 40px 100px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(220,194,125,.04);
  overflow: hidden;
}
.tour__rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(220,194,125,.4) 8%,
    rgba(220,194,125,.4) 92%,
    transparent
  );
}
.tour__rail--l { left: 22%; }
.tour__rail--r { right: 22%; }
.tour__cable {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(220,194,125,.6) 5%,
    rgba(220,194,125,.6) 100%
  );
  transform: translateX(-50%);
  /* cable shortens as cabin rises (cabin-y 0..1) */
  height: calc(2% + (90% - 90% * var(--cabin-y)));
  transition: height .9s var(--ease);
}

.tour__pit {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(180deg, rgba(220,194,125,.3), transparent);
  border-top: 1px solid rgba(220,194,125,.3);
}

/* floor markers — positioned within shaft */
.tour__markers {
  list-style: none;
  margin: 0; padding: 0;
  position: absolute;
  inset: 4% 0 4% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}
.tour__markers li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  font-family: 'Inter', monospace;
  transition: transform .5s var(--ease);
}
.tour__markers li i {
  width: 14px; height: 1px;
  background: rgba(220,194,125,.4);
  transition: background .4s var(--ease), width .4s var(--ease), box-shadow .4s var(--ease);
}
.tour__markers li b {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--paper-mute);
  font-family: 'Inter', monospace;
  transition: color .4s var(--ease);
}
.tour__markers li span {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-mute);
  opacity: .55;
  transition: opacity .4s var(--ease), color .4s var(--ease);
}
.tour__markers li.is-active i {
  background: var(--gold);
  width: 22px;
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201,168,92,.4);
}
.tour__markers li.is-active b { color: var(--gold); }
.tour__markers li.is-active span { color: var(--paper); opacity: 1; }
.tour__markers li.is-passed i { background: rgba(201,168,92,.4); }

/* cabin */
.tour__cabin {
  position: absolute;
  left: 50%;
  /* cabin-y: 0=ground (bottom-most), 1=top (floor 5) */
  /* shaft inner area runs from 4% to 96% (8% padding total) */
  bottom: calc(8% + (84% * var(--cabin-y)));
  transform: translateX(-50%);
  width: 56%;
  height: 13%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  z-index: 5;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.6));
  transition: bottom .9s var(--ease);
}
.tour__cabin-top {
  height: 12px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(220,194,125,.3);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  display: grid; place-items: center;
}
.tour__cabin-arrow {
  font-size: 8px;
  color: var(--gold-light);
  animation: arrowUp 1.4s ease-in-out infinite;
}
.tour__cabin-body {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border: 1px solid rgba(220,194,125,.3);
  overflow: hidden;
}
.tour__cabin-door {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, rgba(40,20,82,.7), rgba(18,7,38,.7));
  z-index: 2;
}
.tour__cabin-door--l { left: 0; border-right: 1px solid rgba(220,194,125,.12); }
.tour__cabin-door--r { right: 0; border-left: 1px solid rgba(220,194,125,.12); }
.tour__cabin-seam {
  position: absolute;
  left: 50%; top: 16%; bottom: 16%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 8px var(--gold), 0 0 20px rgba(220,194,125,.3);
  transform: translateX(-50%);
  z-index: 3;
  animation: seamGlow 3s ease-in-out infinite;
}
.tour__cabin-floor {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(201,168,92,.5);
  z-index: 1;
  opacity: .7;
}
.tour__cabin-base {
  height: 10px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(220,194,125,.3);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

/* cabin glow effect when moving */
.tour__cabin::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 8px;
  background: radial-gradient(ellipse, rgba(201,168,92,.4), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  opacity: .8;
}

/* side info card (attached right of shaft) */
.tour__side {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(220,194,125,.22);
  border-radius: 14px;
  background: rgba(10,4,24,.85);
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  z-index: 6;
  min-width: 160px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.6);
}
.tour__side-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .04em;
}
.tour__side-row b {
  color: var(--paper-mute);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 9.5px;
}
.tour__side-row i {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(201,168,92,.3);
  transition: color .4s var(--ease);
}

/* scrolling floor content */
.tour__floors {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
}
.tour__floor {
  min-height: 70vh;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 50px 0;
  opacity: .35;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  border-bottom: 1px solid var(--rule-dark);
}
.tour__floor:last-child { border-bottom: 0; }
.tour__floor.is-active {
  opacity: 1;
  transform: none;
}
.tour__floor-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 30px rgba(201,168,92,.3);
  margin-bottom: -8px;
}
.tour__floor-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
  max-width: 18ch;
}
.tour__floor-p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--paper-soft);
  line-height: 1.55;
  max-width: 44ch;
}
.tour__feat {
  list-style: none;
  margin: 12px 0 6px; padding: 18px 0 0;
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 420px;
}
.tour__feat li {
  display: grid;
  gap: 4px;
}
.tour__feat b {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.005em;
  color: var(--paper);
  background: linear-gradient(135deg, var(--paper) 30%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tour__feat span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.tour__pills {
  list-style: none;
  margin: 8px 0 0; padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tour__pills li {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(220,194,125,.08);
  border: 1px solid rgba(220,194,125,.2);
  color: var(--paper);
}

@media (max-width: 880px) {
  .tour__stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tour__visual {
    position: sticky;
    top: 72px;
    height: 36vh;
    min-height: 280px;
    z-index: 2;
    pointer-events: none;
  }
  .tour__shaftbox {
    max-width: 280px;
    margin: 0 auto;
    pointer-events: auto;
  }
  .tour__shaft { width: 56%; height: 100%; min-height: 220px; }
  .tour__display { transform: scale(.85); transform-origin: top center; }
  .tour__side { display: none; }
  .tour__floor {
    min-height: 64vh;
    padding-block: clamp(28px, 6vw, 48px);
  }
  .tour__feat { grid-template-columns: 1fr 1fr; max-width: none; }
}

@media (max-width: 540px) {
  .tour__visual { height: 32vh; min-height: 240px; }
  .tour__shaftbox { max-width: 240px; }
  .tour__shaft { min-height: 200px; }
  .tour__floor { min-height: 60vh; }
}

/* ────────────────────────────────────────  SERVICES (light cream)  ──────────── */
.sec--services {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,168,92,.10), transparent 50%),
    linear-gradient(180deg, var(--paper-bg) 0%, var(--paper-bg-2) 100%);
  color: var(--ink);
}
.sec--services .sec__title { color: var(--ink); }
.sec--services .sec__title em {
  background: linear-gradient(135deg, var(--navy-mid) 20%, var(--gold-deep) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec--services .kicker { color: var(--ink-mute); }
.sec--services .kicker__dot { background: var(--gold-deep); box-shadow: 0 0 12px var(--gold); }
.sec--services .sec__hint { color: var(--ink-soft); }

.svc-grid {
  list-style: none;
  margin: 0; padding: 0;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid rgba(8,18,46,.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--paper-bg) 100%);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 1px 2px rgba(8,18,46,.03);
}
.svc::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(220,194,125,.3), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(8,18,46,.18);
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
  box-shadow: 0 30px 50px -20px rgba(8,18,46,.18), 0 4px 10px rgba(8,18,46,.04);
}
.svc:hover::before { opacity: 1; }
.svc__icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--navy-deep);
  color: var(--gold-light);
  margin-bottom: 24px;
  box-shadow: 0 10px 20px -10px rgba(8,18,46,.4);
}
.svc h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.svc p {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.svc__tags {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc__tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8,18,46,.04);
  border: 1px solid rgba(8,18,46,.08);
  color: var(--ink-soft);
}

@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────  CABINS  ──────────── */
.sec--cabins {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(220,194,125,.1), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}
.cabins {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  position: relative;
  border: 1px solid rgba(220,194,125,.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(40,20,82,.6), rgba(18,7,38,.6));
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(220,194,125,.3); }
.card--lg { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.05fr; }

.card__media {
  position: relative;
  padding: 28px;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,92,.25), transparent 70%),
    linear-gradient(180deg, rgba(40,20,82,.4), rgba(18,7,38,.4));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(220,194,125,.04) 28px, rgba(220,194,125,.04) 29px);
  pointer-events: none;
}
.card--lg .card__media { min-height: 460px; }

/* photo cabin */
.card__media--photo {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.card__media--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05) brightness(.92);
  transition: transform 1s var(--ease);
}
.card:hover .card__media--photo img { transform: scale(1.04); }
.card__media--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10,4,24,.5) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(201,168,92,.28), transparent 60%),
    linear-gradient(135deg, rgba(201,168,92,.15), rgba(201,168,92,.04));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.card__media-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(220,194,125,.05) 28px 29px);
  pointer-events: none;
  z-index: 3;
}
.card__badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(201,168,92,.16);
  border: 1px solid rgba(201,168,92,.4);
  color: var(--gold);
  z-index: 4;
}
.card__body {
  padding: 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.card__body .kicker { margin: 0; }
.card__body .kicker i { font-style: italic; color: var(--gold); }
.card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--paper);
}
.spec {
  list-style: none;
  margin: 8px 0 8px; padding: 0;
  border-top: 1px solid var(--rule-dark);
}
.spec li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-dark);
  align-items: baseline;
  font-size: 13px;
}
.spec li span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.spec li b {
  color: var(--paper);
  font-weight: 500;
}
.spec li b em { font-style: normal; color: var(--paper-mute); font-weight: 400; }

/* render: a stylised CSS-only elevator illustration */
.render {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 2;
}
.render__shaft {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.render__rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(220,194,125,.4) 15%, rgba(220,194,125,.4) 85%, transparent);
}
.render__rail--l { left: 18%; }
.render__rail--r { right: 18%; }
.render__cable {
  position: absolute;
  top: 0; bottom: 65%;
  left: 50%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  transform: translateX(-50%);
}
.render__halo {
  position: absolute;
  width: 80%; height: 60%;
  background: radial-gradient(closest-side, rgba(201,168,92,.32), transparent 80%);
  filter: blur(40px);
  z-index: -1;
}
.render__cab {
  position: relative;
  width: 60%;
  height: 65%;
  border: 1px solid rgba(220,194,125,.3);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  box-shadow:
    0 0 0 1px rgba(220,194,125,.04) inset,
    0 30px 50px -20px rgba(0,0,0,.6);
  overflow: hidden;
  animation: cabFloat 6s ease-in-out infinite;
}
.render__cab--lg { width: 56%; height: 72%; }
.render__cab--freight {
  width: 76%;
  height: 56%;
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.render__cab--home {
  width: 50%;
  height: 70%;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  position: relative;
}
.render__door {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, rgba(40,20,82,.7), rgba(18,7,38,.7));
}
.render__door--l { left: 0; border-right: 1px solid rgba(220,194,125,.1); }
.render__door--r { right: 0; border-left: 1px solid rgba(220,194,125,.1); }
.render__seam {
  position: absolute;
  left: 50%; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 8px var(--gold);
  transform: translateX(-50%);
  animation: seamGlow 3s ease-in-out infinite;
}
.render__seam--h {
  top: 50%;
  bottom: auto;
  left: 12%; right: 12%;
  width: auto; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  transform: none;
}
.render__panel {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 6px;
  z-index: 4;
}
.render__panel span {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(220,194,125,.1);
  border: 1px solid rgba(220,194,125,.2);
}
.render__panel .dot--lit {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,92,.6);
}
.render__porthole {
  position: absolute;
  left: 50%;
  top: 26%;
  transform: translateX(-50%);
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(220,194,125,.3), rgba(201,168,92,.1) 70%);
  border: 1px solid rgba(220,194,125,.3);
  z-index: 4;
}
.render__load {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(220,194,125,.4);
}

@media (max-width: 980px) {
  .cabins { grid-template-columns: 1fr; }
  .card--lg { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────  PROJECTS  ──────────── */
.sec--projects {
  background: linear-gradient(180deg, var(--bg-0) 0%, #0f1d44 50%, var(--bg-0) 100%);
}
.projects {
  list-style: none;
  margin: 0; padding: 0;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(380px, auto);
  gap: 16px;
}
.proj {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(220,194,125,.14);
  background: linear-gradient(180deg, rgba(40,20,82,.5), rgba(18,7,38,.5));
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.proj:hover { transform: translateY(-4px); border-color: rgba(220,194,125,.3); }
.proj--tall { grid-row: span 1; }
.proj__media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,168,92,.25), transparent 70%),
    linear-gradient(135deg, var(--bg-3), var(--bg-1));
  min-height: 220px;
}
.proj__art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* photo project media */
.proj__media--photo {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.proj__media--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05) brightness(.85);
  transition: transform 1.1s var(--ease);
}
.proj:hover .proj__media--photo img { transform: scale(1.06); }
.proj__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,4,24,.1) 40%, rgba(10,4,24,.7) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(201,168,92,.32), transparent 60%),
    linear-gradient(135deg, rgba(201,168,92,.1), rgba(201,168,92,.04));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* TOWER */
.proj__art--tower .proj__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 90%, rgba(220,194,125,.2), transparent 50%),
    linear-gradient(180deg, #08122e 0%, #0f1d44 60%, #2a1758 100%);
}
.proj__art--tower .proj__tower {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 78%;
  background:
    repeating-linear-gradient(0deg, rgba(220,194,125,.18) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-left: 1px solid rgba(220,194,125,.3);
  border-right: 1px solid rgba(220,194,125,.3);
  border-top: 2px solid rgba(220,194,125,.5);
}
.proj__art--tower .proj__cabglow {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 5%;
  background: var(--gold);
  filter: blur(6px);
  opacity: .8;
  animation: cabRide 8s ease-in-out infinite;
}
@keyframes cabRide {
  0%, 100% { bottom: 6%; }
  50%      { bottom: 70%; }
}

/* MALL — escalators */
.proj__art--mall {
  background:
    radial-gradient(circle at 50% 100%, rgba(201,168,92,.3), transparent 60%),
    linear-gradient(135deg, #0f1d44, #08122e);
}
.proj__art--mall .proj__esc,
.proj__art--mall .proj__esc--alt {
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  box-shadow: 0 0 16px var(--gold);
}
.proj__art--mall .proj__esc {
  top: 40%; left: 8%;
  transform: rotate(-22deg);
  transform-origin: left;
}
.proj__art--mall .proj__esc--alt {
  bottom: 20%; right: 8%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px var(--gold);
  transform: rotate(-22deg);
  transform-origin: right;
}
.proj__art--mall::before, .proj__art--mall::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(220,194,125,.3), transparent);
  border-radius: 2px;
}
.proj__art--mall::before {
  top: 60%; left: 8%;
  transform: rotate(22deg);
  transform-origin: left;
}
.proj__art--mall::after {
  bottom: 50%; right: 8%;
  transform: rotate(22deg);
  transform-origin: right;
}

/* OFFICE */
.proj__art--office {
  background: linear-gradient(180deg, #0f1d44, #08122e);
}
.proj__art--office .proj__office {
  position: absolute;
  inset: 12% 16%;
  background:
    repeating-linear-gradient(90deg, rgba(220,194,125,.15) 0 1px, transparent 1px 14%),
    repeating-linear-gradient(0deg, rgba(220,194,125,.15) 0 1px, transparent 1px 22%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(220,194,125,.25);
}
.proj__art--office .proj__office::before {
  content: ''; position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(201,168,92,.6), transparent 14%),
    radial-gradient(circle at 75% 35%, rgba(201,168,92,.5), transparent 12%),
    radial-gradient(circle at 25% 75%, rgba(220,194,125,.5), transparent 14%);
}
.proj__art--office .proj__signal {
  position: absolute;
  top: 12%; right: 18%;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,92,.18), 0 0 0 16px rgba(201,168,92,.08);
  animation: pulse 2.4s ease infinite;
}

/* HOSPITAL */
.proj__art--hospital {
  background: linear-gradient(135deg, #0f1d44, #08122e);
}
.proj__art--hospital .proj__cross {
  position: absolute;
  top: 24%; left: 50%;
  transform: translateX(-50%);
  width: 22%;
  aspect-ratio: 1;
}
.proj__art--hospital .proj__cross::before,
.proj__art--hospital .proj__cross::after {
  content: ''; position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--navy-mid));
  box-shadow: 0 0 30px rgba(220,194,125,.5);
  border-radius: 4px;
}
.proj__art--hospital .proj__cross::before {
  top: 0; left: 38%;
  width: 24%; height: 100%;
}
.proj__art--hospital .proj__cross::after {
  top: 38%; left: 0;
  width: 100%; height: 24%;
}
.proj__art--hospital .proj__ecg {
  position: absolute;
  bottom: 20%;
  left: 8%; right: 8%;
  height: 1px;
  background:
    linear-gradient(90deg,
      var(--paper-mute) 0%, var(--paper-mute) 30%,
      transparent 30%, transparent 35%,
      var(--gold) 35%, var(--gold) 36%,
      transparent 36%, transparent 41%,
      var(--paper-mute) 41%, var(--paper-mute) 100%);
}
.proj__art--hospital .proj__ecg::before {
  content: '';
  position: absolute;
  top: -16px; left: 32%;
  width: 8px; height: 16px;
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.proj__body {
  padding: 24px 26px 26px;
  display: grid;
  gap: 8px;
}
.proj__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold);
  display: inline-block;
}
.proj h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}
.proj__loc {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin: 0;
}
.proj__chips {
  list-style: none;
  margin: 12px 0 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proj__chips li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(220,194,125,.08);
  border: 1px solid rgba(220,194,125,.14);
  color: var(--paper-soft);
}

@media (max-width: 880px) { .projects { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────  WHY ESA (light)  ──────────── */
.sec--why {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,92,.14), transparent 60%),
    linear-gradient(180deg, var(--paper-bg) 0%, var(--paper-bg-2) 100%);
  text-align: center;
  color: var(--ink);
}
.sec--why .sec__title { color: var(--ink); }
.sec--why .sec__title em {
  background: linear-gradient(135deg, var(--navy-mid) 20%, var(--gold-deep) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec--why .kicker { color: var(--ink-mute); }
.sec--why .kicker__dot { background: var(--gold-deep); box-shadow: 0 0 12px var(--gold); }
.why {
  list-style: none;
  margin: 0 auto clamp(60px, 8vw, 100px); padding: 0;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why li {
  padding: 32px 22px;
  border: 1px solid rgba(8,18,46,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white) 0%, var(--paper-bg) 100%);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 1px 2px rgba(8,18,46,.03);
}
.why li:hover {
  transform: translateY(-4px);
  border-color: rgba(8,18,46,.18);
  box-shadow: 0 30px 50px -20px rgba(8,18,46,.18);
}
.why__icon {
  font-size: 24px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  box-shadow: 0 10px 20px -10px rgba(8,18,46,.4);
}
.why h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.why p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 880px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why { grid-template-columns: 1fr; } }

.quote {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 80% 100%, rgba(201,168,92,.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: left;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  box-shadow: 0 30px 60px -20px rgba(8,18,46,.4);
}
.quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 24px;
  font-family: var(--f-italic);
  font-size: 220px;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  font-style: italic;
}
.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.quote figcaption strong {
  color: var(--gold-light);
  font-weight: 500;
}
.quote figcaption span {
  color: var(--paper-mute);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────  CONTACT  ──────────── */
.sec--contact {
  background:
    radial-gradient(ellipse at 80% 100%, rgba(201,168,92,.1), transparent 50%),
    radial-gradient(ellipse at 20% 0%, rgba(201,168,92,.18), transparent 50%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}
.contact {
  max-width: var(--maxw);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid rgba(220,194,125,.18);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(201,168,92,.08), transparent 50%),
    linear-gradient(135deg, rgba(40,20,82,.65), rgba(18,7,38,.65));
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.contact__copy { display: grid; gap: 18px; }
.contact__copy .sec__title { font-size: clamp(36px, 5.5vw, 80px); }
.contact__lede {
  margin: 0;
  font-size: 15px;
  color: var(--paper-soft);
  max-width: 44ch;
}
.contact__lines {
  list-style: none;
  margin: 8px 0 0; padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
}
.contact__lines li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-dark);
  align-items: baseline;
}
.contact__lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.contact__val {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
  position: relative;
  display: inline-block;
}
a.contact__val { transition: color .25s var(--ease); }
a.contact__val:hover { color: var(--gold); }

.callbtn {
  position: relative;
  width: 240px; height: 240px;
  display: grid;
  place-items: center;
  justify-self: center;
  isolation: isolate;
}
.callbtn__halo {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,168,92,.4), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.callbtn__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(220,194,125,.3);
}
.callbtn::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(220,194,125,.2);
  border-radius: 50%;
}
.callbtn__core {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  display: grid; place-items: center;
  box-shadow:
    0 20px 50px -10px rgba(201,168,92,.7),
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -2px 0 rgba(0,0,0,.12);
  transition: transform .35s var(--bounce);
}
.callbtn:hover .callbtn__core { transform: scale(1.08); }
.callbtn:hover .callbtn__ring { transform: scale(1.04); transition: transform .35s var(--ease); }
.callbtn__lbl {
  position: absolute;
  inset: 0;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--paper-soft);
  white-space: nowrap;
  pointer-events: none;
}
/* circular text using SVG-ish trick: rotate via animation */
.callbtn__lbl {
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 0deg, transparent 0deg, transparent 360deg);
}
.callbtn__lbl::before {
  content: attr(class);
  display: none;
}

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; text-align: center; }
  .contact__copy .kicker { justify-content: center; }
  .contact__lines li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; text-align: left; }
}

/* ────────────────────────────────────────  FOOTER  ──────────── */
.footer {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-top: 60px;
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: clamp(24px, 3vw, 56px);
}
.footer__brand p {
  margin: 16px 0 0;
  color: var(--paper-soft);
  font-size: 13.5px;
  max-width: 30ch;
}
.footer__col { display: grid; gap: 8px; align-content: start; }
.footer h5 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 500;
}
.footer__col a, .footer__col span {
  color: var(--paper);
  font-size: 14px;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--gold-light); }
.footer__bar {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
@media (max-width: 880px) { .footer { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer { grid-template-columns: 1fr; } }

/* ───── reveal ───── */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marq, .preload__cable, .preload__box, .cab, .render__cab, .cab__seam, .render__seam,
  .cab__arrow, .nav__cta .dot, .proj__cabglow, .proj__signal { animation: none !important; }
}
