/* ============================================================
   NEPAL DRIVE — style.css  (Premium Redesign)
   Palette:
     Cream      #F5F0E8
     Deep Black #0A0A0A
     Gold       #C9A84C
     Gold Light #E8D5A3
     Charcoal   #2C2C2C
     Warm Gray  #8A8680
     Off White  #FAFAF7
     Dark Card  #111111
   Fonts: Cormorant Garamond (headings) + Work Sans (body)
   ============================================================ */

/* ──────────────────────────────────────────────
   1. VARIABLES
────────────────────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --black:       #0A0A0A;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dim:    rgba(201, 168, 76, 0.15);
  --charcoal:    #2C2C2C;
  --warm-gray:   #8A8680;
  --off-white:   #FAFAF7;
  --dark-card:   #111111;
  --border-light: rgba(201, 168, 76, 0.2);
  --border-dark:  rgba(255,255,255,0.07);

  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Work Sans', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ──────────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--black);
  color: var(--off-white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.1; }
em { font-style: italic; color: var(--gold); }
ul { list-style: none; }
img { display: block; width: 100%; }
a { text-decoration: none; cursor: none; }

/* ──────────────────────────────────────────────
   3. CUSTOM CURSOR
────────────────────────────────────────────── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), background 0.2s;
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.is-hover { transform: translate(-50%, -50%) scale(2.5); background: var(--gold-light); }
.cursor-follower.is-hover { width: 60px; height: 60px; border-color: var(--gold); }

/* ──────────────────────────────────────────────
   4. LOADER
────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__logo {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--off-white);
}
.loader__logo em { color: var(--gold); font-style: normal; }
.loader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loaderFill 1.8s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ──────────────────────────────────────────────
   5. SCROLL ANIMATIONS
────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────
   6. BUTTONS
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn--gold { background: var(--gold); color: var(--black); font-weight: 500; }
.btn--gold:hover { background: var(--gold-light); }

.btn--ghost { background: transparent; color: var(--off-white); border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--dark { background: var(--off-white); color: var(--black); }
.btn--dark:hover { background: var(--cream); }

.btn--wa { background: #1da851; color: #fff; gap: 8px; justify-content: center; }
.btn--wa:hover { background: #128C7E; }

.btn--full { width: 100%; justify-content: center; }

/* ──────────────────────────────────────────────
   7. NAVIGATION
────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  z-index: 500;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border-dark);
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--off-white);
}
.nav__logo em { color: var(--gold); font-style: normal; }

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--off-white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--gold); color: var(--black); }

/* ──────────────────────────────────────────────
   8. HERO
────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1408 0%, #0A0A0A 70%);
}
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

/* Floating particles */
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

.hero__content { position: relative; z-index: 2; max-width: 900px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--off-white);
}
.hero__title-line { display: block; }
.hero__title-line.italic { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  padding: 24px 48px;
  gap: 48px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat > span:first-child,
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
}
.hero__stat-plus { font-size: 20px; color: var(--gold); font-family: var(--font-head); line-height: 1; vertical-align: super; margin-left: 2px; }
.hero__stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-gray); }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border-dark); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: none;
  z-index: 2;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }

/* ──────────────────────────────────────────────
   9. MARQUEE
────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: var(--dark-card);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.marquee__dot { color: var(--gold); font-size: 8px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────────────────────────────────────────
   10. SECTIONS (shared)
────────────────────────────────────────────── */
.section { padding: 100px 48px; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
}
.section__title { font-family: var(--font-head); font-size: clamp(36px, 5vw, 60px); font-weight: 300; color: var(--off-white); margin-bottom: 16px; }
.section__sub { font-size: 13px; color: var(--warm-gray); letter-spacing: 0.5px; }

/* ──────────────────────────────────────────────
   11. FLEET GRID
────────────────────────────────────────────── */
.fleet-section { background: var(--black); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background: var(--dark-card);
  cursor: none;
  overflow: hidden;
  transition: background 0.3s;
  position: relative;
}
.fleet-card:hover { background: #161616; }

.fleet-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.fleet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: brightness(0.85);
}
.fleet-card:hover .fleet-card__img { transform: scale(1.06); filter: brightness(0.7); }

.fleet-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.fleet-card:hover .fleet-card__img-overlay { opacity: 1; }

.fleet-card__view {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 16px;
}

.fleet-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
}

.fleet-card__featured {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
}

.fleet-card__body { padding: 24px 28px 28px; }
.fleet-card__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.fleet-card__name { font-family: var(--font-head); font-size: 24px; font-weight: 400; color: var(--off-white); }
.fleet-card__price { font-family: var(--font-head); font-size: 22px; color: var(--gold); }
.fleet-card__price span { font-family: var(--font-body); font-size: 11px; color: var(--warm-gray); }
.fleet-card__desc { font-size: 13px; color: var(--warm-gray); margin-bottom: 16px; line-height: 1.7; }
.fleet-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.fleet-card__tags span {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
}

/* ──────────────────────────────────────────────
   12. WHY SECTION
────────────────────────────────────────────── */
.why-section {
  background: var(--dark-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.why-section__left .section__title { text-align: left; }
.why-section__desc { font-size: 14px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 36px; }

.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
}
.why-item:first-child { border-top: 1px solid var(--border-dark); }

.why-item__num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}
.why-item__body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 400; color: var(--off-white); margin-bottom: 6px; }
.why-item__body p { font-size: 13px; color: var(--warm-gray); line-height: 1.7; }

/* ──────────────────────────────────────────────
   13. REVIEWS
────────────────────────────────────────────── */
.reviews-section { background: var(--black); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--dark-card);
  padding: 36px 32px;
  transition: background 0.3s;
}
.review-card:hover { background: #161616; }
.review-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.review-card__text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 28px; font-style: italic; font-family: var(--font-head); font-size: 16px; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 500; color: var(--off-white); }
.review-card__trip { font-size: 11px; color: var(--warm-gray); letter-spacing: 0.5px; margin-top: 2px; }

/* ──────────────────────────────────────────────
   14. BOOKING
────────────────────────────────────────────── */
.book-section {
  background: var(--cream);
}
.book-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.book-section__left .section__label { display: inline-block; color: var(--charcoal); border-color: rgba(0,0,0,0.15); margin-bottom: 20px; }
.book-section__left .section__title { color: var(--charcoal); text-align: left; margin-bottom: 16px; }
.book-section__left em { color: var(--gold); }
.book-section__left p { font-size: 14px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 32px; }

.book-promises { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.book-promises li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--charcoal); }
.book-promises__icon { color: var(--gold); font-weight: 500; }

.book-form {
  background: var(--black);
  padding: 40px;
  border: 1px solid var(--border-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.04);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 1px;
}
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--charcoal); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input.input--error,
.form-group select.input--error { border-color: #e05252; }

#submitBtn { margin-top: 4px; }
#waBtn { margin-top: 10px; }

.form-success {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 14px;
}

/* ──────────────────────────────────────────────
   15. CONTACT
────────────────────────────────────────────── */
.contact-section { background: var(--dark-card); border-top: 1px solid var(--border-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s;
}
.contact-card:hover { background: #161616; }
.contact-card__icon { font-size: 20px; margin-bottom: 10px; }
.contact-card__label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.contact-card__val { font-size: 14px; font-weight: 500; color: var(--off-white); }
.contact-card__sub { font-size: 11px; color: var(--warm-gray); }

/* ──────────────────────────────────────────────
   16. FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 48px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__logo { font-family: var(--font-body); font-size: 15px; font-weight: 500; letter-spacing: 5px; color: var(--off-white); }
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__links { display: flex; gap: 32px; }
.footer__links a { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-gray); transition: color 0.2s; cursor: none; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom span { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }

/* ──────────────────────────────────────────────
   17. MODAL
────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-overlay.is-open { display: flex; align-items: flex-start; justify-content: center; }

.modal {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  width: 100%;
  max-width: 900px;
  position: relative;
  animation: modalIn 0.4s var(--ease-out);
  overflow: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(32px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  color: var(--warm-gray);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: rgba(255,255,255,0.1); color: var(--off-white); }

/* Gallery */
.modal__gallery { position: relative; }
.gallery__main-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--black);
}
.gallery__main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--off-white);
  width: 44px; height: 44px;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.gallery__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery__arrow--prev { left: 16px; }
.gallery__arrow--next { right: 16px; }
.gallery__count {
  position: absolute;
  bottom: 16px; right: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
}
.gallery__thumbs {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: var(--black);
  overflow-x: auto;
}
.gallery__thumb {
  width: 90px;
  height: 60px;
  object-fit: cover;
  cursor: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.gallery__thumb:hover { opacity: 0.8; }
.gallery__thumb.is-active { opacity: 1; border-color: var(--gold); }

/* Modal info */
.modal__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.modal__info-left {
  padding: 36px;
  border-right: 1px solid var(--border-dark);
}
.modal__cat {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal__name { font-family: var(--font-head); font-size: 32px; font-weight: 300; color: var(--off-white); margin-bottom: 6px; }
.modal__price { font-family: var(--font-head); font-size: 22px; color: var(--gold); margin-bottom: 20px; }
.modal__desc { font-size: 13px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 28px; }
.modal__bookbtn { width: 100%; justify-content: center; }

.modal__specs {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  align-content: start;
}
.spec-item {
  background: var(--dark-card);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-item__label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.spec-item__val { font-size: 14px; font-weight: 500; color: var(--off-white); }

/* ──────────────────────────────────────────────
   18. RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .why-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .book-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  a, button { cursor: pointer; }

  .nav { padding: 16px 24px; }
  .nav.is-scrolled { padding: 12px 24px; }
  .nav__links { display: none; }

  .hero { padding: 100px 24px 60px; }
  .hero__stats { padding: 20px 24px; gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero__scroll { display: none; }

  .section { padding: 64px 24px; }

  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card__img-wrap { height: 220px; }

  .modal__info { grid-template-columns: 1fr; }
  .modal__info-left { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .gallery__main-wrap { height: 260px; }

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

  .footer { padding: 32px 24px; }
  .footer__top { flex-direction: column; gap: 24px; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .book-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
}
