*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

:root {
  --black: #070707;
  --black-soft: #101010;
  --charcoal: #171717;
  --charcoal-soft: #1d1d1d;
  --gold: #c9a84c;
  --gold-deep: #9d7a26;
  --gold-soft: #e5c978;
  --ivory: #f3ecdd;
  --stone: #b7ab93;
  --white: #ffffff;
  --line: rgba(201, 168, 76, 0.22);
  --line-strong: rgba(201, 168, 76, 0.42);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --transition: 180ms ease;
  --header-height: 88px;
  --sticky-cta-height: 88px;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 32%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 24%);
  z-index: -1;
}

body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--ivory);
  background:
    linear-gradient(180deg, #060606 0%, #0c0c0c 44%, #111111 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 6.4vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }

p { color: var(--stone); }

.container {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
}

section { padding: 4.5rem 0; }

@media (min-width: 768px) {
  section { padding: 6rem 0; }
}

.btn,
.nav-links a,
.mobile-nav a,
.menu-toggle,
.header-tel,
footer a {
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-nav a:focus-visible,
.menu-toggle:focus-visible,
.header-tel:focus-visible,
footer a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 0.4rem 0.3rem 0.15rem;
}

.logo img,
.logo-icon {
  width: 57px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-left: 0.95rem;
  border-left: 1px solid rgba(201, 168, 76, 0.24);
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 767px) {
  .header-inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 84px;
    padding-block: 0.5rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 20;
  }

  .logo img,
  .logo-icon {
    display: block;
    width: 56px;
    height: auto;
    padding: 0.3rem;
    border: 1px solid rgba(229, 201, 120, 0.4);
    border-radius: 14px;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.18), rgba(0, 0, 0, 0.45));
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 18px rgba(201, 168, 76, 0.12);
    filter: none;
  }

  .brand-mark {
    display: none;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 20;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), rgba(0, 0, 0, 0.2));
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ivory);
  }

  .section-heading {
    gap: 0.65rem;
    margin-bottom: 1.6rem;
  }

  .section-heading h1,
  .section-heading h2 {
    max-width: 18ch;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.02;
  }

  .section-heading p:not(.eyebrow),
  .section-heading .lede {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a,
.mobile-nav a {
  color: rgba(243, 236, 221, 0.84);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-soft);
}

.header-tel {
  display: none;
  align-items: center;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ivory);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 1.5rem 1rem 2.5rem;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.mobile-nav[hidden] { 
  display: none; 
}

.mobile-nav.open {
  display: grid;
  gap: 0.8rem;
  animation: slideInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.mobile-nav a:active {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .header-tel { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav,
  .mobile-nav.open,
  .mobile-nav[hidden] { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #231a08;
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.22);
}

.btn-primary:hover { background: linear-gradient(135deg, #f0d897, var(--gold)); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-soft);
}

.btn-call {
  background: var(--ivory);
  color: #111111;
}

.btn-call:hover { background: #ffffff; }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover { background: #1fb45a; }

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
  display: grid;
  justify-items: start;
  gap: 0.8rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-heading h1,
.section-heading h2 {
  max-width: 14ch;
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.eyebrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hero-home .hero-copy .eyebrow {
    justify-content: flex-start;
    width: auto;
  }
  .hero-home .hero-copy .eyebrow::after {
    display: none;
  }
}

@media (min-width: 900px) {
  .eyebrow {
    justify-content: flex-start;
    width: auto;
  }
  .eyebrow::after {
    display: none;
  }
}

.section-heading p:not(.eyebrow),
.section-heading .lede {
  max-width: 58ch;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--stone);
}

.section-heading.center p:not(.eyebrow),
.section-heading.center .lede {
  margin-inline: auto;
}

.hero {
  position: relative;
  padding: 2rem 0 2rem;
}

.hero-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-container {
    position: relative;
    display: block;
  }
}


.hero-frame {
  position: relative;
  overflow: hidden;
  height: 280px; /* Explicit height on mobile */
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--black-soft);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .hero-frame {
    height: auto;
    min-height: 74vh;
  }
}


.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hero-media {
    position: absolute;
    inset: 0;
  }
}

.hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .hero-image {
    position: absolute;
    inset: 0;
  }
}


@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

.hero-body {
  position: relative;
  z-index: 10;
  padding: 2.5rem 0.5rem 1rem;
}

@media (min-width: 768px) {
  .hero-body {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    z-index: 10;
    pointer-events: none;
  }
}


.hero-stage {
  display: grid;
  gap: 1rem;
  width: min(100%, 1080px);
}

.hero-copy {
  width: min(100%, 560px);
  padding: 1.1rem 1.1rem 1.2rem;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 { margin-bottom: 1rem; }

.hero-lead {
  max-width: 46ch;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(243, 236, 221, 0.8);
  text-align: center;
}

@media (min-width: 900px) {
  .hero-lead {
    text-align: left;
    margin-inline: 0;
  }
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.single-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.single-cta .btn {
  min-width: min(100%, 280px);
}

@media (max-width: 767px) {
  .hero {
    padding: 1.5rem 0 4rem;
  }

  .hero-frame {
    height: 320px;
  }


  .hero-body {
    padding: 2.5rem 0.5rem 0;
  }

  .hero-body > * {
    pointer-events: auto;
  }


  .hero-copy h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.04;
  }

  .hero-kicker,
  .hero .eyebrow {
    font-size: 0.62rem;
  }

  .hero-lead {
    font-size: 0.8rem;
  }

  .hero-meta {
    display: none;
  }

  .hero-stat {
    padding: 0.65rem 0.8rem;
  }

  .hero-stat strong {
    font-size: 0.8rem;
  }

  .hero-stat span {
    font-size: 0.72rem;
  }

  .hero-home-cta .btn-whatsapp {
    display: none;
  }

  .hero-image-home {
    object-fit: cover;
    object-position: 85% center; /* Focus more on the car which is usually right-aligned */
    transform: scale(1.1); /* Slight zoom-out feel by cropping less or more depending on original */
    filter: brightness(1.1); /* Ensure the car pops */
  }
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  font-size: 0.92rem;
}

.support-links a {
  color: var(--stone);
  border-bottom: 1px solid transparent;
}

.support-links a:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hero-meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-stat {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ivory);
  font-size: 0.92rem;
}

.hero-stat span {
  color: var(--stone);
  font-size: 0.84rem;
}

/* ===== HERO HOME — SPLIT LAYOUT ===== */

.hero.hero-home {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--black);
}

/* ─── Split grid ─── */
.hero-home-grid {
  display: grid;
  grid-template-areas:
    "image"
    "text";
  gap: 1.75rem;
  padding-block: 1.5rem 3.5rem;
}

/* ─── Text panel ─── */
.hero-home .hero-copy {
  grid-area: text;
  max-width: 100%;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  text-align: left;
  overflow: visible;
  border-radius: 0;
  position: static;
}

/* ─── Image panel ─── */
.hero-img-panel {
  grid-area: image;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: var(--black-soft);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(201, 168, 76, 0.10);
}

.fleet-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fleet-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.fleet-slide.is-active { opacity: 1; }

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fleet-slide--product {
  background: radial-gradient(ellipse at 70% 50%, #1c180e 0%, #0a0a0a 65%);
}

.fleet-slide--product img {
  object-fit: contain;
  object-position: center;
  padding: 8% 6%;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.65)) drop-shadow(0 4px 12px rgba(201,168,76,0.12));
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.32) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, transparent 25%);
}

/* ─── Fleet dots ─── */
.fleet-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: 1px solid rgba(245, 194, 0, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.fleet-dot.is-active {
  width: 28px;
  background: var(--gold);
  border-color: var(--gold);
}

/* ─── H1 typography ─── */
.hero-home h1 {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  margin-bottom: 1.2rem;
  max-width: none;
}

.hero-line-accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  background: linear-gradient(105deg, var(--ivory) 0%, var(--gold-soft) 46%, var(--ivory) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.025em;
}

.hero-line-main {
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 2.6rem);
  color: rgba(243, 236, 221, 0.72);
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-top: 0.3rem;
}

.hero-home .hero-kicker { justify-content: flex-start; }

.hero-home .hero-lead {
  max-width: 44ch;
  margin-inline: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.trust-list li {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  font-weight: 700;
  line-height: 1.35;
}

.hero-home .single-cta { align-items: flex-start; }
.hero-home .support-links { justify-content: flex-start; }

/* ─── Book button ─── */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #231a08;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(201,168,76,0.32);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-book:hover {
  background: linear-gradient(135deg, #f0d897, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.4);
}

/* ─── Generic hero (non-home) tablet/desktop ─── */
@media (min-width: 768px) {
  .hero { padding: 2.25rem 0 5.5rem; }
  .hero-body { padding: 2.5rem; }
  .hero-copy { padding: 1.35rem 1.4rem 1.45rem; }
  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
  }
}

@media (min-width: 900px) {
  .hero-stage {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
    gap: 1.4rem;
  }

  .hero .hero-body {
    justify-content: flex-start;
    align-items: center;
  }

  .hero .hero-copy {
    margin-left: 1rem;
    text-align: left;
  }

  .hero .hero-kicker { justify-content: flex-start; }
  .hero .hero-lead { margin-inline: 0; }
  .hero .single-cta { align-items: flex-start; }
  .hero .support-links { justify-content: flex-start; }

  .hero-manifest {
    margin-inline: 0;
    justify-self: end;
    transform: translateY(1.2rem);
  }
}

/* ─── Hero compact (en/ page) ─── */
.hero-compact .hero-frame,
.hero-compact .hero-body { min-height: 56vh; }

.hero-compact .hero-copy { width: min(100%, 620px); }

.hero-image-only .hero-frame::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

@media (min-width: 900px) {
  .hero-compact .hero-copy { width: min(100%, 540px); }
  .hero-compact .hero-meta { max-width: 540px; }
}

/* ─── Hero home mobile (≤767px) ─── */
@media (max-width: 767px) {
  .hero-home-grid {
    gap: 1.5rem;
    padding-block: 1.25rem 4rem;
  }

  .hero-img-panel { border-radius: 16px; }

  .hero-home h1 { margin-bottom: 0.85rem; }

  .hero-home .hero-lead {
    font-size: 0.86rem;
    max-width: 32ch;
  }

  .trust-list li {
    font-size: 0.88rem;
  }

  .hero-home .single-cta { gap: 0.7rem; }
}

/* ─── Hero home tablet → desktop (768px+) ─── */
@media (min-width: 768px) {
  .hero.hero-home {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-home-grid {
    grid-template-areas: "text image";
    grid-template-columns: 45fr 55fr;
    align-items: center;
    min-height: calc(100svh - var(--header-height));
    padding-block: 4rem 5rem;
    gap: 2.5rem;
  }

  .hero-img-panel {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    align-self: stretch;
    max-height: calc(100svh - var(--header-height) - 8rem);
  }

  .hero-veil {
    background:
      linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%),
      linear-gradient(to left, rgba(0,0,0,0.08) 0%, transparent 30%);
  }

  .fleet-dots { bottom: 1.25rem; }

  .hero-home h1 { margin-bottom: 1.4rem; }

  .hero-home .hero-lead {
    font-size: 1.02rem;
    max-width: 44ch;
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: start;
    max-width: 42rem;
  }
}

/* ─── Hero home wide desktop (1024px+) ─── */
@media (min-width: 1024px) {
  .hero-home-grid {
    grid-template-columns: 42fr 58fr;
    gap: 3.5rem;
    padding-block: 5rem 6rem;
  }

  .hero-img-panel { aspect-ratio: 3 / 2; }

  .fleet-dots { bottom: 1.5rem; }
}

/* ===== HERO HOME — EDITORIAL MOTION ===== */

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

.hero-home .hero-copy > * {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-home .hero-kicker  { animation-delay: 0.06s; }
.hero-home h1            { animation-delay: 0.20s; }
.hero-home .hero-lead    { animation-delay: 0.36s; }
.hero-home .single-cta   { animation-delay: 0.50s; }

.hero-img-panel {
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-copy > *,
  .hero-img-panel {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Vertical gold rule — editorial left anchor on text panel */
@media (min-width: 768px) {
  .hero-home .hero-copy {
    padding-left: 1.85rem;
    border-left: 2px solid rgba(201, 168, 76, 0.30);
  }
}

/* Enhanced kicker pill for hero-home context */
.hero-home .hero-kicker {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(201, 168, 76, 0.32);
  color: var(--gold-soft);
}

/* ===== FLEET SECTION ===== */

.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 3.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.fleet-card-visual {
  position: relative;
  background: linear-gradient(135deg, #f5f0e8, #e8e0d0);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 201, 120, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  aspect-ratio: 2 / 1;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
}

.fleet-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.fleet-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-visual img {
  transform: scale(1.04);
}

.fleet-card-info { padding: 0.5rem 0; }

.fleet-card-info .eyebrow { justify-content: flex-start; }
.fleet-card-info .eyebrow::after { display: none; }

.fleet-card-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ivory);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.fleet-card-info > p {
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1.6rem;
  max-width: 42ch;
}

.fleet-specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ivory);
  font-size: 0.9rem;
}

.fleet-specs li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .fleet-card {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.5rem;
  }

  .fleet-card-info > p { max-width: none; }
}

/* ===== LUXURY GRID ===== */

.luxury-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .luxury-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .luxury-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.panel,
.card {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--black-soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.panel::before,
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.card h3,
.panel h3 { margin-bottom: 0.8rem; }

.card h3,
.panel h3 {
  color: var(--ivory);
}

.card p,
.panel p { color: var(--stone); }

.numbered-card .card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 700;
}

.split-feature {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.feature-image {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .split-feature {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
  }
}

.service-list,
.zone-pills,
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-chip,
.zone-pill,
.value-list span {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  font-size: 0.92rem;
}

.service-list {
  justify-content: center;
}

.zone-shell {
  max-width: 980px;
  margin-inline: auto;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.zone-heading {
  max-width: 760px;
}

.zone-highlight {
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.zone-highlight strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ivory);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-family: 'Playfair Display', Georgia, serif;
}

.zone-label {
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.zone-pills {
  justify-content: center;
  margin-top: 1.2rem;
}

.zone-pill {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.zone-note {
  margin-top: 1.15rem;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.ride-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.ride-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.ride-table th,
.ride-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.ride-table th {
  color: var(--ivory);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ride-table td {
  color: var(--stone);
}

.ride-table tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--ivory);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: 0.9rem;
}

.faq-item[open] {
  border-color: rgba(201, 168, 76, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--black-soft);
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--charcoal);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-band .section-heading { margin-bottom: 0; }

.cta-band,
.legal-block {
  text-align: center;
}

.booking-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.booking-steps li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.booking-steps strong {
  color: var(--ivory);
}

.booking-steps span {
  color: var(--stone);
}

@media (min-width: 900px) {
  .booking-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .booking-steps li {
    text-align: left;
    min-height: 100%;
  }
}

footer {
  padding: 0 0 1.25rem;
}

.footer-shell {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.96);
  box-shadow: var(--shadow);
}

.footer-topline {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-title {
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.footer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-action:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 76, 0.38);
  background: rgba(255, 255, 255, 0.065);
}

.footer-action--primary {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.22), rgba(201, 168, 76, 0.12));
  border-color: rgba(201, 168, 76, 0.42);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.footer-brand-block {
  display: grid;
  gap: 0.45rem;
}

.footer-card {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.footer-eyebrow {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-grid h4 {
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--stone);
  font-size: 0.82rem;
}

.footer-legal {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--stone);
  font-size: 0.88rem;
  text-align: center;
}

.footer-legal p + p {
  margin-top: 0.45rem;
}

.footer-legal a {
  color: var(--gold-soft);
}

.footer-legal a:hover {
  color: var(--ivory);
}

@media (min-width: 768px) {
  .footer-shell {
    padding: 1.6rem;
  }

  .footer-topline {
    grid-template-columns: 1.2fr auto;
    align-items: center;
    text-align: left;
  }

  .footer-quick-actions {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.9fr 1fr;
    align-items: start;
    text-align: left;
  }

  .footer-badges {
    justify-content: flex-start;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: block;
  padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sticky-cta .btn {
  width: 100%;
  min-height: 48px;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-actions {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.contact-action,
.contact-action.btn {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}

.contact-direct-meta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  justify-items: center;
  text-align: center;
}

.contact-direct-meta a {
  color: var(--stone);
}

.contact-direct-meta a:hover {
  color: var(--gold-soft);
}

.contact-map {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.legal-block p + p,
.contact-info-list p + p { margin-top: 0.65rem; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
}
