/* ============================================================
   LCS v10 — home.css
   Cinematic hero · VIP transfers module · service preview ·
   fleet teaser · vignettes · reach map · always-on · glimpse.
   ============================================================ */

/* ============================================================
   HERO — v10 cinematic editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-inverse-dark);
  color: var(--text-primary-on-dark);
  overflow: hidden;
}
.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__poster { display: none; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(10,10,10,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.18) 35%, rgba(10,10,10,0.40) 65%, rgba(10,10,10,0.85) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--s-128) + 40px) var(--s-128);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-32);
}

/* Hero logo — post-video reveal. Fades in 1.6s after page load
   (after the video has had time to start playing on its own). */
.hero__logo {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  margin-bottom: var(--s-16);
  opacity: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.32));
  animation: lcs-hero-logo-in 1100ms var(--ease-editorial) 1600ms forwards;
}
@keyframes lcs-hero-logo-in {
  0%   { opacity: 0; transform: translateY(8px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .hero__logo { width: clamp(140px, 50vw, 220px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo { animation: none; opacity: 1; }
}

/* Caption row above title — two small tags split by a hairline */
.hero__caption-row {
  display: inline-flex;
  align-items: center;
  gap: var(--s-16);
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: lcs-fade-up 700ms var(--ease-editorial) 2400ms forwards;
}
.hero__caption-row__divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero__title {
  font-family: var(--font-display-editorial);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 188px);
  line-height: 0.94;
  letter-spacing: -0.012em;
  margin: 0;
  max-width: 1200px;
}
.hero__title__line { display: block; opacity: 0; animation: lcs-fade-up 900ms var(--ease-editorial) forwards; }
.hero__title__line:nth-child(1) { animation-delay: 2800ms; }
.hero__title__line:nth-child(2) { animation-delay: 3000ms; }
.hero__title__line--accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, var(--gold-leaf-top) 0%, var(--gold-leaf-mid) 50%, var(--gold-leaf-bottom) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  margin-top: 0;
  max-width: 580px;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
  color: var(--text-secondary-on-dark);
  opacity: 0;
  animation: lcs-fade-up 800ms var(--ease-editorial) 3400ms forwards;
  margin-inline: auto;
}
.hero__cta {
  margin-top: var(--s-16);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-16);
  opacity: 0;
  animation: lcs-fade-up 800ms var(--ease-editorial) 3700ms forwards;
}

/* Feature chip strip at bottom of hero — 4 columns of brand value props */
.hero__features {
  margin-top: var(--s-32);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-16);
  list-style: none;
  padding: var(--s-16) var(--s-24);
  border-top: 1px solid var(--border-subtle-dark);
  border-bottom: 1px solid var(--border-subtle-dark);
  width: min(1100px, 100%);
  opacity: 0;
  animation: lcs-fade-up 900ms var(--ease-editorial) 4000ms forwards;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  font-family: var(--font-body);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary-on-dark);
  justify-content: center;
}
.hero__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .hero__features { grid-template-columns: repeat(2, 1fr); gap: var(--s-12); }
}
@media (max-width: 480px) {
  /* Keep 2-col on small mobile so the hero doesn't extend into 4 stacked rows */
  .hero__features { grid-template-columns: repeat(2, 1fr); gap: 6px var(--s-8); padding: var(--s-12) var(--s-8); }
  .hero__features li { font-size: 9.5px; letter-spacing: 0.14em; gap: 4px; }
}

@keyframes lcs-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  opacity: 0.6;
}
.hero__corner--tl { top: var(--s-32); left: var(--s-32); }
.hero__corner--br { bottom: var(--s-32); right: var(--s-32); transform: rotate(180deg); }

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--s-48);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-8);
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-tertiary-on-dark);
  opacity: 0;
  animation: lcs-fade-up 800ms var(--ease-editorial) 4500ms forwards;
}
.hero__scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: lcs-scroll-cue 1.8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes lcs-scroll-cue {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); transform-origin: top center; }
  51%  { transform-origin: bottom center; }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}

@media (max-width: 768px) {
  .hero__video { display: none; }
  .hero__poster { display: block; }
  .hero__corner { width: 44px; height: 44px; }
  .hero__corner--tl { top: var(--s-16); left: var(--s-16); }
  .hero__corner--br { bottom: calc(var(--s-16) + env(safe-area-inset-bottom, 0px) + 56px); right: var(--s-16); }
  .hero__scroll-cue { display: none; }
}

/* ============================================================
   VIP TRANSFERS MODULE — v10 flagship home section
   The core service deserves its own theatrical moment.
   ============================================================ */
.vip-transfers {
  position: relative;
  background: var(--bg-inverse-dark);
  color: var(--text-primary-on-dark);
  overflow: hidden;
}
.vip-transfers__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vip-transfers__media img {
  width: 108%;
  height: 108%;
  margin: -4% 0 0 -4%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.38;
  filter: blur(4px) saturate(0.85);
  /* Radial vignette via mask — center stays visible, edges fade out */
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 55%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(ellipse 65% 65% at 50% 55%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
}
.vip-transfers__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 0%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.15) 65%, rgba(10,10,10,0.55) 100%);
}
.vip-transfers__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-96);
  align-items: center;
  padding-block: var(--s-128) var(--s-96);
}
@media (max-width: 1024px) {
  .vip-transfers__inner { grid-template-columns: 1fr; gap: var(--s-48); padding-block: var(--s-96) var(--s-64); }
}
.vip-transfers__copy { display: flex; flex-direction: column; gap: var(--s-24); max-width: 620px; }
.vip-transfers__copy .eyebrow { color: var(--gold); }
.vip-transfers__title { font-family: var(--font-display-editorial); font-weight: 400; font-size: clamp(36px, 5.4vw, 80px); line-height: 1.02; letter-spacing: -0.008em; }
.vip-transfers__lead { color: var(--text-secondary-on-dark); font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; }

.vip-transfers__points {
  list-style: none;
  margin: var(--s-16) 0 0;
  padding: 0;
  display: grid;
  gap: var(--s-16);
}
.vip-transfers__points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: var(--s-16);
  padding: var(--s-16) 0;
  border-top: 1px solid var(--border-subtle-dark);
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary-on-dark);
  transition: color var(--d-quick) var(--ease-editorial);
}
.vip-transfers__points li:last-child { border-bottom: 1px solid var(--border-subtle-dark); }
.vip-transfers__points li:hover { color: var(--text-primary-on-dark); }
.vip-transfers__points li:hover .vip-transfers__point-num { color: var(--gold-bright); transform: translateX(2px); }
.vip-transfers__point-num {
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.22em;
  color: var(--gold);
  transition: color var(--d-quick), transform var(--d-quick);
}

.vip-transfers__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-16);
  margin-top: var(--s-24);
}

/* Right column — large stat block */
.vip-transfers__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-32);
  padding: var(--s-48);
  border: 1px solid rgba(200, 163, 87, 0.35);
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vip-transfers__stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  text-align: left;
}
.vip-transfers__stat__value {
  font-family: var(--font-display-editorial);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--gold);
}
.vip-transfers__stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary-on-dark);
}
@media (max-width: 600px) {
  .vip-transfers__stats { padding: var(--s-24); gap: var(--s-16); }
}

/* ============================================================
   SERVICES PREVIEW — editorial split layout
   Center: large featured. Sides: 5 secondary cards.
   ============================================================ */
.services-preview {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(200, 163, 87, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(200, 163, 87, 0.05) 0%, transparent 50%),
    var(--bg-canvas);
}
.services-preview__heading {
  text-align: center;
  margin-bottom: var(--s-96);
}
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-16);
}
@media (max-width: 1024px) { .services-preview__grid { grid-template-columns: repeat(2, 1fr); } }
/* Mobile: 2-col grid with shorter cards (no endless drop-down) */
@media (max-width: 600px) {
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
}

/* ============================================================
   FLEET TEASER
   ============================================================ */
.fleet-teaser {
  position: relative;
  background: var(--bg-inverse-dark);
  color: var(--text-primary-on-dark);
  overflow: hidden;
}
.fleet-teaser__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s-64);
  align-items: center;
}
@media (max-width: 900px) { .fleet-teaser__inner { grid-template-columns: 1fr; gap: var(--s-32); } }
.fleet-teaser__copy {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}
.fleet-teaser__media {
  position: relative;
  aspect-ratio: 5/4;
  border: 1px solid var(--border-default-dark);
  overflow: hidden;
}
.fleet-teaser__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   VIGNETTES
   ============================================================ */
.vignettes {
  background: var(--bg-inverse-dark);
  color: var(--text-primary-on-dark);
}
.vignettes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}
@media (max-width: 900px) {
  .vignettes__grid {
    grid-template-columns: 1fr;
    gap: var(--s-16);
  }
}

/* ============================================================
   REACH MAP
   ============================================================ */
.reach {
  background: var(--bg-canvas-deep);
}
.reach__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-64);
  align-items: center;
}
@media (max-width: 1024px) { .reach__inner { grid-template-columns: 1fr; gap: var(--s-32); } }

.reach__copy {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}
.reach__destinations {
  list-style: none;
  margin: 0;
  padding: var(--s-16) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) var(--s-16);
  border-top: 1px solid var(--border-subtle-light);
  border-bottom: 1px solid var(--border-subtle-light);
}
.reach__destinations li {
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary-on-light);
  position: relative;
}
.reach__destinations li::after {
  content: "·";
  position: absolute;
  right: calc(var(--s-16) * -0.5);
  color: var(--gold);
}
.reach__destinations li:last-child::after { display: none; }
.reach__cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-24);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--gold);
  border-radius: 2px;
  margin-top: var(--s-12);
}
.reach__cta__actions {
  display: flex;
  gap: var(--s-12);
  flex-wrap: wrap;
}
.reach__cta__actions .btn { flex: 1 1 auto; min-width: 200px; }
.reach__map-wrap {
  position: relative;
  width: 100%;
  border: 1px solid var(--border-subtle-light);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 48px -24px rgba(26, 26, 26, 0.18);
}
.reach__map {
  width: 100%;
  height: auto;
  display: block;
}
.reach__signature {
  position: absolute;
  left: 50%;
  bottom: var(--s-16);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  background: rgba(245, 240, 230, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 163, 87, 0.5);
  border-radius: 2px;
  padding: var(--s-8) var(--s-16);
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary-on-light);
  z-index: 3;
  pointer-events: none;
}
.reach__signature__monogram {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

/* Live scan overlay — gold spotlight sweeping left to right.
   Two stacked gradients: a warm-amber wash (visible over parchment)
   and a brighter centre line (visible over navy ink). No blend mode
   needed — alpha-tuned to read on both light and dark map areas. */
.reach__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* bright centre — the "spotlight" */
    linear-gradient(
      100deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 219, 138, 0.55) 49%,
      rgba(255, 219, 138, 0.85) 50%,
      rgba(255, 219, 138, 0.55) 51%,
      transparent 58%,
      transparent 100%
    ),
    /* warmer aura — wider, lower alpha */
    linear-gradient(
      100deg,
      transparent 0%,
      transparent 30%,
      rgba(200, 163, 87, 0.10) 40%,
      rgba(200, 163, 87, 0.28) 50%,
      rgba(200, 163, 87, 0.10) 60%,
      transparent 70%,
      transparent 100%
    );
  background-size: 220% 100%;
  background-position: -110% 0;
  animation: lcs-reach-scan 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  z-index: 1;
}
@keyframes lcs-reach-scan {
  0%   { background-position: -110% 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { background-position: 110% 0; opacity: 0; }
}

/* Pins layer */
.reach__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.reach__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.reach__pin__dot {
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(245, 240, 230, 0.9),
    0 0 12px rgba(200, 163, 87, 0.45);
  animation: lcs-pulse 2.8s ease-in-out infinite;
}
/* Sonar ping — synced to scan crossing this pin's x position via per-pin animation-delay */
.reach__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  animation: lcs-reach-ping 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--pin-delay, 0s);
  pointer-events: none;
}
@keyframes lcs-reach-ping {
  0%, 100% { opacity: 0; transform: scale(1); }
  0.1%, 4% { opacity: 0; transform: scale(1); }
  /* Ping window */
  5%       { opacity: 1; transform: scale(1.4); border-width: 1.5px; }
  12%      { opacity: 0; transform: scale(3.4); border-width: 0.5px; }
  13%      { opacity: 0; transform: scale(1); }
}
.reach__pin__label {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary-on-light);
  background: rgba(245, 240, 230, 0.92);
  padding: 4px 8px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--d-quick) var(--ease-editorial);
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.1);
}
.reach__pin:hover .reach__pin__label,
.reach__pin:focus-visible .reach__pin__label { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reach__scan { display: none; }
  .reach__pin::before { animation: none; opacity: 0; }
}

/* ============================================================
   OFFERS STRIP
   ============================================================ */
.offers {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200, 163, 87, 0.06) 0%, transparent 50%),
    var(--bg-canvas);
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-16);
}
@media (max-width: 900px) { .offers__grid { grid-template-columns: 1fr; } }

/* ============================================================
   ALWAYS-ON STRIP
   ============================================================ */
.alwayson {
  background: var(--bg-inverse-dark);
  color: var(--text-primary-on-dark);
  text-align: center;
}
.alwayson__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-24);
}
.alwayson__phone {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-block: var(--s-12);
  display: inline-flex;
  align-items: center;
  gap: var(--s-16);
  color: var(--gold);
  text-decoration: none;
}
.alwayson__phone__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: lcs-pulse 2.6s ease-in-out infinite;
}

/* ============================================================
   GLIMPSE (gallery teaser)
   ============================================================ */
.glimpse {
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(200, 163, 87, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(200, 163, 87, 0.04) 0%, transparent 50%),
    var(--bg-canvas);
}
.glimpse__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-12);
  margin-bottom: var(--s-48);
}
@media (max-width: 900px) { .glimpse__grid { grid-template-columns: repeat(2, 1fr); } }
.glimpse__item {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  background: var(--bg-inverse-dark-2);
}
.glimpse__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform var(--d-cinematic) var(--ease-editorial);
}
.glimpse__item:hover img { transform: scale(1.03); }
.glimpse__cta-wrap { text-align: center; }
