/* ============================================================
   LUCON Homepage Redesign — v2
   Scoped to .home-page · Does not affect route/tour/checkout
   ============================================================ */

/* ── Design tokens (homepage-only overrides) ─────────────── */
.home-page {
  --hp-navy:     #06293b;
  --hp-teal:     #0891a8;
  --hp-teal-accessible: #006778;
  --hp-teal-lt:  #0cb8cf;
  --hp-cyan:     #7be8ef;
  --hp-gold:     #e8b84b;
  --hp-ink:      #102030;
  --hp-muted:    #4d6a79;
  --hp-line:     #daeaec;
  --hp-bg:       #f6fbfc;
  --hp-card-bg:  #ffffff;
  --hp-radius:   20px;
  --hp-radius-lg: 28px;

  background: var(--hp-bg);
  color: var(--hp-ink);
  overflow-x: clip;
}

/* ── Container ───────────────────────────────────────────── */
.home-page .container {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* ── Topbar ──────────────────────────────────────────────── */
.home-page .topbar {
  min-height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--hp-line);
  box-shadow: none;
  transition: box-shadow 240ms ease, background 240ms ease;
}
.home-page .topbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 22px rgba(6,41,59,0.08);
  backdrop-filter: blur(16px);
}
.home-page .nav { min-height: 72px; }
.home-page .brand-text { color: var(--hp-navy); letter-spacing: 0.06em; font-weight: 800; }
.home-page .nav-link { color: #2e5063; font-weight: 600; font-size: 15px; }
.home-page .nav-link:hover,
.home-page .nav-link:focus-visible { color: var(--hp-teal-accessible); }
.home-page .nav-cta { background: var(--hp-navy); border-color: var(--hp-navy); color: #fff; }
.home-page .nav-cta:hover { background: var(--hp-teal-accessible); border-color: var(--hp-teal-accessible); }

/* ── Focus ring ──────────────────────────────────────────── */
.home-page :is(a,button,select,input,summary):focus-visible {
  outline: 3px solid var(--hp-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.home-page .btn {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.home-page .btn-primary {
  background: var(--hp-teal-accessible);
  border-color: var(--hp-teal-accessible);
  color: #fff;
  box-shadow: 0 4px 16px rgba(8,145,168,0.28);
}
.home-page .btn-primary:hover {
  background: var(--hp-navy);
  border-color: var(--hp-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,41,59,0.22);
}
.home-page .btn-secondary {
  background: #fff;
  color: var(--hp-navy);
  border-color: var(--hp-line);
}
.home-page .btn-secondary:hover {
  border-color: var(--hp-teal);
  background: #edf8fa;
  transform: translateY(-1px);
}
.home-page .btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.home-page .btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.home-page .hero {
  position: relative;
  min-height: 660px;
  height: 660px;
  display: block;
  padding: 0;
  margin: 16px;
  border-radius: var(--hp-radius-lg);
  overflow: visible;
  background: var(--hp-navy);
}

.home-page .hero-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
}
.home-page .hero-bg picture,
.home-page .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.home-page .hero-bg img {
  object-fit: cover;
  object-position: 56% 40%;
}
.home-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4,25,38,0.93) 0%,
    rgba(5,34,50,0.78) 38%,
    rgba(5,38,56,0.30) 65%,
    rgba(5,38,56,0.06) 100%
  );
}

/* Hero layout */
.home-page .hero-content {
  position: relative;
  /* Keep the overlapping booking card above the trust strip so its submit
     control remains clickable at the bottom edge of the hero. */
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: end;
  min-height: 660px;
  height: 660px;
  box-sizing: border-box;
  padding: 80px 0 36px;
}
.home-page .hero {
  z-index: 3;
}

.home-page .hero-text {
  color: #fff;
  max-width: 640px;
  align-self: center;
}

/* Above-fold content must be paintable without waiting for enhancement JS. */
.home-page .hero .fade-in,
.home-page .hero .slide-up,
.home-page .hero .slide-in-right {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Badge */
.home-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(6,41,59,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.home-page .icon-badge { width: 15px; height: 15px; color: var(--hp-cyan); }
.home-page .hero-badge-copy--desktop { display: inline; }
.home-page .hero-badge-copy--mobile  { display: none; }

/* Headline */
.home-page .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.home-page .hero-title em {
  font-style: italic;
  color: var(--hp-cyan);
  display: block;
}

/* Subtitle */
.home-page .hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 26px;
  max-width: 540px;
}

/* Trust pills */
.home-page .hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.home-page .hero-trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(4,28,44,0.55);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.home-page .hero-trust-row > span svg { width: 14px; height: 14px; color: var(--hp-cyan); flex-shrink: 0; }
.home-page .hero-trust-row .hero-rating { color: var(--hp-gold); }
.home-page .hero-trust-row .hero-rating b { color: #fff; }
.home-page .hero-cta { display: none; } /* CTA is in booking card desktop */

/* Scroll indicator */
.home-page .scroll-indicator { display: none; }

/* ══════════════════════════════════════════════════════════
   BOOKING CARD
   ══════════════════════════════════════════════════════════ */
.home-page .booking-card {
  position: relative;
  z-index: 10;
  align-self: end;
  margin-bottom: -90px;
  padding: 28px 26px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 24px 60px rgba(6,41,59,0.22), 0 4px 16px rgba(6,41,59,0.10);
  opacity: 1 !important;
  transform: none !important;
  max-width: 460px;
  width: 100%;
}
.home-page .card-glow { display: none; }

.home-page .booking-card-header { margin-bottom: 18px; }
.home-page .booking-card-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-teal-accessible);
  margin-bottom: 8px;
}
.home-page .booking-card-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin-bottom: 4px;
  line-height: 1.15;
}
.home-page .booking-card-header p {
  font-size: 13.5px;
  color: var(--hp-muted);
  margin-bottom: 0;
}

.home-page .booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-page .booking-form .form-group { margin: 0; }
.home-page .booking-form .form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-navy);
  margin-bottom: 6px;
}
.home-page .booking-form :is(select, .service-picker__trigger) {
  min-height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--hp-line);
  background: #fff;
  font-size: 15px;
  color: var(--hp-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.home-page .booking-form :is(select, .service-picker__trigger):hover {
  border-color: #aecdd4;
}
.home-page .booking-form :is(select, .service-picker__trigger):focus,
.home-page .booking-form :is(select, .service-picker__trigger):focus-within {
  border-color: var(--hp-teal);
  box-shadow: 0 0 0 3px rgba(8,145,168,0.14);
  outline: none;
}
.home-page .booking-form .btn-block {
  min-height: 54px;
  font-size: 16px;
  margin-top: 4px;
}
.home-page .booking-form__hint {
  display: none;
  font-size: 12px;
  color: var(--hp-muted);
  line-height: 1.45;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR (below hero)
   ══════════════════════════════════════════════════════════ */
.home-page .trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 110px; /* accounts for booking card overlap */
  background: transparent;
}
.home-page .trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hp-line);
}
.home-page .trust-bar__items > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hp-navy);
}
.home-page .trust-bar__items > span svg { width: 16px; height: 16px; color: var(--hp-teal); }

/* ══════════════════════════════════════════════════════════
   SECTIONS (common overrides)
   ══════════════════════════════════════════════════════════ */
.home-page .section { padding: 80px 0; }
.home-page .section--compact { padding: 64px 0; }

.home-page .section-badge {
  color: var(--hp-teal-accessible);
  background: #e6f6f8;
  border-color: transparent;
  font-size: 11px;
  letter-spacing: 0.10em;
}
.home-page .section-title {
  color: var(--hp-navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.home-page .section-subtitle {
  color: var(--hp-muted);
  font-size: 1.03rem;
  max-width: 680px;
}

/* ── Why LUCON / Experience cards ────────────────────────── */
.home-page .experience-section { padding-top: 0; }
.home-page .experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.home-page .experience-card {
  min-width: 0;
  border: 1px solid var(--hp-line);
  border-radius: 20px;
  background: var(--hp-card-bg);
  box-shadow: 0 8px 24px rgba(6,41,59,0.06);
  padding: 28px 24px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.home-page .experience-card.visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,41,59,0.12);
}
.home-page .experience-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e6f6f8;
  color: var(--hp-teal);
  margin-bottom: 18px;
}
.home-page .experience-card__icon svg { width: 24px; height: 24px; }
.home-page .experience-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin-bottom: 10px;
}
.home-page .experience-card p { font-size: 0.93rem; color: var(--hp-muted); line-height: 1.65; margin: 0; }

.home-page .airport-explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 28px;
}
.home-page .airport-explainer-card {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #daeaec;
  border-radius: 14px;
  background: #fff;
}
.home-page .airport-explainer-card__eyebrow {
  margin-bottom: 6px;
  color: var(--hp-teal-accessible);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.home-page .airport-explainer-card__title { color: #06293b; font-size: 14px; font-weight: 700; }
.home-page .airport-explainer-card__copy { margin-top: 3px; color: #4d6a79; font-size: 13px; line-height: 1.5; }

/* ── Pricing note ────────────────────────────────────────── */
.home-page .pricing-note {
  display: inline-block;
  font-size: 13px;
  color: var(--hp-muted);
  background: #eef5f6;
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 10px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   ROUTE/TRANSFER CARDS — simplified, direction-clear
   ══════════════════════════════════════════════════════════ */
.home-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.home-page .tours-section .services-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.home-page .lucon-card {
  min-width: 0;
  border: 1px solid var(--hp-line);
  border-radius: 18px;
  background: var(--hp-card-bg);
  box-shadow: 0 8px 28px rgba(6,41,59,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.home-page .lucon-card.visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(6,41,59,0.14);
}
.home-page .lucon-card__media {
  aspect-ratio: auto;
  height: 158px;
  overflow: hidden;
  position: relative;
  background: #cde6e9;
  flex-shrink: 0;
}
.home-page .lucon-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.home-page .lucon-card.visible:hover .lucon-card__media img {
  transform: scale(1.03);
}
.home-page .lucon-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6,41,59,0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-page .lucon-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-page .lucon-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.home-page .lucon-card__sub {
  font-size: 12px;
  color: var(--hp-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Transfer direction blocks inside cards */
.home-page .transfer-direction {
  padding: 10px;
  border: 1px solid var(--hp-line);
  border-radius: 11px;
  background: #f6fbfc;
  margin-bottom: 8px;
}
.home-page .transfer-direction + .transfer-direction { margin-top: 0; }
.home-page .transfer-direction__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.home-page .transfer-direction--arrival .transfer-direction__label { color: var(--hp-teal-accessible); }
.home-page .transfer-direction--departure .transfer-direction__label { color: #b45c14; }
.home-page .transfer-direction__label svg { width: 13px; height: 13px; flex-shrink: 0; }

.home-page .transfer-direction__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}
.home-page .transfer-direction__details { min-width: 0; flex: 1 1 auto; }
.home-page .transfer-direction__route {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.35;
  flex: 1 1 160px;
}
.home-page .transfer-direction__meta {
  font-size: 10.5px;
  color: var(--hp-muted);
  margin-top: 3px;
}
.home-page .transfer-direction__pricing { text-align: right; flex-shrink: 0; }
.home-page .lucon-card__price-label { display: block; font-size: 10.5px; color: var(--hp-muted); margin-bottom: 2px; }
.home-page .lucon-card__price { font-size: 1.1rem; font-weight: 800; color: var(--hp-navy); line-height: 1; }
.home-page .lucon-card__price-note { display: block; font-size: 10.5px; color: var(--hp-muted); margin-top: 2px; }

.home-page .transfer-direction__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.home-page .lucon-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.home-page .lucon-card__btn--primary {
  background: var(--hp-teal-accessible);
  color: #fff;
}
.home-page .lucon-card__btn--primary:hover {
  background: var(--hp-navy);
  transform: translateY(-1px);
}
.home-page .lucon-card__btn--quick {
  background: #edf8fa;
  color: var(--hp-teal-accessible);
}
.home-page .lucon-card__btn--quick:hover {
  background: #cceef3;
}

/* Tour card overrides */
.home-page .lucon-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hp-line);
}
.home-page .lucon-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--hp-muted);
}
.home-page .icon-sm { width: 14px; height: 14px; }
.home-page .lucon-card__action { margin-top: 14px; }
.home-page .lucon-card__btn:not(.lucon-card__btn--primary):not(.lucon-card__btn--quick) {
  background: var(--hp-teal-accessible);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
}

/* ── Cruise card ─────────────────────────────────────────── */
.home-page .lucon-card[data-id="cruise-port-transfers"] .lucon-card__price { font-size: 1rem; }

/* Section CTA link ──────────────────────────────────────── */
.home-page .section-cta { text-align: center; margin-top: 34px; }

/* ══════════════════════════════════════════════════════════
   TRAVEL PARTNER SECTION
   ══════════════════════════════════════════════════════════ */
.home-page .lucon-fleet-section {
  background: #f2f8f7;
  border-top: 1px solid var(--hp-line);
  border-bottom: 1px solid var(--hp-line);
  padding: 56px 0;
}
.home-page .lucon-fleet-section__header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
  margin-bottom: 24px;
}
.home-page .lucon-fleet-section__header .section-title { margin: 14px 0; }
.home-page .lucon-fleet-section__header .section-subtitle { margin: 0; line-height: 1.7; }

.home-page .lucon-fleet-empty {
  padding: 28px;
  border: 1px solid #cee5e3;
  border-radius: 20px;
  background: #fff;
  color: var(--hp-muted);
}
.home-page .lucon-fleet-empty p { margin: 0; }

.home-page .lucon-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0 0 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(8,145,168,0.45) transparent;
}
.home-page .lucon-fleet-card {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d4e4e2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6,41,59,0.07);
}
/* A stale deployment must not be able to make the first card featured. */
.home-page .lucon-fleet-grid > .lucon-fleet-card--featured {
  display: block;
  grid-template-columns: none;
  width: 100%;
  height: 100%;
}
.home-page .lucon-fleet-grid > .lucon-fleet-card--featured .lucon-fleet-card__media,
.home-page .lucon-fleet-grid > .lucon-fleet-card--featured .lucon-fleet-card__media > img {
  height: auto;
  min-height: 0;
}
.home-page .lucon-fleet-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d4e7e5;
}
.home-page .lucon-fleet-card__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}
.home-page .lucon-fleet-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 78px;
  min-height: 78px;
  box-sizing: border-box;
  padding: 12px 14px;
  text-align: center;
}
.home-page .lucon-fleet-card__body h3 {
  margin: 0;
  color: var(--hp-navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-page .lucon-fleet-card__body p {
  margin: 0;
  color: var(--hp-muted);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-page .lucon-fleet-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}
.home-page .lucon-fleet-section__footer p { margin: 0; color: var(--hp-muted); font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   AVAILABLE VEHICLES
   ══════════════════════════════════════════════════════════ */
.home-page .lucon-vehicles-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
  border-bottom: 1px solid var(--hp-line);
  padding: 72px 0;
}
.home-page .lucon-vehicles-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.home-page .lucon-vehicles-section__header .section-title { margin: 14px 0; }
.home-page .lucon-vehicles-section__header .section-subtitle { max-width: 720px; margin: 0; line-height: 1.7; }
.home-page .lucon-vehicles-section__note {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 min(300px, 100%);
  padding: 14px 16px;
  border: 1px solid #cfe5e5;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.45;
}
.home-page .lucon-vehicles-section__note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5f7f7;
  color: var(--hp-teal);
  font-size: 15px;
}
.home-page .lucon-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-page .lucon-vehicle-card {
  overflow: hidden;
  border: 1px solid #d5e7e7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,41,59,.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.home-page .lucon-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6,41,59,.13);
}
.home-page .lucon-vehicle-card__gallery { background: #dceff0; }
.home-page .lucon-vehicle-card__hero,
.home-page .lucon-vehicle-card__placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.home-page .lucon-vehicle-card__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.home-page .lucon-vehicle-card:hover .lucon-vehicle-card__hero img { transform: scale(1.035); }
.home-page .lucon-vehicle-card__hero::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3,28,42,.46));
  pointer-events: none;
}
.home-page .lucon-vehicle-card__availability {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(4,34,50,.78);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.home-page .lucon-vehicle-card__availability span { color: #75e5b3; font-size: 10px; }
.home-page .lucon-vehicle-card__thumbnails {
  display: flex;
  gap: 5px;
  padding: 5px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(8,145,168,.35) transparent;
}
.home-page .lucon-vehicle-card__thumbnail { position: relative; flex: 0 0 31%; aspect-ratio: 16 / 8; overflow: hidden; border-radius: 9px; background: #c5e4e5; }
.home-page .lucon-vehicle-card__thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-page .lucon-vehicle-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(circle at 50% 18%, #a7e1e3 0, #d9f1f0 48%, #b8dfe1 100%);
  color: var(--hp-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.home-page .lucon-vehicle-card__placeholder .lucon-vehicle-card__availability { right: auto; bottom: 14px; }
.home-page .lucon-vehicle-card__placeholder-mark { color: var(--hp-teal); font-size: 34px; }
.home-page .lucon-vehicle-card__body { padding: 20px 20px 22px; }
.home-page .lucon-vehicle-card__eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--hp-teal-accessible);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-page .lucon-vehicle-card__eyebrow span:last-child { color: var(--hp-muted); }
.home-page .lucon-vehicle-card__body h3 {
  margin: 0 0 7px;
  color: var(--hp-navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.home-page .lucon-vehicle-card__specs { margin: 0; color: var(--hp-muted); font-size: 13px; line-height: 1.5; }
.home-page .lucon-vehicles-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid #cfe5e5;
  border-radius: 20px;
  background: #fff;
  color: var(--hp-muted);
}
.home-page .lucon-vehicles-empty p { margin: 0; }

/* ══════════════════════════════════════════════════════════
   ROHAN / LOCAL COORDINATOR
   ══════════════════════════════════════════════════════════ */
.home-page .rohan-home-card {
  display: grid;
  grid-template-columns: minmax(280px,0.9fr) minmax(340px,1.1fr);
  overflow: hidden;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius-lg);
  background: #fff;
  box-shadow: 0 16px 46px rgba(6,41,59,0.10);
}
.home-page .rohan-home-card > img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}
.home-page .rohan-home-card > div { padding: clamp(32px,5vw,72px); align-self: center; }
.home-page .rohan-home-card h2 {
  margin: 14px 0;
  color: var(--hp-navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.04;
}
.home-page .rohan-home-card p { color: var(--hp-muted); font-size: 1rem; line-height: 1.7; }
.home-page .rohan-points { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.home-page .rohan-points li::before { content: "✓"; margin-right: 10px; color: var(--hp-teal); font-weight: 800; }
.home-page .rohan-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.home-page .rohan-actions .lucon-contact-actions { justify-content: flex-start; }

/* ══════════════════════════════════════════════════════════
   CINEMATIC CALLOUT
   ══════════════════════════════════════════════════════════ */
.home-page .cinematic-section {
  position: relative;
  min-height: 520px;
  margin: 32px 16px 60px;
  overflow: hidden;
  border-radius: var(--hp-radius-lg);
  color: #fff;
}
.home-page .cinematic-section picture,
.home-page .cinematic-section img { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-page .cinematic-section img { object-fit: cover; }
.home-page .cinematic-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(3,25,42,0.87) 0%, rgba(3,34,52,0.22) 100%);
}
.home-page .cinematic-section__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding-top: 140px;
  padding-bottom: 60px;
}
.home-page .cinematic-section__content > span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-cyan);
  margin-bottom: 16px;
}
.home-page .cinematic-section h2 {
  max-width: 680px;
  margin: 0 0 30px;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

/* ══════════════════════════════════════════════════════════
   SERVICE LINK GRID
   ══════════════════════════════════════════════════════════ */
.home-page .homepage-service-links { background: #f2f8f7; }
.home-page .trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-page .trust-strip-card {
  display: block;
  padding: 24px 20px;
  border: 1px solid var(--hp-line);
  border-radius: 18px;
  background: #fff;
  color: var(--hp-navy);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(6,41,59,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.home-page .trust-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6,41,59,0.12);
  border-color: var(--hp-teal);
}
.home-page .trust-strip-card h3 { font-size: 1rem; font-weight: 700; color: var(--hp-navy); margin-bottom: 6px; }
.home-page .trust-strip-card p  { font-size: 13px; color: var(--hp-muted); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   PLANNING GUIDE LINKS
   ══════════════════════════════════════════════════════════ */
.home-page .homepage-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-page .homepage-link-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1.5px solid var(--hp-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-teal-accessible);
  background: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.home-page .homepage-link-row a:hover {
  border-color: var(--hp-teal);
  background: #edf8fa;
}

/* ══════════════════════════════════════════════════════════
   GOOGLE REVIEWS
   ══════════════════════════════════════════════════════════ */
.home-page #reviews { scroll-margin-top: 90px; }
.home-page .lucon-google-reviews__shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: start;
}
.home-page .lucon-google-reviews__header { grid-column: 1; }
.home-page .lucon-google-reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--hp-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  gap: 6px;
}
.home-page .lucon-google-reviews__score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--hp-navy);
  line-height: 1;
}
.home-page .lucon-google-reviews__stars { font-size: 1.25rem; color: var(--hp-gold); }
.home-page .lucon-google-reviews__summary p { font-size: 13px; color: var(--hp-muted); margin: 0; }
.home-page .lucon-google-reviews__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 8px;
}
.home-page .lucon-google-reviews__actions { margin-top: 18px; }
.home-page .lucon-review-card {
  padding: 24px;
  border: 1px solid var(--hp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(6,41,59,0.05);
}
.home-page .lucon-review-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.home-page .lucon-review-card__stars { font-size: 14px; color: var(--hp-gold); }
.home-page .lucon-review-card__rating span { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hp-muted); }
.home-page .lucon-review-card h3 { font-size: 1rem; font-weight: 700; color: var(--hp-navy); margin-bottom: 8px; }
.home-page .lucon-review-card__quote { font-size: 14px; color: var(--hp-muted); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.home-page .lucon-review-card__meta { display: flex; flex-direction: column; gap: 2px; }
.home-page .lucon-review-card__author { font-size: 13.5px; font-weight: 700; color: var(--hp-navy); }
.home-page .lucon-review-card__meta span { font-size: 12px; color: var(--hp-muted); }

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════ */
.home-page .faq-grid { max-width: 860px; display: grid; gap: 10px; }
.home-page .faq-item {
  border: 1px solid var(--hp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.home-page .faq-item summary {
  min-height: 58px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--hp-navy);
  cursor: pointer;
  list-style: none;
  transition: background 160ms ease;
}
.home-page .faq-item summary::-webkit-details-marker { display: none; }
.home-page .faq-item[open] summary { background: #f0f9fa; }
.home-page .faq-item summary:hover { background: #f6fbfc; }
.home-page .faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--hp-teal); transition: transform 220ms ease; }
.home-page .faq-item[open] .faq-icon { transform: rotate(180deg); }
.home-page .faq-answer { padding: 0 20px 18px; }
.home-page .faq-answer p { font-size: 14.5px; color: var(--hp-muted); line-height: 1.65; margin: 0; }
.home-page .faq-cta { margin-top: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.home-page .faq-cta-text { margin: 0; font-size: 15px; color: var(--hp-muted); }
.home-page .faq-cta .lucon-contact-actions { justify-content: flex-start; }

/* ══════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════ */
.home-page .cta-band {
  margin: 32px 16px 0;
  border-radius: 28px 28px 0 0;
  background: var(--hp-navy);
}
.home-page .cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 52px 0;
  flex-wrap: wrap;
}
.home-page .cta-band__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 10px;
}
.home-page .cta-band__sub { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; }
.home-page .cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.home-page .cta-band__actions .lucon-contact-actions { justify-content: flex-start; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.home-page .footer { background: var(--hp-navy); }
.home-page .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; padding: 60px 0 40px; }
.home-page .footer-logo { border-radius: 10px; }
.home-page .footer-tagline { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; margin-top: 14px; }
.home-page .footer-social { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.home-page .social-link { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); transition: background 180ms ease, color 180ms ease; }
.home-page .social-link:hover { background: var(--hp-teal); color: #fff; }
.home-page .social-link svg { width: 16px; height: 16px; }
.home-page .footer-social-handle { font-size: 13px; color: rgba(255,255,255,0.5); }
.home-page .footer-links h2 { font-size: 11px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.home-page .footer-links ul { list-style: none; display: grid; gap: 10px; }
.home-page .footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.72); transition: color 180ms ease; }
.home-page .footer-links a:hover { color: #fff; }
.home-page .footer-contact h2 { font-size: 11px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.home-page .contact-list { list-style: none; display: grid; gap: 12px; }
.home-page .contact-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.72); }
.home-page .contact-list a { color: rgba(255,255,255,0.72); }
.home-page .contact-list a:hover { color: #fff; }
.home-page .contact-list .icon { width: 15px; height: 15px; color: var(--hp-teal); flex-shrink: 0; }
.home-page .footer-app-download h2 { font-size: 11px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.home-page .footer-app-copy { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; margin-bottom: 14px; }
.home-page .footer-app-buttons { display: flex; flex-direction: column; gap: 8px; }
.home-page .footer-app-button {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease;
}
.home-page .footer-app-button:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: #fff; }
.home-page .footer-bottom { padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.home-page .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.home-page .footer-bottom a { color: rgba(255,255,255,0.65); }
.home-page .footer-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.home-page .footer-legal { margin-top: 8px; font-size: 11.5px; color: rgba(255,255,255,0.38); }

/* ══════════════════════════════════════════════════════════
   FLOATING BOOKING ACCESS
   The fixed shell is removed from visual and pointer hit testing while
   hidden, so it never changes document flow or steals focus from the page.
   ══════════════════════════════════════════════════════════ */
.home-page .floating-booking {
  position: fixed;
  top: calc(var(--lucon-floating-top, 72px) + 10px);
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.home-page .floating-booking[data-state="visible"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-page .floating-booking__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 38px rgba(6,41,59,0.19), 0 2px 8px rgba(6,41,59,0.1);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.home-page .floating-booking__form {
  display: grid;
  grid-template-columns: minmax(170px, 0.85fr) minmax(300px, 1.7fr) auto;
  align-items: end;
  gap: 8px;
}

.home-page .floating-booking__field {
  min-width: 0;
}

.home-page .floating-booking__field > label {
  display: block;
  margin: 0 0 3px 8px;
  color: var(--hp-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .floating-booking__field--type select,
.home-page .floating-booking__trigger {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--hp-line);
  border-radius: 12px;
  background: #fff;
  color: var(--hp-ink);
  font: inherit;
  font-size: 14px;
}

.home-page .floating-booking__field--type select {
  padding: 0 32px 0 12px;
  appearance: auto;
}

.home-page .floating-booking__trigger {
  min-height: 48px;
  padding: 8px 11px;
  gap: 8px;
  box-shadow: none;
}

.home-page .floating-booking__trigger .service-picker__trigger-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.home-page .floating-booking__trigger .service-picker__trigger-chevron {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.home-page .floating-booking__trigger .service-picker__trigger-copy {
  overflow: hidden;
  white-space: nowrap;
}

.home-page .floating-booking__trigger .service-picker__trigger-copy > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .floating-booking__hint {
  display: none;
}

.home-page .floating-booking__submit {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.home-page .floating-booking__submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.home-page .floating-booking__field--type select:hover,
.home-page .floating-booking__field--type select:focus,
.home-page .floating-booking__trigger:hover,
.home-page .floating-booking__trigger:focus-visible {
  border-color: var(--hp-teal);
  box-shadow: 0 0 0 3px rgba(8,145,168,0.12);
  outline: none;
}

@media (max-width: 960px) {
  .home-page .floating-booking__form {
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.55fr) auto;
  }

  .home-page .floating-booking__submit {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 700px) {
  .home-page .floating-booking {
    top: calc(var(--lucon-floating-top, 62px) + 7px);
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
  }

  .home-page .floating-booking__inner {
    padding: 7px;
    border-radius: 16px;
  }

  .home-page .floating-booking__form {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 7px;
  }

  .home-page .floating-booking__field > label {
    margin-left: 7px;
    font-size: 9px;
  }

  .home-page .floating-booking__field--type select,
  .home-page .floating-booking__trigger,
  .home-page .floating-booking__submit {
    min-height: 45px;
  }

  .home-page .floating-booking__field--type select {
    padding-right: 8px;
    font-size: 13px;
  }

  .home-page .floating-booking__trigger {
    padding-right: 8px;
    padding-left: 8px;
    gap: 6px;
    font-size: 13px;
  }

  .home-page .floating-booking__trigger .service-picker__trigger-icon {
    display: none;
  }

  .home-page .floating-booking__submit {
    grid-column: 1 / -1;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .home-page .floating-booking__field--type select,
  .home-page .floating-booking__trigger,
  .home-page .floating-booking__submit {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .floating-booking {
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 960px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .home-page .hero { min-height: 580px; height: 580px; }
  .home-page .hero-content { grid-template-columns: 1fr; min-height: 580px; height: auto; padding: 80px 0 220px; }
  .home-page .booking-card {
    position: absolute;
    left: 50%;
    bottom: -110px;
    width: min(520px, calc(100% - 32px));
    transform: translateX(-50%) !important;
    margin-bottom: 0;
  }
  .home-page .trust-bar { margin-top: 140px; }
  .home-page .lucon-fleet-section__header { grid-template-columns: 1fr; gap: 0; }
  .home-page .lucon-fleet-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .home-page .lucon-fleet-card {
    flex: 0 0 clamp(214px, 29vw, 250px);
    width: auto;
    height: 100%;
  }
  .home-page .transfers-section .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-page .tours-section .services-grid { grid-template-columns: repeat(2,1fr); }
  .home-page .trust-strip-grid { grid-template-columns: repeat(2,1fr); }
  .home-page .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .home-page .lucon-google-reviews__shell { grid-template-columns: 1fr; }
  .home-page .lucon-google-reviews__summary { flex-direction: row; gap: 14px; align-items: center; }
  .home-page .lucon-google-reviews__grid { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 700px) — PRIMARY DESIGN
   ══════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .home-page .container { width: min(100% - 28px, 1180px); }

  /* Nav */
  .home-page .topbar,
  .home-page .nav { min-height: 62px; }

  /* Hero — stacked layout for mobile */
  .home-page .hero {
    min-height: auto;
    height: auto;
    margin: 8px;
    border-radius: 20px;
    overflow: hidden;
  }
  .home-page .hero-bg {
    position: relative;
    height: 565px;
    border-radius: 20px 20px 0 0;
  }
  .home-page .hero-bg img { object-position: 56% 30%; }
  .home-page .hero-overlay {
    background: linear-gradient(180deg, rgba(3,22,36,0.12), rgba(3,22,36,0.85));
  }
  .home-page .hero-content {
    display: block;
    min-height: auto;
    height: auto;
    padding: 0;
    position: static;
  }
  .home-page .hero-text {
    position: absolute;
    top: -219px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 28px;
    color: #fff;
    max-width: 100%;
  }
  .home-page .hero-badge { margin-bottom: 14px; }
  .home-page .hero-badge-copy--desktop { display: none; }
  .home-page .hero-badge-copy--mobile  { display: inline; font-size: 11px; letter-spacing: 0.04em; }
  .home-page .hero-title {
    font-size: clamp(2.3rem, 10vw, 3rem);
    margin-bottom: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .home-page .hero-title em { display: block; font-size: 0.85em; }
  .home-page .hero-subtitle { font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
  .home-page .hero-trust-row { gap: 6px; margin-bottom: 18px; }
  .home-page .hero-trust-row > span { font-size: 11.5px; padding: 6px 10px; }

  /* Booking card — stays below hero, no overlap */
  .home-page .booking-card {
    position: static;
    width: calc(100% + 16px);
    margin-left: -8px;
    transform: none !important;
    border-radius: 0 0 20px 20px;
    border: 0;
    border-top: 1px solid var(--hp-line);
    box-shadow: 0 16px 36px rgba(6,41,59,0.14);
    padding: 22px 18px 26px;
    margin-top: -22px;
    margin-bottom: 0;
  }
  .home-page .booking-card-header p { display: none; }
  .home-page .booking-form__hint { display: block; }

  /* Trust bar after booking card */
  .home-page .trust-bar { margin-top: 0; }
  .home-page .trust-bar__items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-page .trust-bar__items > span:last-child { grid-column: 1/-1; }

  /* Sections */
  .home-page .section { padding: 52px 0; }
  .home-page .section-title { font-size: 2.1rem; }

  /* Cards — service cards remain single column; Travel Partners stay one row. */
  .home-page .transfers-section .services-grid,
  .home-page .tours-section .services-grid { grid-template-columns: 1fr; }
  .home-page .experience-grid,
  .home-page .airport-explainer-grid { grid-template-columns: 1fr; }
  .home-page .experience-grid { gap: 12px; }
  .home-page .experience-card { padding: 22px 20px; }
  .home-page .experience-card__icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .home-page .airport-explainer-grid { max-width: none; margin-top: 20px; }
  .home-page .lucon-card__media { height: 190px; }

  /* Transfer direction blocks */
  .home-page .transfer-direction__row { flex-direction: column; gap: 8px; }
  .home-page .transfer-direction__pricing { text-align: left; }
  .home-page .transfer-direction__actions { flex-direction: column; }
  .home-page .lucon-card__btn { justify-content: center; width: 100%; }

  /* Travel Partners — one compact horizontal row at every mobile width. */
  .home-page .lucon-fleet-grid {
    display: flex;
    gap: 14px;
    padding: 0 0 8px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .home-page .lucon-fleet-grid .lucon-fleet-card {
    flex: 0 0 min(236px, calc(100vw - 56px));
    scroll-snap-align: start;
  }
  .home-page .lucon-fleet-section { padding: 44px 0; }
  .home-page .lucon-fleet-section__header { margin-bottom: 20px; }
  .home-page .lucon-fleet-card__body { height: 72px; min-height: 72px; padding: 10px 12px; }
  .home-page .lucon-fleet-card__body h3 { font-size: 1.2rem; }
  .home-page .lucon-fleet-section__footer { flex-direction: column; align-items: flex-start; }
  .home-page .lucon-fleet-section__footer .btn { width: 100%; justify-content: center; }

  .home-page .lucon-vehicles-section { padding: 52px 0; }
  .home-page .lucon-vehicles-section__header { display: block; margin-bottom: 22px; }
  .home-page .lucon-vehicles-section__note { margin-top: 20px; }
  .home-page .lucon-vehicles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .home-page .lucon-vehicle-card__body { padding: 16px; }
  .home-page .lucon-vehicle-card__eyebrow { display: block; line-height: 1.45; }
  .home-page .lucon-vehicle-card__eyebrow span { display: block; }
  .home-page .lucon-vehicle-card__eyebrow span:last-child { margin-top: 2px; }
  .home-page .lucon-vehicles-empty { flex-direction: column; align-items: flex-start; }
  .home-page .lucon-vehicles-empty .btn { width: 100%; justify-content: center; }

  /* Rohan */
  .home-page .rohan-home-card { grid-template-columns: 1fr; }
  .home-page .rohan-home-card > img { height: 340px; max-height: 340px; }
  .home-page .rohan-home-card > div { padding: 28px 22px; }

  /* Cinematic */
  .home-page .cinematic-section { min-height: 440px; margin: 20px 8px 50px; border-radius: 20px; }
  .home-page .cinematic-section__content { padding-top: 120px; padding-bottom: 40px; }
  .home-page .cinematic-section h2 { font-size: 2.55rem; }

  /* Service links */
  .home-page .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Reviews */
  .home-page .lucon-google-reviews__grid { grid-template-columns: 1fr; }
  .home-page .lucon-google-reviews__summary { flex-direction: row; align-items: center; gap: 12px; }

  /* CTA band */
  .home-page .cta-band { margin: 20px 8px 0; }
  .home-page .cta-band__inner { flex-direction: column; align-items: flex-start; padding: 40px 0; }
  .home-page .cta-band__actions { width: 100%; flex-direction: column; }
  .home-page .cta-band__actions .btn { width: 100%; justify-content: center; }
  .home-page .cta-band__actions .lucon-contact-actions { align-items: stretch; flex-direction: column; width: 100%; }

  /* Footer */
  .home-page .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 44px; }
  .home-page .footer-brand { grid-column: 1 / -1; }

}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 380px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .home-page .hero-title { font-size: 2.05rem; }
  .home-page .trust-strip-grid { grid-template-columns: 1fr; }
  .home-page .cta-band__title { font-size: 1.9rem; }
}

@media (max-width: 520px) {
  .home-page .trust-strip-grid { grid-template-columns: 1fr; }
  .home-page .footer-grid { grid-template-columns: 1fr; }
  .home-page .footer-brand { grid-column: auto; }
  .home-page .faq-cta .btn { width: 100%; justify-content: center; }
  .home-page .faq-cta .lucon-contact-actions { align-items: stretch; flex-direction: column; width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
