/* ==========================================================================
   D'LUX MOVES LUXURY TRANSPORTATION - STYLESHEET
   Palette: High-Contrast Fine-Art Black & White with Warm Amber/Orange Accent
   ========================================================================== */

:root {
  --bg: #070708;
  --bg-card: #111215;
  --bg-card-hover: #17191e;
  --bg-elevated: #1a1c22;
  
  /* High-Contrast B&W */
  --text: #ffffff;
  --text-muted: #a1a7b5;
  --text-dim: #717784;
  --border: #262930;
  --border-light: rgba(255, 255, 255, 0.12);
  
  /* Warm Amber / Orange Accent */
  --amber: #ff9f1c;
  --amber-light: #ffb703;
  --amber-glow: rgba(255, 159, 28, 0.25);
  --amber-gradient: linear-gradient(135deg, #ff9f1c, #ffb703);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.amber-text {
  color: var(--amber);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  font-weight: 700;
  display: block;
  margin-bottom: 0.6rem;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Live Status Bar */
.live-bar {
  background: #000000;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: #ffffff;
}

.live-bar-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.live-social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.live-social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.live-social-links a:hover {
  color: var(--amber);
}

/* Header Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-brand img {
  height: 48px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.nav-brand-subtitle {
  font-size: 0.68rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Buttons */
.btn-amber {
  background: var(--amber-gradient);
  color: #070708;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--amber-glow);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 159, 28, 0.4);
}

.btn-ghost {
  border: 1px solid var(--border-light);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255, 159, 28, 0.08);
  transform: translateY(-2px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  transition: all 0.2s;
}

.btn-phone:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* WhatsApp Direct Luxury Styling */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff !important;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #2beb72, #1ebea5);
}

.btn-whatsapp-ghost {
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
  background: rgba(37, 211, 102, 0.08) !important;
}

.btn-whatsapp-ghost:hover {
  border-color: #25d366 !important;
  background: rgba(37, 211, 102, 0.18) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(14, 16, 20, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 211, 102, 0.45);
  padding: 0.5rem 1.1rem 0.5rem 0.6rem;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #25d366;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.9), 0 0 28px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.floating-wa-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 5.2rem;
    right: 1rem;
    padding: 0.45rem;
  }
  .floating-wa-text {
    display: none;
  }
}

/* Hero Section (Black & White Boston Harbor + Real Cadillac) */
.hero-bw {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 65% 40%, #151820 0%, #070708 75%);
  overflow: hidden;
}

.hero-bw-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-bw-content {
  position: relative;
  z-index: 2;
}

.hero-bw h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-bw p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 700;
}

.trust-item span {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Media Card (Featuring Real Boston Harbor Cadillac Photo) */
.hero-vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
}

.hero-vehicle-card .img-wrap {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.hero-vehicle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-vehicle-card:hover img {
  transform: scale(1.04);
}

.badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-card-meta {
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d0e11;
  border-top: 1px solid var(--border);
}

.hero-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.hero-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GSAP SCROLLTRIGGER CANVAS MOTION: "STEP INSIDE THE ESCALADE ESV"
   ========================================================================== */
.motion-scroll-section {
  position: relative;
  background: #000000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.motion-sticky-stage {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

.motion-canvas-wrapper {
  position: relative;
  height: clamp(240px, 48vh, 480px);
  width: calc(clamp(240px, 48vh, 480px) * (1280 / 714));
  max-width: 94vw;
  aspect-ratio: 1280 / 714;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 159, 28, 0.12);
  background: #050608;
}

#motionCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.motion-loader {
  position: absolute;
  inset: 0;
  background: #07080a;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.4s ease;
}

.motion-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.motion-hud {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.hud-pill {
  display: none; /* Removed as requested */
}

.hud-frame-counter {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* Illustrative Image Disclaimer Strip (Covering AI Watermark) */
.canvas-illustrative-strip {
  position: absolute;
  bottom: 0.85rem;
  right: 0.95rem;
  z-index: 12;
  background: rgba(6, 7, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 159, 28, 0.38);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  padding: 0.35rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e5e7eb;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.canvas-illustrative-strip .strip-pill {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  flex-shrink: 0;
}

/* Target CTA Box that pops up when inside the car */
.motion-target-cta {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  max-width: 310px;
  background: rgba(11, 12, 16, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 25px rgba(255, 159, 28, 0.2);
  z-index: 15;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.motion-target-cta.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.target-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.motion-target-cta h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.motion-target-cta p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.target-btn-group {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.target-btn-group .btn-amber,
.target-btn-group .btn-ghost {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
}

.cabin-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cabin-spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.cabin-spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}

.spec-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.cabin-spec-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.cabin-spec-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cabin-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .motion-target-cta {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1.2rem;
  }
}

@media (max-width: 600px) {
  .cabin-specs-grid {
    grid-template-columns: 1fr;
  }
}

.cabin-specs-section {
  padding: 4rem 0;
  background: #060709;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .cabin-specs-section {
    padding: 2.5rem 0;
  }
}


/* ==========================================================================
   BOOKING & DISPATCH ENGINE WITH GOOGLE CALENDAR SYNC
   ========================================================================== */
.booking-section {
  padding: 5rem 0;
  background: #090a0d;
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.booking-header-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  overflow-x: auto;
}

.b-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
}

.b-tab.active {
  background: rgba(255, 159, 28, 0.15);
  color: var(--amber);
  border: 1px solid var(--amber);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.form-group input,
.form-group select {
  background: #07080a;
  border: 1px solid var(--border);
  color: #ffffff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
}

.calendar-sync-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 159, 28, 0.06);
  border: 1px dashed var(--amber);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  margin-bottom: 1.8rem;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.calendar-sync-notice svg {
  color: var(--amber);
  flex-shrink: 0;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.rate-box {
  font-size: 1rem;
  color: var(--text-muted);
}

.rate-box strong {
  color: var(--amber);
  font-size: 1.6rem;
  font-weight: 700;
}

/* Newport Tour Section ($449) */
.newport-section {
  padding: 5rem 0;
  background: #000000;
}

.newport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.newport-content {
  padding: 3.5rem;
}

.newport-stops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stop-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.stop-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Direct Social & Google Reputation Hub */
.reputation-section {
  padding: 5rem 0;
  background: #070708;
  border-top: 1px solid var(--border);
}

.reputation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.rep-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rep-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.rep-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.rep-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rep-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--amber);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.summary-box {
  background: #07080a;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: left;
  font-size: 0.88rem;
  margin: 1.5rem 0;
}

/* Site Footer */
footer.site-footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Mobile Quick Sticky Contact Bar (High-Converting for Travelers) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 7, 8, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem;
  z-index: 999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.8);
}

.mobile-sticky-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 0.8rem;
  text-align: center;
}

.mobile-bar-call {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  color: #ffffff;
}

.mobile-bar-quote {
  background: var(--amber-gradient);
  color: #070708;
  box-shadow: 0 4px 15px var(--amber-glow);
}

/* Responsive & Mobile Perfection */
@media (max-width: 900px) {
  .hero-bw-grid,
  .newport-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .newport-content {
    padding: 2.2rem 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-phone {
    display: none;
  }
  .nav-actions .btn-amber {
    padding: 0.45rem 0.85rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .nav-brand img {
    height: 34px;
    width: auto;
  }
  .nav-brand-text {
    display: none; /* Logo SVG already contains the typography */
  }
  .nav-wrapper {
    padding: 0.65rem 1rem;
  }
  .mobile-sticky-bar {
    display: block;
    padding: 0.5rem 0.75rem;
  }
  .mobile-sticky-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .mobile-bar-btn {
    padding: 0.55rem 0.4rem;
    font-size: 0.75rem;
    gap: 0.3rem;
    white-space: nowrap;
  }
  .mobile-bar-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  body {
    padding-bottom: 65px; /* offset for mobile sticky bar */
  }
  .live-bar {
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
  }
  .live-bar-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.3rem;
  }
  .live-badge {
    justify-content: center;
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: center;
  }
  .live-social-links {
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    flex-wrap: wrap;
  }
  .hero-bw {
    padding: 2rem 0 1.5rem;
    min-height: auto;
  }
  .hero-bw h1 {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    margin-bottom: 0.75rem;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.15;
  }
  .hero-bw p.lead {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
  }
  .hero-actions a,
  .hero-actions button {
    width: 100%;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .hero-vehicle-card .img-wrap {
    height: 220px;
  }
  .motion-sticky-stage {
    padding: 1.2rem 0;
  }
  .motion-canvas-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1280 / 714;
    min-height: unset;
    max-height: 52vh;
    border-radius: var(--radius-md);
    margin-bottom: 0;
  }
  .canvas-illustrative-strip {
    bottom: 0.5rem;
    right: 0.55rem;
    padding: 0.22rem 0.6rem;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }
  .canvas-illustrative-strip .strip-pill {
    width: 4px;
    height: 4px;
  }
  .motion-hud {
    top: 0.5rem;
    right: 0.55rem;
  }
  .hud-frame-counter {
    padding: 0.22rem 0.55rem;
    font-size: 0.65rem;
  }
  .motion-target-cta {
    right: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 0.8rem 0.85rem;
  }
  .motion-target-cta h3 {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
  }
  .motion-target-cta p {
    font-size: 0.72rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
  }
  .target-btn-group {
    gap: 0.45rem;
  }
  .target-btn-group a {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.55rem 0.4rem;
  }
  .booking-card {
    padding: 1.5rem 1.2rem;
  }
  .booking-header-tabs {
    gap: 0.35rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
  .b-tab {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
  /* Prevent iOS Safari auto-zoom on inputs */
  .form-group input,
  .form-group select {
    font-size: 16px !important;
    padding: 0.75rem 0.85rem;
  }
  .booking-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .booking-footer .btn-amber {
    width: 100%;
  }
  .newport-stops {
    grid-template-columns: 1fr;
  }
  .reputation-grid {
    grid-template-columns: 1fr;
  }
  .modal-card {
    padding: 1.8rem 1.2rem;
    max-height: 92vh;
    overflow-y: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .trust-item strong {
    font-size: 1.15rem;
  }
  .trust-item span {
    font-size: 0.65rem;
  }
  .nav-brand-title {
    font-size: 1.1rem;
  }
  .nav-brand img {
    height: 40px;
  }
  .live-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .live-social-links {
    display: none; /* keep clean on tiny screens */
  }
}

