/* ==========================================================================
   AGS LUX - v2 "MIDNIGHT TERMINAL"
   A private terminal at midnight: blue-black night, gold horizon,
   runway approach lights, split-flap board, boarding-pass forms.
   Display: Cinzel · Sub-voice: EB Garamond Italic · Body/UI: Manrope
   ========================================================================== */

:root {
  --night: #050508;
  --night-2: #0b0b13;
  --night-3: #12121c;
  --carbon: #191925;
  --ivory: #f2eee3;
  --ivory-dim: rgba(242, 238, 227, 0.76);
  --ivory-faint: rgba(242, 238, 227, 0.55);
  --gold: #c9a461;
  --gold-bright: #efdca4;
  --gold-deep: #8f6f35;
  --gold-grad: linear-gradient(135deg, #efdca4 0%, #c9a461 45%, #8f6f35 100%);
  --paper: #f2e8d2;
  --paper-2: #e9dcc0;
  --ink: #1e1710;
  --ink-60: rgba(30, 23, 16, 0.72);
  --ink-40: rgba(30, 23, 16, 0.5);
  --ink-20: rgba(30, 23, 16, 0.2);
  --signal: #37c978;
  --hairline: rgba(242, 238, 227, 0.09);
  --hairline-strong: rgba(242, 238, 227, 0.2);
  --hairline-gold: rgba(201, 164, 97, 0.34);
  --caps: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-lux: cubic-bezier(0.76, 0, 0.24, 1);
  --clip-plate: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  --container: 86rem;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

input,
select,
textarea {
  caret-color: var(--gold);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  background:
    radial-gradient(ellipse 140% 50% at 50% -10%, #0a0a14 0%, transparent 60%),
    var(--night);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: #23233a;
  border-radius: 99px;
  border: 2px solid var(--night);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* --------------------------------------------------------------------------
   Atmosphere - night sky, horizon, grain, progress
   -------------------------------------------------------------------------- */

.bg-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 70vw;
  height: 70vw;
  min-width: 680px;
  min-height: 680px;
  border-radius: 50%;
  top: -34vw;
  right: -22vw;
  background: radial-gradient(circle, rgba(201, 164, 97, 0.1), rgba(201, 164, 97, 0) 62%);
  animation: glow-breathe 12s ease-in-out infinite alternate;
}

.bg-glow--low {
  top: auto;
  right: auto;
  bottom: -34vw;
  left: -24vw;
  background: radial-gradient(circle, rgba(201, 164, 97, 0.065), rgba(201, 164, 97, 0) 60%);
  animation-delay: -6s;
}

@keyframes glow-breathe {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.18); opacity: 1; }
}

.bg-grain {
  position: fixed;
  inset: -50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.1s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform-origin: left;
  transform: scaleX(0);
}

main {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Splash (index only) - the board flips the name into place
   -------------------------------------------------------------------------- */

#splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #040406;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  transition: transform 1s var(--ease-lux), visibility 1s;
}

#splash.gone {
  transform: translateY(-100%);
  visibility: hidden;
}

#splash .splash-logo {
  font-family: var(--caps);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.1;
  padding-left: 0.42em;
}

#splash .splash-logo .fl {
  display: inline-block;
  min-width: 0.62em;
  text-align: center;
}

#splash .splash-tag {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.5em;
}

#splash .splash-bar {
  width: 240px;
  height: 1px;
  background: rgba(242, 238, 227, 0.12);
  overflow: hidden;
}

#splash .splash-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-grad);
  transition: width 1s var(--ease-lux);
}

body.splash-lock {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Typography - Trajan caps over a Garamond whisper
   -------------------------------------------------------------------------- */

.display-1,
.display-2,
.display-3 {
  font-family: var(--caps);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ivory);
}

.display-1 {
  font-size: clamp(2.35rem, 5.6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.display-2 {
  font-size: clamp(1.65rem, 3.4vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.display-3 {
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.24;
  letter-spacing: 0.06em;
}

.display-4 {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.1vw, 1.75rem);
  line-height: 1.3;
  color: var(--ivory);
}

/* Gold-leaf accent word (Cinzel has no italic; the accent is gold, not slanted) */
.display-1 em,
.display-2 em,
.display-3 em {
  font-style: normal;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* Kicker - eyebrow with an approach-light rule before it */
.kicker {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 3.4rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 11px);
  flex: none;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.body-l {
  font-size: 1.09rem;
  line-height: 1.85;
  font-weight: 400;
}

.body-s {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--ivory-faint);
}

.measure {
  max-width: 40em;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 4rem; }

.numeral {
  font-family: var(--caps);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

.container--narrow {
  max-width: 64rem;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.section--tight {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section--flush-top {
  padding-top: 0;
}

.section--panel {
  background: linear-gradient(180deg, var(--night-2), var(--night-3) 50%, var(--night-2));
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* Paper band - the luggage-tag interlude (replaces the old cream section) */
.section--cream {
  background: var(--paper);
  color: var(--ink-60);
  border-block: 10px solid var(--night);
  position: relative;
}

.section--cream::before,
.section--cream::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 6px, var(--ink) 6px 7px, transparent 7px 12px);
  opacity: 0.16;
  pointer-events: none;
}

.section--cream::before { top: 14px; }
.section--cream::after { bottom: 14px; }

.section--cream .display-1,
.section--cream .display-2,
.section--cream .display-3,
.section--cream .display-4,
.section--cream .lead {
  color: var(--ink);
}

.section--cream .eyebrow,
.section--cream .kicker {
  color: var(--gold-deep);
}

.section--cream .body-s {
  color: var(--ink-40);
}

/* Section header - flight-code + approach lights */
.sec-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sec-head .sec-no {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.sec-head .sec-no::before {
  content: "AGS \00B7 ";
  color: var(--ivory-faint);
}

.sec-head .sec-rule {
  position: relative;
  width: 5.5rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201, 164, 97, 0.55) 0 5px, transparent 5px 11px);
  overflow: hidden;
}

.sec-head .sec-rule::after {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -6px;
  width: 6px;
  height: 4px;
  border-radius: 99px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px 1px rgba(239, 220, 164, 0.8);
  animation: approach 2.6s ease-in-out infinite;
}

@keyframes approach {
  0% { left: -8%; opacity: 0; }
  12% { opacity: 1; }
  70%, 100% { left: 104%; opacity: 0; }
}

.sec-head .eyebrow {
  color: var(--ivory-faint);
  letter-spacing: 0.3em;
}

/* Giant ghost code behind sections */
.ghost-word {
  position: absolute;
  top: -0.1em;
  left: -0.02em;
  z-index: -1;
  font-family: var(--caps);
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 238, 227, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section--cream .ghost-word {
  -webkit-text-stroke-color: rgba(30, 23, 16, 0.07);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.grid-2--contact {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--hairline);
}

/* Runway divider - approach lights between blocks */
.runway {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201, 164, 97, 0.4) 0 6px, transparent 6px 14px);
  overflow: hidden;
  margin-block: clamp(2rem, 4vw, 3rem);
}

.runway::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -8px;
  width: 8px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold-bright);
  box-shadow: 0 0 10px 2px rgba(239, 220, 164, 0.7);
  animation: approach 3.4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), backdrop-filter 0.5s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  transition: padding 0.5s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 10, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--hairline), 0 24px 60px rgba(0, 0, 0, 0.5);
}

.site-header.is-scrolled .site-header__inner {
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ivory);
}

.brand__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 4px rgba(201, 164, 97, 0.16);
  animation: dot-pulse 3.2s ease infinite;
  flex: none;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 164, 97, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(201, 164, 97, 0.05); }
}

.brand__text {
  font-family: var(--caps);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  line-height: 1;
}

.brand__text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 0.32rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-nav a {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.35s var(--ease-out);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ivory);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 8px);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: var(--ivory);
}

.site-nav .nav-cta {
  border: 1px solid var(--hairline-gold);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  padding: 0.75rem 1.5rem;
  color: var(--gold-bright);
  background: rgba(201, 164, 97, 0.04);
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s;
}

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

.site-nav .nav-cta:hover {
  background: var(--gold-grad);
  color: var(--night);
  box-shadow: 0 8px 26px rgba(201, 164, 97, 0.3);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  margin-inline: auto;
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Fullscreen mobile menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 4, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay nav {
  text-align: center;
}

.menu-overlay a {
  display: block;
  font-family: var(--caps);
  font-size: clamp(1.3rem, 4.6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-block: 0.55rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), color 0.3s;
}

.menu-overlay.is-open a {
  opacity: 1;
  transform: none;
}

.menu-overlay a:hover {
  color: var(--gold-bright);
}

.menu-overlay a:nth-child(1) { transition-delay: 0.06s; }
.menu-overlay a:nth-child(2) { transition-delay: 0.11s; }
.menu-overlay a:nth-child(3) { transition-delay: 0.16s; }
.menu-overlay a:nth-child(4) { transition-delay: 0.21s; }
.menu-overlay a:nth-child(5) { transition-delay: 0.26s; }
.menu-overlay a:nth-child(6) { transition-delay: 0.31s; }
.menu-overlay a:nth-child(7) { transition-delay: 0.36s; }
.menu-overlay a:nth-child(8) { transition-delay: 0.41s; }

body.menu-locked {
  overflow: hidden;
}

body.menu-locked .site-header {
  z-index: 300;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* --------------------------------------------------------------------------
   Buttons - clipped gold plates & reticle ghosts
   -------------------------------------------------------------------------- */

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #171204;
  background: var(--gold-grad);
  clip-path: var(--clip-plate);
  padding: 1.2rem 2.9rem;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), filter 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.07);
}

.btn-gold:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-135%);
  animation: btn-gleam 5s ease-in-out infinite;
}

@keyframes btn-gleam {
  0%, 58% { transform: translateX(-135%); }
  78%, 100% { transform: translateX(135%); }
}

/* Reticle ghost button - gold corner ticks that close into a frame */
.btn-line,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(242, 238, 227, 0.02);
  border: 1px solid var(--hairline);
  padding: 1.2rem 2.9rem;
  cursor: pointer;
  position: relative;
  transition: color 0.4s, background 0.4s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.4s;
}

.btn-line::before,
.btn-line::after,
.btn-wa::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  transition: width 0.45s var(--ease-out), height 0.45s var(--ease-out);
  pointer-events: none;
}

.btn-line::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.btn-line::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.btn-line:hover::before,
.btn-line:hover::after {
  width: 100%;
  height: 100%;
}

.btn-line:hover {
  color: var(--gold-bright);
  background: rgba(201, 164, 97, 0.06);
  transform: translateY(-3px);
}

/* WhatsApp variant - reticle in signal green with live dot */
.btn-wa::before {
  content: "";
  position: static;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(55, 201, 120, 0.5);
  animation: wa-pulse 2.4s ease infinite;
  flex: none;
  transition: none;
}

.btn-wa::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--signal);
  border-right: 1px solid var(--signal);
}

.btn-wa:hover::after {
  width: 100%;
  height: 100%;
}

.btn-wa:hover {
  color: #d9f2e3;
  background: rgba(55, 201, 120, 0.05);
  transform: translateY(-3px);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(55, 201, 120, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(55, 201, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(55, 201, 120, 0); }
}

.section--cream .btn-line {
  color: var(--ink);
  border-color: var(--ink-20);
  background: rgba(30, 23, 16, 0.03);
}

.section--cream .btn-line:hover {
  color: var(--gold-deep);
}

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.link-line::after {
  content: "\2192";
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
}

.link-line:hover::after {
  transform: translateX(0.5rem);
}

.section--cream .link-line {
  color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   Concierge pill - fixed, every page
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(8, 8, 14, 0.84);
  border: 1px solid var(--hairline-gold);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: color 0.4s, transform 0.35s var(--ease-out), background 0.4s;
}

.wa-float::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(55, 201, 120, 0.5);
  animation: wa-pulse 2.4s ease infinite;
  flex: none;
}

.wa-float:hover {
  color: var(--gold-bright);
  background: rgba(14, 14, 22, 0.92);
  transform: translateY(-3px);
}

.wa-float span small {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Heroes
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.62);
  animation: hero-settle 3.2s var(--ease-out) both;
}

@keyframes hero-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Cinematic crossfade slides (home) */
.hero__media .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.58);
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.8s ease;
  animation: none;
}

.hero__media .slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.8s ease, transform 9s linear;
}

/* Night gradient + gold horizon */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 36% at 50% 104%, rgba(201, 164, 97, 0.22), transparent 62%),
    linear-gradient(to top, var(--night) 2%, rgba(5, 5, 8, 0.5) 32%, rgba(5, 5, 8, 0.32) 68%, rgba(5, 5, 8, 0.62) 100%);
}

.hero__content {
  width: 100%;
  padding-top: clamp(8.5rem, 17vh, 12rem);
  padding-bottom: clamp(5.5rem, 10vh, 8rem);
}

.hero .display-1 {
  max-width: 15em;
  text-shadow: 0 6px 60px rgba(0, 0, 0, 0.5);
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  line-height: 1.7;
  color: rgba(242, 238, 227, 0.9);
  max-width: 34em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(5.5rem, 10vh, 8rem);
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(242, 238, 227, 0.6);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Slide caption - bottom right, which machine is on screen */
.hero__caption {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 4vh, 3rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.hero__caption .cap-no {
  font-family: var(--caps);
  color: var(--gold-bright);
  font-size: 0.72rem;
}

.hero__caption .cap-bar {
  width: 3rem;
  height: 1px;
  background: var(--hairline-strong);
  position: relative;
  overflow: hidden;
}

.hero__caption .cap-bar i {
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* Inner-page hero */
.hero--page {
  min-height: 76svh;
}

.hero--page .hero__content {
  padding-top: clamp(8rem, 15vh, 11rem);
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
}

/* Floating route chip */
.route-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--hairline-gold);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  background: rgba(5, 5, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.route-chip strong {
  font-family: var(--caps);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}

.route-chip::before {
  content: "\25C6";
  font-size: 0.4rem;
  color: var(--signal);
  animation: chip-blink 2.2s ease infinite;
}

@keyframes chip-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --------------------------------------------------------------------------
   Check-in strip - first-class booking bar (home hero)
   -------------------------------------------------------------------------- */

.check-in {
  margin-top: clamp(2rem, 4vh, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  background: rgba(6, 6, 12, 0.66);
  border: 1px solid var(--hairline-gold);
  clip-path: var(--clip-plate);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 52rem;
}

.check-in__field {
  padding: 1rem 1.4rem 0.9rem;
  border-right: 1px solid var(--hairline);
}

.check-in__field label {
  display: block;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.check-in__field input,
.check-in__field select {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ivory);
  background: transparent;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  cursor: pointer;
}

.check-in__field input::placeholder {
  color: rgba(242, 238, 227, 0.35);
  font-style: italic;
}

.check-in__field select option {
  background: var(--night-2);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.check-in .btn-gold {
  clip-path: none;
  padding-inline: 2.2rem;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Ticker - destination codes marquee
   -------------------------------------------------------------------------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(6, 6, 11, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding-block: 1.2rem;
  position: relative;
  z-index: 3;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-run 46s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker__track ul {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker__track li {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ticker__track li::after {
  content: "\25C6";
  font-size: 0.4rem;
  color: var(--gold);
  margin-inline: 2.4rem;
}

/* --------------------------------------------------------------------------
   Gauges - cockpit instruments (replaces flat stat band)
   -------------------------------------------------------------------------- */

.gauge-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-block: 1px solid var(--hairline);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.gauge__dial {
  --fill: 0;
  position: relative;
  width: clamp(7.5rem, 11vw, 9.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, var(--gold) calc(var(--fill) * 1%), rgba(242, 238, 227, 0.08) 0);
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%, #000 100%);
  mask: radial-gradient(circle, transparent 62%, #000 63%, #000 100%);
  transition: --fill 2s;
}

.gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* dial + number live in one wrapper so the mask doesn't eat the text */
.gauge__face {
  position: relative;
  width: clamp(7.5rem, 11vw, 9.5rem);
  aspect-ratio: 1;
}

.gauge__face .gauge__dial {
  position: absolute;
  inset: 0;
  width: 100%;
}

.gauge__value {
  font-family: var(--caps);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.gauge__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  max-width: 14em;
}

/* --------------------------------------------------------------------------
   Departures board - split-flap
   -------------------------------------------------------------------------- */

.board {
  background: linear-gradient(180deg, var(--night-2), #0d0d16);
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(242, 238, 227, 0.04);
}

.board__head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 0.7fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: 1.1rem clamp(1rem, 2.5vw, 2.4rem);
  border-bottom: 1px solid var(--hairline);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 164, 97, 0.04);
}

.board__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 0.7fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 2.8vw, 2.2rem) clamp(1rem, 2.5vw, 2.4rem);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.55s var(--ease-out), opacity 0.4s;
}

.board__row:last-child {
  border-bottom: 0;
}

a.board__row:hover {
  background: linear-gradient(90deg, rgba(201, 164, 97, 0.1), rgba(201, 164, 97, 0.02) 60%, transparent);
}

.board:hover a.board__row:not(:hover) {
  opacity: 0.45;
}

.board__route {
  font-family: var(--caps);
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ivory);
  transition: color 0.4s;
}

.board__route .arr {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-inline: 0.24em;
  font-weight: 600;
}

/* split-flap character (built by JS from the route text) */
.board__route .fl {
  display: inline-block;
  min-width: 0.16em;
  backface-visibility: hidden;
}

.board__route .fl.is-flapping {
  color: var(--ivory-faint);
}

a.board__row:hover .board__route {
  color: var(--gold-bright);
}

.board__meta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
}

.board__meta small {
  display: block;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 0.25rem;
}

.board__price {
  font-family: var(--caps);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.board__price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(242, 238, 227, 0.38);
  margin-bottom: 0.25rem;
}

.board__arrow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--hairline-strong);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-bright);
  transition: background 0.45s var(--ease-out), color 0.45s, transform 0.45s var(--ease-out);
  flex: none;
}

a.board__row:hover .board__arrow {
  background: var(--gold-grad);
  color: var(--night);
  transform: rotate(-45deg);
}

.board__note {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
}

/* --------------------------------------------------------------------------
   Service panels - six doors that breathe open (home)
   -------------------------------------------------------------------------- */

.svc-panels {
  display: flex;
  gap: 6px;
  height: clamp(30rem, 72vh, 40rem);
}

.svc-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--hairline);
  transition: flex 0.85s var(--ease-lux);
  display: block;
}

.svc-panel.is-open,
.svc-panel:hover,
.svc-panel:focus-visible {
  flex: 3.4;
}

.svc-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.06) brightness(0.5);
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-out), filter 0.8s;
  z-index: -2;
}

.svc-panel:hover .svc-panel__img,
.svc-panel.is-open .svc-panel__img {
  transform: scale(1);
  filter: saturate(0.85) contrast(1.06) brightness(0.62);
}

.svc-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 40% at 50% 108%, rgba(201, 164, 97, 0.2), transparent 60%),
    linear-gradient(to top, rgba(5, 5, 8, 0.92) 8%, rgba(5, 5, 8, 0.25) 55%, rgba(5, 5, 8, 0.45) 100%);
}

.svc-panel__no {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* Vertical label while closed */
.svc-panel__spine {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  font-family: var(--caps);
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
  transition: opacity 0.4s;
}

.svc-panel:hover .svc-panel__spine,
.svc-panel.is-open .svc-panel__spine {
  opacity: 0;
}

/* Revealed body when open */
.svc-panel__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out) 0.25s, transform 0.6s var(--ease-out) 0.25s;
}

.svc-panel:hover .svc-panel__body,
.svc-panel.is-open .svc-panel__body {
  opacity: 1;
  transform: none;
}

.svc-panel__title {
  display: block;
  font-family: var(--caps);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
}

.svc-panel__desc {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(242, 238, 227, 0.85);
  max-width: 30em;
  min-width: 16rem;
}

.svc-panel__go {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}

.svc-panel__go::after {
  content: "\2192";
  font-family: var(--serif);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Concierge chat - the product, demonstrated
   -------------------------------------------------------------------------- */

.chat {
  background: linear-gradient(180deg, var(--night-3), var(--night-2));
  border: 1px solid var(--hairline);
  clip-path: var(--clip-plate);
  max-width: 30rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.chat__bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--hairline);
  background: rgba(201, 164, 97, 0.04);
}

.chat__bar .chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(55, 201, 120, 0.5);
  animation: wa-pulse 2.4s ease infinite;
  flex: none;
}

.chat__bar strong {
  font-family: var(--caps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
}

.chat__bar span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-left: auto;
}

.chat__body {
  padding: 1.6rem 1.5rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chat__msg {
  max-width: 82%;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ivory-dim);
  background: var(--carbon);
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 14px 4px;
}

.chat__msg--guest {
  align-self: flex-end;
  background: rgba(55, 201, 120, 0.09);
  border-color: rgba(55, 201, 120, 0.22);
  color: var(--ivory);
  border-radius: 14px 14px 4px 14px;
}

.chat__msg strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.chat__msg time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ivory-faint);
  text-align: right;
}

.chat__typing {
  display: inline-flex;
  gap: 5px;
  padding: 0.9rem 1.15rem;
  background: var(--carbon);
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 14px 4px;
  width: max-content;
}

.chat__typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ivory-faint);
  animation: typing 1.2s ease infinite;
}

.chat__typing i:nth-child(2) { animation-delay: 0.15s; }
.chat__typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { transform: none; opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Imagery - reticle frames, diagonal reveals
   -------------------------------------------------------------------------- */

.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--night-3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
  transition: transform 1.6s var(--ease-out);
}

.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.45), transparent 45%);
}

/* reticle corner ticks */
.img-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--gold-bright), var(--gold-bright)) top left / 14px 1px,
    linear-gradient(var(--gold-bright), var(--gold-bright)) top left / 1px 14px,
    linear-gradient(var(--gold-bright), var(--gold-bright)) bottom right / 14px 1px,
    linear-gradient(var(--gold-bright), var(--gold-bright)) bottom right / 1px 14px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), inset 0.6s var(--ease-out);
}

a:hover .img-frame img,
.img-frame:hover img {
  transform: scale(1.05);
}

a:hover .img-frame::after,
.img-frame:hover::after {
  opacity: 0.9;
  inset: 10px;
}

.img-frame--43 { aspect-ratio: 4 / 3; }
.img-frame--34 { aspect-ratio: 3 / 4; }
.img-frame--169 { aspect-ratio: 16 / 9; }
.img-frame--45 { aspect-ratio: 4 / 5; }
.img-frame--21 { aspect-ratio: 21 / 9; }

.img-caption {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 1.1rem;
}

/* --------------------------------------------------------------------------
   Split section
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.split--text-lead {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split__media--offset {
  margin-top: clamp(2rem, 6vw, 5rem);
}

/* --------------------------------------------------------------------------
   Numbered index (inner pages)
   -------------------------------------------------------------------------- */

.num-list {
  border-top: 1px solid var(--hairline);
}

.num-item {
  position: relative;
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr) minmax(0, 1.15fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.2rem);
  padding-inline: clamp(0.5rem, 2vw, 2rem);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.55s var(--ease-out), opacity 0.4s;
}

a.num-item:hover {
  background: linear-gradient(90deg, rgba(201, 164, 97, 0.09), rgba(201, 164, 97, 0.015) 60%, transparent);
}

.num-list:hover a.num-item:not(:hover) {
  opacity: 0.4;
}

.num-item__no {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.num-item__title {
  font-family: var(--caps);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ivory);
  transition: transform 0.55s var(--ease-out), color 0.4s;
}

a.num-item:hover .num-item__title {
  transform: translateX(0.6rem);
  color: var(--gold-bright);
}

.num-item__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ivory-dim);
}

.num-item__arrow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--hairline-strong);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-bright);
  transition: background 0.45s var(--ease-out), color 0.45s, transform 0.45s var(--ease-out);
  flex: none;
}

a.num-item:hover .num-item__arrow {
  background: var(--gold-grad);
  color: var(--night);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Service detail blocks
   -------------------------------------------------------------------------- */

.service-block {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: 7rem;
}

.service-block:last-child {
  border-bottom: 1px solid var(--hairline);
}

.service-block__meta {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-block ul {
  margin-top: 1.75rem;
}

.service-block ul li {
  font-size: 0.95rem;
  color: var(--ivory-dim);
  padding: 0.7rem 0 0.7rem 1.6rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: color 0.3s, padding-left 0.4s var(--ease-out);
}

.service-block ul li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.38rem;
  color: var(--gold);
}

.service-block ul li:hover {
  color: var(--ivory);
  padding-left: 2rem;
}

.service-block ul li:first-child {
  border-top: 1px solid var(--hairline);
}

/* --------------------------------------------------------------------------
   Editorial cards
   -------------------------------------------------------------------------- */

.card-editorial {
  display: block;
}

.card-editorial__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.6rem;
}

.card-editorial__meta::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 8px);
}

.card-editorial__title {
  font-family: var(--caps);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ivory);
  margin-top: 0.7rem;
  max-width: 20em;
  transition: color 0.4s;
}

.card-editorial:hover .card-editorial__title {
  color: var(--gold-bright);
}

.card-editorial__desc {
  font-size: 0.95rem;
  color: var(--ivory-dim);
  margin-top: 0.9rem;
  max-width: 32em;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.step {
  position: relative;
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--hairline-gold);
}

.step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--gold-grad);
}

.step__no {
  font-family: var(--caps);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-family: var(--caps);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 1.2rem;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  margin-top: 0.8rem;
  max-width: 26em;
}

.section--cream .step h3 { color: var(--ink); }
.section--cream .step p { color: var(--ink-60); }

/* --------------------------------------------------------------------------
   Quote
   -------------------------------------------------------------------------- */

.quote {
  text-align: center;
  position: relative;
}

.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ivory);
  max-width: 26em;
  margin-inline: auto;
}

.section--cream .quote blockquote {
  color: var(--ink);
}

.quote figcaption {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--cream .quote figcaption {
  color: var(--gold-deep);
}

.quote figcaption::before,
.quote figcaption::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline-gold) 0 5px, transparent 5px 10px);
}

/* --------------------------------------------------------------------------
   Principles / promises / testimonials
   -------------------------------------------------------------------------- */

.principle {
  position: relative;
  padding: 2.2rem 1.9rem 2.4rem;
  background: linear-gradient(160deg, rgba(242, 238, 227, 0.03), rgba(242, 238, 227, 0.006));
  border: 1px solid var(--hairline);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.45s var(--ease-out), background 0.45s;
  overflow: hidden;
}

.principle:hover {
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(201, 164, 97, 0.07), rgba(242, 238, 227, 0.01));
}

.principle::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(239, 220, 164, 0.12) 50%, transparent 65%);
  transform: translateX(-135%);
}

.principle:hover::after {
  transform: translateX(135%);
  transition: transform 0.95s ease;
}

.principle__no {
  font-family: var(--caps);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.principle h3 {
  font-family: var(--caps);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.9rem;
}

.principle p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  margin-top: 0.8rem;
}

.principle--voice p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ivory-dim);
  margin-top: 0;
}

.principle--voice footer {
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--cream .principle {
  background: rgba(255, 255, 255, 0.34);
  border-color: var(--ink-20);
}

.section--cream .principle h3 { color: var(--ink); }
.section--cream .principle p { color: var(--ink-60); }

/* --------------------------------------------------------------------------
   Fleet cards + spec strips
   -------------------------------------------------------------------------- */

.fleet-rail {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.6rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
  cursor: grab;
}

.fleet-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.fleet-rail::-webkit-scrollbar {
  height: 6px;
}

.fleet-rail::-webkit-scrollbar-thumb {
  background: #23233a;
  border: 0;
}

.fleet-card {
  flex: 0 0 clamp(19rem, 30vw, 24rem);
  scroll-snap-align: start;
  display: block;
  position: relative;
}

.fleet-card__name {
  font-family: var(--caps);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 1.4rem;
  transition: color 0.4s;
}

.fleet-card:hover .fleet-card__name {
  color: var(--gold-bright);
}

.fleet-card__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.45rem;
}

.fleet-card__meta::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 8px);
}

.spec-strip {
  display: flex;
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--gold-deep);
  margin-top: 1.2rem;
  background: rgba(242, 238, 227, 0.015);
}

.spec-strip > div {
  flex: 1;
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.spec-strip > div + div {
  border-left: 1px solid var(--hairline);
}

.spec-strip dt {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.spec-strip dd {
  font-family: var(--caps);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   Platform cards
   -------------------------------------------------------------------------- */

.platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem 1.9rem;
  border: 1px solid var(--hairline);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  background: rgba(242, 238, 227, 0.015);
  transition: background 0.45s, transform 0.4s var(--ease-out);
}

.platform-card:hover {
  background: rgba(201, 164, 97, 0.06);
  transform: translateY(-4px);
}

.platform-card__name {
  font-family: var(--caps);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ivory);
}

.platform-card__name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 0.35rem;
}

.platform-card__arrow {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-bright);
  transition: transform 0.4s var(--ease-out);
}

.platform-card:hover .platform-card__arrow {
  transform: translateX(0.4rem) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  border-top: 1px solid var(--hairline);
}

.faq details {
  border-bottom: 1px solid var(--hairline);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem clamp(0.25rem, 1vw, 1rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  color: var(--ivory);
  transition: color 0.35s;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.45s var(--ease-out);
  flex: none;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: var(--gold-bright);
}

.faq details p {
  padding: 0 clamp(0.25rem, 1vw, 1rem) 2rem;
  max-width: 44em;
  font-size: 0.95rem;
  color: var(--ivory-dim);
}

/* --------------------------------------------------------------------------
   Contact details
   -------------------------------------------------------------------------- */

.contact-detail {
  padding: 1.8rem 0;
  border-top: 1px solid var(--hairline);
}

.contact-detail .eyebrow {
  margin-bottom: 0.8rem;
}

.contact-detail a,
.contact-detail p {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
  line-height: 1.4;
}

.contact-detail a:hover {
  color: var(--gold-bright);
}

.contact-detail .body-s {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ivory-faint);
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   The boarding pass - every quote form is a ticket
   -------------------------------------------------------------------------- */

.form-shell {
  position: relative;
  background:
    radial-gradient(ellipse 120% 60% at 50% -20%, rgba(255, 255, 255, 0.5), transparent 60%),
    var(--paper);
  color: var(--ink-60);
  padding: clamp(1.9rem, 4vw, 3rem);
  padding-left: calc(clamp(1.9rem, 4vw, 3rem) + 3.2rem);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

/* perforated stub */
.form-shell::before {
  content: "AGS LUX \00B7 PRIORITY ACCESS \00B7 PALM BEACH \00B7 MIAMI";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3.2rem;
  border-right: 2px dashed var(--ink-20);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-40);
  background: var(--paper-2);
}

/* barcode */
.form-shell::after {
  content: "";
  position: absolute;
  top: clamp(1.9rem, 4vw, 3rem);
  right: clamp(1.9rem, 4vw, 3rem);
  width: 92px;
  height: 30px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 8px, var(--ink) 8px 11px, transparent 11px 14px);
  opacity: 0.75;
}

.form-shell__title {
  font-family: var(--caps);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-right: 110px;
}

.form-shell__sub {
  font-size: 0.82rem;
  color: var(--ink-40);
  margin-top: 0.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.form-grid .form-field--full {
  grid-column: 1 / -1;
}

.form-field {
  position: relative;
  padding-top: 1.4rem;
}

.form-field label {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-20);
  border-radius: 0;
  padding-block: 0.55rem;
  outline: none;
  transition: border-color 0.4s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
  color-scheme: light;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 6.5rem;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold-deep);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-40);
  font-style: italic;
}

.form-field input[type="date"],
.form-field input[type="time"] {
  min-height: 3rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.form-shell .btn-wa {
  color: var(--ink);
  border-color: var(--ink-20);
  background: rgba(30, 23, 16, 0.03);
}

.form-shell .btn-wa:hover {
  color: #1d5c38;
  background: rgba(55, 201, 120, 0.08);
}

.form-shell .body-s {
  color: var(--ink-40);
}

.form-success {
  display: none;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 1px dashed var(--ink-20);
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success .lead {
  color: var(--ink);
}

.form-success .body-l {
  color: var(--ink-60);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 97, 0.1), transparent 62%);
  pointer-events: none;
}

.cta-band .display-2 {
  max-width: 18em;
  margin-inline: auto;
  position: relative;
}

.cta-band p {
  margin-top: 1.5rem;
  color: var(--ivory-faint);
  position: relative;
}

.cta-band .cta-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  position: relative;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  z-index: 1;
  background: #040407;
  border-top: 1px solid var(--hairline);
  color: var(--ivory-faint);
  padding-top: clamp(4.5rem, 9vw, 7.5rem);
  padding-bottom: 2.6rem;
  overflow: hidden;
}

.footer-marquee {
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.footer-marquee__track {
  display: flex;
  width: max-content;
  animation: ticker-run 55s linear infinite;
}

.footer-marquee__track span {
  font-family: var(--caps);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 9rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.08;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 220, 164, 0.22);
  padding-right: 0.6em;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--hairline);
}

.site-footer__tag {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 22em;
}

.site-footer h4 {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.site-footer li {
  padding-block: 0.4rem;
}

.site-footer li a {
  font-size: 0.88rem;
  color: var(--ivory-dim);
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
}

.site-footer li a:hover {
  color: var(--gold-bright);
  padding-left: 0.5rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
}

.to-top {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--hairline-strong);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-bright);
  transition: background 0.4s var(--ease-out), color 0.4s, transform 0.35s var(--ease-out);
}

.to-top:hover {
  background: var(--gold-grad);
  color: var(--night);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   Reveal engine
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out), filter 1.05s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="blur"] {
  transform: translateY(18px);
  filter: blur(10px);
}

[data-reveal="blur"].is-visible {
  filter: blur(0);
}

/* diagonal wipe for imagery */
[data-reveal="mask"] {
  transform: none;
  clip-path: polygon(0 0, 0 0, -18% 100%, -18% 100%);
  transition: clip-path 1.25s var(--ease-lux), opacity 0.6s;
}

[data-reveal="mask"].is-visible {
  clip-path: polygon(0 0, 118% 0, 100% 100%, -18% 100%);
}

/* Letter-rise headlines */
.split-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.split-w > .split-wi {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease-lux);
  transition-delay: calc(var(--wi, 0) * 26ms);
}

.words-visible .split-w > .split-wi {
  transform: none;
}

.display-1 em .split-wi,
.display-2 em .split-wi,
.display-3 em .split-wi {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 600;
}

/* drawing rules */
.kicker[data-reveal]::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-lux) 0.15s;
}

.kicker[data-reveal].is-visible::before {
  transform: scaleX(1);
}

.sec-head[data-reveal] .sec-rule {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-lux) 0.2s;
}

.sec-head[data-reveal].is-visible .sec-rule {
  transform: scaleX(1);
}

/* gold-leaf shimmer on accent words */
.display-1 em,
.display-2 em,
.display-3 em,
.display-1 em .split-wi,
.display-2 em .split-wi,
.display-3 em .split-wi {
  background-size: 220% 100%;
  animation: em-shimmer 7s ease-in-out infinite alternate;
}

@keyframes em-shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

/* --------------------------------------------------------------------------
   Page veil
   -------------------------------------------------------------------------- */

.page-veil {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #04040a;
  transform: translateY(101%);
  pointer-events: none;
}

.page-veil::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
  opacity: 0.8;
}

.page-veil.is-active {
  transform: translateY(0);
  transition: transform 0.55s var(--ease-lux);
  pointer-events: all;
}

html.veil-enter .page-veil {
  transform: translateY(0);
  transition: none;
}

html.veil-leave .page-veil {
  transform: translateY(-101%);
  transition: transform 0.75s var(--ease-lux) 0.05s;
}

/* --------------------------------------------------------------------------
   Compass cursor
   -------------------------------------------------------------------------- */

html.has-cursor,
html.has-cursor a,
html.has-cursor button,
html.has-cursor input,
html.has-cursor select,
html.has-cursor textarea,
html.has-cursor label,
html.has-cursor summary {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 950;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--gold-bright);
  mix-blend-mode: difference;
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px dashed rgba(239, 220, 164, 0.75);
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out), border-color 0.3s, opacity 0.3s;
  animation: compass-spin 14s linear infinite;
}

@keyframes compass-spin {
  to { transform: rotate(360deg); }
}

html.cursor-on .cursor-dot,
html.cursor-on .cursor-ring {
  opacity: 1;
}

html.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-style: solid;
  border-color: rgba(239, 220, 164, 0.95);
}

html.cursor-hover .cursor-dot {
  opacity: 0.45;
}

/* --------------------------------------------------------------------------
   Parallax & magnetic ownership
   -------------------------------------------------------------------------- */

.img-frame img.plx-img {
  transition: none;
  will-change: transform;
}

.is-magnetic {
  transition-property: background, color, border-color, filter;
  will-change: transform;
}

.ghost-word {
  will-change: transform;
}

.hero__content {
  will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   Full-bleed night break - slashed edges, poster caps
   -------------------------------------------------------------------------- */

.img-break {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 58svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(6rem, 12vh, 9rem);
  clip-path: polygon(0 clamp(1.5rem, 3vw, 3rem), 100% 0, 100% calc(100% - clamp(1.5rem, 3vw, 3rem)), 0 100%);
}

.img-break__media {
  position: absolute;
  inset: -14% 0;
  z-index: -2;
}

.img-break__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06) brightness(0.5);
  will-change: transform;
}

.img-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 40% at 50% 108%, rgba(201, 164, 97, 0.16), transparent 60%),
    linear-gradient(to top, var(--night) 0%, rgba(5, 5, 8, 0.25) 32%, rgba(5, 5, 8, 0.25) 68%, var(--night) 100%);
}

.img-break blockquote {
  font-family: var(--caps);
  font-size: clamp(1.35rem, 3.1vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ivory);
  max-width: 22em;
  padding-inline: var(--gutter);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.img-break blockquote em {
  font-style: normal;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.img-break__caption {
  margin-top: 1.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   Mosaic
   -------------------------------------------------------------------------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
}

.mosaic__a { grid-column: 1 / 8; }
.mosaic__b { grid-column: 8 / 13; margin-top: clamp(3.5rem, 9vw, 8rem); }
.mosaic__c { grid-column: 4 / 10; margin-top: clamp(1.5rem, 4vw, 3.5rem); }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

  [data-reveal],
  [data-reveal="mask"] {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    transition: none;
  }

  .hero__media img,
  .hero__media .slide,
  .bg-glow,
  .bg-grain,
  .ticker__track,
  .hero__scroll::after,
  .brand__dot,
  .btn-wa::before,
  .wa-float::before,
  .route-chip::before,
  .chat__bar .chat__dot,
  .chat__typing i,
  .sec-head .sec-rule::after,
  .runway::after,
  .cursor-ring,
  .btn-gold::after,
  .display-1 em,
  .display-2 em,
  .display-3 em,
  .display-1 em .split-wi,
  .display-2 em .split-wi,
  .display-3 em .split-wi,
  .img-break__media img {
    animation: none;
  }

  .hero__media .slide {
    opacity: 0;
    transform: none;
    transition: none;
  }

  .hero__media .slide:first-child,
  .hero__media .slide.is-active {
    opacity: 1;
  }

  .split-w > .split-wi {
    transform: none;
    transition: none;
  }

  .kicker[data-reveal]::before,
  .sec-head[data-reveal] .sec-rule {
    transform: none;
    transition: none;
  }

  .svc-panel {
    transition: none;
  }

  .page-veil,
  .footer-marquee__track {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .site-nav {
    gap: 1.4rem;
  }

  .site-nav a {
    letter-spacing: 0.15em;
  }
}

@media (max-width: 1024px) {
  .num-item {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
  }

  .num-item__desc {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .service-block {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .service-block > :last-child {
    grid-column: 2;
  }

  .board__head {
    display: none;
  }

  .board__row {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.9rem;
  }

  .board__route { grid-column: 1 / 2; }
  .board__arrow { grid-row: 1; grid-column: 2; }
  .board__meta,
  .board__price { grid-column: 1 / -1; }

  .board__meta small,
  .board__price small {
    display: inline-block;
    margin-right: 0.7rem;
    margin-bottom: 0;
  }

  .check-in {
    grid-template-columns: 1fr 1fr;
  }

  .check-in__field:nth-child(3) {
    border-right: 0;
  }

  .check-in .btn-gold {
    grid-column: 1 / -1;
    padding-block: 1.1rem;
  }

  /* service panels stack into doors */
  .svc-panels {
    flex-direction: column;
    height: auto;
  }

  .svc-panel {
    min-height: 5.2rem;
    flex: none;
    transition: min-height 0.7s var(--ease-lux);
  }

  .svc-panel.is-open {
    min-height: 22rem;
  }

  .svc-panel__spine {
    writing-mode: horizontal-tb;
    left: 1.4rem;
    top: auto;
    bottom: 1.6rem;
    transform: none;
  }

  .svc-panel__no {
    top: auto;
    bottom: 1.85rem;
    left: auto;
    right: 1.4rem;
  }
}

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

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 900px) {
  .grid-2,
  .grid-2--contact,
  .grid-3,
  .split,
  .split--text-lead {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > :first-child {
    grid-column: 1 / -1;
  }

  .hero__scroll,
  .hero__caption {
    display: none;
  }

  .ghost-word {
    font-size: clamp(3.4rem, 15vw, 6rem);
  }

  .gauge-band {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }

  .mosaic__a,
  .mosaic__b,
  .mosaic__c {
    grid-column: 1 / -1;
    margin-top: 0;
  }

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

  .chat {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .num-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .num-item__no {
    display: none;
  }

  .num-item__desc {
    grid-column: 1 / 2;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block > :last-child {
    grid-column: 1;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .btn-gold,
  .btn-line,
  .btn-wa {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__actions {
    width: 100%;
  }

  .wa-float span small {
    display: none;
  }

  .check-in {
    grid-template-columns: 1fr;
  }

  .check-in__field {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .form-shell {
    padding-left: calc(clamp(1.9rem, 4vw, 3rem) + 2.4rem);
  }

  .form-shell::before {
    width: 2.4rem;
    font-size: 0.46rem;
  }

  .form-shell::after {
    width: 64px;
    height: 24px;
  }

  .form-shell__title {
    padding-right: 80px;
  }

  .gauge-band {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   World-class craft layer - skip link, focus rings, ops clocks
   -------------------------------------------------------------------------- */

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 1100;
  padding: 0.9rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold-grad);
  clip-path: var(--clip-plate);
  transition: top 0.3s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.btn-gold:focus-visible,
.btn-line:focus-visible,
.btn-wa:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 6px;
}

.form-shell :focus-visible {
  outline-color: var(--gold-deep);
}

/* Concierge desks - live world clocks in the footer */
.ops-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.6rem;
  padding-block: 1.9rem;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.ops-row__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
}

.ops-row__label::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 9px);
}

.ops-row b {
  font-family: var(--caps);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-left: 0.45rem;
  font-variant-numeric: tabular-nums;
}

/* Fleet card tilt owns its transform */
.img-frame.is-tilt {
  transition: none;
  will-change: transform;
  transform-style: preserve-3d;
}
