/* ═══════════════════════════════════════════
   LUXETRA : Stylesheet
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Manrope', system-ui, sans-serif;
  --coral:      #c9846a;
  --coral-dark: #b3715a;
  --gold:       #d8b87b;
  --navy:       #071c24;
  --dark:       #0a0a0a;
  --dark-2:     #111111;
  --text:       #1a1a1a;
  --muted:      #6b6b6b;
  --light:      #fafafa;
  --border:     #e8e8e8;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ── */
.btn-coral {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.btn-coral:hover { background: linear-gradient(135deg, var(--coral-dark), var(--coral)); }

.btn-ghost {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading span,
.contact-lead span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-lead h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-heading p,
.contact-lead p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark p {
  color: rgba(255,255,255,0.62);
}

.fleet .section-heading {
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
  transition: color 0.35s ease;
}
#navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 102;
}

.nav-toggle span {
  width: 17px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

#navbar.scrolled .nav-toggle {
  border-color: var(--border);
  background: var(--white);
}

#navbar.scrolled .nav-toggle span {
  background: var(--text);
}

#navbar.menu-open .nav-toggle {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

#navbar.menu-open .nav-toggle span {
  background: var(--white);
}

#navbar.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

#navbar.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
#navbar.scrolled .nav-link { color: var(--text); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-instagram {
  color: var(--white);
  display: flex;
  align-items: center;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.nav-instagram:hover { opacity: 0.7; }
#navbar.scrolled .nav-instagram { color: var(--text); }


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 140px 48px 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 21, 27, 0.72) 0%,
    rgba(6, 21, 27, 0.42) 48%,
    rgba(6, 21, 27, 0.84) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 720px;
}

.hero-kicker {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin-top: 24px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
}

.hero-stats div {
  padding: 18px 20px;
  background: rgba(7,28,36,0.48);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
  margin-top: 6px;
}

.hero-booking-card {
  position: absolute;
  right: 48px;
  bottom: 72px;
  z-index: 2;
  width: min(340px, calc(100% - 96px));
  padding: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.hero-booking-card span {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-booking-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.08;
  margin: 12px 0;
}

.hero-booking-card p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}

.hero-booking-card a {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--coral);
}


/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  background: var(--dark);
  padding: 110px 48px;
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(420px, 560px);
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.about-logo-circle {
  flex: 0 0 auto;
  width: min(380px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(194, 142, 86, 0.08), transparent 48%),
    #050505;
  border: 1px solid rgba(194, 142, 86, 0.18);
  box-shadow:
    0 0 60px rgba(194, 142, 86, 0.06),
    inset 0 0 40px rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.about-logo {
  width: 68%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: -8px;
}

.about-text p {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.about-text strong {
  color: var(--white);
  font-weight: 500;
}

.about-closing {
  font-family: var(--font-serif) !important;
  font-size: 1.18rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.62) !important;
  line-height: 1.95 !important;
}


/* ═══════════════════════════════════════════
   EXPERIENCE
   ═══════════════════════════════════════════ */
.experience {
  display: flex;
  min-height: 600px;
}

.exp-image-wrap {
  flex: 0 0 50%;
  overflow: hidden;
}

.exp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exp-image-wrap:hover .exp-image { transform: scale(1.03); }

.exp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 80px 72px 80px 64px;
  background: var(--white);
}

.exp-sparkle {
  font-size: 1.4rem;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.exp-content p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 420px;
}

.exp-content strong {
  color: var(--text);
  font-weight: 500;
}

.exp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: gap 0.25s ease;
}
.exp-cta:hover { gap: 12px; }


/* ═══════════════════════════════════════════
   FLEET
   ═══════════════════════════════════════════ */
.fleet {
  position: relative;
  background: var(--dark);
  padding: 90px 48px 100px;
  overflow: hidden;
}

#sparkleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.fleet-carousel-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.fleet-viewport {
  overflow: hidden;
}

.fleet-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card {
  flex: 0 0 calc(33.333% - 22px);
  min-width: 0;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.fleet-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.fleet-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img-wrap img { transform: scale(1.05); }

.fleet-card-body {
  padding: 22px;
}

.fleet-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.fleet-meta {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.fleet-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 18px;
}

.fleet-card-link {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(216,184,123,0.42);
}

.fleet-arrow {
  position: absolute;
  bottom: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 10px 16px;
  transition: color 0.2s ease;
  z-index: 2;
}
.fleet-arrow:hover { color: var(--white); }
.fleet-prev { right: 56px; }
.fleet-next { right: 8px; }

.fleet-swipe-hint {
  display: none;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}


/* ═══════════════════════════════════════════
   CONTACT : FAQ + TESTIMONIALS
   ═══════════════════════════════════════════ */
.contact {
  background: var(--light);
  padding: 100px 48px;
}

.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: 52px;
  align-items: end;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(7,28,36,0.08);
}

.contact-lead h2 {
  margin-bottom: 0;
}

.contact-lead p {
  margin-bottom: 22px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-actions a {
  padding: 12px 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions a:last-child {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

/* last item if odd */
.faq-item:last-child:nth-child(odd) {
  grid-column: 1;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--coral); }

.faq-icon {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease, color 0.2s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* Testimonials */
.testimonials-wrap { text-align: center; }

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: var(--text);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  display: none;
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 32px;
}
.testimonial-card.active { display: block; }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  background: #1877F2;
  color: white;
  border-radius: 50%;
  font-size: 0.5rem;
  margin-left: 4px;
  vertical-align: middle;
}

.testimonial-date {
  font-size: 0.72rem;
  color: var(--muted);
}

.testimonial-source {
  margin-left: auto;
  flex-shrink: 0;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.dot.active {
  background: var(--text);
  transform: scale(1.2);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-contact {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
}

.footer-contact a {
  font-style: italic;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--text); }

.footer-instagram {
  color: var(--text);
  margin-top: 12px;
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.footer-instagram:hover { opacity: 1; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  #navbar { padding: 16px 22px; }

  .nav-toggle { display: flex; }
  .nav-instagram { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 80px 34px;
    background: rgba(7,28,36,0.96);
    box-shadow: -24px 0 70px rgba(0,0,0,0.26);
    transform: translateX(105%);
    transition: transform 0.32s ease;
    z-index: 101;
  }

  #navbar.menu-open .nav-links {
    transform: translateX(0);
  }

  #navbar.scrolled .nav-link,
  .nav-link {
    color: var(--white);
    font-size: 0.92rem;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 120px 28px 48px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-booking-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
    width: min(420px, 100%);
  }

  .about { padding: 82px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 42px; justify-content: center; text-align: center; }
  .about-logo-circle { flex: none; width: min(300px, 72vw); margin: 0 auto; }
  .about-text { margin: 0 auto; max-width: 560px; }
  .about-text p { font-size: 1rem; line-height: 1.85; }

  .experience { flex-direction: column; }
  .exp-image-wrap { flex: none; height: 340px; }
  .exp-content { padding: 56px 32px; }

  .fleet { padding: 72px 24px 80px; }
  .fleet-card { flex: 0 0 80vw; }

  .faq-wrap { grid-template-columns: 1fr; gap: 0; }
  .faq-item:last-child:nth-child(odd) { grid-column: auto; }

  .contact { padding: 72px 24px; }
  .contact-lead { grid-template-columns: 1fr; gap: 24px; padding: 34px 28px; }
  .contact-inner { gap: 64px; }
}

@media (max-width: 600px) {
  #navbar { padding: 14px 18px; }

  .hero {
    min-height: auto;
    padding: 110px 20px 38px;
  }

  .hero-title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 0.98rem; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .hero-stats div { padding: 14px 8px; }
  .hero-stats strong { font-size: 1.35rem; }
  .hero-stats span { font-size: 0.64rem; letter-spacing: 0.02em; }

  .hero-actions { width: 100%; }
  .hero-actions a { width: 100%; text-align: center; }
  .hero-booking-card { padding: 24px; }

  .exp-content { padding: 48px 24px; }

  .testimonial-card { padding: 24px 22px; }
  .contact-actions a { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
  .about-logo-circle {
    width: min(240px, 68vw);
    margin: 0 auto;
  }

  .about-logo {
    width: 78%;
    max-width: 190px;
  }

  .fleet-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 24px;
    scrollbar-width: none;
  }
  .fleet-viewport::-webkit-scrollbar { display: none; }

  .fleet-track {
    gap: 20px;
    padding-inline: 24px;
    transform: none !important;
  }

  .fleet-card {
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: center;
  }

  .fleet-arrow { display: none; }
  .fleet-carousel-wrap { padding-bottom: 0; }

  .fleet-swipe-hint { display: inline-block; }
}

@media (max-width: 430px) {
  .about-logo-circle {
    width: min(220px, 64vw);
  }

  .about-logo {
    width: 76%;
    max-width: 170px;
  }
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL (progressive enhancement)
   ═══════════════════════════════════════════ */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .dest-img, .exp-image, .fleet-card-img-wrap img { transition: none !important; }
}


/* ═══════════════════════════════════════════
   LUXURY DESTINATIONS
   ═══════════════════════════════════════════ */
.destinations {
  background: var(--light);
  padding: 104px 48px;
}

.dest-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
}

.dest-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover .dest-img { transform: scale(1.07); }

.dest-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,12,16,0.93) 0%,
    rgba(5,12,16,0.35) 46%,
    rgba(5,12,16,0.05) 100%);
  transition: background 0.4s ease;
}
.dest-card:hover .dest-veil {
  background: linear-gradient(to top,
    rgba(5,12,16,0.95) 0%,
    rgba(5,12,16,0.48) 56%,
    rgba(5,12,16,0.14) 100%);
}

.dest-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 30px 28px;
}

.dest-tag {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dest-content h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.dest-content p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 32ch;
}

.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.dest-explore em { font-style: normal; transition: transform 0.3s ease; }
.dest-card:hover .dest-explore { opacity: 1; transform: none; }
.dest-card:hover .dest-explore em { transform: translateX(4px); }

.dest-worldwide {
  max-width: 1180px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.dest-worldwide a {
  color: var(--coral);
  border-bottom: 1px solid rgba(201,132,106,0.4);
  margin-left: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.dest-worldwide a:hover { color: var(--coral-dark); }


/* ═══════════════════════════════════════════
   SIGNATURE SERVICES
   ═══════════════════════════════════════════ */
.services {
  background: var(--white);
  padding: 104px 48px;
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  background: #fbf8f4;
  transform: translateY(-3px);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--coral);
  transition: color 0.3s ease;
}
.service-icon svg { width: 100%; height: 100%; display: block; }
.service-card:hover .service-icon { color: var(--gold); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}

.service-card p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   WHY LUXETRA
   ═══════════════════════════════════════════ */
.why {
  background: var(--navy);
  padding: 104px 48px;
}

.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(216,184,123,0.28);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.9;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.why-item p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   LUXURY STATEMENT
   ═══════════════════════════════════════════ */
.statement {
  position: relative;
  padding: 148px 48px;
  background-image: url('https://images.unsplash.com/photo-1473116763249-2faaef81ccda?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5,12,16,0.74), rgba(5,12,16,0.88));
}

.statement-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.statement-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.statement h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin: 18px 0 24px;
}

.statement p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.95;
  max-width: 640px;
  margin: 0 auto 16px;
}


/* ═══════════════════════════════════════════
   CONTACT : INQUIRY FORM
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

/* repurpose lead card to a single column */
.contact-lead {
  display: block;
  grid-template-columns: none;
  align-items: initial;
}
.contact-lead h2 { margin-bottom: 14px; }
.contact-fineprint {
  margin-top: 20px;
  font-size: 0.74rem;
  font-style: italic;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(7,28,36,0.08);
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text);
  padding: 11px 12px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.field textarea { resize: vertical; min-height: 70px; }

.inquiry-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--coral);
  min-height: 1em;
}


/* ═══════════════════════════════════════════
   PREMIUM CLOSING
   ═══════════════════════════════════════════ */
.closing {
  position: relative;
  padding: 132px 48px;
  background-image: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5,12,16,0.7), rgba(5,12,16,0.9));
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.closing-kicker {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.closing h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
}

.closing p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}

.closing-cta { margin-top: 10px; }


/* ═══════════════════════════════════════════
   FOOTER (dark, expanded)
   ═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(216,184,123,0.18);
  color: rgba(255,255,255,0.7);
  display: block;
  text-align: left;
  padding: 0;
  gap: 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 74px 48px 56px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}

.footer .footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.footer-blurb {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.footer-socials a:hover {
  color: #0a0a0a;
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a,
.footer-links span {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-newsletter p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  padding: 0 18px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.newsletter-form button:hover { background: var(--coral); color: #fff; }

.newsletter-note {
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--gold);
  min-height: 1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.25); }


/* ═══════════════════════════════════════════
   RESPONSIVE : added sections
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .destinations, .services, .why { padding: 74px 24px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .dest-explore { opacity: 1; transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .statement { padding: 96px 24px; background-attachment: scroll; }
  .closing { padding: 92px 24px; background-attachment: scroll; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .inquiry-form { padding: 30px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 24px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 24px; }
}

@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { aspect-ratio: 3 / 4; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
