/* ============================================================
   STARLIGHT GROUND — Design Concept
   MercConsulting (Mercury Holdings) for StarLight, Inc.
   Design-only demonstration. No backend functionality.
   ============================================================ */

:root {
  --ink: #0B0C10;
  --ink-2: #101219;
  --ink-3: #161925;
  --ink-veil: rgba(11, 12, 16, 0.55);
  --gold: #C8A25E;
  --gold-bright: #E7CE96;
  --gold-deep: #9C7A3C;
  --cream: #F4EFE4;
  --stone: #A7A8B3;
  --stone-dim: #6E7080;
  --hairline: rgba(200, 162, 94, 0.22);
  --hairline-soft: rgba(244, 239, 228, 0.08);
  --font-display: 'Marcellus', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.75);
  --max: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--stone);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

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

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lede { font-size: 19px; color: var(--stone); max-width: 60ch; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
section { position: relative; }
.section-pad { padding: clamp(84px, 11vw, 150px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.6vw, 54px); margin: 18px 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-bright) 55%, var(--gold));
  background-size: 220% 100%;
  background-position: 0% 0;
  cursor: pointer;
  transition: background-position 0.7s var(--ease-lux), transform 0.35s var(--ease-lux), box-shadow 0.35s;
}
.btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(200, 162, 94, 0.55);
}
.btn.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 239, 228, 0.35);
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: none; }
.btn .arr { transition: transform 0.35s var(--ease-lux); }
.btn:hover .arr { transform: translateX(5px); }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.link-gold::after { content: '⟶'; transition: transform 0.3s var(--ease-lux); }
.link-gold:hover::after { transform: translateX(6px); }

/* ---------- Utility bar ---------- */
.utility {
  position: relative;
  z-index: 60;
  background: #07080B;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-dim);
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.utility .divisions { display: flex; gap: 26px; align-items: center; margin-inline: auto; }
.utility .div-item { display: inline-flex; gap: 8px; align-items: center; opacity: 0.55; transition: opacity 0.3s; }
.utility .div-item.active { color: var(--gold); opacity: 1; }
.utility .div-item .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.utility .hotline { color: var(--stone); white-space: nowrap; display: none; }
.utility .hotline b { color: var(--gold); font-weight: 500; }
@media (max-width: 1080px) {
  .utility .divisions { margin-inline: 0 auto; }
  .utility .hotline { display: block; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.92), rgba(7, 8, 11, 0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.site-header.scrolled { border-bottom-color: var(--hairline); }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 15px; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word .name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.28em;
  color: var(--cream);
}
.brand .word .sub {
  margin-top: 6px;
  font-size: 9.5px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-lux);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 26px; }
.header-cta .btn { padding: 13px 26px; }
.phone-lockup { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; line-height: 1; }
.phone-lockup .k {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.phone-lockup .n {
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
  transition: color 0.3s;
}
.phone-lockup .n small { color: var(--stone-dim); font-size: 11px; letter-spacing: 0.06em; }
.phone-lockup:hover .n { color: var(--gold-bright); }
@media (max-width: 1240px) { .phone-lockup .k { display: none; } }
@media (max-width: 1080px) { .phone-lockup { display: none; } }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 95;
  box-shadow: 0 0 8px rgba(200, 162, 94, 0.6);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span { width: 20px; height: 1.5px; background: var(--cream); transition: transform 0.35s var(--ease-lux), opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(7, 8, 11, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 38px);
  color: var(--cream);
  padding: 10px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), color 0.3s;
}
.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mini { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100svh - 122px);
  min-height: 620px;
  max-height: 1060px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.page-hero .hero-media {
  inset: 0;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 12, 16, 0.68) 0%, rgba(11, 12, 16, 0.25) 40%, rgba(11, 12, 16, 0.94) 88%),
    radial-gradient(120% 70% at 70% 20%, transparent 40%, rgba(11, 12, 16, 0.55) 100%);
}
#constellation {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.85;
}
.hero-inner { width: 100%; padding-bottom: clamp(22px, 3.4vh, 44px); }
.hero h1 {
  font-size: clamp(36px, 5.6vw, 82px);
  max-width: 13ch;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 40%, var(--gold-bright) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { max-width: 56ch; margin-bottom: 26px; font-size: clamp(15px, 1.2vw, 18px); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero .hero-ctas { margin-bottom: 26px; }
.hero .hero-ctas .btn { padding: 15px 30px; }

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--stone-dim);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 62px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.4s var(--ease-lux) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Booking bar (lives inside the hero, above the fold) ---------- */
.bookbar-card {
  background: rgba(16, 18, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
}
.bookbar-field {
  padding: 16px 22px;
  border-right: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-line {
  margin-top: 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.trust-line span::before { content: '✦'; color: var(--gold); margin-right: 9px; font-size: 8px; }
.bookbar-field label {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.bookbar-field input, .bookbar-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  width: 100%;
}
.bookbar-field select option { background: var(--ink-2); }
.bookbar-field input::placeholder { color: var(--stone-dim); }
.bookbar-submit { display: flex; }
.bookbar-submit .btn { border: none; height: 100%; padding: 0 40px; }

/* Short viewports: tighten the hero so everything stays above the fold */
@media (max-height: 800px) and (min-width: 641px) {
  .hero h1 { font-size: clamp(34px, 4.6vw, 62px); margin: 12px 0 12px; }
  .hero .lede { margin-bottom: 18px; }
  .hero .hero-ctas { margin-bottom: 18px; }
  .bookbar-field { padding: 12px 18px; }
  .hero-inner { padding-bottom: 18px; }
  .trust-line { display: none; }
}
@media (max-height: 660px) and (min-width: 641px) {
  .hero .lede { display: none; }
}

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--hairline-soft); background: var(--ink-2); }
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat { padding: 44px 20px; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: var(--hairline-soft);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--cream);
}
.stat .num .suffix { color: var(--gold); }
.stat .cap { margin-top: 8px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone-dim); }

/* ---------- Fleet cards ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.fleet-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  background: var(--ink-3);
  isolation: isolate;
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.35s var(--ease-lux), border-color 0.4s;
}
.fleet-card:hover { border-color: var(--hairline); }
.fleet-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-lux), filter 0.7s;
  filter: saturate(0.85) brightness(0.88);
  z-index: -1;
}
.fleet-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.fleet-card .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 30%, rgba(11, 12, 16, 0.55) 62%, rgba(11, 12, 16, 0.95) 100%);
  transition: opacity 0.5s;
}
.fleet-card .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fleet-card .idx { font-size: 11px; letter-spacing: 0.34em; color: var(--gold); text-transform: uppercase; }
.fleet-card h3 { font-size: clamp(24px, 2.4vw, 32px); }
.fleet-card p { font-size: 14.5px; color: var(--stone); max-width: 34ch; }
.fleet-card .go {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.fleet-card .go::after { content: '⟶'; transition: transform 0.35s var(--ease-lux); }
.fleet-card:hover .go::after { transform: translateX(7px); }
.fleet-card .rule { width: 44px; height: 2px; background: var(--gold); margin-bottom: 4px; transition: width 0.5s var(--ease-lux); }
.fleet-card:hover .rule { width: 78px; }

/* ---------- How it works ---------- */
.how { background: var(--ink-2); border-block: 1px solid var(--hairline-soft); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.how-step { position: relative; padding: 38px 32px 42px; border: 1px solid var(--hairline-soft); background: linear-gradient(180deg, rgba(200,162,94,0.045), transparent 45%); }
.how-step .n {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.how-step h3 { font-size: 23px; margin: 20px 0 12px; }
.how-step p { font-size: 15px; }
.how-step .tick {
  position: absolute;
  top: 38px;
  right: 32px;
  width: 26px;
  height: 26px;
  opacity: 0.7;
}

/* ---------- Occasions ---------- */
.occasions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.occ {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.occ img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: saturate(0.8) brightness(0.7);
  transition: transform 1s var(--ease-lux), filter 0.6s;
}
.occ:hover img { transform: scale(1.07); filter: saturate(1) brightness(0.85); }
.occ .tag {
  width: 100%;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 16, 0.9));
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.occ .tag small { display: block; font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }

/* ---------- Standard (vetting) ---------- */
.standard-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.standard-media { position: relative; }
.standard-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border: 1px solid var(--hairline-soft); filter: saturate(0.85); }
.standard-media::after {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--hairline);
  z-index: -1;
}
.std-item { display: flex; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--hairline-soft); }
.std-item:last-child { border-bottom: none; }
.std-item .ico { flex: none; width: 46px; height: 46px; border: 1px solid var(--hairline); display: grid; place-items: center; }
.std-item .ico svg { width: 22px; height: 22px; }
.std-item h3 { font-size: 20px; margin-bottom: 6px; }
.std-item p { font-size: 15px; }

/* ---------- Vehicle carousel ---------- */
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.car-nav { display: flex; gap: 12px; }
.car-nav button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.car-nav button:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 26px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.v-card {
  flex: 0 0 min(370px, 82vw);
  scroll-snap-align: start;
  border: 1px solid var(--hairline-soft);
  background: var(--ink-3);
  transition: transform 0.5s var(--ease-lux), border-color 0.4s;
}
.v-card:hover { transform: translateY(-8px); border-color: var(--hairline); }
.v-card .ph { position: relative; aspect-ratio: 16/10.4; overflow: hidden; }
.v-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform 1s var(--ease-lux); }
.v-card:hover .ph img { transform: scale(1.05); }
.v-card .ph .chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 8, 11, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 7px 12px;
}
.v-card .body { padding: 24px 24px 26px; }
.v-card h3 { font-size: 22px; }
.v-card .specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.v-card .spec {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--hairline-soft);
  padding: 6px 11px;
}
.v-card .rate { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--hairline-soft); padding-top: 16px; }
.v-card .rate .amt { font-family: var(--font-display); font-size: 23px; color: var(--gold-bright); }
.v-card .rate .amt small { font-size: 12px; color: var(--stone-dim); font-family: var(--font-body); letter-spacing: 0.1em; }
.v-card .rate a { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.v-card .rate a:hover { color: var(--gold-bright); }

/* ---------- Quote slider ---------- */
.quotes { background: var(--ink-2); border-block: 1px solid var(--hairline-soft); overflow: hidden; }
.quote-stage { position: relative; max-width: 860px; margin: 0 auto; text-align: center; min-height: 300px; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.quote.active { opacity: 1; transform: none; pointer-events: auto; }
.quote .mark { width: 40px; height: 40px; opacity: 0.9; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 30px);
  color: var(--cream);
  line-height: 1.45;
  max-width: 26em;
}
.quote cite { font-style: normal; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.quote-dots { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.quote-dots button {
  width: 26px;
  height: 3px;
  border: none;
  background: var(--hairline-soft);
  cursor: pointer;
  transition: background 0.3s;
}
.quote-dots button.active { background: var(--gold); }

/* ---------- Network constellation ---------- */
.network { position: relative; overflow: hidden; }
.network-canvas-wrap {
  position: relative;
  border: 1px solid var(--hairline-soft);
  background:
    radial-gradient(90% 90% at 50% 10%, rgba(200, 162, 94, 0.07), transparent 55%),
    var(--ink-2);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
}
.city-field { position: relative; height: clamp(300px, 42vw, 440px); }
.city {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.city .star {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px 2px rgba(231, 206, 150, 0.55);
  animation: twinkle 3.4s ease-in-out infinite;
}
.city:nth-child(2n) .star { animation-delay: 1.1s; }
.city:nth-child(3n) .star { animation-delay: 2.2s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.65); opacity: 0.55; }
}
.city .name { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-lines line { stroke: rgba(200, 162, 94, 0.16); stroke-width: 1; }

/* ---------- Operators band ---------- */
.operators { background: linear-gradient(180deg, var(--ink) 0%, #0E1017 100%); }
.op-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--hairline);
  background: linear-gradient(120deg, rgba(200, 162, 94, 0.08), transparent 55%), var(--ink-2);
}
.op-card .txt { padding: clamp(36px, 5vw, 64px); }
.op-card h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 18px; }
.op-card p { max-width: 52ch; }
.op-card ul { list-style: none; margin: 24px 0 34px; display: grid; gap: 12px; }
.op-card li { display: flex; gap: 14px; align-items: baseline; font-size: 15.5px; }
.op-card li::before { content: '—'; color: var(--gold); }
.op-card .ph { position: relative; min-height: 320px; }
.op-card .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.85); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; isolation: isolate; text-align: center; padding: clamp(96px, 13vw, 170px) 0; overflow: hidden; }
.cta-banner .bg {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 12, 16, 0.82);
}
.cta-banner h2 { font-size: clamp(34px, 5.4vw, 62px); max-width: 20ch; margin: 20px auto 18px; }
.cta-banner p { max-width: 54ch; margin: 0 auto 40px; }
.cta-banner .hotline-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  margin-bottom: 34px;
}

/* ---------- Footer ---------- */
.site-footer { background: #07080B; border-top: 1px solid var(--hairline-soft); padding: clamp(60px, 8vw, 100px) 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 60px; }
.footer-grid h4 { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; font-family: var(--font-body); }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid a { color: var(--stone); transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand p { margin-top: 18px; max-width: 34ch; color: var(--stone-dim); font-size: 14px; }
.footer-grid .soon { color: var(--stone-dim); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-left: 8px; }
.footer-bottom {
  border-top: 1px solid var(--hairline-soft);
  padding: 26px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--stone-dim);
}
.footer-bottom .fine { max-width: 78ch; line-height: 1.7; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; min-height: clamp(440px, 62vh, 640px); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; }
.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.7) 0%, rgba(11, 12, 16, 0.35) 45%, rgba(11, 12, 16, 0.96) 92%);
}
.page-hero .hero-inner { padding-bottom: clamp(48px, 7vh, 84px); }
.page-hero h1 { font-size: clamp(40px, 6.4vw, 84px); margin: 22px 0 16px; }
.page-hero .crumbs { font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone-dim); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { margin: 0 10px; color: var(--gold); }

/* ---------- Editorial split ---------- */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 84px); align-items: center; }
.editorial .txt h2 { font-size: clamp(28px, 3.8vw, 44px); margin: 16px 0 20px; }
.editorial .txt p + p { margin-top: 16px; }
.editorial .media { position: relative; }
.editorial .media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--hairline-soft); filter: saturate(0.88); }
.editorial .media .badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  max-width: 240px;
  line-height: 1.4;
}

/* ---------- Vehicle grid (subpages) ---------- */
.veh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.veh-grid .v-card { flex: none; }

/* ---------- Gallery band ---------- */
.gallery-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-band figure { position: relative; aspect-ratio: 1/1.15; overflow: hidden; border: 1px solid var(--hairline-soft); }
.gallery-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) brightness(0.85); transition: transform 1s var(--ease-lux), filter 0.6s; }
.gallery-band figure:hover img { transform: scale(1.08); filter: saturate(1) brightness(0.95); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--hairline-soft); }
.faq button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  text-align: left;
  padding: 26px 44px 26px 4px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
}
.faq button::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 26px;
  font-family: var(--font-body);
  font-weight: 200;
  transition: transform 0.4s var(--ease-lux);
}
.faq.open button::after { transform: translateY(-50%) rotate(45deg); }
.faq .a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-lux); }
.faq .a p { padding: 0 4px 26px; max-width: 68ch; font-size: 15.5px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Demo toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 140%);
  z-index: 90;
  background: linear-gradient(180deg, #1B1E2A, #12141C);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 18px 26px;
  font-size: 14px;
  letter-spacing: 0.03em;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: min(92vw, 560px);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease-lux);
}
.toast.show { transform: translate(-50%, 0); }
.toast .star-ico { width: 20px; height: 20px; flex: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease-lux), visibility 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader svg { width: 74px; height: 74px; animation: pre-pulse 1.6s ease-in-out infinite; }
@keyframes pre-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.82); opacity: 0.55; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .bookbar-card { grid-template-columns: 1fr 1fr; }
  .bookbar-submit { grid-column: 1 / -1; }
  .bookbar-submit .btn { width: 100%; padding: 20px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { aspect-ratio: 16/11; }
  .how-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-media::after { display: none; }
  .op-card { grid-template-columns: 1fr; }
  .op-card .ph { min-height: 260px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .veh-grid { grid-template-columns: 1fr 1fr; }
  .gallery-band { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .utility { font-size: 10px; letter-spacing: 0.18em; }
  .utility .wrap { min-height: 32px; }
  .utility .hotline span { display: none; }
  .utility .divisions { gap: 14px; }
  .site-header .wrap { height: 66px; }
  .brand svg { width: 32px; height: 32px; }
  .brand .word .name { font-size: 17px; }
  .hero { height: calc(100svh - 98px); min-height: 520px; }
  .hero h1 { font-size: clamp(34px, 9.6vw, 44px); margin: 10px 0 10px; }
  .hero .lede { font-size: 14.5px; margin-bottom: 16px; }
  .hero .hero-ctas { gap: 10px; margin-bottom: 16px; }
  .hero .hero-ctas .btn { padding: 12px 16px; font-size: 11px; letter-spacing: 0.16em; flex: 1; }
  .hero-inner { padding-bottom: 16px; }
  .bookbar-card { grid-template-columns: 1fr 1fr; }
  .bookbar-field { border-right: none; border-bottom: 1px solid var(--hairline-soft); padding: 10px 14px; }
  .bookbar-field:nth-child(odd) { border-right: 1px solid var(--hairline-soft); }
  .bookbar-field label { font-size: 9px; }
  .bookbar-field input, .bookbar-field select { font-size: 14px; }
  .bookbar-submit { grid-column: 1 / -1; }
  .bookbar-submit .btn { width: 100%; padding: 15px; }
  .trust-line { display: none; }
  .occasions-grid { grid-template-columns: 1fr; }
  .occ { aspect-ratio: 16/10; }
  .veh-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .scroll-cue { display: none; }
}
@media (max-width: 640px) and (max-height: 700px) {
  .hero .lede { display: none; }
  .hero { min-height: 470px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .city .star, .scroll-cue::after, .preloader svg, .page-hero .hero-media { animation: none; }
  .fleet-card { transform: none; }
  * { transition-duration: 0.01ms !important; }
}
