/* ============================================================
   PRIME ADVENTURE OUTFITTERS — DESIGN SYSTEM
   ============================================================ */

/* 1. VARIABLES
   ============================================================ */
:root {
  --orange:        #cc4700;
  --orange-bright: #f0502a;
  --orange-hover:  #d24523;
  --orange-dark:   #a33800;
  --black:         #0a0a0a;
  --dark:          #111111;
  --dark-mid:      #1c1c1c;
  --gray-900:      #222222;
  --gray-700:      #444444;
  --gray-500:      #777777;
  --gray-300:      #cccccc;
  --gray-100:      #f2f1ef;
  --white:         #ffffff;
  --overlay-dark:  rgba(0,0,0,0.58);
  --overlay-card:  rgba(10,10,10,0.55);

  --nav-h:         72px;
  --container:     1240px;
  --radius:        6px;
  --radius-lg:     14px;
  --radius-xl:     22px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.14);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.20);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.28);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.36);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:     0.18s;
  --t-med:      0.32s;
  --t-slow:     0.52s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--orange-bright); text-decoration: none; }
a:hover { color: var(--orange-hover); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 3. TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.75rem;
}

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

#site-header .container { height: 100%; }
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1400px; }

.section {
  padding: 96px 0;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--dark   { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--orange-bright); }
.section--tinted { background: var(--gray-100); }
.section--orange { background: var(--orange); color: var(--white); }
.section--orange h2, .section--orange h3, .section--orange .eyebrow { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}
.section--dark .section-header p,
.section--orange .section-header p { color: rgba(255,255,255,0.75); }

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

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--spring),
              box-shadow var(--t-med) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--orange-bright);
  color: var(--white);
  border-color: var(--orange-bright);
  box-shadow: 0 4px 18px rgba(240,80,42,0.38);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(240,80,42,0.52);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--gray-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--orange-bright);
  border-color: var(--orange-bright);
}
.btn--outline-dark:hover {
  background: var(--orange-bright);
  color: var(--white);
}

.btn--lg { padding: 17px 36px; font-size: 0.95rem; }
.btn--sm { padding: 9px 20px; font-size: 0.78rem; }

.btn--ta-review {
  background: #34e0a1;
  color: #111111;
  border-color: #34e0a1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  cursor: pointer;
}
.btn--ta-review:hover {
  background: #1ec98a;
  border-color: #1ec98a;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(52,224,161,0.4);
}
.ta-owl { width: 22px; height: 22px; flex-shrink: 0; }

.ta-widget-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 6. HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--orange);
  transition: background var(--t-slow) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: rgba(255,255,255,0.96);
  transition: color var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}
.site-logo:hover { color: rgba(255,255,255,0.96); opacity: 0.82; }
.site-logo__svg {
  height: 34px;
  width: auto;
  display: block;
  overflow: visible;
}
#site-header.scrolled .site-logo { color: var(--dark); }
#site-header.scrolled .site-logo:hover { color: var(--dark); opacity: 0.75; }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: 0; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

/* Invisible hover bridge — fills the gap between nav link and dropdown */
.nav-item::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  right: -12px;
  height: 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.14); }
.nav-link .chevron {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-fast) var(--ease);
  margin-top: 2px;
}
.nav-item:hover .chevron { transform: rotate(225deg) translateY(-2px); }

#site-header.scrolled .nav-link { color: var(--gray-700); }
#site-header.scrolled .nav-link:hover { color: var(--dark); background: var(--gray-100); }

.nav-item--cta .nav-link {
  background: var(--orange-bright);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 20px;
  box-shadow: 0 3px 12px rgba(240,80,42,0.40);
}
.nav-item--cta .nav-link:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
}
#site-header.scrolled .nav-item--cta .nav-link {
  background: var(--orange-bright);
  color: var(--white) !important;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              visibility var(--t-fast) var(--ease);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dropdown a:hover {
  background: var(--gray-100);
  color: var(--orange-bright);
}
.dropdown .dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 12px;
}
.dropdown a[target="_blank"]::after {
  content: " ↗";
  opacity: 0.5;
  font-size: 0.7rem;
}

/* Locations dropdown — main link + small Map link per row */
.dropdown--locations { min-width: 260px; padding: 6px 0; }
.dropdown-row {
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 0 8px;
}
.dropdown-row + .dropdown-row { margin-top: 1px; }
.dropdown-row__main {
  flex: 1;
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dropdown-row__main:hover {
  background: var(--gray-100);
  color: var(--orange-bright);
}
.dropdown-row__main[target="_blank"]::after {
  content: " ↗";
  opacity: 0.5;
  font-size: 0.7rem;
}
.dropdown-row__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dropdown-row__map:hover {
  background: rgba(240,80,42,0.10);
  color: var(--orange-bright);
}

/* Header phone (desktop) */
.nav-item--phone { margin-right: 4px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.header-phone:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}
.header-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#site-header.scrolled .header-phone {
  color: var(--gray-700);
  border-color: var(--gray-300);
}
#site-header.scrolled .header-phone:hover {
  color: var(--orange-bright);
  border-color: var(--orange-bright);
  background: transparent;
}

/* Header mobile actions wrapper (phone icon + hamburger) */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
}
.header-phone-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.header-phone-icon:hover { background: rgba(255,255,255,0.24); color: var(--white); }
#site-header.scrolled .header-phone-icon {
  color: var(--orange-bright);
  background: rgba(240,80,42,0.10);
}
#site-header.scrolled .header-phone-icon:hover {
  background: rgba(240,80,42,0.18);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease);
  background: none;
  border: none;
}
.nav-toggle:hover { background: rgba(255,255,255,0.14); }
#site-header.scrolled .nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease),
              opacity var(--t-fast) var(--ease),
              background var(--t-med) var(--ease);
  transform-origin: center;
}
#site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Drawer */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
#mobile-menu.is-open { pointer-events: auto; }

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t-med) var(--ease);
}
#mobile-menu.is-open .mobile-overlay { background: rgba(0,0,0,0.5); }

.mobile-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}
#mobile-menu.is-open .mobile-drawer { transform: translateX(0); }

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--orange);
  flex-shrink: 0;
}
.mobile-drawer-head .site-logo { color: rgba(255,255,255,0.96); }
.mobile-drawer-head .site-logo__svg { height: 40px; }
.mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.mobile-close:hover { background: rgba(255,255,255,0.35); }

.mobile-nav { padding: 16px 0 24px; flex: 1; }

.mobile-nav-item { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.mobile-nav-link:hover { color: var(--orange-bright); background: var(--gray-100); }
.mobile-nav-link .mobile-chevron {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform var(--t-fast) var(--ease);
}
.mobile-nav-item.is-open .mobile-chevron { transform: rotate(45deg); }

.mobile-submenu {
  display: none;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.mobile-nav-item.is-open .mobile-submenu { display: block; }
.mobile-submenu a {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--t-fast) var(--ease);
}
.mobile-submenu a:hover { color: var(--orange-bright); }

.mobile-drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
  flex-shrink: 0;
}
.mobile-drawer-foot .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.mobile-contact-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.mobile-contact-info a { color: var(--gray-700); font-weight: 600; }

/* 7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(240,80,42,0.45);
  animation: heroFadeUp 0.8s var(--ease) 0.2s both;
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0,0,0,0.55);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  animation: heroFadeUp 0.9s var(--ease) 0.35s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  animation: heroFadeUp 0.9s var(--ease) 0.55s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s var(--ease) 0.75s both;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease) 1.2s both;
}
.hero__scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* 8. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 18px 0;
  border-top: 3px solid var(--orange-bright);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item__icon {
  font-size: 1.4rem;
  line-height: 1;
}
.stat-item__text { display: flex; flex-direction: column; line-height: 1.2; }
.stat-item__num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange-bright);
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* 9. LOCATION CARDS
   ============================================================ */
.locations {
  background: var(--dark);
  padding: 96px 0 112px;
}
.locations .section-header { margin-bottom: 48px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.locations-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
.locations-grid--4 .location-card {
  grid-column: span 1;
  height: 420px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  height: 480px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.location-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}
.location-card:hover .location-card__bg { transform: scale(1.07); }

.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.08) 100%);
  transition: background var(--t-med) var(--ease);
}
.location-card:hover .location-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
}

.location-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease);
}

.location-card__tag {
  display: inline-block;
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.location-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.location-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease) 0.05s,
              transform var(--t-med) var(--ease) 0.05s;
}
.location-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.location-card__features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease) 0.08s,
              transform var(--t-med) var(--ease) 0.08s;
}
.location-card:hover .location-card__features {
  opacity: 1;
  transform: translateY(0);
}
.lc-feature {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* 10. WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(240,80,42,0.32);
}
.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* 11. GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  overflow: hidden;
}
.gallery-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.gallery-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-strip__item:hover img { transform: scale(1.08); }
.gallery-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,80,42,0);
  transition: background var(--t-med) var(--ease);
}
.gallery-strip__item:hover::after { background: rgba(240,80,42,0.18); }

/* 12. SPECIALS CALLOUT
   ============================================================ */
.specials-callout {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.specials-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/action-0487.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.specials-callout .container { position: relative; z-index: 1; }
.specials-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.specials-callout__text h2 { color: var(--white); margin-bottom: 0.5rem; }
.specials-callout__text p { color: rgba(255,255,255,0.72); margin-bottom: 0; font-size: 1.05rem; }

/* 13. BOOKING HIGHLIGHT BAR
   ============================================================ */
.booking-bar {
  background: var(--orange);
  padding: 24px 0;
}
.booking-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-bar__text h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.booking-bar__text p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0; }
.booking-bar .btn--outline { border-color: rgba(255,255,255,0.8); }

/* 14. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s var(--ease);
}
.page-hero:hover .page-hero__bg { transform: scale(1.04); }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 70%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  width: 100%;
}
.page-hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}
.page-hero__breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: var(--orange-bright); }

/* 15. BOOK NOW PAGE
   ============================================================ */
.book-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.book-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.book-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.book-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.book-card__body {
  padding: 24px 24px 28px;
}
.book-card__location {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 6px;
}
.book-card__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.book-card__body p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 20px; }
.book-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.bc-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.book-card .btn { width: 100%; justify-content: center; }

.mesquite-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}
.mesquite-card__badge {
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
}
.mesquite-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.mesquite-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 0; }
.mesquite-card__actions { flex-shrink: 0; }

/* 16. GALLERY PAGE
   ============================================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry__item img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-masonry__item:hover img { transform: scale(1.05); }
.gallery-masonry__item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(0,0,0,0);
  transition: background var(--t-med) var(--ease);
}
.gallery-masonry__item:hover::after { background: rgba(0,0,0,0.4); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--t-fast) var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--t-fast) var(--ease);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* 17. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 24px; }

.contact-call-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(240,80,42,0.30);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.contact-call-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(240,80,42,0.42);
}
.contact-call-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.contact-call-card__text { display: flex; flex-direction: column; line-height: 1.2; }
.contact-call-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.92;
  margin-bottom: 4px;
}
.contact-call-card__num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.contact-location {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.contact-location:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-location__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-location__name-dot {
  width: 10px; height: 10px;
  background: var(--orange-bright);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-location p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 4px; }
.contact-location a { color: var(--orange-bright); font-weight: 600; font-size: 0.85rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-bright);
  box-shadow: 0 0 0 3px rgba(240,80,42,0.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; font-size: 0.9rem; }

.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}
.form-msg--success {
  background: rgba(34,139,79,0.10);
  color: #1f6b3d;
  border: 1px solid rgba(34,139,79,0.25);
}
.form-msg--error {
  background: rgba(200,40,40,0.08);
  color: #a02020;
  border: 1px solid rgba(200,40,40,0.25);
}

/* AFFILIATES PAGE */
.affiliates-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
.affiliates-intro { text-align: center; }
.affiliates-intro h2 { margin: 8px 0 18px; }
.affiliates-intro p { font-size: 1.1rem; line-height: 1.65; color: var(--text-muted, #555); }
.affiliates-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}
.affiliates-form-card h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.affiliates-form-card__sub {
  margin-bottom: 24px;
  color: var(--text-muted, #666);
}
@media (max-width: 600px) {
  .affiliates-form-card { padding: 24px; }
}

/* 18. SPECIALS PAGE
   ============================================================ */
.specials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.special-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.07);
}
.special-card__image { display: block; width: 100%; }
.special-card__body { padding: 28px; }
.special-card__body h3 { margin-bottom: 10px; }
.special-card__body p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 20px; }

.deals-list { display: flex; flex-direction: column; gap: 16px; }
.deal-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.deal-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.deal-item__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(240,80,42,0.3);
}
.deal-item__content h4 { margin-bottom: 6px; font-size: 1rem; }
.deal-item__content p { font-size: 0.83rem; color: var(--gray-500); margin-bottom: 10px; }

/* 19. FAQ PAGE
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  gap: 16px;
  transition: color var(--t-fast) var(--ease);
  user-select: none;
}
.faq-question:hover { color: var(--orange-bright); }
.faq-toggle {
  width: 26px; height: 26px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-med) var(--spring);
  color: var(--gray-500);
  line-height: 1;
}
.faq-item.is-open .faq-toggle {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease),
              padding var(--t-med) var(--ease);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

/* 20. RIDE MODES — Two Ways to Ride (homepage)
   ============================================================ */
.ride-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
}
.ride-modes__panel {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.ride-modes__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.ride-modes__panel:hover .ride-modes__bg { transform: scale(1.04); }
.ride-modes__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.48) 45%, rgba(0,0,0,0.16) 100%);
}
.ride-modes__overlay--deep {
  background: linear-gradient(to top, rgba(8,4,0,0.93) 0%, rgba(8,4,0,0.58) 45%, rgba(8,4,0,0.20) 100%);
}
.ride-modes__content {
  position: relative;
  z-index: 1;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: var(--white);
}
.ride-modes__panel--tours::before {
  content: '';
  position: absolute;
  left: 0; top: 8%; height: 84%;
  width: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 2;
}
.ride-modes__eyebrow {
  display: inline-block;
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.ride-modes__eyebrow--gold {
  background: linear-gradient(135deg, #e8b84b, #c99830);
}
.ride-modes__title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.ride-modes__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.72;
  max-width: 400px;
}
.ride-modes__checklist {
  list-style: none;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 20px;
}
.ride-modes__checklist li {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding-left: 17px;
  position: relative;
}
.ride-modes__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-bright);
  font-weight: 800;
}
.ride-modes__panel--tours .ride-modes__checklist li::before { color: #e8b84b; }

/* 21. TOURS PAGE
   ============================================================ */
.tours-hero-video {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.tours-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.tours-hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tours-hero-video__content { max-width: 720px; padding: 0 24px; }
.tours-hero-video__content h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 10px 0 14px; }
.tours-hero-video__content p { color: rgba(255,255,255,0.78); font-size: 1.1rem; line-height: 1.6; }
.tours-hero__actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* Tour trust bar */
.tour-trust-bar { background: var(--dark); padding: 26px 0; }
.tour-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.tour-trust-item__num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.tour-trust-item__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}
.tour-trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Tour manifesto */
.tour-manifesto { padding: 88px 0; background: var(--white); }
.tour-manifesto__pull {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 28px;
  border-left: 4px solid var(--orange-bright);
  padding-left: 28px;
  font-style: italic;
}
.tour-manifesto__body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.82;
}

/* Guided Tours nav dropdown highlight */
.dropdown-tours-link {
  color: var(--orange-bright) !important;
  font-weight: 800 !important;
}

/* Tour packages grid */
.tour-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-pkg-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.tour-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.tour-pkg-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.tour-pkg-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.tour-pkg-card__badge--popular { background: var(--orange-bright); }
.tour-pkg-card__badge--premium { background: linear-gradient(135deg, #e8b84b, #c99830); }
.tour-pkg-card__badge--family  { background: #2a9968; }
.tour-pkg-card__badge--dark    { background: var(--dark); }
.tour-pkg-card__loc {
  position: absolute;
  bottom: 12px; left: 14px;
  background: rgba(0,0,0,0.58);
  color: rgba(255,255,255,0.92);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.tour-pkg-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-pkg-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.tour-pkg-card__header h3 { font-size: 1.1rem; margin-bottom: 8px; }
.tour-pkg-card__meta { display: flex; flex-wrap: wrap; gap: 5px; }
.tour-meta-pill {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.tour-pkg-card__price { text-align: right; flex-shrink: 0; }
.tour-price-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tour-price-amt {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange-bright);
  line-height: 1;
}
.tour-price-per { display: block; font-size: 0.62rem; color: var(--gray-500); }
.tour-pkg-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.72;
  margin-bottom: 16px;
}
.tour-pkg-card__highlights {
  list-style: none;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.tour-pkg-card__highlights li {
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
}
.tour-pkg-card__highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange-bright);
}
.tour-pkg-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tour-pkg-card__footer .btn { flex: 1; justify-content: center; }
.tour-pkg-enquire {
  font-size: 0.77rem;
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: color var(--t-fast) var(--ease), text-decoration-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.tour-pkg-enquire:hover { color: var(--orange-bright); text-decoration-color: var(--orange-bright); }

/* Tour included */
.tour-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
.tour-included-item { display: flex; flex-direction: column; gap: 10px; }
.tour-included-icon { font-size: 2.2rem; line-height: 1; }
.tour-included-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--dark); }
.tour-included-item p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.65; }

/* Tour guide section */
.tour-guide-section { background: var(--dark); padding: 88px 0; }
.tour-guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tour-guide-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin: 14px 0 22px;
}
.tour-guide-text p { color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.82; margin-bottom: 16px; }
.tour-guide-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tour-guide-cred { display: flex; flex-direction: column; gap: 5px; }
.tour-guide-cred strong { color: var(--white); font-size: 0.82rem; font-weight: 800; }
.tour-guide-cred span { color: var(--orange-bright); font-size: 0.72rem; font-weight: 700; }
.tour-guide-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.tour-guide-image img { width: 100%; height: 100%; object-fit: cover; }

/* Tour FAQ */
.tour-faq { display: flex; flex-direction: column; }
.tour-faq-item { padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.tour-faq-item:first-child { padding-top: 0; }
.tour-faq-item h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.tour-faq-item p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.78; }

/* Tour final CTA */
.tour-final-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.tour-final-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.tour-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.42) 100%);
}
.tour-final-cta__content { position: relative; z-index: 1; max-width: 580px; }
.tour-final-cta__content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 16px; }
.tour-final-cta__content p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.74; margin-bottom: 34px; }
.tour-final-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Tour booking coming-soon page */
.tour-coming-soon {
  text-align: center;
  padding: 24px 0 64px;
  max-width: 520px;
  margin: 0 auto;
}
.tour-coming-soon__icon { font-size: 3.5rem; margin-bottom: 24px; }
.tour-coming-soon h2 { margin-bottom: 16px; }
.tour-coming-soon p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.tour-coming-soon__options { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.tour-coming-soon__note { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 32px; }
.tour-coming-soon__back a { color: var(--orange-bright); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* 21. GENERIC PAGE
   ============================================================ */
.page-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-content h2 { margin-top: 2rem; margin-bottom: 0.8rem; }
.page-content p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.1rem; }
.page-content a { color: var(--orange-bright); text-decoration: underline; text-underline-offset: 3px; }
.map-note {
  background: var(--gray-100);
  border-left: 4px solid var(--orange-bright);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* 22. FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { margin-bottom: 20px; color: rgba(255,255,255,0.92); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.social-icon:hover { background: var(--orange-bright); color: var(--white); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast) var(--ease);
  text-decoration: none;
}
.footer-col a:hover { color: var(--orange-bright); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-icon {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--orange-bright); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.footer-bottom-links a:hover { color: var(--white); }

/* 23. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 24. KEYFRAMES
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 25. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .location-card:nth-child(3) { grid-column: span 2; height: 380px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .tour-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .ride-modes__content { padding: 40px 36px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  #main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-mobile-actions { display: flex; }
  .header-phone-icon { display: inline-flex; }
  #mobile-menu { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card, .location-card:nth-child(3) { grid-column: span 1; height: 380px; }
  .locations-grid--4 { grid-template-columns: 1fr; }
  .locations-grid--4 .location-card { grid-column: span 1; height: 320px; }
  .book-locations-grid { grid-template-columns: 1fr; }
  .mesquite-card { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .tour-cards { grid-template-columns: 1fr; }
  .ride-modes { grid-template-columns: 1fr; height: auto; }
  .ride-modes__panel { height: 480px; }
  .ride-modes__panel--tours::before { display: none; }
  .ride-modes__checklist { grid-template-columns: 1fr; }
  .tour-pkg-grid { grid-template-columns: 1fr; }
  .tour-included-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-guide-inner { grid-template-columns: 1fr; gap: 40px; }
  .tour-guide-credentials { grid-template-columns: 1fr; }
  .tour-trust-bar__inner { flex-wrap: wrap; gap: 8px 0; }
  .tour-trust-item { padding: 8px 24px; }
  .tours-hero-video { height: 60vh; }
  .gallery-masonry { columns: 2; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 6px 16px; }
  .stat-item__num { font-size: 1.1rem; }
  .section { padding: 64px 0; }
  .specials-callout__inner { flex-direction: column; text-align: center; }
  .booking-bar__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .stats-bar__inner { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .stat-item:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .tour-included-grid { grid-template-columns: 1fr; }
  .tours-hero__actions { flex-direction: column; align-items: center; }
  .tours-hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .tour-final-cta__actions { flex-direction: column; }
  .tour-final-cta__actions .btn { width: 100%; justify-content: center; }
  .tour-pkg-card__footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .tour-pkg-card__footer .btn { width: 100%; }
  .tour-pkg-enquire { text-align: center; white-space: normal; }
  .ride-modes__content { padding: 32px 28px; }
  .ride-modes__panel { height: 420px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
}

/* Floating Book CTA (mobile) */
.float-cta {
  display: none;
}
@media (max-width: 600px) {
  .float-cta {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
  }
  .float-cta .btn { box-shadow: var(--shadow-lg); }
  .hero-section .float-cta { display: none; }
}
