
/* ═══════════════════════════════════════════════════════
   HUB PAGE STYLES (pickup, category, fleet, all indexes)
═══════════════════════════════════════════════════════ */

.hub-hero {
  position: relative; min-height: 440px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-color: var(--cabernet-dark);
}
.hub-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,12,16,.97) 0%, rgba(24,12,16,.78) 55%, rgba(24,12,16,.35) 100%);
}
.hub-hero-inner {
  position: relative; padding: 64px 0 56px; color: white;
}
.hub-route {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--gold-line);
  background: rgba(216,181,109,.08);
  padding: 8px 18px;
  border-radius: 6px;
}
.hub-route span {
  color: var(--gold); font-size: 12px; font-weight: 900;
  letter-spacing: .05em; text-transform: uppercase;
}
.hub-route svg { color: var(--gold); }
.hub-hero-inner h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.06;
  color: white; margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.hub-lede {
  margin-top: 14px; max-width: 660px;
  font-family: Georgia, serif; font-size: 17px; line-height: 1.6;
  color: #ede0cc;
}
.hub-stats {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 26px;
}
.hub-stats div {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.hub-stats strong {
  font-family: Georgia, serif; color: var(--gold);
  font-size: 22px; line-height: 1;
}
.hub-stats span { color: #d9cdb9; font-size: 12px; font-weight: 600; }

/* Tour grid section */
.hub-tours-section {
  background: var(--cream); padding: 64px 0;
}
.hub-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* Pickup spots */
.hub-pickup-spots {
  background: var(--ivory); padding: 56px 0;
  border-top: 1px solid var(--line);
}
.hub-spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.hub-spot-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line); border-radius: 8px;
  color: var(--cabernet); font-size: 14px; font-weight: 600;
}
.hub-spot-icon { font-size: 18px; }

/* Cities/categories grid (pill cards) */
.hub-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.hub-city-pill {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line); border-radius: 9px;
  color: inherit;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.hub-city-pill:hover {
  background: var(--cabernet); transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(43,15,22,.15);
}
.hub-city-pill:hover * { color: white !important; }
.hub-city-pill strong { color: var(--cabernet); font-size: 16px; font-family: Georgia, serif; }
.hub-city-pill span { color: var(--muted); font-size: 13px; }

/* Content narrative section */
.hub-content-section {
  background: var(--ivory); padding: 56px 0;
}
.hub-content-narrative {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted); font-size: 16px; line-height: 1.75;
}
.hub-content-narrative h2 {
  color: var(--cabernet); font-family: Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 28px 0 12px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.hub-content-narrative h3 { color: var(--cabernet); font-size: 18px; margin: 22px 0 10px; }
.hub-content-narrative p { margin: 0 0 14px; }
.hub-content-narrative a { color: #7b2035; text-decoration: underline; text-decoration-color: rgba(123,32,53,.3); }
.hub-content-narrative a:hover { text-decoration-color: #7b2035; }

.hub-cta-band {
  max-width: 800px; margin: 40px auto 0;
  background: var(--cabernet); color: white;
  border-radius: 10px; padding: 32px;
  text-align: center;
}
.hub-cta-band h3 { color: var(--gold); font-family: Georgia, serif; font-size: 22px; margin: 0 0 10px; }
.hub-cta-band p { color: #d9cdb9; margin: 0 0 18px; }

/* Nearby section */
.hub-nearby { background: var(--cream); padding: 56px 0; }

/* Fleet detail */
.fleet-detail-section {
  background: var(--ivory); padding: 56px 0;
}
.fleet-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.fleet-detail-grid h2 {
  color: var(--cabernet); font-family: Georgia, serif;
  font-size: 24px; margin: 0 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold);
}
.fleet-features-list {
  list-style: none; padding: 0;
  color: var(--ink);
}
.fleet-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.fleet-features-list li:last-child { border-bottom: none; }

@media (max-width: 980px) {
  .fleet-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .hub-stats { gap: 18px; }
}
