:root {
  interpolate-size: allow-keywords;
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --surface-2: #F0EDE8;
  --ink: #2D2926;
  --ink-soft: #5C5551;
  --accent: #4338CA;
  --accent-2: #DC2626;
  --line: rgba(45, 41, 38, 0.12);
  --line-strong: rgba(45, 41, 38, 0.28);
  --header-h: 72px;
  --radius: 6px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.eyebrow {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 8px; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgb(247, 245, 240);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 28px; height: 28px; }

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 200ms, transform 200ms;
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(4px); }
.mobile-drawer a.is-active { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(67,56,202,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  max-width: min(20ch, 90%);
  margin-bottom: 1.25rem;
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.route-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: border-color 240ms, transform 240ms, box-shadow 240ms;
}
.route-pill:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(67,56,202,0.2);
}
.route-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* Stats */
.stats-row {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Elevation SVG */
.elevation-profile {
  position: absolute;
  bottom: 0; right: 0;
  width: clamp(300px, 50vw, 700px);
  height: auto;
  opacity: 0.12;
  z-index: 1;
}
.elevation-profile path.trail-line {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.1s linear;
}
.elevation-profile path.trail-fill {
  fill: var(--accent);
  opacity: 0.06;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .char { opacity: 1; transform: none; animation: none; }
  .elevation-profile path.trail-line { stroke-dashoffset: 0; }
}

/* ============ CIRCUITS SECTION ============ */
.circuits-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .circuits-grid { grid-template-columns: repeat(2, 1fr); }
}
.circuit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
  overflow: hidden;
}
.circuit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.circuit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(67,56,202,0.18);
}
.circuit-card:hover::before { transform: scaleY(1); }
.circuit-card h3 { margin-bottom: 8px; }
.circuit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 100px;
}
.meta-tag svg { width: 14px; height: 14px; }
.circuit-price {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.circuit-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-soft);
  display: block;
}

/* ============ TIMELINE / ITINERARY ============ */
.timeline-section { overflow: visible; }
.timeline-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 0;
  margin-top: 1.5rem;
}
.timeline-scroll::-webkit-scrollbar { height: 4px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.day-card {
  flex: 0 0 clamp(260px, 30vw, 320px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 24px);
  position: relative;
  margin-right: -1px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(67,56,202,0.14);
  z-index: 2;
}
.day-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.day-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.day-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.altitude-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-2);
  color: var(--surface);
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.altitude-badge svg { width: 12px; height: 12px; }

/* Timeline connector line */
.timeline-connector {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0 clamp(16px, 3vw, 24px);
}
.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
}
.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent-2);
  flex-shrink: 0;
}

/* ============ INCLUDES TABLE ============ */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  font-size: 0.875rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  background: var(--surface-2);
  color: var(--ink);
}
td { color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(67,56,202,0.03); }
.check-icon { color: var(--accent); font-weight: 700; }
.cross-icon { color: var(--accent-2); }

/* ============ DEPARTURES / SALIDAS ============ */
.departures-grid {
  display: grid;
  gap: 16px;
  margin-top: 2rem;
}
@media (min-width: 640px) { .departures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .departures-grid { grid-template-columns: repeat(3, 1fr); } }

.departure-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.departure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.1);
}
.departure-date {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.departure-route {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}
.departure-spots {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.spots-bar {
  width: 100%;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.spots-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 600ms cubic-bezier(.2,.7,.2,1);
}
.departure-card.almost-full .spots-fill { background: var(--accent-2); }

/* ============ FORM / RESERVAR ============ */
.form-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  max-width: 680px;
  margin: 2rem auto 0;
}
.form-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full-width { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(67,56,202,0.1);
  outline: none;
}
.field textarea { min-height: 100px; resize: vertical; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-field label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--accent); margin-bottom: 0.5rem; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(67,56,202,0.15);
}
.pricing-card h4 { margin-bottom: 6px; }
.pricing-duration {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-amount small { font-size: 0.75rem; color: var(--ink-soft); font-weight: 400; }
.pricing-list { list-style: none; }
.pricing-list li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.pricing-list.not-included li::before { background: var(--accent-2); }
.pricing-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============ PROCESS ============ */
.process-steps {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-line {
  width: 2px;
  flex: 1;
  background: var(--line);
  margin-top: 8px;
}
.process-step:last-child .step-line { display: none; }
.step-time {
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.step-content h4 { margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.step-content p { font-size: 0.88rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: var(--surface); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--surface);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  transition: color 200ms, transform 200ms;
  text-decoration: none;
}
.footer-col a:hover { color: var(--surface); transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--surface); }

/* ============ CONTACT CHANNELS ============ */
.contact-channels {
  display: grid;
  gap: 16px;
  margin-top: 2rem;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.channel-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.channel-row:hover svg { color: var(--accent); }
.channel-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a { color: var(--ink); text-decoration: none; }
.channel-value a:hover { color: var(--accent); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cookie-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-actions .cookie-accept {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions .cookie-accept:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

/* ============ NICHE ANIMATIONS ============ */
/* Trail footsteps stagger */
@keyframes footstep {
  0% { opacity: 0; transform: translateY(8px) scale(0.8); }
  50% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0.6; transform: translateY(0) scale(1); }
}
.day-card::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234338CA' stroke-width='1.5'%3E%3Cpath d='M4 16s1-1 3-1 3 2 5 2 3-1 3-1'/%3E%3Cpath d='M4 20s1-1 3-1 3 2 5 2 3-1 3-1'/%3E%3Cpath d='M13.5 2c-.5 2-2 3.5-3.5 4.5'/%3E%3Cpath d='M10.5 6.5c.5 2 .5 4-1 5.5'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0;
  animation: footstep 2.5s cubic-bezier(.2,.7,.2,1) infinite;
  animation-delay: calc(var(--i, 0) * 400ms);
}
@media (prefers-reduced-motion: reduce) {
  .day-card::after { animation: none; opacity: 0.4; }
}

/* Mountain peak glow */
@keyframes peakGlow {
  0%, 100% { filter: drop-shadow(0 0 0px transparent); }
  50% { filter: drop-shadow(0 0 8px rgba(67,56,202,0.3)); }
}
.circuit-card:hover .circuit-icon {
  animation: peakGlow 2s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .circuit-card:hover .circuit-icon { animation: none; }
}

/* Compass rotate on section entry */
@keyframes compassSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.section-icon-compass.is-in {
  animation: compassSpin 800ms cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .section-icon-compass.is-in { animation: none; }
}

/* Altitude counter pulse */
@keyframes altPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.altitude-badge:hover {
  animation: altPulse 600ms cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .altitude-badge:hover { animation: none; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 100px;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ============ BAND SECTION (contrast) ============ */
.band-section {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.band-section h2 { color: var(--surface); }
.band-section .eyebrow { color: rgba(255,255,255,0.6); }
.band-section p { color: rgba(255,255,255,0.75); }

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--ink-soft); }
.legal-content ul, .legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--ink-soft);
}
.legal-content li { margin-bottom: 0.4rem; font-size: 0.9rem; }

/* ============ 404 ============ */
.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.page-404 h1 { font-size: clamp(5rem, 15vw, 10rem); color: var(--accent); opacity: 0.3; }
.page-404 h2 { margin-bottom: 1rem; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; max-width: 400px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .stats-row { flex-direction: column; gap: 16px; }
  .circuits-grid { grid-template-columns: 1fr; }
  .departures-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full-width { grid-column: auto; }
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}

@media (max-width: 480px) {
  .day-card { flex: 0 0 85vw; }
  .circuit-card { grid-template-columns: 1fr; }
  .circuit-price { margin-top: 8px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: none; }
}

@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero h1 { font-size: 2rem; }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 60ms linear;
  z-index: 1;
}

/* ============ DRAWER CLOSE ============ */
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 200ms cubic-bezier(.4,0,.2,1), color 200ms;
  line-height: 1;
}
.drawer-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ PRINT ============ */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
}
