/* ====== SITE NAV ====== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 18, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10vw;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo:hover { color: var(--accent); }

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg-primary); }

.nav-link-plan {
  color: var(--accent);
  font-weight: 600;
}
.nav-link-plan:hover { color: var(--accent-glow); }

/* ====== PAGE LAYOUT ====== */
.page-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 10vw 120px;
}

.page-header {
  margin-bottom: 72px;
}

.page-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.page-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 580px;
}

/* ====== BREADCRUMB ====== */
.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.breadcrumb-link {
  color: var(--fg-muted);
  text-decoration: none;
}
.breadcrumb-link:hover { color: var(--accent); }

.breadcrumb-sep { color: var(--fg-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--fg-muted); }

/* ====== DESTINATION HEADER ====== */
.dest-detail-header { margin-bottom: 64px; }

.dest-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.dest-detail-tagline {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.dest-detail-badges { display: flex; gap: 10px; flex-wrap: wrap; }

/* ====== BADGES ====== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-season {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 164, 78, 0.25);
}

.badge-type {
  background: rgba(156, 168, 142, 0.08);
  color: var(--fg-secondary);
  border: 1px solid var(--border);
}

.badge-feature {
  background: rgba(156, 168, 142, 0.08);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* ====== SECTIONS ====== */
.detail-section {
  margin-bottom: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.section-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  max-width: 720px;
}

/* ====== CAMPGROUND CARDS ====== */
.campground-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campground-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color 0.25s;
}

.campground-card:hover {
  border-color: rgba(200, 164, 78, 0.22);
}

.camp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.camp-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.camp-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.camp-price { text-align: right; flex-shrink: 0; }

.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.price-unit {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-left: 2px;
}

.camp-meta {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.camp-notes {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.camp-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.camp-book-btn:hover {
  background: rgba(200, 164, 78, 0.22);
  border-color: rgba(200, 164, 78, 0.5);
}

/* ====== TRAIL LIST ====== */
.trail-list { display: flex; flex-direction: column; gap: 0; }

.trail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.trail-row:first-child { border-top: 1px solid var(--border); }

.trail-main { flex: 1; }

.trail-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

.trail-desc {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

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

.trail-stat {
  text-align: right;
}

.trail-stat-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.trail-stat-unit {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-left: 2px;
}

.trail-difficulty {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.difficulty-easy { background: rgba(100, 180, 80, 0.12); color: #7dc46a; border: 1px solid rgba(100, 180, 80, 0.2); }
.difficulty-moderate { background: rgba(200, 164, 78, 0.12); color: var(--accent); border: 1px solid rgba(200, 164, 78, 0.2); }
.difficulty-strenuous { background: rgba(200, 80, 60, 0.12); color: #d46a58; border: 1px solid rgba(200, 80, 60, 0.2); }

.trail-type-badge {
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 3px 10px;
  background: rgba(156, 168, 142, 0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ====== AFFILIATE CTA ====== */
.detail-cta {
  margin-top: 80px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.cta-links { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn-primary {
  background: var(--accent);
  color: #0a1208;
}
.cta-btn-primary:hover { background: var(--accent-glow); }

.cta-btn-secondary {
  background: var(--accent-dim);
  border: 1px solid rgba(200, 164, 78, 0.3);
  color: var(--accent);
}
.cta-btn-secondary:hover {
  background: rgba(200, 164, 78, 0.22);
  border-color: rgba(200, 164, 78, 0.5);
}

/* ====== BACK NAV ====== */
.back-nav { margin-top: 64px; }

.back-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
}
.back-link:hover { color: var(--accent); }

/* ====== DESTINATION INDEX CARDS ====== */
.dest-regions { display: flex; flex-direction: column; gap: 64px; }

.region-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.dest-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.dest-card:hover {
  border-color: rgba(200, 164, 78, 0.25);
  background: var(--bg-elevated);
}

.dest-card-inner { padding: 28px; }

.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.dest-card-tagline {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.dest-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dest-card-season {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.dest-card-arrow {
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.dest-card:hover .dest-card-arrow { opacity: 1; }

/* ====== AFFILIATE CTAs ====== */

/* Hero CTA row — displayed in destination header above the fold */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-affiliate-disclosure {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Shared CTA button base */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cta-btn:hover { transform: translateY(-1px); }

/* Hero variant — large gradient button */
.cta-btn-hero {
  padding: 14px 24px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent) 0%, #d4a843 100%);
  color: #0a1208;
}
.cta-btn-hero:hover { background: linear-gradient(135deg, var(--accent-glow) 0%, #dcb24e 100%); }

/* Inline variant — medium, contextual */
.cta-btn-inline {
  padding: 10px 18px;
  font-size: 0.88rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200,164,78,0.25);
}
.cta-btn-inline:hover { background: rgba(200,164,78,0.22); color: var(--accent-glow); }

/* Sidebar variant — used for sticky sidebar on desktop */
.cta-btn-sidebar {
  padding: 12px 20px;
  font-size: 0.9rem;
  background: var(--bg-card);
  color: var(--fg-primary);
  border: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}
.cta-btn-sidebar:hover { border-color: var(--accent); color: var(--accent); }

.cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ====== AFFILIATE PARTNER GRID ====== */
.affiliate-grid-section {
  margin: 48px 0;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
}

.affiliate-grid-header {
  margin-bottom: 28px;
}

.affiliate-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.affiliate-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.affiliate-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.affiliate-card-inner {
  padding: 20px;
}

.affiliate-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}

.affiliate-partner-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.affiliate-partner-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.affiliate-card-desc {
  font-size: 0.83rem;
  color: var(--fg-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.affiliate-card-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.affiliate-disclosure {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ====== TRAIL GEAR CTA ====== */
.gear-cta-section {
  margin: 40px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
}

.gear-cta-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.gear-cta-text { flex: 1; }

.gear-cta-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.gear-cta-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 10px;
}

.gear-cta-body {
  font-size: 0.87rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.gear-cta-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.gear-item-link {
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.gear-item-link:hover { color: var(--accent); border-color: var(--accent); }

/* ====== NEARBY DESTINATIONS ====== */
.nearby-section { margin-top: 56px; }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.nearby-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.15s;
}

.nearby-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nearby-card-inner {
  padding: 20px;
}

.nearby-region {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted, #6b7280);
  display: block;
  margin-bottom: 8px;
}

.nearby-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin: 0 0 8px;
}

.nearby-tagline {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  margin: 0 0 12px;
  line-height: 1.4;
}

.nearby-season {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .page-main { padding: 48px 7vw 80px; }
  .nav-inner { padding: 16px 7vw; }
  .camp-header { flex-direction: column; gap: 12px; }
  .camp-price { text-align: left; }
  .trail-row { flex-direction: column; gap: 12px; }
  .trail-stats { justify-content: flex-start; }
  .detail-cta { padding: 32px 24px; }
  .cta-links { flex-direction: column; }
  .dest-card-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .cta-btn-hero { width: 100%; justify-content: center; }
  .affiliate-grid-section { padding: 28px 20px; }
  .affiliate-card-grid { grid-template-columns: 1fr; }
  .gear-cta-inner { flex-direction: column; gap: 24px; }
  .gear-cta-items { min-width: unset; flex-direction: row; flex-wrap: wrap; }
  .nearby-grid { grid-template-columns: 1fr; }
}

/* ====== ITINERARY BUILDER ====== */
.plan-main {
  padding: 56px 5vw 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.plan-header {
  margin-bottom: 48px;
}

.plan-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--fg-primary);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.plan-sub {
  font-size: 1rem;
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* Two-column layout: sidebar + canvas */
.plan-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Sidebar: destination picker ── */
.plan-sidebar {
  position: sticky;
  top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--border);
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.dest-search-input {
  width: 100%;
  padding: 9px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.dest-search-input:focus { border-color: var(--accent); }
.dest-search-input::placeholder { color: var(--fg-muted); }

.dest-region-list {
  overflow-y: auto;
  flex: 1;
  padding: 12px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.dest-region-group {
  padding: 0 16px;
  margin-bottom: 12px;
}

.region-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 4px 4px;
  margin-bottom: 4px;
}

.dest-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px 9px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 6px;
  cursor: grab;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.dest-chip:hover { border-color: rgba(200,164,78,0.3); background: var(--bg-card); }
.dest-chip.dragging { opacity: 0.5; }

.chip-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--fg-primary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip-add-btn {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,164,78,0.25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip-add-btn:hover { background: rgba(200,164,78,0.25); }

/* ── Trip canvas ── */
.plan-canvas {
  min-height: 400px;
}

.trip-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trip-title-input {
  flex: 1;
  min-width: 180px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}
.trip-title-input:focus { border-color: var(--accent); }
.trip-title-input::placeholder { color: var(--fg-muted); }

.day-count-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
}

.day-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.day-btn:hover { border-color: var(--accent); color: var(--accent); }

.day-count-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg-primary);
  min-width: 60px;
  text-align: center;
}

/* Day columns grid */
.day-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.day-col {
  display: flex;
  flex-direction: column;
}

.day-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.day-col-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.day-drop-zone {
  flex: 1;
  min-height: 120px;
  border: 1px dashed var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 10px;
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s;
}
.day-drop-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.drop-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 24px 12px;
  line-height: 1.5;
}

/* Itinerary item cards within day columns */
.itinerary-item-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.itinerary-item-card:hover { border-color: rgba(200,164,78,0.25); }

.item-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.item-card-info {
  flex: 1;
  min-width: 0;
}

.item-region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 3px;
}

.item-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg-primary);
  display: block;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-tagline {
  font-size: 0.78rem;
  color: var(--fg-secondary);
  display: block;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.item-day-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg-secondary);
  font-size: 0.75rem;
  padding: 3px 6px;
  cursor: pointer;
  outline: none;
}
.item-day-select:focus { border-color: var(--accent); }

.item-remove-btn {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.item-remove-btn:hover { color: #d46a58; background: rgba(200,80,60,0.1); }

/* Empty state */
.plan-empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-icon { font-size: 2.5rem; margin-bottom: 16px; }

.empty-text {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* Save bar */
.save-bar {
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
}

.save-bar-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.save-email-group { flex: 1; min-width: 200px; }

.save-email-input {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.save-email-input:focus { border-color: var(--accent); }
.save-email-input.input-error { border-color: #d46a58; }
.save-email-input::placeholder { color: var(--fg-muted); }

.save-btn {
  padding: 13px 28px;
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.save-btn:hover { background: var(--accent-glow); }
.save-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.save-hint {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ── Share modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(200,164,78,0.25);
  border-radius: calc(var(--radius) * 2);
  padding: 44px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--fg-primary); }

.modal-icon { font-size: 2.5rem; margin-bottom: 16px; }

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.share-link-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.share-url-input {
  flex: 1;
  padding: 11px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-secondary);
  font-size: 0.85rem;
  font-family: monospace;
  outline: none;
}

.copy-btn {
  padding: 11px 20px;
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover { background: var(--accent-glow); }

.share-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-action-btn {
  padding: 10px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.share-action-btn:hover { border-color: var(--accent); color: var(--accent); }

.share-view-btn {
  background: var(--accent-dim);
  border-color: rgba(200,164,78,0.3);
  color: var(--accent);
}

/* ====== SHARED TRIP VIEW ====== */
.trip-view-main {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 8vw 100px;
}

.trip-view-header {
  margin-bottom: 56px;
}

.trip-view-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.trip-view-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trip-meta-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--fg-secondary);
}

.trip-share-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.trip-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.trip-share-btn:hover { background: var(--accent-glow); }

.trip-share-sms {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-primary);
}
.trip-share-sms:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-card); }

.copy-confirm {
  font-size: 0.85rem;
  color: #7dc46a;
  margin-top: 8px;
  font-weight: 600;
}

/* Trip day sections */
.trip-day-section {
  margin-bottom: 48px;
}

.trip-day-label {
  margin-bottom: 16px;
}

.day-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200,164,78,0.2);
  padding: 5px 14px;
  border-radius: 20px;
}

.trip-stops {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trip-stop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 24px 28px;
  transition: border-color 0.25s;
}
.trip-stop-card:hover { border-color: rgba(200,164,78,0.2); }

.stop-card-body { margin-bottom: 16px; }

.stop-name-link { text-decoration: none; }

.stop-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.stop-name-link:hover .stop-name { color: var(--accent); }

.stop-region {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.stop-tagline {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.stop-notes {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  font-style: italic;
  margin-top: 8px;
}

.stop-book-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.stop-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,164,78,0.25);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.stop-book-btn:hover { background: rgba(200,164,78,0.22); border-color: rgba(200,164,78,0.5); }

/* Trip empty / error state */
.trip-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--fg-secondary);
}

.trip-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--accent);
  color: #0a1208;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.trip-cta-btn:hover { background: var(--accent-glow); }

/* Plan your own CTA section */
.trip-own-cta {
  margin-top: 64px;
  padding: 52px 48px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(200,164,78,0.2);
  border-radius: calc(var(--radius) * 2);
  text-align: center;
}

.own-cta-inner { max-width: 520px; margin: 0 auto; }

.own-cta-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.own-cta-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  margin-bottom: 28px;
  line-height: 1.65;
}

.own-cta-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.own-cta-email {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.own-cta-email:focus { border-color: var(--accent); }
.own-cta-email::placeholder { color: var(--fg-muted); }

.own-cta-submit {
  padding: 13px 28px;
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.own-cta-submit:hover { background: var(--accent-glow); }

.email-success-msg {
  color: #7dc46a;
  font-weight: 600;
  font-size: 0.95rem;
}

.own-cta-fine {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.affiliate-disclosure-trip {
  margin-top: 40px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ====== ITINERARY MOBILE ====== */
@media (max-width: 900px) {
  .plan-layout {
    grid-template-columns: 1fr;
  }

  .plan-sidebar {
    position: relative;
    top: 0;
    max-height: 300px;
  }

  .plan-main { padding: 40px 6vw 80px; }

  .trip-view-main { padding: 48px 6vw 80px; }

  .trip-own-cta { padding: 36px 24px; }

  .save-bar { padding: 20px; }

  .modal-box { padding: 32px 24px; }

  .save-bar-inner { flex-direction: column; }

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


/* ====== EMAIL CAPTURE BLOCK ====== */
.ec-block {
  border-radius: var(--radius);
}

/* Hero variant — sits below the CTA in the landing hero, wider/lighter bg */
.ec-block--hero {
  margin-top: 48px;
  padding: 36px 40px;
  background: rgba(22, 34, 19, 0.7);
  border: 1px solid rgba(200, 164, 78, 0.18);
  max-width: 600px;
}

/* Inline variant — destination pages / closing section */
.ec-block--inline {
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  margin: 72px 0 40px;
}

/* Modal variant — inside exit-intent modal; no extra bg/border (modal provides it) */
.ec-block--modal {
  padding: 0;
}

.ec-inner { width: 100%; }

.ec-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.ec-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* Hide heading/sub inside modal variant (modal supplies its own) */
.ec-block--modal .ec-copy { display: none; }

.ec-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.ec-form { width: 100%; }

.ec-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }

.ec-email-row {
  display: flex;
  gap: 10px;
}

.ec-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-primary);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.ec-input::placeholder { color: var(--fg-muted); }
.ec-input:focus { border-color: var(--accent); }

.ec-btn {
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: 6px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.ec-btn:hover { background: var(--accent-glow); }
.ec-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.ec-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
}

.ec-checkbox {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.ec-consent-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.ec-status {
  font-size: 0.88rem;
  margin-top: 10px;
  border-radius: 5px;
  padding: 10px 14px;
}

.ec-status--error {
  background: rgba(220, 80, 60, 0.12);
  color: #e87e6a;
  border: 1px solid rgba(220, 80, 60, 0.2);
}

.ec-status--success {
  background: rgba(200, 164, 78, 0.1);
  color: var(--accent);
  border: 1px solid rgba(200, 164, 78, 0.2);
}

/* Hero hero-ec-wrapper positioning */
.hero-ec-wrapper { position: relative; z-index: 1; }

/* closing-ec spacing */
.closing-ec {
  max-width: 680px;
  margin: 56px auto 0;
}

/* ====== EXIT-INTENT MODAL ====== */
.eim-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.eim-overlay[hidden] { display: none \!important; }

.eim-box {
  position: relative;
  background: var(--bg-main);
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 12px;
  padding: 48px 44px 44px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.eim-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}

.eim-close:hover { color: var(--fg-primary); }

.eim-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 164, 78, 0.25);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.eim-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--fg-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.eim-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ====== THANK-YOU PAGE ====== */
.ty-main {
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}

.ty-content { max-width: 600px; }

.ty-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

.ty-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.ty-cta-primary {
  background: var(--accent);
  color: #0a1208;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.ty-cta-primary:hover { background: var(--accent-glow); }

.ty-cta-secondary {
  color: var(--fg-secondary);
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.ty-cta-secondary:hover { color: var(--fg-primary); border-color: rgba(156, 168, 142, 0.3); }

.ty-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 28px 32px;
}

.ty-teaser-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.ty-teaser-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ty-teaser-body {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ty-teaser-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.ty-teaser-link:hover { color: var(--accent-glow); }

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
  .ec-block--hero,
  .ec-block--inline { padding: 28px 20px; }
  .ec-email-row { flex-direction: column; }
  .ec-btn { width: 100%; }
  .eim-box { padding: 40px 24px 32px; }
  .ty-actions { flex-direction: column; }
}

/* ====== ROUTES INDEX ====== */

.route-filters {
  margin-bottom: 48px;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  min-width: 72px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s;
}

.filter-chip:hover {
  color: var(--fg-primary);
  border-color: rgba(200, 164, 78, 0.4);
}

.filter-chip.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(200, 164, 78, 0.35);
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.route-card {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.2s;
}

.route-card:hover {
  border-color: rgba(200, 164, 78, 0.35);
  transform: translateY(-2px);
}

.route-card-inner {
  padding: 28px;
}

.route-card-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.route-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.route-badge-duration {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 164, 78, 0.25);
}

.route-badge-season {
  background: rgba(80, 160, 200, 0.12);
  color: #64b4d4;
  border: 1px solid rgba(80, 160, 200, 0.2);
}

.route-badge-easy { background: rgba(100, 180, 80, 0.12); color: #7dc46a; border: 1px solid rgba(100, 180, 80, 0.2); }
.route-badge-moderate { background: rgba(200, 164, 78, 0.1); color: var(--accent); border: 1px solid rgba(200, 164, 78, 0.2); }
.route-badge-challenging { background: rgba(200, 80, 60, 0.1); color: #d46a58; border: 1px solid rgba(200, 80, 60, 0.2); }

.route-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.route-card-tagline {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.route-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.route-stat {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.route-card-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.route-card-highlights li {
  font-size: 0.83rem;
  color: var(--fg-secondary);
  padding: 2px 0;
  padding-left: 14px;
  position: relative;
}

.route-card-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.72rem;
}

.route-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.routes-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--fg-muted);
}

.routes-footer-nudge {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ====== ROUTES DETAIL ====== */

.route-detail-main {
  max-width: 860px;
}

.route-detail-header {
  margin-bottom: 64px;
}

.route-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.route-detail-tagline {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
}

.route-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.route-stat-item {
  flex: 1;
  min-width: 110px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-stat-item:last-child { border-right: none; }

.route-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.route-stat-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.route-diff-easy { color: #7dc46a; }
.route-diff-moderate { color: var(--accent); }
.route-diff-challenging { color: #d46a58; }

.seasonal-advisory {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(80, 160, 200, 0.08);
  border: 1px solid rgba(80, 160, 200, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.advisory-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.advisory-text { font-size: 0.9rem; color: var(--fg-secondary); line-height: 1.5; }

.route-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.share-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.share-btn {
  display: inline-block;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.82; }

.share-btn-email {
  background: var(--bg-elevated);
  color: var(--fg-primary);
  border: 1px solid var(--border);
}

.share-btn-sms {
  background: var(--bg-elevated);
  color: var(--fg-primary);
  border: 1px solid var(--border);
}

.share-btn-copy {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 164, 78, 0.3);
}

.route-intro-text {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  max-width: 700px;
}

/* Map */
.route-map-container {
  height: 380px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.route-map-caption {
  margin-top: 8px;
  color: var(--fg-muted);
}

/* Custom map marker */
.route-map-marker { background: transparent; border: none; }
.map-marker-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid rgba(200, 164, 78, 0.4);
  box-shadow: 0 0 6px rgba(200, 164, 78, 0.5);
}

/* Day blocks */
.route-days {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.route-day-block {
  border-left: 2px solid var(--accent-dim);
  padding-left: 24px;
}

.route-day-header {
  margin-bottom: 16px;
}

.day-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.route-day-stops {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-stop-card {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}

.route-stop-card.stop-overnight {
  border-color: rgba(200, 164, 78, 0.25);
  background: rgba(200, 164, 78, 0.04);
}

.stop-card-left {
  flex-shrink: 0;
  font-size: 1.1rem;
  padding-top: 2px;
}

.stop-card-body { flex: 1; }

.stop-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 4px;
}

.stop-name-link {
  color: var(--fg-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 164, 78, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.stop-name-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.stop-drive-time {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.stop-card-desc {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.55;
  margin-bottom: 8px;
}

.stop-overnight-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 164, 78, 0.25);
  padding: 2px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.stop-affiliate-cta {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(200, 164, 78, 0.05);
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: 6px;
}

.affiliate-cta-text {
  font-size: 0.83rem;
  color: var(--fg-secondary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.btn-affiliate-small {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-affiliate-small:hover { opacity: 0.82; }

/* Highlights list */
.route-highlights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.route-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.5;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.route-highlight-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* SEO content block */
.route-seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin: 36px 0 14px;
}

.route-seo-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin: 26px 0 10px;
}

.route-seo-content p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.route-seo-content ul {
  margin: 0 0 16px 20px;
}

.route-seo-content li {
  font-size: 0.93rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Booking stops section */
.route-booking-stops {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.route-booking-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
}

.route-booking-day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 52px;
}

.route-booking-name {
  flex: 1;
  font-weight: 600;
  color: var(--fg-primary);
  font-size: 0.95rem;
}

.btn-book-stop {
  display: inline-block;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a1208;
  background: var(--accent);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-book-stop:hover { opacity: 0.85; }

.route-share-footer {
  margin: 56px 0 32px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}

.share-footer-text {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  margin-bottom: 16px;
}

.route-share-footer .route-share-row {
  justify-content: center;
  margin-top: 0;
}

.route-related-nudge {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* "Featured in routes" on destination detail pages */
.featured-routes-section {
  margin-top: 48px;
}

.featured-routes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.featured-route-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.featured-route-item:hover {
  border-color: rgba(200, 164, 78, 0.3);
}

.featured-route-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.featured-route-body {
  flex: 1;
}

.featured-route-title {
  font-weight: 600;
  color: var(--fg-primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.featured-route-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.featured-route-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .route-stats-bar {
    flex-direction: column;
  }
  .route-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .route-stat-item:last-child { border-bottom: none; }
  .route-card-grid {
    grid-template-columns: 1fr;
  }
  .route-booking-card {
    flex-wrap: wrap;
  }
  .route-share-footer .route-share-row {
    justify-content: flex-start;
  }
}

/* ====== INTEREST CHIPS (email capture form) ====== */
.ec-interests {
  margin-bottom: 14px;
}

.ec-interests-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.ec-interests-opt {
  color: var(--fg-muted);
  font-weight: 400;
}

.ec-interests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-interest-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--fg-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}

.ec-interest-chip:hover {
  border-color: rgba(200, 164, 78, 0.35);
  color: var(--fg-primary);
}

.ec-interest-chip input[type="checkbox"] {
  display: none;
}

.ec-interest-chip:has(input:checked) {
  background: var(--accent-dim);
  border-color: rgba(200, 164, 78, 0.4);
  color: var(--accent);
}

/* ====== FOOTER SUBSCRIBE STRIP ====== */
.footer-subscribe {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  max-width: 520px;
}

.footer-sub-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

.footer-sub-sub {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-sub-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-sub-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-sub-input::placeholder { color: var(--fg-muted); }
.footer-sub-input:focus { border-color: var(--accent); }

.footer-sub-btn {
  padding: 10px 18px;
  background: var(--accent);
  color: #0a1208;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.footer-sub-btn:hover { background: var(--accent-glow); }
.footer-sub-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.footer-sub-legal {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-sub-status {
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-sub-ok {
  color: #7dc46a;
  font-weight: 600;
}

.footer-sub-err {
  color: #e87e6a;
}

.footer-divider {
  display: none; /* footer-subscribe bottom border serves as divider */
}

@media (max-width: 600px) {
  .footer-sub-form { flex-direction: column; }
  .footer-sub-btn { width: 100%; }
}
