/**
 * Motorhome Rentals NZ — Homepage Cinematic Dark Theme
 * Design system: Playfair Display + Inter, gold on dark
 * Auto-extracted from v4-homepage-final.html
 */

/* ============================================================
   V4: FINAL HOMEPAGE — WARM CINEMATIC FUSION
   All 10 requirements integrated:
   0. Nav CTA = "Book Now"
   1. Hero: no city name, single CTA, NZ road photo
   2. Welcome: minimal, premium, surpass Roam
   3. Motorhomes: 6 cards flat grid
   4. Why Choose Us: 3 reasons
   5. Lifestyle trio (Star RV style)
   6. Reviews: no Google branding
   7. FAQ: 14 questions matching Roam structure
   8. Bottom CTA: Book Now + Explore Our Motorhomes
   9. SVG luxury logo
   10. Premium scroll/hover effects
   ============================================================ */

/* Scoped reset — only affect homepage content, not WP header/footer */
.page-home-new *, .page-home-new *::before, .page-home-new *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Dark palette */
  --dark-bg: #1A1814;
  --dark-card: #23201B;
  --dark-text: #F5F0E8;
  --dark-muted: #9A9088;
  --dark-border: rgba(201, 169, 110, 0.1);

  /* Light palette */
  --light-bg: #FAF7F2;
  --light-card: #FFFFFF;
  --light-text: #2C2416;
  --light-muted: #7A6F63;
  --light-border: rgba(44, 36, 22, 0.08);

  /* Accent */
  --accent-gold: #C9A96E;
  --accent-hover: #B8944F;
  --accent-warm: #D4A853;
  --nature-green: #4A6741;

  /* Shared */
  --transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 80px;
  --section-padding: 120px;
  --shadow-warm: 0 8px 32px rgba(44, 36, 22, 0.08);
  --shadow-warm-hover: 0 16px 48px rgba(201, 169, 110, 0.12);
  --shadow-deep: 0 24px 64px rgba(0, 0, 0, 0.15);
}

/* Global html/body rules are in global-styles.css — scope homepage-specific overrides */
.page-home-new {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--light-text);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scoped img/a reset — only homepage content */
.page-home-new img { display: block; max-width: 100%; }
.page-home-new a { text-decoration: none; color: inherit; transition: color var(--transition); }

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

/* ============================================================
   SCROLL PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
  z-index: 9999;
  transition: none;
}

/* ============================================================
   ANIMATIONS — Premium reveal system
   ============================================================ */

/* Base reveal — fade up */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Clip reveal from bottom */
.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-clip.visible {
  clip-path: inset(0 0 0 0);
}

/* Blur to sharp reveal for images */
.reveal-blur {
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.05);
  transition: opacity 1200ms ease, filter 1200ms ease, transform 1200ms ease;
}
.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 320ms; }
.stagger-5 { transition-delay: 400ms; }
.stagger-6 { transition-delay: 480ms; }

/* Parallax layer (controlled by JS) */
.parallax-bg {
  will-change: transform;
}

/* Focus states for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}
a:focus-visible, button:focus-visible { outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale, .reveal-clip, .reveal-blur {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dark { color: var(--accent-gold); }
.eyebrow-light { color: #9A7D45; /* darker gold for WCAG AA on light bg (5.5:1) */ }

.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 32px;
}
.gold-line-left { margin: 0 0 32px 0; }

/* ============================================================
   BUTTONS — with shine sweep effect on hover
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--dark-bg);
  border: none;
  padding: 20px 48px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition-fast), box-shadow var(--transition);
}
/* Shine sweep effect */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 600ms ease;
}
.btn-gold:hover::after { left: 100%; }
.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--dark-text);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 20px 48px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition-fast);
}
.btn-outline-light:hover {
  color: var(--dark-bg);
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--dark-bg);
  border: 1px solid var(--dark-bg);
  padding: 20px 48px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition-fast);
}
.btn-outline-dark:hover {
  background: var(--dark-bg);
  color: var(--dark-text);
  transform: translateY(-2px);
}

/* Navigation styles are in nav-footer-global.css — do not duplicate here */

/* ============================================================
   SECTION 1: HERO — Cinematic, Ken Burns zoom
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Hero background container — holds all 3 slides.
   Elementor inline background-image is cleared by JS at runtime. */
.hero-bg {
  position: absolute;
  inset: -5%;
}

/* Individual hero slides — stacked, pure opacity crossfade */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  /* Constant filter — no brightness transition to avoid dark flashes */
  filter: brightness(0.88) contrast(1.12) saturate(1.15);
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
/* Slide 2 (coastal road) is a dark sunset scene — boost brightness to match others */
.hero-slide[data-kb="1"] {
  filter: brightness(1.08) contrast(1.1) saturate(1.2);
}

/* Opening animation — only on the first visible slide */
.hero-slide.opening {
  animation: heroImageOpen 3s ease-in-out forwards;
}
@keyframes heroImageOpen {
  0% {
    transform: scale(1.08);
    filter: brightness(0.65) contrast(1.08) saturate(0.4) blur(3px);
  }
  40% {
    transform: scale(1.04);
    filter: brightness(0.78) contrast(1.1) saturate(0.75) blur(0.5px);
  }
  100% {
    transform: scale(1);
    filter: brightness(0.88) contrast(1.12) saturate(1.15);
  }
}

/* Ken Burns — 3 different directions, pronounced movement */
.hero-slide[data-kb="0"].kb-active {
  animation: kenBurns0 12s ease-in-out infinite alternate;
}
.hero-slide[data-kb="1"].kb-active {
  animation: kenBurns1 12s ease-in-out infinite alternate;
}
.hero-slide[data-kb="2"].kb-active {
  animation: kenBurns2 12s ease-in-out infinite alternate;
}
/* Slide 1: zoom in + drift left-up */
@keyframes kenBurns0 {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
/* Slide 2: start zoomed, drift right + zoom out */
@keyframes kenBurns1 {
  0%   { transform: scale(1.12) translate(-1%, 0); }
  100% { transform: scale(1) translate(1.5%, -0.8%); }
}
/* Slide 3: zoom in + drift up-right */
@keyframes kenBurns2 {
  0%   { transform: scale(1) translate(0, 0.5%); }
  100% { transform: scale(1.14) translate(1.5%, -1.2%); }
}
/* Overlay: fades from solid black → light cinematic vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 45%,
      rgba(26, 24, 20, 0.1) 0%,
      rgba(26, 24, 20, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(26, 24, 20, 0.35) 0%,
      rgba(26, 24, 20, 0.2) 30%,
      rgba(26, 24, 20, 0.15) 50%,
      rgba(26, 24, 20, 0.35) 75%,
      rgba(26, 24, 20, 0.7) 100%
    );
  animation: overlayReveal 3s ease-in-out forwards;
}
@keyframes overlayReveal {
  0%   { background-color: rgba(26, 24, 20, 0.4); }
  50%  { background-color: rgba(26, 24, 20, 0.15); }
  100% { background-color: transparent; }
}

/* Floating light particles — pure CSS, GPU-friendly */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1) { left: 15%; top: 80%; width: 2px; height: 2px; animation-duration: 12s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 35%; top: 90%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 2s; }
.hero-particles span:nth-child(3) { left: 55%; top: 85%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 4s; }
.hero-particles span:nth-child(4) { left: 75%; top: 95%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 1s; opacity: 0.3; }
.hero-particles span:nth-child(5) { left: 90%; top: 88%; width: 2px; height: 2px; animation-duration: 16s; animation-delay: 3s; }
.hero-particles span:nth-child(6) { left: 5%;  top: 92%; width: 3px; height: 3px; animation-duration: 20s; animation-delay: 5s; }
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
}
/* Gold decorative lines flanking the eyebrow */
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  vertical-align: middle;
  opacity: 0.5;
}
.hero-eyebrow::before { margin-right: 16px; }
.hero-eyebrow::after { margin-left: 16px; }

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  /* Multi-layer text shadow for depth + readability */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 0 80px rgba(201, 169, 110, 0.08);
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  cursor: pointer;
  opacity: 1;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================================
   SECTION 2: WELCOME — Compact, premium (NOT a text wall)
   ============================================================ */
.welcome {
  background: var(--light-bg);
  padding: 80px 0;
}
.welcome-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.welcome .section-heading {
  color: var(--light-text);
  font-size: 44px;
  margin-bottom: 20px;
}
.welcome p {
  font-size: 17px;
  color: var(--light-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(44, 36, 22, 0.08);
}
.welcome-stat {
  text-align: center;
}
.welcome-stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--light-text);
  line-height: 1;
  margin-bottom: 8px;
}
.welcome-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-muted);
}

/* ============================================================
   SECTION 3: MOTORHOMES — 6 cards, 3×2 flat grid
   ============================================================ */
.motorhomes-header {
  text-align: center;
  margin-bottom: 60px;
}
.motorhomes-header .section-heading { color: var(--dark-text); }
.motorhomes-header p { color: var(--dark-muted); font-size: 16px; }

.motorhomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mh-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
/* Gold top-line reveal on hover */
.mh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  z-index: 3;
  transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1), left 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mh-card:hover::before { width: 100%; left: 0; }
.mh-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: var(--shadow-deep);
  transform: translateY(-6px);
}

/* Image container with overlay on hover */
.mh-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.mh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mh-card:hover .mh-card-img img {
  transform: scale(1.08);
}
/* Gradient overlay on hover */
.mh-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 24, 20, 0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.mh-card:hover .mh-card-img::after {
  opacity: 1;
}



.mh-card-body {
  padding: 24px;
}
.mh-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.mh-card-desc {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.mh-card-specs {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
  flex-wrap: wrap;
}
.mh-card-spec {
  font-size: 12px;
  color: var(--dark-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mh-card-spec svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.mh-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: gap var(--transition);
}
.mh-card:hover .mh-card-link { gap: 14px; }

.motorhomes-footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SECTION 4: WHY CHOOSE US — light bg, white icon cards
   ============================================================ */
.why-us {
  background: var(--light-bg);
  padding: var(--section-padding) 0 80px;
}
.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-us-header .section-heading { color: var(--light-text); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 48px 32px;
  text-align: center;
  transition: box-shadow 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1), left 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover::before { width: 100%; left: 0; }
.why-card:hover {
  box-shadow: var(--shadow-warm-hover);
  transform: translateY(-6px);
}
.why-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
}
.why-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION 5: LIFESTYLE STRIP — Full-bleed cinematic divider
   ============================================================ */
.lifestyle-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  height: 60vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  background: var(--dark-bg);
  position: relative;
  z-index: 1;
  margin-bottom: -2px; /* Overlap into reviews to prevent GPU compositing seam during scroll */
}
.lifestyle-panel {
  position: relative;
  overflow: hidden;
}
.lifestyle-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}
/* Subtle zoom on scroll-into-view (triggered by JS adding .visible) */
.lifestyle-panel.visible img {
  transform: scale(1.06);
}
/* Thin gold line between panels */
.lifestyle-panel + .lifestyle-panel {
  border-left: 1px solid rgba(201, 169, 110, 0.3);
}

/* ============================================================
   SECTION 6: REVIEWS — Dark, no Google branding
   ============================================================ */
.reviews {
  background: var(--dark-bg);
  padding: var(--section-padding) 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-header .section-heading { color: var(--dark-text); }
.reviews-stars {
  color: var(--accent-gold);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 36px;
  transition: border-color var(--transition), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-6px);
}
.review-card-stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card-text {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
}
.review-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
}
.review-card-origin {
  font-size: 12px;
  color: var(--dark-muted);
}

/* ============================================================
   SECTION 7: FAQ — Light, 14 questions matching Roam
   ============================================================ */
.faq {
  background: var(--light-bg);
  padding: var(--section-padding) 0;
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-header .section-heading { color: var(--light-text); }

.faq-item {
  border-bottom: 1px solid rgba(44, 36, 22, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  padding: 16px 0;
  transition: color var(--transition);
}
.faq-question:hover h3 { color: var(--accent-gold); }
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--light-text);
  transition: color var(--transition);
}
.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 36, 22, 0.15);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--light-text);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--transition);
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}
.faq-item.open .faq-toggle svg { stroke: var(--dark-bg); }
.faq-answer {
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1), padding 500ms cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ============================================================
   SECTION 8: FINAL CTA — Book Now + Explore
   ============================================================ */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: -5%;
  /* Motorhome under starry night sky — from Simon's collection */
  /* TODO: Upload CTA image to /wp-content/uploads/mhr-assets/ and update URL */
  background: url('cta-starry-night.jpg') center/cover no-repeat;
  animation: kenBurnsSlow 30s ease-in-out infinite alternate;
}
@keyframes kenBurnsSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 24, 20, 0.35) 0%,
    rgba(26, 24, 20, 0.6) 100%
  );
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}
.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta-content p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer styles are in nav-footer-global.css — do not duplicate here */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .motorhomes-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid .why-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .hero-content h1 { font-size: 56px; }
  .section-heading { font-size: 36px; }
  .lifestyle-strip { height: 40vh; min-height: 300px; }
  .welcome-stats { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px; }
  .container { padding: 0 24px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .section-heading { font-size: 30px; }
  .motorhomes-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-grid .why-card:last-child { grid-column: span 1; max-width: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lifestyle-strip { grid-template-columns: 1fr; height: auto; max-height: none; }
  .lifestyle-panel { height: 220px; }
  .lifestyle-panel + .lifestyle-panel { border-left: none; border-top: 1px solid rgba(201, 169, 110, 0.3); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-content h2 { font-size: 34px; }
  .welcome { padding: 60px 0; }
  .welcome-stats { flex-direction: column; gap: 24px; }
  .welcome-stat-number { font-size: 30px; }
}

/* ============================================================
   ELEMENTOR KIT OVERRIDES
   Elementor's .elementor-kit-73 h1/h2/h3/a rules (specificity 0,1,1)
   override our class-only selectors (0,1,0).
   Using .page-home-new prefix bumps us to 0,2,0+ to win.
   ============================================================ */

/* Base text color — Elementor kit forces #F5F5F5 (light) everywhere.
   Light sections need dark text, dark sections need light text. */
.page-home-new {
  color: var(--light-text);
  font-family: var(--font-body);
}
.page-home-new .welcome,
.page-home-new .why-us,
.page-home-new .faq {
  color: var(--light-text);
}
.page-home-new .motorhomes,
.page-home-new .reviews,
.page-home-new .mh-card {
  color: var(--dark-text);
}
.page-home-new .welcome p {
  color: var(--light-muted);
}
.page-home-new .motorhomes-header p {
  color: var(--dark-muted);
  font-size: 16px;
}
.page-home-new .mh-card-desc {
  color: var(--dark-muted);
}
.page-home-new .faq-answer {
  color: var(--light-muted);
}
.page-home-new .review-card-text {
  color: var(--dark-text);
}
.page-home-new .review-card-origin {
  color: var(--dark-muted);
}
.page-home-new .why-card p {
  color: var(--light-muted);
}

/* Headings — restore demo font-size, font-weight, color, font-family */
.page-home-new .hero-content h1 {
  font-family: var(--font-heading);
  font-size: 76px;
  font-weight: 700;
  color: #fff;
}
.page-home-new .section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
}
.page-home-new .mh-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
}
.page-home-new .why-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text);
}
.page-home-new .faq-question h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--light-text);
  line-height: 1.4;
}
/* FAQ compact overrides */
.page-home-new .faq-question {
  padding: 12px 0;
  gap: 16px;
}
.page-home-new .faq-answer {
  font-size: 14px;
}
.page-home-new .faq-toggle {
  width: 28px;
  height: 28px;
}
.page-home-new .faq-toggle svg {
  width: 12px;
  height: 12px;
}
.page-home-new .faq-header {
  margin-bottom: 20px;
}
.page-home-new .faq-header .section-heading {
  font-size: 36px;
}
.page-home-new .final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
}
.page-home-new .welcome .section-heading {
  color: var(--light-text);
}
.page-home-new .motorhomes-header .section-heading {
  color: var(--dark-text);
}
.page-home-new .reviews-header .section-heading {
  color: var(--dark-text);
}
.page-home-new .why-us-header .section-heading {
  color: var(--light-text);
}
.page-home-new .faq-header .section-heading {
  color: var(--light-text);
}

/* Links — override Elementor kit's a { color: #FFFFFF } */
.page-home-new .mh-card-link {
  color: var(--accent-gold);
}
.page-home-new .footer-links a {
  color: var(--dark-muted);
}
.page-home-new .btn-gold {
  color: var(--dark-bg);
}
.page-home-new .btn-outline-light {
  color: var(--dark-text);
}

/* Eyebrow labels — override parent p rule */
.page-home-new .hero-eyebrow {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.9);
}
.page-home-new .eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .page-home-new .hero-content h1 { font-size: 56px; }
  .page-home-new .section-heading { font-size: 36px; }
}
@media (max-width: 768px) {
  .page-home-new .hero-content h1 { font-size: 36px; }
  .page-home-new .section-heading { font-size: 30px; }
  .page-home-new .final-cta-content h2 { font-size: 34px; }
}
