/* الافتراضي = Dark */
:root {
  --bg: #fdf8f0;
  --bg-alt: #f0ebe0;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #4a5568;
  --gold: #c9912e;
  --gold-dark: #a67520;
  --green: #1f8a5d;
  --border: #ddd5c8;
  --radius: 14px;
  font-size: 16px;
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem; }
.center { text-align: center; }
.muted { color: var(--muted); }

h1, h2, h3 { font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .8rem; }
h3 { font-size: 1.18rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .8rem;
}

.lead { color: var(--muted); font-size: 1.08rem; max-width: 760px; }
.lead.center { margin: 0 auto 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  background: var(--card);
  color: var(--text);
}
.btn-gold { background: var(--gold); color: #1a1505; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.35); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-small { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; text-align: center; }
.btn-danger { background: #8c2f39; color: #fff; }

/* Header */
.announcement {
  background: var(--gold); color: #1a1505;
  text-align: center; font-weight: 600; font-size: .9rem; padding: .45rem 1rem;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; }
.main-nav { display: flex; align-items: center; gap: 1.6rem; font-weight: 500; }
.main-nav a:not(.btn):hover, .main-nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* Flash */
.flash {
  max-width: 1180px; margin: 1rem auto 0; padding: .8rem 1.2rem;
  border-radius: var(--radius); font-weight: 500;
}
.flash-success { background: rgba(31,138,93,.18); border: 1px solid var(--green); color: #7fd9ae; }
.flash-error { background: rgba(140,47,57,.18); border: 1px solid #8c2f39; color: #f0a3ab; }

/* Hero */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg svg { width: 100%; height: 100%; opacity: 0.15; }
.hero { background: linear-gradient(135deg, #f5deb3 0%, #d4956a 50%, #c8843a 100%); }
.hero-sub { color: #ffffff !important; }
.hero-content { position: relative; z-index: 2; padding: 6rem 1.4rem; max-width: 1180px; }
.hero-sub { font-size: 1.18rem; color: #d8dce6; max-width: 560px; margin: 1.1rem 0 1.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sections */
.section { padding: 4.5rem 0; }
.section.alt, .about { background: var(--bg-alt); }

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin: 2.6rem 0;
}
.stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.2rem; text-align: center;
}
.stat-value { display: block; font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.stat-label { color: var(--muted); font-size: .9rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .8rem; font-weight: 600;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(232,179,75,.12); display: grid; place-items: center;
}

/* Offers */
.offers { padding-top: 0; background: var(--bg-alt); }
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; padding-top: 4.5rem; }
.offer-card {
  display: flex; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.offer-card img { width: 38%; object-fit: cover; }
.offer-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.offer-body p { color: var(--muted); font-size: .95rem; flex: 1; }

/* Tour cards */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.4rem; }
.tour-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,145,46,0.2);
}
.tour-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.tour-body h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.tour-body p { color: var(--muted); font-size: .9rem; flex: 1; line-height: 1.6; }
.tour-meta { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .2rem; }
.chip {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  background: var(--gold); color: #1a1505; padding: .2rem .65rem; border-radius: 999px;
}
.chip-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.tour-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .6rem; padding-top: .8rem; border-top: 1px solid var(--border);
}
.price { color: var(--gold); font-weight: 800; font-size: 1.05rem; }
.link-arrow {
  color: var(--muted); font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: .3rem;
  transition: color .2s, gap .2s;
}
.tour-card:hover .link-arrow { color: var(--gold); gap: .5rem; }

/* Page head */
.page-head { padding: 4.5rem 0 1.5rem; }
.page-head .lead { margin-top: .6rem; }
.tour-head .tour-meta { margin-bottom: 1rem; }

/* Tour detail */
.tour-detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2.2rem; align-items: start; }
.tour-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.8rem; }
.prose { color: #cfd5e1; margin-top: .6rem; white-space: pre-line; }
.info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem;
}
.info-strip > div { display: flex; flex-direction: column; gap: .2rem; }
.info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* Booking card */
.booking-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; position: sticky; top: 90px;
}
.booking-card h3 { margin-bottom: .3rem; }
.booking-card .muted { font-size: .88rem; margin-bottom: 1rem; }

/* Forms */
label { display: flex; flex-direction: column; gap: .3rem; font-size: .88rem; font-weight: 600; margin-bottom: .9rem; }
input, textarea, select {
  font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 9px;
  padding: .65rem .8rem; width: 100%;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2.5rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.1rem; }
.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem;
}

/* Fleet */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.4rem; }
.fleet-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.fleet-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.fleet-body { padding: 1.2rem; }
.fleet-body .muted { font-size: .82rem; margin: .25rem 0 .6rem; }
.fleet-body p:last-child { font-size: .9rem; color: #c4cad7; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #2a1f3d 0%, #7a4a2b 100%);
}
.cta .lead { margin: 1rem auto 1.8rem; color: #e8e2d6; }

/* Footer */
.site-footer { background: #0a0d13; border-top: 1px solid var(--border); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { margin-bottom: .8rem; }
.site-footer h4 { margin-bottom: .8rem; color: var(--gold); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer a { display: block; color: var(--muted); margin-bottom: .5rem; }
.site-footer a:hover { color: var(--gold); }
.socials { display: flex; gap: .9rem; margin-top: .8rem; }
.socials a { color: var(--muted); }
.socials a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.2rem 1.4rem;
  color: var(--muted); font-size: .85rem;
}

/* Responsive */
@media (max-width: 920px) {
  .stats-grid, .features-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .tour-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .tour-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-alt); padding: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .offer-card { flex-direction: column; }
  .offer-card img { width: 100%; height: 160px; }
}
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.theme-toggle:hover { opacity: 0.7; }
/* Light navbar fix */
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #ddd5c8;
}

.site-header .logo span,
.site-header .main-nav a,
.site-header .nav-row {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.site-header .main-nav a:hover {
  color: var(--gold) !important;
}

/* Hero text fix */
.hero h1, .hero h2, .hero p,
.hero .eyebrow {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
/* Map Section */
.map-section { background: var(--bg-alt); }

#ridesMap {
  height: 520px !important;
  width: 100%;
  border-radius: 16px;
  z-index: 1;
}

.leaflet-container {
  font-family: 'Outfit', sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  border: none !important;
}

.leaflet-popup-tip {
  background: #fff !important;
}
/* Hero Slider */
.hero { position: relative; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-default {
  background: linear-gradient(160deg, #0d1321 0%, #2a1f3d 60%, #7a4a2b 100%);
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: background 0.3s;
}
.hero-dot.active { background: var(--gold, #c9912e); }
/* Fix: navbar and btn-gold text stay dark */
.site-header .main-nav a,
.site-header .logo span,
.site-header .nav-row * {
  color: #1a1a2e !important;
  text-shadow: none !important;
}
.btn-gold {
  color: #1a1505 !important;
  text-shadow: none !important;
}
.btn-ghost {
  color: #ffffff !important;
  text-shadow: none !important;
}
.leaflet-popup-content-wrapper {
  background: rgba(10, 10, 15, 0.88) !important;
  color: #e8e8e8 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7) !important;
}

.leaflet-popup-tip {
  background: rgba(10, 10, 15, 0.88) !important;
}

.leaflet-popup-close-button {
  color: rgba(255,255,255,0.6) !important;
}
.custom-marker {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50% 50% 50% 0;
  width: 28px;
  height: 28px;
  transform: rotate(-45deg);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.city-label {
  background: rgba(8, 8, 12, 0.78) !important;
  color: #f5f5f5 !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 999px !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35) !important;
}
.city-label::before {
  display: none !important;
}
/* ============================================
   2026 CARD REDESIGN — Spots & Routes
   ============================================ */

/* Spot cards */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.spot-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.spot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11), 0 0 0 1px rgba(201,145,46,0.18);
}
.spot-img {
  position: relative;
  height: 210px;
}
.spot-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.spot-card:hover .spot-img img { transform: scale(1.04); }
.spot-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #a9692f 100%);
}
.spot-difficulty {
  position: absolute;
  top: 12px; right: 12px;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  backdrop-filter: blur(4px);
}
.diff-easy { background: rgba(46,139,87,0.9); }
.diff-moderate { background: rgba(201,145,46,0.9); }
.diff-challenging { background: rgba(210,105,30,0.9); }
.diff-expert { background: rgba(179,56,44,0.9); }
.spot-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.spot-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.spot-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.spot-notes {
  background: rgba(201,145,46,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: .75rem 1rem;
}
.spot-notes-label {
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}
.spot-notes p {
  font-size: .84rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.spot-booking-notice {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,145,46,0.08);
  border: 1px solid rgba(201,145,46,0.25);
  border-radius: 8px;
  padding: .55rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  flex-wrap: wrap;
}
.spot-booking-notice a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}
.spot-maps-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: .45rem 0;
  border-top: 1px solid var(--border);
  margin-top: .2rem;
  transition: color .2s;
}
.spot-maps-link:hover { color: var(--gold); }

/* Route cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}
.route-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11), 0 0 0 1px rgba(201,145,46,0.18);
}
.route-img {
  position: relative;
  height: 230px;
}
.route-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.route-card:hover .route-img img { transform: scale(1.04); }
.route-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #a9692f 100%);
}
.route-captains-pick {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #1a1505;
  padding: .28rem .85rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.route-style-tags {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex; gap: .35rem;
}
.route-style-tag {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: .18rem .6rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(6px);
}
.route-body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}
.route-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.route-meta-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.route-meta-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.route-difficulty-badge {
  padding: .18rem .65rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.route-journey {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,145,46,0.07);
  border: 1px solid rgba(201,145,46,0.15);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .85rem;
  font-weight: 700;
}
.route-from { flex: 1; color: var(--text); }
.route-to { flex: 1; text-align: right; color: var(--gold); }
.route-the-ride {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.route-payoff {
  background: rgba(201,145,46,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: .75rem 1rem;
}
.route-payoff-label {
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}
.route-payoff p {
  font-size: .84rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.route-weather {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  background: rgba(201,145,46,0.06);
  border: 1px solid rgba(201,145,46,0.2);
  border-radius: 8px;
  padding: .6rem .85rem;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.5;
}
.route-maps-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: .45rem 0;
  border-top: 1px solid var(--border);
  margin-top: .2rem;
  transition: color .2s;
}
.route-maps-link:hover { color: var(--gold); }
.read-more-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: .2rem;
  font-family: inherit;
  letter-spacing: .02em;
}
.read-more-btn:hover { text-decoration: underline; }
/* Filter buttons */
.spot-filters, .route-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.spot-filter-btn, .route-filter-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  color: var(--muted);
}
.spot-filter-btn:hover, .route-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.spot-filter-btn.active, .route-filter-btn.active { background: var(--gold); color: #1a1505; border-color: var(--gold); }
.spot-card.hidden, .route-card.hidden { display: none; }
/* Read more */
.route-the-ride-wrap, .route-payoff-wrap {
  position: relative;
}
.route-the-ride-wrap p, .route-payoff-wrap p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.route-the-ride-wrap.expanded p, .route-payoff-wrap.expanded p {
  -webkit-line-clamp: unset;
  display: block;
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 0.3rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  display: block;
}
.read-more-btn:hover { text-decoration: underline; }