/* ============================================================
   MOMENTS & MILES RENTALS — Global Stylesheet
   Version 1.0 · Grand Junction, Colorado
   ============================================================ */

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --mesa:         #A8402C;
  --mesa-dark:    #7A2E1E;
  --steel:        #4A6B7C;
  --steel-dark:   #2D4A5A;
  --steel-light:  #6B8FA0;
  --navy:         #1A2744;
  --cream:        #FAF3E0;
  --cream-dark:   #F0E6C8;
  --gold:         #C8A84B;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body:    "Barlow", sans-serif;

  --radius:       100px;
  --radius-card:  12px;

  --transition:   0.25s ease;
  --shadow-card:  0 4px 24px rgba(26, 39, 68, 0.12);
  --shadow-hover: 0 8px 40px rgba(26, 39, 68, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(42px, 6vw, 64px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { font-size: 16px; line-height: 1.65; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mesa);
  display: block;
  margin-bottom: 10px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--mesa);
  color: var(--cream);
  border-color: var(--mesa);
}

.btn-primary:hover {
  background: var(--mesa-dark);
  border-color: var(--mesa-dark);
  box-shadow: 0 6px 20px rgba(168, 64, 44, 0.4);
}

.btn-secondary {
  background: var(--steel-dark);
  color: var(--cream);
  border-color: var(--steel-dark);
}

.btn-secondary:hover {
  background: var(--steel);
  border-color: var(--steel);
  box-shadow: 0 6px 20px rgba(45, 74, 90, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-outline-mesa {
  background: transparent;
  color: var(--mesa);
  border-color: var(--mesa);
}

.btn-outline-mesa:hover {
  background: var(--mesa);
  color: var(--cream);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.transparent {
  background: transparent;
}

.nav.scrolled {
  background: var(--steel-dark);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ── SCROLL TO TOP ────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--steel-dark);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--mesa);
  box-shadow: 0 6px 28px rgba(168, 64, 44, 0.45);
  transform: translateY(-3px) scale(1.05);
}

.wrangler-icon {
  width: 52px;
  height: auto;
}

.scroll-top-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 243, 224, 0.7);
  line-height: 1;
}

.scroll-top:hover .scroll-top-label {
  color: var(--cream);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
  }

  .wrangler-icon {
    width: 44px;
  }
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .top {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.nav-logo-text .sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel-light);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mesa);
  transition: width var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('wrangler-hero.jpeg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 39, 68, 0.88) 0%,
    rgba(26, 39, 68, 0.45) 40%,
    rgba(26, 39, 68, 0.1) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  width: 100%;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 64, 44, 0.2);
  border: 1px solid rgba(168, 64, 44, 0.5);
  border-radius: var(--radius);
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-badge::before {
  content: '●';
  color: var(--mesa);
  font-size: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--cream);
  max-width: 720px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .accent {
  color: var(--mesa);
}

.hero-sub {
  font-size: 18px;
  color: rgba(250, 243, 224, 0.8);
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 243, 224, 0.5);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(250,243,224,0.5), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--steel-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 243, 224, 0.75);
}

.trust-item svg {
  color: var(--mesa);
  flex-shrink: 0;
}

/* ── FLEET SECTION ────────────────────────────────────────── */
.fleet-section {
  background: var(--cream);
  padding: 96px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  color: var(--steel-dark);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--steel);
  max-width: 520px;
  font-size: 17px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

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

/* Feature card (Wrangler, Ram) */
.fleet-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.fleet-card.featured {
  grid-column: span 2;
}

.fleet-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.fleet-card.featured .fleet-card-img {
  height: 280px;
}

.fleet-card:not(.featured) .fleet-card-img {
  height: 200px;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  background: #f5f0e8;
}

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

.fleet-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--mesa);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
}

.fleet-card-badge.gold {
  background: var(--gold);
  color: var(--navy);
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.fleet-card-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel-light);
}

.fleet-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel-dark);
  line-height: 1.15;
}

.fleet-card.featured .fleet-card-name {
  font-size: 28px;
}

.fleet-card-tagline {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.fleet-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.fleet-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--steel);
  background: rgba(74, 107, 124, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.fleet-card-footer {
  padding: 16px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(74, 107, 124, 0.1);
  margin-top: auto;
}

.fleet-card-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.price-from {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel-light);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--steel-dark);
}

.price-amount span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-light);
}

/* ── WHY US SECTION ───────────────────────────────────────── */
.why-section {
  background: var(--steel-dark);
  padding: 96px 0;
}

.why-section .section-header h2 {
  color: var(--cream);
}

.why-section .section-header p {
  color: rgba(250, 243, 224, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(168, 64, 44, 0.3);
}

.why-icon {
  width: 40px;
  height: 3px;
  background: var(--mesa);
  border-radius: 2px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.why-card h3 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(250, 243, 224, 0.65);
  font-size: 15px;
  line-height: 1.65;
}

/* ── DESTINATIONS / ADVENTURE SECTION ────────────────────── */
.adventure-section {
  background: var(--cream);
  padding: 96px 0;
}

.adventure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.adventure-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

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

.adventure-card:hover img {
  transform: scale(1.06);
}

.adventure-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background var(--transition);
}

.adventure-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mesa);
  margin-bottom: 6px;
}

.adventure-card h3 {
  color: var(--cream);
  font-size: 26px;
  margin-bottom: 8px;
}

.adventure-card p {
  color: rgba(250,243,224,0.75);
  font-size: 14px;
  line-height: 1.5;
}

/* ── TURO CALLOUT ─────────────────────────────────────────── */
.turo-section {
  background: var(--steel);
  padding: 64px 0;
}

.turo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.turo-text .eyebrow {
  color: rgba(250, 243, 224, 0.6);
}

.turo-text h2 {
  color: var(--cream);
  font-size: 32px;
  margin-bottom: 12px;
}

.turo-text p {
  color: rgba(250, 243, 224, 0.75);
  font-size: 16px;
  max-width: 540px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-section {
  background: var(--cream);
  padding: 96px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--mesa), var(--steel-light));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mesa);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(168, 64, 44, 0.35);
}

.step h4 {
  font-size: 16px;
  color: var(--steel-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  background: var(--navy);
  padding: 80px 0;
}

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

.about-text .eyebrow {
  color: var(--mesa);
}

.about-text h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(250, 243, 224, 0.72);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.07);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--mesa);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 243, 224, 0.55);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--steel-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(250, 243, 224, 0.55);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 243, 224, 0.6);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--mesa);
  color: var(--cream);
  border-color: var(--mesa);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(250, 243, 224, 0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--cream);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-contact-item .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel-light);
}

.footer-contact-item .value {
  font-size: 14px;
  color: rgba(250, 243, 224, 0.7);
}

.footer-contact-item .value a {
  color: var(--cream);
}

.footer-contact-item .value a:hover {
  color: var(--mesa);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250, 243, 224, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(250, 243, 224, 0.4);
  transition: color var(--transition);
}

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

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-card.featured {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--steel-dark);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 80px;
  }

  .nav-links.open a {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card.featured {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .adventure-card {
    height: 260px;
  }

  .turo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .turo-text p {
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-bar-inner {
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }
}

/* ── Mobile nav Book Now + close button ─────────────────── */
.mobile-book-now a {
  color: var(--mesa) !important;
  font-weight: 700 !important;
}

#nav-close-btn:hover {
  background: rgba(168,64,44,0.6) !important;
}
