/* =====================================================================
   Trails of Ethiopia — Design Tokens & Base
   ===================================================================== */
:root {
  --green: #2E9E3F;
  --green-dark: #237A31;
  --brown: #5B2A1E;
  --brown-dark: #431e15;
  --orange: #F5A623;
  --orange-dark: #d88f14;
  --cream: #FBF7F0;
  --ink: #23201d;
  --ink-soft: #55524d;
  --line: #E7DFD3;
  --white: #ffffff;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(35, 25, 15, 0.06);
  --shadow-md: 0 12px 32px rgba(35, 25, 15, 0.12);
  --shadow-lg: 0 24px 60px rgba(35, 25, 15, 0.18);

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); margin: 0 0 0.5em; color: var(--brown); line-height: 1.15; }
p { line-height: 1.7; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brown); color: #fff;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--orange); color: var(--brown-dark); }
.btn-secondary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-ghost { background: transparent; border-color: var(--brown); color: var(--brown); }
.btn-ghost:hover { background: var(--brown); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: 12.5px; color: var(--green); background: rgba(46,158,63,0.1);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(251,247,240,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; gap: 16px; flex-wrap: wrap; }
.brand img { height: 58px; width: auto; }
.main-nav ul { display: flex; gap: 24px; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--brown); position: relative; padding: 6px 0; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--green);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green); }
.header-cta { display: flex; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--brown); border-radius: 2px; }

.flash { padding: 14px 0; text-align: center; font-weight: 600; }
.flash-success { background: rgba(46,158,63,0.14); color: var(--green-dark); }
.flash-error { background: rgba(214,60,44,0.12); color: #b23422; }

/* =====================================================================
   Hero + Search Bar
   ===================================================================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(180deg, rgba(20,15,10,.55), rgba(20,15,10,.72)),
              url('../images/hero.jpg') center/cover no-repeat;
  padding: 120px 0 220px;
}
.hero-content { max-width: 720px; }
.hero .eyebrow { background: rgba(255,255,255,0.15); color: var(--orange); }
.hero h1 { color: #fff; font-size: clamp(34px, 5.5vw, 58px); margin-bottom: 18px; }
.hero p.lead { color: #f1ece2; font-size: 18px; max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: #f1ece2; font-size: 14px; font-weight: 500; }
.hero-trust svg { color: var(--orange); flex-shrink: 0; }

.search-panel {
  position: relative; z-index: 10; margin-top: -140px; margin-bottom: 40px;
}
.search-form {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: end;
  border-top: 5px solid var(--green);
}
.search-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.search-field label {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--brown);
}
.search-field .input-wrap { position: relative; }
.search-field .input-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--green); pointer-events: none;
}
.search-field select, .search-field input {
  width: 100%; padding: 13px 14px 13px 40px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: var(--font-body); background: var(--cream); color: var(--ink);
  appearance: none;
}
.search-field select:focus, .search-field input:focus { border-color: var(--green); outline: none; background: #fff; }
.search-submit { padding: 15px 30px; white-space: nowrap; grid-column: 1 / -1; }

/* =====================================================================
   Trust strip / stats
   ===================================================================== */
.stats-strip { background: var(--brown); color: #fff; padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid .stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--orange); }
.stats-grid .stat-label { font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; color: #e9ded3; }

/* =====================================================================
   Vehicle cards
   ===================================================================== */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vehicle-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease; border: 1px solid var(--line);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vehicle-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-badge {
  position: absolute; top: 14px; left: 14px; background: var(--orange); color: var(--brown-dark);
  font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em;
}
.vehicle-power {
  position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.92); color: var(--green-dark);
  font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px;
}
.vehicle-body { padding: 22px; }
.vehicle-body h3 { font-size: 19px; margin-bottom: 4px; }
.vehicle-model-line { font-size: 13px; color: var(--ink-soft); margin: 0 0 6px; }
.vehicle-model-line strong { color: var(--brown); }
.vehicle-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); margin: 10px 0 16px; }
.vehicle-meta span { display: inline-flex; align-items: center; gap: 6px; }
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--line); padding-top: 16px; }
.vehicle-price { font-family: var(--font-display); font-weight: 700; color: var(--brown); font-size: 18px; }
.vehicle-price small { font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }

/* =====================================================================
   How it works / steps
   ===================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step-card { background: #fff; border-radius: var(--radius-md); padding: 30px 24px; text-align: left; border: 1px solid var(--line); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; }

/* =====================================================================
   About / split sections
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.checklist li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.checklist svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }

/* =====================================================================
   Forms (booking / contact / admin)
   ===================================================================== */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; font-size: 14px; color: var(--brown); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 15px;
  font-family: var(--font-body); background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.checkbox-row input { margin-top: 3px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: -8px; }
.field-error { color: #b23422; font-size: 13px; }

.invoice-preview {
  background: var(--cream); border: 1.5px dashed var(--green); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 20px;
}
.invoice-preview h4 { margin: 0 0 12px; font-size: 15px; color: var(--brown); }
.invoice-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); padding: 5px 0; }
.invoice-row.invoice-total {
  border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px;
  font-weight: 700; color: var(--brown); font-size: 16px;
}
.invoice-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.invoice-table th, .invoice-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14.5px; }
.invoice-table tr.invoice-total-row td { font-weight: 700; font-size: 17px; color: var(--brown); border-top: 2px solid var(--brown); border-bottom: none; }
.invoice-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); }
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--line); }
.invoice-header img { height: 50px; }
@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  body { background: #fff; }
}

/* =====================================================================
   Map / contact
   ===================================================================== */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 0; width: 100%; height: 420px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-list li { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-list svg { color: var(--green); flex-shrink: 0; }
.contact-info-list h4 { margin: 0 0 4px; font-size: 15.5px; color: var(--brown); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--brown-dark); color: #ede4d8; margin-top: 60px; }
.footer-top { padding: 72px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-about { font-size: 14px; color: #cdbfae; line-height: 1.75; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h4 { color: var(--orange); font-size: 15px; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; color: #cdbfae; transition: color .15s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: #cdbfae; }
.footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-newsletter p { font-size: 13.5px; color: #cdbfae; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: #fff; font-size: 14px;
}
.newsletter-form input::placeholder { color: #cdbfae; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 13px; color: #b2a291; flex-wrap: wrap; gap: 8px; }

/* =====================================================================
   Admin panel
   ===================================================================== */
.admin-body { background: #F4F1EA; min-height: 100vh; }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--brown-dark); color: #fff; padding: 26px 18px; }
.admin-sidebar .brand-mini { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; padding: 0 8px; }
.admin-sidebar .brand-mini img { height: 36px; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius-sm);
  color: #e6dccc; font-weight: 600; font-size: 14.5px; margin-bottom: 4px;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-main { padding: 30px 36px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); padding: 24px; box-shadow: var(--shadow-sm); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat h3 { font-size: 28px; margin: 0; }
.admin-stat span { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.admin-table th { text-transform: uppercase; font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); }
.admin-table img { width: 56px; height: 40px; object-fit: cover; border-radius: 6px; }
.badge { padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-green { background: rgba(46,158,63,0.14); color: var(--green-dark); }
.badge-orange { background: rgba(245,166,35,0.16); color: var(--orange-dark); }
.badge-gray { background: #eee; color: #666; }

/* ---- Vehicle search results toolbar / chips / empty state ------------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px; background: #fff;
  border: 1.5px solid var(--line); color: var(--brown); font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; text-decoration: none; transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--green); color: var(--green-dark); }
.filter-chip span { font-size: 11px; opacity: .7; }
.filter-chip-clear { background: var(--brown); color: #fff; border-color: var(--brown); }
.filter-chip-clear:hover { background: var(--brown-dark); color: #fff; }
.results-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.results-count { font-weight: 700; color: var(--brown); font-size: 15px; }
.sort-form { display: flex; align-items: center; gap: 8px; }
.sort-form label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.sort-form select {
  padding: 8px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; background: #fff; color: var(--ink); font-family: var(--font-body);
}
.empty-state {
  grid-column: 1/-1; text-align: center; padding: 50px 20px; background: #fff;
  border: 1.5px dashed var(--line); border-radius: var(--radius-md);
}
.empty-state p { margin: 0 0 6px; }
.empty-state .btn { margin-top: 14px; }

/* ---- Admin toolbar / search / CSV export additions --------------------- */
.admin-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; margin-bottom: 18px;
}
.admin-filter-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-filter-form input[type="text"], .admin-filter-form input[type="search"], .admin-filter-form select {
  padding: 9px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body); background: #fff; color: var(--ink);
}
.admin-status-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-status-tabs a {
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line); color: var(--ink-soft); text-decoration: none;
}
.admin-status-tabs a.active { background: var(--brown); color: #fff; border-color: var(--brown); }
.admin-stat-link { text-decoration: none; display: block; }
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--brown-dark); padding: 20px; }
.login-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.login-card img { height: 60px; margin: 0 auto 20px; }
.action-row { display: flex; gap: 8px; }
.icon-btn {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--brown);
}
.icon-btn.danger { color: #b23422; border-color: #f0d5cf; }
.icon-btn:hover { background: var(--cream); }
.icon-btn-label {
  height: 34px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--green); background: var(--green);
  display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.icon-btn-label:hover { background: var(--green-dark); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .search-form { grid-template-columns: repeat(2, 1fr); }
  .search-submit { grid-column: span 2; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 210px 1fr; }
}

/* =====================================================================
   Testimonials
   ===================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 15.5px; line-height: 1.7; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-person h4 { font-size: 14.5px; margin: 0; color: var(--brown); }
.testimonial-person span { font-size: 12.5px; color: var(--ink-soft); }

/* =====================================================================
   FAQ Accordion
   ===================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--brown);
  font-family: var(--font-display); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .2s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* =====================================================================
   Destination strip
   ===================================================================== */
.destination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.destination-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.destination-card:hover img { transform: scale(1.06); }
.destination-card .destination-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px;
  background: linear-gradient(to top, rgba(20,12,8,.85), transparent);
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15px;
}

@media (max-width: 760px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column;
    max-height: 0; overflow: hidden; transition: max-height .25s ease; box-shadow: var(--shadow-md); }
  .main-nav.open { max-height: 500px; }
  .main-nav ul { flex-direction: column; padding: 20px 24px; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding: 70px 0 260px; }
  .search-panel { margin-top: -220px; }
  .search-form { grid-template-columns: 1fr; padding: 20px; }
  .search-submit { grid-column: span 1; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
