/* ==========================================================
   COLOR WAGON RENTALS - Design System v2
   Retro camper-stripe look pulled from the hand-painted logo:
   forest green + cream + the five rainbow stripes.
   ========================================================== */

:root {
  /* Brand core */
  --green:        #1E7A46;
  --green-dark:   #145A33;
  --green-deep:   #0E3D23;
  --green-light:  #4CAF6E;
  --cream:        #FFF9EF;
  --cream-dark:   #F0E7D3;
  --white:        #FFFFFF;
  --ink:          #20312A;
  --gray:         #5C6961;   /* darkened slightly for AA contrast on cream */
  --light-gray:   #F4F1E9;

  /* The five van stripes */
  --stripe-red:    #EF4056;
  --stripe-orange: #F78C2A;
  --stripe-gold:   #FFC23C;
  --stripe-purple: #8B5CF6;
  --stripe-teal:   #2BB3A3;
  --pink:          #E84A8A;
  --gold:          #FFB703;

  /* Van identities */
  --gertrude:       #C2700E;
  --gertrude-deep:  #8A4B06;
  --gertrude-soft:  #FFF1DC;
  --violet:         #7C3AED;
  --violet-deep:    #5B21B6;
  --violet-soft:    #F3EDFF;
  --trailer:        #B45309;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Shape & shadow */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(32, 49, 42, 0.08);
  --shadow: 0 8px 28px rgba(32, 49, 42, 0.12);
  --shadow-lg: 0 18px 48px rgba(32, 49, 42, 0.18);
  --nav-height: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Accessibility: skip link + visible focus ---------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--white); outline: 3px solid var(--gold); }

/* Keyboard focus ring - only shows for keyboard users, not mouse clicks */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav.over-hero:not(.scrolled) a:focus-visible { outline-color: var(--white); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Rainbow stripe - the signature ---------- */
.stripe,
.stripe-thin {
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to bottom,
    var(--stripe-red) 0 20%,
    var(--stripe-orange) 20% 40%,
    var(--stripe-gold) 40% 60%,
    var(--stripe-purple) 60% 80%,
    var(--stripe-teal) 80% 100%
  );
}
.stripe-thin { height: 5px; }
.stripe-text {
  background: linear-gradient(90deg, var(--stripe-red), var(--stripe-orange), var(--stripe-gold), var(--stripe-purple), var(--stripe-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Section scaffolding ---------- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--stripe-orange);
  margin-bottom: 0.35rem;
  transform: rotate(-1.5deg);
}
.section-title { margin-bottom: 0.85rem; }
.section-subtitle {
  color: var(--gray);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 1rem;
}
.alt-bg { background: var(--light-gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: #FFC83D; }
.btn-coral { background: var(--stripe-red); color: var(--white); }
.btn-coral:hover { background: #D92F45; }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-secondary:hover { background: rgba(30, 122, 70, 0.08); box-shadow: none; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 249, 239, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  white-space: nowrap;
}
.nav.over-hero:not(.scrolled) .nav-logo,
.nav.over-hero:not(.scrolled) .nav-links a { color: var(--white); }
.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  background: var(--white);
  padding: 2px;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--stripe-red), var(--stripe-gold), var(--stripe-teal));
  transition: right 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta { white-space: nowrap; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-dark);
}
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 61, 35, 0.55) 0%,
    rgba(14, 61, 35, 0.28) 45%,
    rgba(14, 61, 35, 0.72) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 660px; padding: 7rem 0 5rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 249, 239, 0.16);
  border: 1px solid rgba(255, 249, 239, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-size: 0.6em;
  font-weight: 700;
  color: var(--gold);
  transform: rotate(-2deg);
  margin-bottom: 0.2rem;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  margin: -0.3rem 0 1rem;
  line-height: 1.1;
}
.hero p {
  font-size: 1.18rem;
  color: rgba(255, 249, 239, 0.92);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero p.hero-tagline { margin: -0.3rem 0 1rem; max-width: none; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 249, 239, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}
.hero-scroll svg { width: 20px; height: 20px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(1100px 420px at 18% -10%, rgba(255, 194, 60, 0.25), transparent 60%),
    radial-gradient(900px 380px at 85% 0%, rgba(139, 92, 246, 0.22), transparent 55%),
    var(--green-deep);
  color: var(--white);
  padding: calc(var(--nav-height) + 4rem) 0 3.4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255, 249, 239, 0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--green-deep);
  color: var(--white);
  padding: 1.8rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 249, 239, 0.78);
  font-weight: 600;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -1.4rem;
  right: -1rem;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.about-img-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
}
.about-img-badge .lbl { font-size: 0.78rem; font-weight: 800; }
.about-content p { color: #44514A; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ---------- Fleet cards ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 8px solid var(--green);
}
.fleet-card.theme-gertrude { border-top-color: var(--gertrude); }
.fleet-card.theme-violet { border-top-color: var(--violet); }
.fleet-card.theme-trailer { border-top-color: var(--trailer); }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card-img { position: relative; height: 220px; overflow: hidden; background: var(--cream-dark); }
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.fleet-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.fleet-card-year {
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stripe-orange);
  margin-bottom: 0.5rem;
}
.fleet-card-desc { color: var(--gray); font-size: 0.93rem; margin-bottom: 1.1rem; }
.fleet-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.spec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #44514A;
}
.spec-icon { font-size: 1rem; }
.fleet-card-price { margin-top: auto; margin-bottom: 1rem; }
.price-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-dark);
}
.price-per { color: var(--gray); font-weight: 700; font-size: 0.9rem; }
.fleet-card-actions { display: flex; gap: 0.7rem; }
.fleet-card-actions .btn { flex: 1; }

/* ---------- Unit detail (fleet page) ---------- */
.unit-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  padding: 4.5rem 0;
  align-items: start;
  border-bottom: 2px dashed var(--cream-dark);
}
.unit-detail:last-of-type { border-bottom: none; }
.unit-detail.reverse > .unit-gallery { order: 2; }
.unit-gallery { position: sticky; top: calc(var(--nav-height) + 4.5rem); }
.unit-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  margin-bottom: 1rem;
}
.unit-gallery-main img { width: 100%; height: 380px; object-fit: cover; }
.unit-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.unit-gallery-thumbs img,
.unit-gallery-thumbs .thumb-fill {
  border-radius: var(--radius);
  height: 150px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.thumb-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.unit-kicker {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 700;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.unit-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
}
.unit-tagline {
  font-weight: 800;
  font-size: 1rem;
  margin: 0.4rem 0 1rem;
}
.theme-gertrude .unit-kicker, .theme-gertrude .unit-tagline { color: var(--gertrude); }
.theme-violet .unit-kicker, .theme-violet .unit-tagline { color: var(--violet); }
.theme-trailer .unit-kicker, .theme-trailer .unit-tagline { color: var(--trailer); }
.unit-info-header p { color: #44514A; }
.unit-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.5rem 0;
}
.unit-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #44514A;
}
.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(30, 122, 70, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.pricing-box {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.pricing-box h4 { margin-bottom: 0.9rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 0.93rem;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row span:first-child { color: var(--gray); font-weight: 600; }
.pricing-row span:last-child { font-weight: 800; text-align: right; }
.unit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.unit-note {
  background: var(--gertrude-soft);
  border: 1.5px solid #F7C886;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--gertrude-deep);
  margin-top: 1rem;
}
.unit-note.violet-note {
  background: var(--violet-soft);
  border-color: #CDB6F8;
  color: var(--violet-deep);
}

/* ---------- Layout diagram ---------- */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.layout-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 1rem;
  width: 100%;
}
.layout-list { display: flex; flex-direction: column; gap: 1rem; }
.layout-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.layout-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.layout-item h4 { margin-bottom: 0.1rem; }
.layout-item p { font-size: 0.9rem; color: var(--gray); }

/* ---------- Steps / how it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step { text-align: center; }
.step-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.2rem;
  background: var(--white);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-bottom: 5px solid var(--stripe-teal);
}
.step:nth-child(1) .step-icon { border-bottom-color: var(--stripe-red); }
.step:nth-child(2) .step-icon { border-bottom-color: var(--stripe-orange); }
.step:nth-child(3) .step-icon { border-bottom-color: var(--stripe-purple); }
.step:nth-child(4) .step-icon { border-bottom-color: var(--stripe-teal); }
.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.step h4 { margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; color: var(--gray); }

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.amenity-card h4 { margin-bottom: 0.4rem; }
.amenity-card p { font-size: 0.92rem; color: var(--gray); }

/* ---------- Badger / story feature ---------- */
.badger-section {
  background:
    radial-gradient(900px 400px at 90% 10%, rgba(255, 194, 60, 0.16), transparent 55%),
    var(--green-deep);
  color: var(--white);
}
.badger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.badger-grid h2 { color: var(--white); }
.badger-grid p { color: rgba(255, 249, 239, 0.85); }
.badger-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 249, 239, 0.18);
  width: 100%;
}
.badger-points { display: flex; flex-direction: column; gap: 0.9rem; margin: 1.4rem 0 1.8rem; }
.badger-point { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.97rem; }
.badger-point .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Tour promo ---------- */
.tour-section { background: var(--light-gray); }
.tour-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.tour-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.tour-preview img { width: 100%; height: 380px; object-fit: cover; }
.tour-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 61, 35, 0.25);
  transition: background 0.2s ease;
}
.tour-play-btn:hover { background: rgba(14, 61, 35, 0.4); }
.play-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.tour-play-btn:hover .play-circle { transform: scale(1.08); }
.play-circle svg { width: 34px; height: 34px; margin-left: 4px; }
.tour-content h2 { margin-bottom: 0.8rem; }
.tour-content > p { color: var(--gray); margin-bottom: 1.4rem; }
.tour-scenes { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.tour-scene-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}
.tour-scene-item:hover { transform: translateX(6px); }
.tour-scene-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(30, 122, 70, 0.12);
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(800px 360px at 12% 110%, rgba(43, 179, 163, 0.25), transparent 60%),
    radial-gradient(800px 360px at 88% -10%, rgba(239, 64, 86, 0.22), transparent 60%),
    var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.7rem; }
.cta-banner p { color: rgba(255, 249, 239, 0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 0.1rem; }
.contact-item a, .contact-item p { font-size: 0.95rem; font-weight: 600; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

/* ---------- Forms ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.15s ease;
  color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ---------- Footer ---------- */
footer {
  background: var(--green-deep);
  color: rgba(255, 249, 239, 0.85);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s ease;
}
.social-link:hover { background: rgba(255, 249, 239, 0.25); }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: rgba(255, 249, 239, 0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 249, 239, 0.15);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 249, 239, 0.6);
}
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { color: rgba(255, 249, 239, 0.6); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Booking page ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.booking-main { min-width: 0; }
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.vehicle-cards { display: flex; flex-direction: column; gap: 1rem; }
.vehicle-option {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  background: var(--cream);
}
.vehicle-option:hover { border-color: var(--green-light); }
.vehicle-option.selected {
  border-color: var(--green);
  background: rgba(30, 122, 70, 0.06);
}
.vehicle-radio { display: none; }
.vehicle-radio-custom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #C9C2B2;
  flex-shrink: 0;
  position: relative;
}
.vehicle-option.selected .vehicle-radio-custom { border-color: var(--green); }
.vehicle-option.selected .vehicle-radio-custom::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--green);
}
.vehicle-option-img {
  width: 110px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}
.vehicle-option-img-placeholder {
  width: 110px;
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--white);
}
.vehicle-option-info { flex: 1; min-width: 0; }
.vehicle-option-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.vehicle-option-desc { font-size: 0.85rem; color: var(--gray); margin: 0.15rem 0 0.5rem; }
.vehicle-option-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vehicle-spec-badge {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.vehicle-option-price { text-align: right; flex-shrink: 0; }
.vehicle-option-price .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-dark);
  display: block;
}
.vehicle-option-price small { color: var(--gray); font-weight: 700; }
.date-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-sidebar { position: sticky; top: calc(var(--nav-height) + 1.5rem); }
.booking-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.booking-summary-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.1rem 1.5rem;
}
.booking-summary-header h4 { color: var(--white); }
.booking-summary-body { padding: 1.4rem 1.5rem; }
.summary-empty { color: var(--gray); font-size: 0.9rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--cream-dark);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--gray); font-weight: 600; }
.summary-row span:last-child { font-weight: 800; text-align: right; }
.summary-cta {
  padding: 1.1rem 1.5rem;
  background: var(--cream);
  border-top: 2px solid var(--cream-dark);
}
.summary-row.total { font-size: 1.05rem; border-bottom: none; }
.summary-row.total span:last-child { color: var(--green-dark); font-family: var(--font-display); font-size: 1.25rem; }
.trust-badges {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trust-badge {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #44514A;
}
.trust-badge .icon { font-size: 1.1rem; }
.terms-box {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  font-size: 0.84rem;
  color: #44514A;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.checkbox-group {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.checkbox-group input { margin-top: 0.3rem; accent-color: var(--green); width: 17px; height: 17px; flex-shrink: 0; }
.confirmation-banner { text-align: center; padding: 1rem 0 1.5rem; }
.confirmation-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(30, 122, 70, 0.12);
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.confirmation-id {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--cream);
  border: 2px dashed var(--green-light);
  border-radius: var(--radius);
  padding: 0.5rem 1.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.confirmation-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.conf-detail-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.conf-detail-card .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.conf-detail-card .value { font-weight: 800; font-size: 0.95rem; }
.req-list { display: flex; flex-direction: column; gap: 0.65rem; }
.req-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #44514A;
  font-weight: 600;
}
.req-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(30, 122, 70, 0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--stripe-teal);
}
.policy-card:nth-child(1) { border-top-color: var(--stripe-red); }
.policy-card:nth-child(2) { border-top-color: var(--stripe-gold); }
.policy-card:nth-child(3) { border-top-color: var(--stripe-purple); }
.policy-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.policy-card h4 { margin-bottom: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .unit-detail { grid-template-columns: 1fr; gap: 2rem; }
  .unit-detail.reverse > .unit-gallery { order: 0; }
  .unit-gallery { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { background: rgba(255, 249, 239, 0.96); box-shadow: var(--shadow-sm); }
  .nav.over-hero:not(.scrolled) .nav-logo { color: var(--green-dark); }
  .about-grid, .tour-inner, .contact-grid, .badger-grid, .layout-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 6rem 0 4rem; }
  .about-img-main img { height: 320px; }
  .policies-grid { grid-template-columns: 1fr; }
  .confirmation-details { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .fleet-grid, .amenities-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-row, .date-range-inputs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vehicle-option { flex-wrap: wrap; }
  .vehicle-option-price { text-align: left; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .confirmation-details { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation hook ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
