/* ============================================================
   VEHICLE DETAIL PAGE — premium product layout
   Reused for all 8 dune-buggy variants
   ============================================================ */

/* ===== Hero ===== */
.veh-hero {
  position: relative;
  background: var(--teal-night);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px) 0;
}
.veh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 30%, rgba(232, 101, 43, 0.20), transparent 60%),
              linear-gradient(180deg, rgba(7, 47, 56, 0.4) 0%, var(--teal-night) 100%);
  pointer-events: none;
}
.veh-hero .wrap { position: relative; z-index: 1; }

.veh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
@media (max-width: 1024px) { .veh-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Visual side */
.veh-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, #E8652B 0%, #C2410C 55%, #141210 100%);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
.veh-visual[data-palette="orange-dark"]   { background: linear-gradient(135deg, #E8652B 0%, #C2410C 55%, #141210 100%); }
.veh-visual[data-palette="gold-hour"]      { background: linear-gradient(135deg, #D4A843 0%, #E8652B 55%, #3A332C 100%); }
.veh-visual[data-palette="teal-night"]     { background: linear-gradient(135deg, #134E5A 0%, #0D4F5C 55%, #072F38 100%); }
.veh-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.veh-visual-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04) brightness(.82);
  transform: scale(1.01);
}
.veh-visual::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 20, 24, 0.04) 0%, rgba(20, 18, 16, 0.18) 46%, rgba(20, 18, 16, 0.70) 100%),
    radial-gradient(ellipse at 78% 18%, rgba(255, 224, 168, 0.18), transparent 42%);
  pointer-events: none;
}
.veh-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.veh-meta-strip {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 2;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.veh-meta-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Content side */
.veh-content { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.veh-breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.72);
}
.veh-breadcrumb a { color: var(--gold); text-decoration: none; }
.veh-breadcrumb a:hover { color: var(--orange-soft); }
.veh-breadcrumb span:last-child { color: rgba(247, 243, 236, 0.92); }

.veh-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.veh-content h1 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.veh-content .veh-sub {
  margin: 6px 0 4px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.86);
  max-width: 560px;
}

.veh-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 10px; }
.veh-chip {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.32);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.veh-from {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(247, 243, 236, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 6px;
}
.veh-from .from-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.veh-from .from-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(232, 101, 43, 0.38);
}
.veh-from .from-num .cur { font-size: 0.55em; color: var(--gold); margin-right: 4px; }
.veh-from .from-meta { color: rgba(247, 243, 236, 0.72); font-size: 12.5px; }

.veh-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.veh-ctas .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s var(--ease-spring), box-shadow .25s, background .25s;
}
.veh-ctas .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(232, 101, 43, 0.4);
}
.veh-ctas .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 101, 43, 0.55); }
.veh-ctas .btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.45);
}
.veh-ctas .btn-ghost:hover { background: rgba(212, 168, 67, 0.14); }

/* ===== Sticky booking summary card ===== */
.veh-stick-bar {
  position: sticky;
  top: 113px;
  z-index: 25;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.veh-stick-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.veh-stick-meta {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.veh-stick-title { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 17px; color: var(--ink); letter-spacing: -0.015em; }
.veh-stick-price {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.veh-stick-price small { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--ink-soft); margin-left: 6px; text-transform: uppercase; font-style: normal; }
.veh-stick-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.32);
  transition: transform .25s var(--ease-spring);
}
.veh-stick-cta:hover { transform: translateY(-1px); }

@media (max-width: 720px) {
  .veh-stick-inner { padding: 10px 0; }
  .veh-stick-title { display: none; }
  .veh-stick-meta { gap: 10px; }
  .veh-stick-price { font-size: 18px; }
  .veh-stick-cta { padding: 9px 14px; font-size: 12.5px; }
}

/* ===== Section base ===== */
.veh-section { padding: clamp(40px, 5vw, 72px) 0; }
.veh-section[data-tone="warm"] { background: var(--bg-warm); }
.veh-section[data-tone="paper"] { background: var(--bg); }
.veh-section[data-tone="dark"] { background: var(--teal-deep); color: var(--paper); }
.veh-section[data-tone="dark"] h2 { color: var(--paper); }

.veh-section .v-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.veh-section .v-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
.veh-section h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
}
.veh-section h2 .accent { color: var(--orange); }
.veh-section .lead { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-width: 620px; margin: 0 auto; }
.veh-section[data-tone="dark"] .lead { color: rgba(247, 243, 236, 0.78); }

/* ===== Specs grid ===== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 8px;
}
@media (max-width: 720px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
.spec-item {
  padding: 18px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--paper) 100%);
}
.spec-label {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.spec-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  line-height: 1.1;
}
.spec-value small { font-size: 12px; color: var(--ink-soft); font-style: normal; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.14em; margin-left: 4px; }

/* ===== Duration pricing cards ===== */
.dur-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.dur-pcard {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s, transform .25s var(--ease-spring), box-shadow .25s;
  text-decoration: none;
  color: var(--ink);
}
.dur-pcard:hover { transform: translateY(-3px); border-color: rgba(232, 101, 43, 0.32); box-shadow: 0 14px 32px -12px rgba(20, 18, 16, 0.16); }
.dur-pcard.is-best { border-color: rgba(232, 101, 43, 0.4); background: linear-gradient(180deg, rgba(232, 101, 43, 0.06), var(--paper)); }
.dur-pcard .dp-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dur-pcard h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dur-pcard .dp-price {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}
.dur-pcard .dp-meta { font-size: 12.5px; color: var(--ink-soft); }
.dur-pcard .dp-cta {
  margin-top: auto;
  padding-top: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.dp-tag {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.dp-tag.tag-new { background: var(--gold); color: var(--teal-deep); }

/* ===== Audience (Who is this buggy for) ===== */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 720px) { .aud-grid { grid-template-columns: 1fr; } }
.aud-card {
  padding: 24px 26px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.aud-card.aud-good { border-color: rgba(232, 101, 43, 0.3); }
.aud-card.aud-avoid { background: var(--bg-warm); }
.aud-card h3 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.aud-icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  font-weight: 700;
}
.aud-good .aud-icon { background: rgba(232, 101, 43, 0.16); color: var(--orange); }
.aud-avoid .aud-icon { background: rgba(13, 79, 92, 0.12); color: var(--teal); }
.aud-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; line-height: 1.55; color: var(--ink); }
.aud-list li { display: flex; align-items: flex-start; gap: 8px; }
.aud-list li::before { content: '•'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== Ride experience ===== */
.feel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .feel-grid { grid-template-columns: 1fr; } }
.feel-tile {
  padding: 22px 22px;
  border-radius: 14px;
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.22);
  color: var(--paper);
}
.veh-section[data-tone="paper"] .feel-tile,
.veh-section[data-tone="warm"] .feel-tile {
  background: var(--paper);
  border-color: var(--hairline);
  color: var(--ink);
}
.feel-tile .ft-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.feel-tile h3 {
  margin: 0 0 6px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.veh-section[data-tone="paper"] .feel-tile h3 { color: var(--ink); }
.feel-tile p { margin: 0; font-size: 13.5px; line-height: 1.55; }
.veh-section[data-tone="dark"] .feel-tile p { color: rgba(247, 243, 236, 0.78); }
.veh-section[data-tone="paper"] .feel-tile p,
.veh-section[data-tone="warm"] .feel-tile p { color: var(--ink-soft); }

/* ===== Included list ===== */
.incl-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) { .incl-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .incl-list { grid-template-columns: 1fr; } }
.incl-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
}
.incl-list li::before {
  content: '✓';
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232, 101, 43, 0.14);
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

/* ===== Safety note ===== */
.safety-note {
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-night));
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--paper);
}
.safety-note h3 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
}
.safety-note ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.88);
  line-height: 1.55;
}
.safety-note li { display: flex; align-items: flex-start; gap: 8px; }
.safety-note li::before { content: '⚠'; color: var(--gold); flex-shrink: 0; }

/* ===== Cancellation policy mini ===== */
.cancel-mini {
  padding: 22px 26px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
}
.cancel-mini h3 { margin: 0 0 10px; font-family: 'Fraunces', serif; font-style: italic; font-size: 20px; color: var(--ink); }
.cancel-mini ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 13.5px; color: var(--ink-soft); }
.cancel-mini ul li { display: flex; gap: 8px; align-items: baseline; }
.cancel-mini ul li b { color: var(--orange); font-weight: 600; min-width: 92px; flex-shrink: 0; }
.cancel-mini .cm-link { display: inline-block; margin-top: 12px; color: var(--orange); font-weight: 600; font-size: 13px; text-decoration: none; border-bottom: 1px dashed rgba(232,101,43,0.4); }

/* ===== FAQ accordion (vehicle) ===== */
.veh-faq { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
.veh-faq details {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 0 20px;
  transition: border-color .25s, box-shadow .25s;
}
.veh-faq details[open] { border-color: rgba(232, 101, 43, 0.5); box-shadow: 0 8px 20px -10px rgba(232, 101, 43, 0.18); }
.veh-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 4px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.veh-faq summary::-webkit-details-marker { display: none; }
.veh-faq summary::after {
  content: '+';
  margin-left: auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.16);
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring), background .25s, color .25s;
}
.veh-faq details[open] summary::after { content: '−'; transform: rotate(180deg); background: var(--orange); color: var(--paper); }
.veh-faq .answer {
  padding: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-left: 4px;
  margin-bottom: 0;
}

/* ===== Related vehicles ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.rel-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .25s, transform .25s var(--ease-spring), box-shadow .25s;
}
.rel-card:hover { transform: translateY(-3px); border-color: rgba(232, 101, 43, 0.32); box-shadow: 0 12px 28px -12px rgba(20, 18, 16, 0.16); }
.rel-card .rc-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.rel-card h3 { margin: 0; font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: -0.015em; color: var(--ink); }
.rel-card p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.rel-card .rc-arrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Final CTA on detail page ===== */
.veh-final {
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232, 101, 43, 0.22), transparent 70%),
              linear-gradient(180deg, var(--teal-night), var(--teal-deep));
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.veh-final h2 { color: var(--paper); }
.veh-final h2 .accent { color: var(--orange); }
.veh-final p { color: rgba(247, 243, 236, 0.78); max-width: 580px; margin: 0 auto 22px; }
.veh-final .veh-ctas { justify-content: center; }

/* About + Ride prose */
.veh-prose { max-width: 820px; margin: 0 auto; }
.veh-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}
.veh-section[data-tone="dark"] .veh-prose p { color: rgba(247, 243, 236, 0.88); }
.veh-prose p:last-child { margin-bottom: 0; }
.veh-prose a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px dashed rgba(232, 101, 43, 0.4);
  transition: color .2s, border-color .2s;
}
.veh-prose a:hover { color: var(--orange-deep); border-bottom-color: var(--orange-deep); }

/* =====================================================
   DURATION CLUSTER PAGES — /dune-buggy-dubai/{slug}/
   ===================================================== */

/* ---- Vehicle filter grid ---- */
.dur-veh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.dur-veh-card {
  background: #fff;
  border: 1px solid rgba(20, 18, 16, 0.08);
  border-radius: 14px;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dvc-media {
  position: relative;
  margin: 0 -20px 10px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--teal-night);
}
.dvc-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .35s ease;
}
.dur-veh-card:hover .dvc-media img { transform: scale(1.04); }
.dvc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 18, 16, .24) 100%);
  pointer-events: none;
}
.dur-veh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -22px rgba(20, 18, 16, 0.22);
  border-color: rgba(232, 101, 43, 0.32);
}
.dvc-tier {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.dvc-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.dvc-stats {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
}
.dvc-stats b { color: var(--ink); font-weight: 600; }
.dvc-blurb {
  margin: 4px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.dvc-best {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 8px 10px;
  background: var(--sand-warm, #FBF7F0);
  border-radius: 8px;
}
.dvc-best span { color: var(--ink); font-weight: 500; }
.dvc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(20, 18, 16, 0.12);
}
.dvc-from {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dvc-amt {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.dvc-amt .cur {
  font-size: 13px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: var(--orange);
  margin-right: 3px;
  letter-spacing: 0.05em;
}
.dvc-dur {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-left: auto;
}
.dvc-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.dvc-ctas .btn {
  font-size: 13px;
  padding: 10px 12px;
  text-align: center;
  justify-content: center;
}

/* ---- Good for / Not good for ---- */
.dur-good-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 28px auto 0;
}
.dur-good-col {
  background: #fff;
  border: 1px solid rgba(20, 18, 16, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}
.dgc-h {
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal, #0D4F5C);
  font-weight: 600;
}
.dgc-h.is-not { color: var(--ink-soft); }
.dgc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.dgood {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.dgood-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(13, 79, 92, 0.12);
  color: var(--teal, #0D4F5C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.dgood.is-not .dgood-icon {
  background: rgba(20, 18, 16, 0.08);
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .dur-good-grid { grid-template-columns: 1fr; }
}

/* ---- Duration compare strip ---- */
.dur-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.dur-strip-card {
  background: #fff;
  border: 1px solid rgba(20, 18, 16, 0.1);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dur-strip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 101, 43, 0.45);
  box-shadow: 0 12px 24px -16px rgba(20, 18, 16, 0.2);
}
.dur-strip-card.is-self {
  background: linear-gradient(180deg, var(--orange, #E8652B), var(--orange-deep, #C2410C));
  border-color: var(--orange-deep, #C2410C);
  pointer-events: none;
}
.dur-strip-card.is-self .dsc-label,
.dur-strip-card.is-self .dsc-from,
.dur-strip-card.is-self .dsc-meta { color: #fff; }
.dsc-label {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dsc-from {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.dsc-meta {
  font-size: 11.5px;
  color: var(--ink-soft);
}
