/* ═══════════════════════════════════════════════════════════
   BELMOURE — STYLESHEET
   Official palette: #050505 (black), #F5F1E8 (ivory), #C8A45A (champagne gold), #181818 (charcoal)
   Typography: Noto Serif Display (headings) + Poppins (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  --black:   #050505;
  --black2:  #0E0E0E;
  --black3:  #181818;
  --grey1:   #2A2A2A;
  --grey2:   #767676;
  --grey3:   #AAAAAA;
  --grey4:   #CCCCCC;
  --gray:    #B8B8B8;
  --white:   #F5F1E8;
  --gold:    #C8A45A;
  --gold2:   #E8C96A;
  --gold3:   #A07830;
  --serif:   'Noto Serif Display', Georgia, serif;
  --sans:    'Poppins', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 4px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.white { color: var(--white); }

.body-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey4);
  line-height: 1.9;
  margin-bottom: 20px;
}

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

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

.gold-divider.centered {
  margin: 24px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn-gold:hover::after { transform: translateX(0); }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(200,164,90,0.35); transform: translateY(-2px); }

.btn-gold.small { padding: 10px 24px; font-size: 0.7rem; }
.btn-gold.full-width { width: 100%; text-align: center; padding: 16px; }

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,164,90,0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: height 0.4s;
}

#navbar.scrolled .nav-logo img { height: 44px; }

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey4);
  transition: color 0.3s;
  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);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  letter-spacing: 0.15em !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(200,164,90,0.2);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey4);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}

.mobile-link:hover, .mobile-link.gold { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s var(--ease), transform 8s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 200;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-indicator span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,164,90,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 28px;
}

.marquee-track .sep {
  color: var(--black3);
  padding: 0 4px;
  font-size: 0.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ──────────────────────────────────────────────── */
.section-about {
  padding: 120px 0;
  background: var(--black2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.about-img:hover { filter: grayscale(0%); }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.gold { color: var(--gold); }

.stat-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey3);
}

/* ── SERVICES ───────────────────────────────────────────── */
.section-services {
  padding: 120px 0;
  background: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  background: var(--black);
  padding: 50px 36px;
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover { background: var(--black3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-text {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey3);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-link {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
}

.service-link:hover { letter-spacing: 0.3em; }
.service-link span { transition: transform 0.3s; display: inline-block; }
.service-link:hover span { transform: translateX(4px); }

/* ── FLEET ──────────────────────────────────────────────── */
.section-fleet {
  padding: 120px 0;
  background: var(--black3);
  position: relative;
  overflow: hidden;
}

.fleet-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.fleet-slider-wrap {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.fleet-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease);
}

.fleet-card {
  min-width: calc(33.333% - 16px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fleet-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.5s, transform 0.6s var(--ease);
}

.fleet-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.fleet-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

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

.fleet-card-info p {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.fleet-capacity {
  display: block;
  margin-top: 7px;
  color: #D0D0D0;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.fleet-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(200,164,90,0.4);
  color: var(--gold);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.fleet-arrow.left { left: -10px; }
.fleet-arrow.right { right: -10px; }

/* ── WHY US ─────────────────────────────────────────────── */
.section-why {
  padding: 120px 0 0;
  background: var(--black2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 0;
}

.why-card {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}

.why-card:hover { border-color: var(--gold); }

.why-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 200;
  color: rgba(200,164,90,0.2);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.why-card:hover .why-number { color: rgba(200,164,90,0.5); }

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.why-card p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey3);
  line-height: 1.8;
}

.why-image-split {
  margin-top: 80px;
  position: relative;
  height: 480px;
  overflow: hidden;
}

.why-image-split img,
.why-arrival-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.6);
  transition: filter 0.6s;
}

.why-arrival-video {
  display: block;
  object-position: center center;
}

.why-image-split:hover img,
.why-image-split:hover .why-arrival-video { filter: grayscale(10%) brightness(0.7); }

.why-image-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: right;
  max-width: 400px;
}

.why-image-caption h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.25;
}

.why-image-caption h3 em {
  font-style: italic;
  color: var(--gold);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.section-testimonials {
  padding: 120px 0;
  background: var(--black);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}

.testimonial-item {
  display: none;
  text-align: center;
  animation: fadeInUp 0.6s var(--ease);
}

.testimonial-item.active { display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--grey4);
  line-height: 1.7;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.author-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
}

.author-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.tdot.active { background: var(--gold); transform: scale(1.5); }

/* ── CONTACT ────────────────────────────────────────────── */
.section-contact {
  padding: 120px 0;
  background: var(--black3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey4);
}

.contact-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey3);
}

.optional-label {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-left: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group select option { background: var(--black3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,164,90,0.04);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.luggage-note {
  margin: -4px 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.form-status {
  min-height: 1.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row { display:flex; align-items:flex-start; gap:12px; color:var(--gray); font-size:.78rem; line-height:1.55; margin:4px 0 18px; }
.consent-row input { width:16px; height:16px; margin-top:3px; accent-color:var(--gold); }
.consent-row a { color:var(--gold); text-decoration:underline; }

.legal-page { background:var(--black2); color:var(--white); min-height:100vh; }
.legal-header { padding:28px 5%; border-bottom:1px solid rgba(200,164,90,.2); background:var(--black); }
.legal-header img { width:190px; }
.legal-main { max-width:900px; margin:0 auto; padding:90px 28px; }
.legal-main .eyebrow { color:var(--gold); }
.legal-main h1 { font-family:var(--serif); font-size:clamp(2.6rem,7vw,5.5rem); margin:12px 0 18px; }
.legal-main .updated { color:var(--gray); margin-bottom:50px; }
.legal-main h2 { font-family:var(--serif); color:var(--gold-light); font-size:1.65rem; margin:38px 0 12px; }
.legal-main p, .legal-main li { color:#c8c8c8; line-height:1.8; }
.legal-main a { color:var(--gold); }
.legal-back { display:inline-block; margin-top:48px; color:var(--gold); letter-spacing:.12em; text-transform:uppercase; }

.google-forms-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.google-form-embed {
  display: block;
  width: 100%;
  min-height: 1450px;
  border: 1px solid rgba(200,164,90,0.25);
  background: #fff;
}


/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(200,164,90,0.15);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey3);
}

.footer-links h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links a,
.footer-links p {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey3);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }
.footer-hours { color: var(--gold) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey2);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--grey3);
  transition: color 0.3s;
}

.footer-socials a:hover { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fleet-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  #navbar.scrolled .mobile-menu { top: 72px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .btn-gold, .btn-outline { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .fleet-card { min-width: calc(100% - 0px); }
  .why-image-caption { right: 5%; left: 5%; text-align: center; }
  .about-badge { right: 0; bottom: -16px; }
  .section-about, .section-services, .section-fleet,
  .section-why, .section-testimonials, .section-contact { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 24px; padding-top: 80px; }
  .about-stats { flex-direction: column; gap: 24px; }
  .nav-inner { padding: 0 24px; }
  .mobile-menu { padding: 20px 24px 30px; }
}
