/* =========================================================
   BIGTRAIL ADVENTURE MOTORCYCLE — STYLESHEET
   ========================================================= */

:root {
  --navy-950: #10151d;
  --navy-900: #151d29;
  --navy-800: #1c2634;
  --navy-700: #263242;
  --gold-500: #c68a35;
  --gold-600: #b57827;
  --gold-100: #f6ead6;
  --blue-600: #1f4e79;
  --blue-700: #163a5c;
  --ink: #1a1f26;
  --grey-700: #4c5560;
  --grey-500: #7a828c;
  --grey-200: #e6e8eb;
  --grey-100: #f4f5f6;
  --cream: #faf9f7;
  --white: #ffffff;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: 0.02em; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.eyebrow-gold { color: var(--gold-500); }
.eyebrow-navy { color: var(--blue-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-500); color: var(--white); }
.btn-gold:hover { background: var(--gold-600); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-950); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-small { padding: 11px 20px; font-size: 0.75rem; }
.btn-download { width: 100%; }
.btn-submit { width: 100%; padding: 18px; font-size: 0.95rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 21, 29, 0.92);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo img { height: 65px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.main-nav a { padding: 8px 0; opacity: 0.88; transition: opacity 0.2s; }
.main-nav a:hover { opacity: 1; }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: 100%; left: 0;
  background: var(--navy-800);
  min-width: 180px;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-panel a { display: block; padding: 10px 18px; text-transform: none; font-size: 0.85rem; }
.dropdown-panel a:hover { background: rgba(255,255,255,0.06); }
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  font-size: 0;        /* oculta el "?" que trae adentro */
  line-height: 0;
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-select { position: relative; }
.lang-current {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 6px 4px;
}
.lang-panel {
  position: absolute;
  top: 100%; right: 0;
  margin-top: 8px;
  background: var(--navy-800);
  border-radius: 4px;
  overflow: hidden;
  min-width: 130px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.lang-select.open .lang-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
}
.lang-panel button:hover { background: rgba(255,255,255,0.08); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.2s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,14,20,0.82) 0%, rgba(10,14,20,0.45) 48%, rgba(10,14,20,0.15) 75%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content h1 span { color: var(--white); }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--gold-100);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 34px;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-facts li { display: flex; align-items: center; gap: 9px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

.desktop-only { display: inline; }

/* =========================================================
   ICONS (inline SVG via mask, currentColor-friendly)
   ========================================================= */
.icon { display: inline-block; width: 20px; height: 20px; flex-shrink: 0; background-color: currentColor; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.icon-calendar-sm, .icon-distance, .icon-road, .icon-pin, .icon-flight { width: 16px; height: 16px; color: var(--grey-700); }

.icon-calendar { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v3M17 2v3M3 9h18M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v3M17 2v3M3 9h18M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); }
.icon-calendar-sm { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v3M17 2v3M3 9h18M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v3M17 2v3M3 9h18M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); }
.icon-bike, .icon-bike-lg { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='5.5' cy='17.5' r='3.5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='18.5' cy='17.5' r='3.5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M15 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2zM12 17.5V14l-3-3 4-3 2 3h4' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='5.5' cy='17.5' r='3.5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='18.5' cy='17.5' r='3.5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M15 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2zM12 17.5V14l-3-3 4-3 2 3h4' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-support, .icon-van { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 16V8a1 1 0 0 1 1-1h9l4 4h3a1 1 0 0 1 1 1v4' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='7' cy='17' r='2' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17' cy='17' r='2' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 16V8a1 1 0 0 1 1-1h9l4 4h3a1 1 0 0 1 1 1v4' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='7' cy='17' r='2' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17' cy='17' r='2' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); }
.icon-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-group { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='8' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6M16 8a3 3 0 1 1 0 0zM15.5 14.2c2.6.4 4.5 2.6 4.5 5.3' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='8' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6M16 8a3 3 0 1 1 0 0zM15.5 14.2c2.6.4 4.5 2.6 4.5 5.3' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-distance { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19c2-6 4-2 6-8s4 2 6-4 4 8 4 8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19c2-6 4-2 6-8s4 2 6-4 4 8 4 8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-road { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3 4 21M16 3l4 18M12 3v3M12 10v3M12 17v3' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3 4 21M16 3l4 18M12 3v3M12 10v3M12 17v3' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-pin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s7-6.5 7-12a7 7 0 1 0-14 0c0 5.5 7 12 7 12z' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9' r='2.4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s7-6.5 7-12a7 7 0 1 0-14 0c0 5.5 7 12 7 12z' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9' r='2.4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); }
.icon-flight { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.5 20.5 12 17l1.5 3.5-1.5 1-1.5-1zM3.5 13.5 7 12l-1.5-3.5 1-1L9 10l7.5-4.5a1.7 1.7 0 0 1 2.4 2.4L14 15l2.5 3.5-1 1L12 17l-3.5 2.5-1-1L10 15l-3.5-1.5z' fill='none' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.5 20.5 12 17l1.5 3.5-1.5 1-1.5-1zM3.5 13.5 7 12l-1.5-3.5 1-1L9 10l7.5-4.5a1.7 1.7 0 0 1 2.4 2.4L14 15l2.5 3.5-1 1L12 17l-3.5 2.5-1-1L10 15l-3.5-1.5z' fill='none' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-download { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v12m0 0-4-4m4 4 4-4M4 20h16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v12m0 0-4-4m4 4 4-4M4 20h16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); width: 18px; height: 18px; }
.icon-whatsapp { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12a8 8 0 1 1-3.6-6.7M20 12l-1-4-4 1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12a8 8 0 1 1-3.6-6.7M20 12l-1-4-4 1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); width: 18px; height: 18px; }
.icon-fuel { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 20V6a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v14M4 20h10M15 9l3 2v6a1.5 1.5 0 0 0 3 0v-4.5L18 9' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 20V6a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v14M4 20h10M15 9l3 2v6a1.5 1.5 0 0 0 3 0v-4.5L18 9' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-hotel { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21V6a1 1 0 0 1 1-1h6v16M3 21h18M10 21V10h9a1 1 0 0 1 1 1v10M6 8h1M6 11h1M6 14h1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21V6a1 1 0 0 1 1-1h6v16M3 21h18M10 21V10h9a1 1 0 0 1 1 1v10M6 8h1M6 11h1M6 14h1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-meals { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3v7a2 2 0 0 0 2 2v9M6 3v6M9 3v6M12 3c0 4-2 6-2 9v9M22 3c-3 1-3 5-3 8a3 3 0 0 0 3 3v9' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3v7a2 2 0 0 0 2 2v9M6 3v6M9 3v6M12 3c0 4-2 6-2 9v9M22 3c-3 1-3 5-3 8a3 3 0 0 0 3 3v9' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-wine { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3h8l-1 8a3 3 0 0 1-6 0zM12 14v7M8 21h8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3h8l-1 8a3 3 0 0 1-6 0zM12 14v7M8 21h8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-guide { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M4 21c0-4.4 3.6-8 8-8s8 3.6 8 8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M4 21c0-4.4 3.6-8 8-8s8 3.6 8 8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-crew { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='9' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='16' cy='9' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M2 21c0-3.3 2.7-6 6-6s6 2.7 6 6M10 21c0-3.3 2.7-6 6-6s6 2.7 6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='9' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='16' cy='9' r='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M2 21c0-3.3 2.7-6 6-6s6 2.7 6 6M10 21c0-3.3 2.7-6 6-6s6 2.7 6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-instagram { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23000'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23000'/%3E%3C/svg%3E"); }
.icon-facebook { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9V6.5A1.5 1.5 0 0 1 15.5 5H17V2h-2.5A4.5 4.5 0 0 0 10 6.5V9H8v3h2v10h4V12h2.6l.4-3H14z' fill='%23000'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9V6.5A1.5 1.5 0 0 1 15.5 5H17V2h-2.5A4.5 4.5 0 0 0 10 6.5V9H8v3h2v10h4V12h2.6l.4-3H14z' fill='%23000'/%3E%3C/svg%3E"); }
.icon-youtube { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5' width='20' height='14' rx='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='%23000'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5' width='20' height='14' rx='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='%23000'/%3E%3C/svg%3E"); }

.icon-bike-lg, .icon-guide { width: 30px; height: 30px; }
.inclusion-item .icon { width: 30px; height: 30px; color: var(--gold-500); margin-bottom: 10px; }

/* =========================================================
   CHOOSE YOUR JOURNEY
   ========================================================= */
.journeys { max-width: var(--container); margin: 0 auto; padding: 90px 24px 60px; }

.journey-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.journey-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
}
.journey-card-image { height: 100%; min-height: 100%; }
.journey-card-image img { width: 100%; height: 100%; object-fit: cover; }
.journey-card-body { padding: 30px 26px; display: flex; flex-direction: column; }
.journey-card-body h3 {
  font-size: 1.25rem;
  color: var(--navy-950);
  margin-bottom: 18px;
  line-height: 1.3;
}
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 8px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.price-badge-gold { background: var(--gold-100); color: var(--gold-600); }
.price-badge-navy { background: #e9eef3; color: var(--blue-700); }
.price-badge-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey-700);
}

.journey-list { margin-bottom: 24px; }
.journey-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}
.journey-list li:last-child { border-bottom: none; }
.journey-card-body .btn { align-self: flex-start; }
.doc-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--grey-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc-link:hover { color: var(--ink); }

/* =========================================================
   INCLUSIONS
   ========================================================= */
.inclusions { background: var(--grey-100); padding: 80px 24px; }
.inclusions-grid {
  max-width: var(--container);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  text-align: center;
}
.inclusion-item { display: flex; flex-direction: column; align-items: center; }
.inclusion-item p {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy-900);
  line-height: 1.3;
}
.inclusions-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-700);
}
.inclusions-footnote {
  max-width: var(--container);
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* =========================================================
   MOTO + EXPEDITION
   ========================================================= */
.moto-expedition {
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.moto-col h3, .expedition-col h3 {
  font-size: 1.3rem;
  color: var(--navy-950);
  margin-bottom: 16px;
  line-height: 1.3;
}
.moto-col p { color: var(--grey-700); font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.moto-image img { width: 100%; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--grey-700);
}
.check-list li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: var(--gold-500);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4 10-10' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4 10-10' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.crew-roster {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  font-size: 0.85rem;
  color: var(--grey-700);
  line-height: 1.55;
}

/* =========================================================
   JOURNEY OVERVIEW
   ========================================================= */
.overview { background: var(--grey-100); padding: 90px 24px; }
.overview-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.overview-image { border-radius: 4px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.overview-image img { width: 100%; height: 100%; object-fit: cover; }
.itinerary { width: 100%; border-collapse: collapse; margin: 14px 0 22px; }
.itinerary td {
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-200);
}
.itinerary td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-950);
  width: 70px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { max-width: var(--container); margin: 0 auto; padding: 90px 24px 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.gallery-item { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { text-align: center; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 880px; margin: 0 auto; padding: 90px 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--grey-200); border-radius: 4px; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-950);
}
.faq-question:hover { background: var(--grey-100); }
.faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--navy-900);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-500); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--grey-100);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey-700);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--white); padding: 0; }
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  box-shadow: 0 0 0 1px var(--grey-200);
}
.contact-media { position: relative; min-height: 560px; }
.contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-media-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(10,14,20,0) 0%, rgba(10,14,20,0.75) 65%, rgba(10,14,20,0.9) 100%);
  color: var(--white);
}
.contact-media-overlay h2 { font-size: 1.8rem; margin-bottom: 14px; line-height: 1.2; }
.contact-media-overlay p { font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.88); margin-bottom: 22px; max-width: 380px; }
.contact-media-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.contact-form { padding: 44px 40px; background: var(--white); }
.form-row { margin-bottom: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-field label {
  display: block;
  font-size: 0.76rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-200);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-500);
  outline: none;
}
.form-field textarea { resize: vertical; }

.form-checkbox-row { display: flex; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--grey-700);
  cursor: pointer;
}
.checkbox-label input { width: auto; margin-top: 3px; }

.form-status { margin-top: 14px; font-size: 0.85rem; text-align: center; min-height: 1.2em; }
.form-status.success { color: #2a7d46; }
.form-status.error { color: #b3261e; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding: 60px 24px 24px; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-brand img { height: 50px; }
.footer-col h4 {
  font-size: 0.78rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; font-size: 0.85rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold-500); }
.social-icons { display: flex; gap: 14px; }
.social-icons .icon { width: 20px; height: 20px; color: rgba(255,255,255,0.75); }
.social-icons a:hover .icon, .social-icons .icon:hover { color: var(--gold-500); }
.badge-circle {
  width: 74px; height: 74px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  padding: 6px;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .inclusions-grid { grid-template-columns: repeat(4, 1fr); row-gap: 34px; }
  .moto-expedition { grid-template-columns: 1fr; text-align: left; }
  .moto-image { order: -1; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .journey-card { grid-template-columns: 1fr; }
  .journey-card-image { aspect-ratio: 16/9; }
  .overview-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-media { min-height: 320px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .journey-cards { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-facts { gap: 16px; }
  .desktop-only { display: none; }
  .hero-content h1 { font-size: 2.4rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .badge-circle { margin-top: 10px; }

  /* mobile nav becomes a slide-down panel */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-900);
    padding: 10px 24px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); display: none; }
  .nav-dropdown.open .dropdown-panel { display: block; }
}
