/* ============================================================
   PILLAR PAGE — Dune Buggy Dubai (and reusable for all pillars)
   Inherits brand tokens from main.css (--orange, --teal, etc.)
   ============================================================ */

/* ===== Pillar hero v2 — split layout with 3-card stack ===== */
.pillar-hero {
  position: relative;
  min-height: 88vh;
  background: var(--teal-night);
  color: var(--paper);
  overflow: hidden;
  display: flex; align-items: center;
}
.pillar-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pillar-hero-bg .hero-dune-bg { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: 0.6; pointer-events: none; }
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.04) contrast(1.04) brightness(0.72);
}
.hero-glow {
  position: absolute;
  z-index: 4;
  width: 800px; height: 800px;
  right: -200px; top: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 43, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.pillar-hero-inner { position: relative; z-index: 2; padding: clamp(40px, 6vw, 80px) 0; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 1024px) {
  .pillar-hero { min-height: auto; padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
}

/* ----- Left column ----- */
.hero-left .breadcrumb {
  margin-bottom: 18px;
}
.hero-left .breadcrumb a { color: var(--gold); }
.hero-left .breadcrumb .bc-sep { color: rgba(247, 243, 236, 0.4); margin: 0 4px; }

.hero-left .pillar-hero-sub { max-width: 560px; }

/* ----- Right column: 3-card stack ----- */
.hero-right { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.card-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.cs-card {
  position: absolute;
  border-radius: 200px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(247, 243, 236, 0.05);
  transition: transform .6s var(--ease-spring), box-shadow .4s;
}
.cs-card svg, .cs-card video, .cs-card img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.cs-card img {
  position: absolute;
  inset: 0;
  filter: saturate(1.02) contrast(1.06) brightness(0.86);
}
body[data-page="dune-buggy"] .cs-center .pillar-hero-video,
body[data-page="dune-buggy"] .cs-center .cs-mute {
  display: none;
}
body[data-page="dune-buggy"] .cs-center .cs-center-photo {
  z-index: 0;
}
.cs-card.cs-left {
  width: 200px; height: 380px;
  left: 0; top: 50%;
  transform: translate(0, -50%) rotate(-6deg);
  z-index: 1;
}
.cs-card.cs-center {
  width: 280px; height: 480px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 40px 100px -20px rgba(232, 101, 43, 0.4), 0 0 0 4px rgba(212, 168, 67, 0.25);
}
.cs-card.cs-right {
  width: 200px; height: 380px;
  right: 0; top: 50%;
  transform: translate(0, -50%) rotate(6deg);
  z-index: 2;
}
.card-stack:hover .cs-card.cs-left { transform: translate(-12px, -50%) rotate(-9deg); }
.card-stack:hover .cs-card.cs-right { transform: translate(12px, -50%) rotate(9deg); }
.card-stack:hover .cs-card.cs-center { transform: translate(-50%, -52%) scale(1.02); }

/* Center card meta strip */
.cs-meta {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--paper);
  white-space: nowrap;
  z-index: 4;
}
.cs-meta .dot { position: relative; width: 6px; height: 6px; display: inline-block; }
.cs-meta .dot-ping { position: absolute; inset: 0; border-radius: 50%; background: var(--orange); opacity: 0.85; animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }
.cs-meta .dot-core { position: relative; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.cs-mute {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 4;
  transition: background .25s, transform .25s var(--ease-spring);
}
.cs-mute:hover { background: rgba(232, 101, 43, 0.85); transform: scale(1.08); }
.cs-mute .ico-sound { display: none; }
.cs-mute[aria-pressed="true"] .ico-muted { display: none; }
.cs-mute[aria-pressed="true"] .ico-sound { display: block; }

@media (max-width: 720px) {
  .card-stack { height: 420px; max-width: 380px; }
  .cs-card.cs-left { width: 130px; height: 280px; }
  .cs-card.cs-right { width: 130px; height: 280px; }
  .cs-card.cs-center { width: 200px; height: 360px; }
}
@media (max-width: 480px) {
  .card-stack { height: 360px; max-width: 320px; }
  .cs-card.cs-left { width: 100px; height: 240px; }
  .cs-card.cs-right { width: 100px; height: 240px; }
  .cs-card.cs-center { width: 170px; height: 320px; }
}

/* Compact stats row in left column */
.hero-stats-compact {
  margin-top: 28px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) {
  .hero-stats-compact { grid-template-columns: repeat(4, 1fr); }
  .hero-stats-compact .hero-stat { padding: 14px 10px; }
  .hero-stats-compact .num { font-size: 22px; }
  .hero-stats-compact .label { font-size: 9px; }
}

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.7);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-soft); }
.breadcrumb span:last-child { color: rgba(247, 243, 236, 0.85); }

.pillar-hero h1 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin: 14px 0 18px;
}
.pillar-hero.v2 h1 { font-size: clamp(40px, 5.5vw, 84px); }
.pillar-hero h1 .accent-orange { color: var(--orange); }
.pillar-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.86);
  max-width: 640px;
  margin: 0 0 22px;
}

.pillar-hero-price {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-bottom: 28px;
  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);
}
.pillar-hero-price .from-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.pillar-hero-price .from-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--orange);
  text-shadow: 0 2px 14px rgba(232, 101, 43, 0.35);
}
.pillar-hero-price .from-num .cur { font-size: 0.55em; color: var(--gold); margin-right: 4px; }
.pillar-hero-price .from-meta { color: rgba(247, 243, 236, 0.72); font-size: 13px; }

/* ===== Intro / AEO speakable card ===== */
.pillar-intro { background: var(--bg-warm); padding: clamp(40px, 5vw, 68px) 0; }
.intro-card {
  max-width: 820px; margin: 0 auto;
  padding: 32px 36px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
.intro-card .eyebrow { margin-bottom: 14px; }
.intro-card .speakable {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.intro-card .speakable strong { color: var(--orange); font-weight: 500; }

/* ===== Fleet grid (8 cards) ===== */
.pillar-fleet { background: var(--bg); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2vw, 28px);
  margin-top: 28px;
}
.fleet-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card.popular { border-color: rgba(232, 101, 43, 0.4); }
.fleet-card.flagship { border-color: rgba(212, 168, 67, 0.55); }

.fc-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E8652B 0%, #C2410C 55%, #141210 100%);
  overflow: hidden;
}
.fc-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
  transition: transform .45s var(--ease-out), filter .45s var(--ease-out);
}
.fleet-card:hover .fc-image img { transform: scale(1.045); filter: saturate(1.1) contrast(1.06); }
.fc-image[data-palette="orange-dark"] { background: linear-gradient(135deg, #E8652B 0%, #C2410C 55%, #141210 100%); }
.fc-image[data-palette="gold-hour"]   { background: linear-gradient(135deg, #D4A843 0%, #E8652B 55%, #3A332C 100%); }
.fc-image[data-palette="teal-night"]  { background: linear-gradient(135deg, #134E5A 0%, #0D4F5C 55%, #072F38 100%); }
.fc-image::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 50%, rgba(20,18,16,0.45) 100%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(20,18,16,0.6) 0%, transparent 65%);
}
.fc-image::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(26, 10, 5, 0.7));
}

.fc-tag {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.92);
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.fc-tag.tag-pop { background: var(--orange); color: var(--paper); }
.fc-tag.tag-flagship { background: var(--gold); color: var(--teal-deep); }

.fc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.fc-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.fc-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
}

.fc-specs {
  list-style: none; margin: 0; padding: 12px 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.fc-specs li { display: flex; flex-direction: column; align-items: center; }
.fc-specs span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.fc-specs b { font-size: 14px; color: var(--teal-deep); font-weight: 600; }

.fc-price {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; color: var(--ink-soft);
}
.fc-price span { display: flex; justify-content: space-between; align-items: baseline; }
.fc-price b { color: var(--orange); font-weight: 600; font-size: 15px; }

.fc-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.32);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.fc-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232, 101, 43, 0.5); }

/* ===== Duration cards ===== */
.pillar-durations { background: var(--bg-warm); }
.dur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.dur-card {
  position: relative;
  display: block;
  padding: 28px 28px 32px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.dur-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232, 101, 43, 0.3); }
.dur-card.best { border-color: rgba(212, 168, 67, 0.5); background: linear-gradient(180deg, var(--paper) 0%, rgba(245, 229, 184, 0.18) 100%); }
.dur-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.dur-pop {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dur-card h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dur-card p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.dur-arrow {
  position: absolute; bottom: 24px; right: 28px;
  color: var(--orange);
  font-size: 20px;
  transition: transform .3s var(--ease-spring);
}
.dur-card:hover .dur-arrow { transform: translateX(4px); }

/* ===== Locations grid ===== */
.pillar-locations { background: var(--bg); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.loc-card {
  display: block;
  padding: 26px 28px 30px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(13, 79, 92, 0.35); }
.loc-coord {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(13, 79, 92, 0.08);
}
.loc-card h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.loc-card p { margin: 0 0 14px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.loc-arrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* ===== Included grid ===== */
.pillar-included { background: var(--bg-warm); }
.incl-grid {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.incl-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  position: relative;
}
.incl-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.incl-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.incl-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ===== How it works ===== */
.pillar-how { background: var(--bg); }
.how-list {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.how-step {
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.how-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.how-step h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.how-step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* ===== Pricing receipt ===== */
.pillar-pricing { background: var(--bg-warm); }
.receipt {
  max-width: 920px; margin: 28px auto 0;
  padding: 0;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
}
.receipt-head {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 16px 20px;
  background: var(--teal-deep);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.receipt-row {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.receipt-row:last-of-type { border-bottom: 0; }
.receipt-row.hi { background: rgba(232, 101, 43, 0.04); }
.receipt-row span:first-child { color: var(--teal-deep); font-weight: 600; }
.receipt-row span:not(:first-child):not(:last-child) { color: var(--orange); font-weight: 600; }
.receipt-row a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: background .25s, transform .25s var(--ease-spring);
}
.receipt-row a:hover { background: var(--orange-deep); transform: translateY(-1px); }
.receipt-foot {
  padding: 14px 20px;
  background: var(--bg-warm);
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 720px) {
  .receipt-head, .receipt-row { grid-template-columns: 1.8fr 0.7fr 0.7fr 0.7fr 0.9fr; font-size: 11px; padding: 12px 14px; }
  .receipt-row a { padding: 6px 10px; font-size: 10px; }
}

/* ===== FAQ list (already inherits .faq-item from main.css) ===== */
.pillar-faq { background: var(--bg); }
.pillar-faq .faq-list { max-width: 880px; margin: 28px auto 0; }
.pillar-faq .faq-item { border-bottom: 1px solid var(--hairline); padding: 4px 0; }
.pillar-faq .faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pillar-faq .faq-item summary::-webkit-details-marker { display: none; }
.pillar-faq .faq-item .q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pillar-faq .faq-item .toggle {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.14);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  transition: transform .3s var(--ease-spring), background .25s;
  flex-shrink: 0;
}
.pillar-faq .faq-item[open] .toggle { transform: rotate(45deg); background: var(--orange); color: var(--paper); }
.pillar-faq .faq-item .answer {
  padding: 0 4px 18px;
  font-size: 15px; line-height: 1.6; color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-left: 4px;
}

/* ===== Final CTA ===== */
.pillar-final {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.pillar-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232, 101, 43, 0.18), transparent 70%);
}
.pillar-final-inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(20px, 4vw, 36px) 0;
}
.pillar-final .eyebrow { color: var(--gold); margin-bottom: 14px; display: inline-block; }
.pillar-final h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  color: var(--paper);
}
.pillar-final h2 .accent-orange { color: var(--orange); }
.pillar-final p { max-width: 620px; margin: 0 auto 24px; color: rgba(247, 243, 236, 0.78); font-size: 15.5px; line-height: 1.6; }
.pillar-final .hero-ctas { justify-content: center; }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .pillar-hero { min-height: 64vh; }
  .pillar-hero-price { padding: 12px 16px; }
  .pillar-hero-price .from-num { font-size: 24px; }
  .fc-specs { grid-template-columns: repeat(3, 1fr); gap: 2px; }
}

/* ============================================================
   PILLAR ADDONS — sections added in v2 sitemap-compliant rebuild
   ============================================================ */

/* Hero video */
.pillar-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: saturate(0.85) contrast(1.08) brightness(0.78);
}
.pillar-hero-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(232,101,43,0.28) 0%, rgba(13,79,92,0.32) 60%, rgba(7,47,56,0.55) 100%);
  mix-blend-mode: multiply;
}
.pillar-hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, rgba(212,168,67,0.18) 0%, transparent 18%);
}
.pillar-hero .hero-mute-toggle {
  position: absolute; right: 24px; bottom: 24px; z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease-spring);
}
.pillar-hero .hero-mute-toggle:hover { background: rgba(232,101,43,0.85); transform: scale(1.06); }
.pillar-hero .hero-mute-toggle .ico-sound { display: none; }
.pillar-hero .hero-mute-toggle[aria-pressed="true"] .ico-muted { display: none; }
.pillar-hero .hero-mute-toggle[aria-pressed="true"] .ico-sound { display: block; }

/* Sticky in-page TOC */
.pillar-toc {
  position: sticky;
  top: 113px;
  z-index: 30;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.pillar-toc ul {
  list-style: none; margin: 0; padding: 12px 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pillar-toc ul::-webkit-scrollbar { display: none; }
.pillar-toc a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
}
.pillar-toc a:hover {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: rgba(232,101,43,0.25);
}

/* Intro deep paragraphs */
.intro-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.intro-meta b { color: var(--gold); margin-right: 6px; }

.intro-deep {
  max-width: 820px;
  margin: 36px auto 0;
}
.intro-deep h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--ink);
}
.intro-deep h2 .accent { color: var(--orange); }
.intro-deep p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.intro-deep strong { color: var(--orange); font-weight: 600; }
.intro-deep em { color: var(--teal); font-style: normal; font-weight: 500; }

/* Fleet improvements: image-link wrapper + actions */
.fc-image-link { display: block; text-decoration: none; }
.fc-body h3 a { color: inherit; text-decoration: none; transition: color .25s; }
.fc-body h3 a:hover { color: var(--orange); }
.fc-actions { display: flex; gap: 8px; margin-top: auto; }
.fc-cta { flex: 1; }
.fc-detail {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background .25s, border-color .25s, color .25s;
}
.fc-detail:hover { background: var(--teal); color: var(--paper); border-color: var(--teal); }

.fleet-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.fleet-foot strong { color: var(--orange); font-weight: 600; }

/* Time-slot cards */
.pillar-timeslots { background: var(--bg-warm); }
.ts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.ts-card {
  display: block;
  padding: 28px 28px 32px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 168, 67, 0.4);
}
.ts-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(232, 101, 43, 0.12);
  color: var(--orange);
  margin-bottom: 16px;
}
.ts-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ts-card h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ts-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.ts-arrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* Packages */
.pillar-packages { background: var(--bg); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.pkg-card {
  display: block;
  padding: 26px 28px 30px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,101,43,0.35); }
.pkg-card.pkg-premium {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(245, 229, 184, 0.18) 100%);
  border-color: rgba(212, 168, 67, 0.55);
}
.pkg-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pkg-tag.tag-premium { background: var(--gold); color: var(--teal-deep); }
.pkg-card h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pkg-card p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.pkg-incl {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
  color: var(--teal-deep);
}
.pkg-incl li::before {
  content: '·';
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}
.pkg-arrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* Comparisons */
.pillar-compare { background: var(--bg-warm); }
.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.vs-card {
  display: block;
  padding: 28px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.vs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(13,79,92,0.4); }
.vs-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.vs-card h3 {
  margin: 0 0 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vs-card h3 em { color: var(--orange); font-style: italic; font-weight: 600; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 13px;
}
.vs-table th, .vs-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}
.vs-table th {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.vs-table td:first-child { color: var(--teal-deep); font-weight: 500; }
.vs-table td:not(:first-child) { color: var(--orange); font-weight: 600; }
.vs-arrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* Pricing hub link inline */
.pricing-hub-link, .faq-hub-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(232,101,43,0.4);
}
.pricing-hub-link:hover, .faq-hub-link:hover { color: var(--orange-deep); border-bottom-color: var(--orange-deep); }

/* Reviews pull-quotes */
.pillar-reviews { background: var(--bg); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.rev-quote {
  margin: 0;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  position: relative;
}
.rev-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px; left: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.35;
}
.rev-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
}
.rev-quote footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.rev-quote cite { color: var(--teal); font-style: normal; font-weight: 600; }
.rev-meta { color: var(--gold); }

/* Mobile tweaks */
@media (max-width: 720px) {
  .pillar-toc { top: 64px; }
  .pillar-toc ul { padding: 8px 16px; }
  .pillar-toc a { padding: 5px 10px; font-size: 10px; }
  .vs-card { padding: 20px; }
  .vs-table { font-size: 12px; }
  .pkg-card { padding: 22px; }
}

/* ============================================================
   PILLAR v3 ADDONS — sitemap+reference-design alignment
   New sections: trust-badges, quick-answers, 6-step process,
   why-ride 6-prop, full rate-card table, keep-exploring
   ============================================================ */

/* Hero trust badges (in left column above eyebrow) */
.hero-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.75);
}
.hero-trust-badges .htb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-trust-badges .htb svg { color: var(--gold); flex-shrink: 0; }
.hero-trust-badges .htb-sep { color: rgba(247, 243, 236, 0.3); }

/* ===== Quick Answers strip ===== */
.pillar-qa {
  background: var(--bg);
  padding: clamp(28px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--hairline);
}
.qa-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.qa-item {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  border-right: 1px solid var(--hairline);
}
.qa-item:last-child { border-right: 0; }
.qa-icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(232, 101, 43, 0.10);
  color: var(--orange);
  margin-bottom: 8px;
}
.qa-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.qa-value {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}
.qa-meta {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .qa-grid { grid-template-columns: repeat(3, 1fr); }
  .qa-item:nth-child(3) { border-right: 0; }
  .qa-item:nth-child(n+4) { border-top: 1px solid var(--hairline); }
}
@media (max-width: 640px) {
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .qa-item { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .qa-item:nth-child(2n) { border-right: 0; }
  .qa-item:last-child { grid-column: span 2; border-bottom: 0; }
}

/* ===== 6-step process flow ===== */
.pillar-process {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.pillar-process::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(232, 101, 43, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(212, 168, 67, 0.12), transparent 60%);
  pointer-events: none;
}
.pillar-process .wrap { position: relative; z-index: 1; }
.pillar-process .section-head h2 { color: var(--paper); }
.pillar-process .section-head .lead { color: rgba(247, 243, 236, 0.78); }
.pillar-process .section-head .eyebrow { color: var(--gold); }
.pillar-process .section-head .eyebrow::before { background: var(--gold); }

.process-list {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: ps;
}
@media (max-width: 1024px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .process-list { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 18px;
  background: rgba(247, 243, 236, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.25);
  transition: transform .35s var(--ease-spring), border-color .25s, background .25s;
}
.process-step:hover {
  transform: translateY(-4px);
  background: rgba(247, 243, 236, 0.10);
  border-color: rgba(212, 168, 67, 0.55);
}
.ps-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.ps-icon {
  position: absolute;
  top: 22px; right: 22px;
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232, 101, 43, 0.18);
  color: var(--orange);
}
.process-step h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.process-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(247, 243, 236, 0.78);
}
.process-step strong { color: var(--orange-soft); font-weight: 600; }

/* ===== Why ride 6-prop grid ===== */
.pillar-why { background: var(--bg-warm); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: 1fr; } }

.why-tile {
  padding: 26px 28px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  transition: border-color .25s, transform .3s var(--ease-spring), box-shadow .3s;
}
.why-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 101, 43, 0.32);
  box-shadow: var(--shadow-md);
}
.why-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(232, 101, 43, 0.12);
  color: var(--orange);
  margin-bottom: 14px;
}
.why-tile h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.why-tile p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* ===== Full rate-card table ===== */
.rate-card {
  max-width: 1080px;
  margin: 28px auto 0;
}
.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.rate-table thead th {
  padding: 16px 18px;
  text-align: left;
  background: var(--teal-deep);
  color: var(--gold-soft);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--hairline);
}
.rate-table thead th:not(:first-child):not(:last-child) { text-align: center; }
.rate-table thead th:last-child { text-align: right; }
.rate-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  vertical-align: middle;
}
.rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table tbody td:first-child { color: var(--teal-deep); }
.rate-table tbody td:first-child strong { color: var(--ink); font-weight: 600; }
.rate-table tbody td:not(:first-child):not(:last-child) {
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange);
}
.rate-table tbody td:last-child { text-align: right; }
.rate-table tbody tr.hi { background: rgba(232, 101, 43, 0.04); }
.rate-table tbody tr:hover { background: rgba(212, 168, 67, 0.06); }
.rate-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  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;
  vertical-align: middle;
}
.rate-tag.tag-flag { background: var(--gold); color: var(--teal-deep); }

.rate-book {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  text-decoration: none;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: background .25s, transform .25s var(--ease-spring);
}
.rate-book:hover { background: var(--orange-deep); transform: translateY(-1px); }

.rate-foot {
  margin: 18px 4px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.rate-foot strong { color: var(--orange); font-weight: 600; }

@media (max-width: 720px) {
  .rate-table thead { display: none; }
  .rate-table tbody, .rate-table tr, .rate-table td { display: block; width: 100%; }
  .rate-table tbody tr {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid var(--hairline);
    border-radius: 14px;
    background: var(--paper);
  }
  .rate-table tbody td {
    border-bottom: 1px dashed var(--hairline);
    padding: 8px 0;
    display: flex; justify-content: space-between; align-items: center;
  }
  .rate-table tbody td:first-child {
    font-size: 16px; font-weight: 600;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 4px;
  }
  .rate-table tbody td:not(:first-child):not(:last-child)::before {
    content: attr(data-label);
  }
  .rate-table tbody td:nth-child(2)::before { content: '30 min'; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--ink-soft); text-transform: uppercase; }
  .rate-table tbody td:nth-child(3)::before { content: '1 hr'; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--ink-soft); text-transform: uppercase; }
  .rate-table tbody td:nth-child(4)::before { content: '2 hr'; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--ink-soft); text-transform: uppercase; }
  .rate-table tbody td:last-child { border-bottom: 0; padding-top: 12px; justify-content: stretch; }
  .rate-book { width: 100%; text-align: center; }
}

/* ===== Keep Exploring (8 related cards) ===== */
.pillar-explore { background: var(--bg); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 1024px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .explore-grid { grid-template-columns: 1fr; } }

.explore-card {
  position: relative;
  display: block;
  padding: 22px 22px 26px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s var(--ease-spring), border-color .25s, box-shadow .25s;
}
.explore-card:hover { transform: translateY(-3px); border-color: rgba(232, 101, 43, 0.35); box-shadow: var(--shadow-md); }
.ec-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.explore-card h3 {
  margin: 0 0 6px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.explore-card p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.ec-arrow {
  position: absolute;
  bottom: 18px; right: 22px;
  color: var(--orange);
  font-size: 16px;
  transition: transform .25s var(--ease-spring);
}
.explore-card:hover .ec-arrow { transform: translateX(4px); }

/* Hide old `.pillar-how` and `.pillar-pricing > .receipt` if still in DOM (legacy) */
.pillar-how { display: none; }

/* ============================================================
   FIX-PASS — clear legacy ::after overlays + tighten layouts
   ============================================================ */

/* Sticky TOC — solid bg so nothing bleeds through */
.pillar-toc {
  background: var(--bg) !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 1px 0 rgba(212, 168, 67, 0.12);
}

/* Kill any legacy ::after gradient overlay on cards */
.loc-card::after,
.pkg-card::after,
.fleet-card::after,
.why-tile::after,
.explore-card::after,
.process-step::after { content: none !important; }

/* Locations — clean white card, no overlay, balanced height */
.loc-card {
  position: relative !important;
  aspect-ratio: auto !important;
  background: var(--paper) !important;
  border: 1px solid var(--hairline) !important;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  padding: 28px !important;
  border-radius: 18px !important;
  min-height: 280px;
  overflow: visible !important;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(13, 79, 92, 0.35); }
.loc-card svg { display: none !important; }
.loc-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 24px) !important;
  line-height: 1.15;
  color: var(--ink) !important;
  white-space: normal;
}
.loc-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.loc-coord {
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--teal);
  background: rgba(13, 79, 92, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.loc-arrow {
  margin-top: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}

/* Packages — uniform card height, single-line titles where possible */
.pkg-card {
  display: flex !important;
  flex-direction: column;
  min-height: 380px;
  position: relative;
}
.pkg-card h3 {
  font-size: clamp(18px, 1.5vw, 22px) !important;
  line-height: 1.2;
  white-space: normal;
}
.pkg-card .pkg-arrow { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--hairline); }

/* Included — strict 4×2 grid (was awkward 6+2) */
.incl-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1024px) { .incl-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 720px)  { .incl-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .incl-grid { grid-template-columns: 1fr !important; } }

/* Fleet card — neutralize old ::before/::after that might still bleed */
.fleet-card .fc-image::before,
.fleet-card .fc-image::after { z-index: 1; pointer-events: none; }

/* Why tiles — equal heights */
.why-tile { display: flex; flex-direction: column; min-height: 220px; }
.why-tile p { flex: 1; }

/* Process step — equal heights */
.process-step { min-height: 220px; }

/* Explore card — equal min-height to avoid wobble */
.explore-card { min-height: 160px; }
.explore-card h3 { line-height: 1.2; }
.explore-card p { padding-right: 28px; }

/* TOC active link state */
.pillar-toc a.is-active {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: rgba(232, 101, 43, 0.35);
}

/* ============================================================
   FIX-PASS v6 — mobile hero, h-scroll, scroll-margin, fleet,
   reveal failsafe, mobile TOC
   ============================================================ */

/* Page-wide horizontal overflow guard */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Scroll-margin so sticky header + TOC do not cover anchors */
section[id], main [id] {
  scroll-margin-top: 180px; /* utility 36 + header 76 + TOC 50 + buffer */
}
@media (max-width: 1024px) { section[id], main [id] { scroll-margin-top: 140px; } }

/* Mobile hero order: text first, stack after (was order:-1 stack) */
@media (max-width: 1024px) {
  .hero-right { order: 0; }
  .hero-left  { order: -1; }
  .pillar-hero { padding: 36px 0 24px; min-height: auto; }
  .pillar-hero-inner { padding: 0; }
  .hero-grid { gap: 28px; }
  .pillar-hero h1 { font-size: clamp(34px, 9vw, 54px); margin: 8px 0 12px; }
  .pillar-hero.v2 h1 { font-size: clamp(32px, 8.5vw, 48px); }
  .pillar-hero-sub { font-size: 14.5px; }
  .pillar-hero-price { padding: 10px 14px; margin-bottom: 18px; }
  .pillar-hero-price .from-num { font-size: 24px; }
  .hero-trust-badges { font-size: 9px; gap: 4px 8px; margin-bottom: 12px; }
  .hero-trust-badges .htb { gap: 4px; }
  .hero-stats-compact { margin-top: 18px; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-ctas .btn { flex: 1; min-width: 140px; padding: 13px 18px; font-size: 13.5px; }
  /* Show stack but keep tighter so text fits first viewport */
  .hero-right { min-height: auto; }
  .card-stack { height: 360px; max-width: 360px; margin: 0 auto; }
}

/* Hide oversized decorative glow on small screens (was bleeding past viewport right) */
@media (max-width: 1024px) {
  .hero-glow { width: 400px; height: 400px; right: -100px; }
}
@media (max-width: 640px) {
  .hero-glow { display: none; }
  .hero-dune-bg { opacity: 0.4; }
  /* Card stack micro-shrink */
  .card-stack { height: 320px; max-width: 320px; }
}

/* Mobile TOC: scroll-snap + reduce items (hide low-priority anchors) */
@media (max-width: 720px) {
  .pillar-toc {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .pillar-toc ul {
    scroll-snap-type: x mandatory;
    padding: 8px 16px;
  }
  .pillar-toc a { scroll-snap-align: start; padding: 6px 12px; font-size: 10px; }
  /* Hide less-critical anchors on mobile */
  .pillar-toc a[href="#what"],
  .pillar-toc a[href="#timeslots"],
  .pillar-toc a[href="#process"] { display: none; }
}

/* Reveal animation failsafe: ensure content always shows even if JS late */
@media (prefers-reduced-motion: no-preference) {
  /* Add a CSS-only fallback timeout via animation */
  html.js-anim-ready .reveal:not(.in-view),
  html.js-anim-ready .reveal-stagger:not(.in-view) > * {
    animation: reveal-fallback 0.01s linear 1.5s forwards;
  }
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
/* Stronger guarantee: even without JS class, reveal opacity:1 after 2s */
.reveal, .reveal-stagger > * { animation: reveal-safety 0.01s linear 2.5s forwards; }
@keyframes reveal-safety {
  to { opacity: 1 !important; transform: none !important; }
}

/* Fleet card — replace plain gradient with detailed buggy SVG illustration */
.fc-image[data-palette="orange-dark"]::before,
.fc-image[data-palette="gold-hour"]::before,
.fc-image[data-palette="teal-night"]::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='sky' x2='0' y2='1'%3E%3Cstop stop-color='%23F2C46A' stop-opacity='.35'/%3E%3Cstop offset='1' stop-color='%237A2A14' stop-opacity='.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='400' height='300' fill='url(%23sky)'/%3E%3Ccircle cx='320' cy='70' r='28' fill='%23FFE0A8' opacity='.55'/%3E%3Cpath d='M0 220 Q100 180 200 210 T400 200 L400 300 L0 300 Z' fill='%231a0a05' opacity='.45'/%3E%3Cpath d='M0 250 Q120 220 240 240 T400 235 L400 300 L0 300 Z' fill='%230a0402' opacity='.7'/%3E%3C!-- Buggy silhouette --%3E%3Cg transform='translate(120,160)' fill='%23141210' opacity='.9'%3E%3Cpath d='M30 50 L150 50 L160 70 L20 70 Z'/%3E%3Cpath d='M40 30 L140 30 L150 50 L30 50 Z' opacity='.85'/%3E%3Crect x='35' y='35' width='110' height='2' fill='%23E8652B' opacity='.7'/%3E%3Ccircle cx='50' cy='75' r='12' fill='%231a1a1a'/%3E%3Ccircle cx='130' cy='75' r='12' fill='%231a1a1a'/%3E%3Ccircle cx='50' cy='75' r='6' fill='%23E8652B' opacity='.5'/%3E%3Ccircle cx='130' cy='75' r='6' fill='%23E8652B' opacity='.5'/%3E%3C/g%3E%3C!-- Sand spray --%3E%3Cpath d='M50 240 Q60 235 70 238 Q80 234 90 240' stroke='%23F2C46A' stroke-width='1.5' fill='none' opacity='.4'/%3E%3Cpath d='M280 245 Q295 240 310 244 Q325 239 340 245' stroke='%23F2C46A' stroke-width='1.5' fill='none' opacity='.4'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.fc-image[data-palette="gold-hour"]::before { mix-blend-mode: soft-light; }
.fc-image[data-palette="teal-night"]::before { opacity: 0.7; }

/* Slight inner shadow + grain on fleet image for depth */
.fc-image {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), inset 0 -40px 80px -20px rgba(20,18,16,0.45);
}

/* Header partial — prevent overflow on small viewports */
@media (max-width: 720px) {
  .site-header .header-cta { gap: 6px; }
  .cta-book { padding: 10px 14px; font-size: 12px; }
  .nav-toggle { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 12px; gap: 8px; }
  .brand-mark .name { font-size: 16px; }
  .brand-mark .est { display: none; }
  .cta-book .cta-arrow { display: none; }
  .cta-book .cta-dot { display: none; }
}

/* TOC item — keep arrow visible scroll on touch */
.pillar-toc::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, var(--bg));
  pointer-events: none;
  display: none;
}
@media (max-width: 720px) { .pillar-toc { position: sticky; } .pillar-toc::after { display: block; } }

/* Intro fold-down */
.intro-summary { font-size: 16px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; }
.intro-summary strong { color: var(--orange); font-weight: 600; }
.intro-fold {
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
  margin-top: 6px;
}
.intro-fold > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  padding: 8px 0;
}
.intro-fold > summary::-webkit-details-marker { display: none; }
.intro-fold .fold-arrow { transition: transform .3s var(--ease-spring); display: inline-block; }
.intro-fold[open] .fold-arrow { transform: rotate(180deg); }
.intro-fold .fold-body { padding-top: 12px; }
.intro-fold p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; }

/* ============================================================
   PACKAGES v2 — premium adventure-tourism redesign
   1 featured Premium VIP card + 3 supporting (couple/family/group)
   ============================================================ */

.pillar-packages-v2 { background: var(--bg-warm); }
.pillar-packages-v2 .section-head { margin-bottom: 36px; }

/* ===== Featured card (Premium VIP) ===== */
.pkg-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-night) 100%);
  border: 1px solid rgba(212, 168, 67, 0.45);
  box-shadow: 0 30px 80px -20px rgba(7, 47, 56, 0.55);
  margin-bottom: 28px;
  position: relative;
}
.pkg-feature::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 0%, rgba(212, 168, 67, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.pkg-feature-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.pkg-feature-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pkg-feature-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.06) brightness(0.82);
}
.pkg-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,47,56,0.05) 0%, rgba(7,47,56,0.5) 72%, rgba(7,47,56,0.78) 100%);
}
.pkg-feature-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;
  box-shadow: 0 6px 18px rgba(212, 168, 67, 0.4);
}
.pkg-feature-badge svg { color: var(--teal-deep); }

.pkg-feature-body {
  position: relative;
  z-index: 2;
  padding: 40px 44px 36px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pkg-feature-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.pkg-lead {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.85);
}

.pkg-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(247, 243, 236, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.pkg-chip .chip-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.55);
}
.pkg-chip .chip-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}
.pkg-chip .chip-value small { font-weight: 400; opacity: 0.7; font-size: 10px; }
.pkg-chip-price {
  background: rgba(232, 101, 43, 0.18);
  border-color: rgba(232, 101, 43, 0.5);
}
.pkg-chip-price .chip-value { color: var(--orange-soft); }

.pkg-incl-icons {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pkg-incl-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(247, 243, 236, 0.92);
}
.ic-bg {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}
.ic-orange { background: rgba(232, 101, 43, 0.22); color: var(--orange); }
.ic-gold   { background: rgba(212, 168, 67, 0.22); color: var(--gold); }
.ic-orange-soft { background: rgba(232, 101, 43, 0.12); color: var(--orange); width: 20px; height: 20px; border-radius: 5px; }

.pkg-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 8px;
}

.pkg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s var(--ease-spring), background .25s, box-shadow .25s;
  cursor: pointer;
  white-space: nowrap;
}
.pkg-btn-primary {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(232, 101, 43, 0.35);
}
.pkg-btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232, 101, 43, 0.5); }
.pkg-btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.45);
}
.pkg-btn-ghost:hover { background: rgba(212, 168, 67, 0.12); transform: translateY(-2px); }
.pkg-btn-sm { padding: 11px 16px; font-size: 12.5px; }

/* ===== 3 supporting cards ===== */
.pkg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .pkg-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .pkg-grid-3 { grid-template-columns: 1fr; } }

.pkg-card-v3 {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.pkg-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(20, 18, 16, 0.18);
  border-color: rgba(232, 101, 43, 0.32);
}

.pkg-cv-image {
  position: relative;
  aspect-ratio: 4 / 2.2;
  overflow: hidden;
}
.pkg-cv-image svg { width: 100%; height: 100%; display: block; }
.pkg-cv-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
  transition: transform .4s var(--ease-out), filter .4s var(--ease-out);
}
.pkg-card-v3:hover .pkg-cv-image img { transform: scale(1.04); filter: saturate(1.1) contrast(1.06); }
.pkg-cv-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,18,16,0.04) 0%, rgba(20,18,16,0.2) 72%, rgba(20,18,16,0.46) 100%);
}
.pkg-cv-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.pkg-cv-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pkg-card-v3 h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.pkg-card-v3 > .pkg-cv-body > p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.pkg-cv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cv-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 80px;
}
.cv-chip span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cv-chip b {
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 600;
  white-space: nowrap;
}
.cv-chip-price b { color: var(--orange); font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; font-weight: 500; }

.pkg-cv-incl {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.pkg-cv-incl li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.pkg-cv-ctas {
  display: flex; gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.pkg-cv-ctas .pkg-btn-primary { flex: 1; }
.pkg-cv-ctas .pkg-btn-ghost { color: var(--orange); border-color: rgba(232, 101, 43, 0.35); }
.pkg-cv-ctas .pkg-btn-ghost:hover { background: var(--orange-soft); border-color: var(--orange); }

/* ===== Mobile + tablet overrides ===== */
@media (max-width: 1024px) {
  .pkg-feature { grid-template-columns: 1fr; }
  .pkg-feature-image { min-height: 260px; aspect-ratio: 16 / 9; }
  .pkg-feature-body { padding: 28px 28px 32px; }
  .pkg-feature-body h3 { font-size: clamp(24px, 4.5vw, 32px); }
  .pkg-incl-icons { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pkg-feature-body { padding: 22px 20px 26px; }
  .pkg-feature-body h3 { font-size: 24px; }
  .pkg-chip-row { gap: 6px; }
  .pkg-chip { padding: 6px 10px; }
  .pkg-cta-row .pkg-btn { width: 100%; }
  .pkg-cv-ctas { flex-direction: column; }
  .pkg-cv-ctas .pkg-btn { width: 100%; }
}

/* Hide legacy .pkg-grid (old layout) if still in DOM */
.pkg-grid { display: none; }

/* ============================================================
   PILLAR v7 — section-by-section premium polish pass
   ============================================================ */

/* ===== Quick Answers — premium pill strip with depth ===== */
.pillar-qa { padding: clamp(20px, 3vw, 36px) 0 !important; border-top: 1px solid var(--hairline); }
.qa-grid {
  border-radius: 22px !important;
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg-warm) 100%) !important;
  border: 1px solid rgba(212, 168, 67, 0.28) !important;
  box-shadow: 0 14px 38px -12px rgba(20, 18, 16, 0.10) !important;
  position: relative;
  overflow: hidden;
}
.qa-grid::before {
  content: '';
  position: absolute; left: 20%; top: 0; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qa-item { padding: 24px 22px !important; }
.qa-item:nth-child(1) .qa-icon { background: rgba(232, 101, 43, 0.14); color: var(--orange); }
.qa-item:nth-child(2) .qa-icon { background: rgba(13, 79, 92, 0.12); color: var(--teal); }
.qa-item:nth-child(3) .qa-icon { background: rgba(212, 168, 67, 0.18); color: var(--gold); }
.qa-item:nth-child(4) .qa-icon { background: rgba(13, 79, 92, 0.12); color: var(--teal); }
.qa-item:nth-child(5) .qa-icon { background: rgba(232, 101, 43, 0.14); color: var(--orange); }
.qa-item:nth-child(1) .qa-value { color: var(--orange) !important; font-size: clamp(22px, 2.4vw, 32px) !important; }
.qa-value { transition: color .25s; }

/* ===== Fleet filter tabs ===== */
.fleet-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 28px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.fleet-filters::-webkit-scrollbar { display: none; }
.ff-tab {
  flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background .25s, color .25s, transform .2s var(--ease-spring);
}
.ff-tab:hover { color: var(--ink); background: var(--bg-warm); }
.ff-tab.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(20, 18, 16, 0.18);
}
.ff-count {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(232, 101, 43, 0.14);
  color: var(--orange);
}
.ff-tab.is-active .ff-count { background: rgba(247, 243, 236, 0.15); color: var(--gold-soft); }

/* Hide cards not matching filter */
.fleet-card.fc-hide { display: none !important; }

/* ===== Durations — timeline comparison bar ===== */
.dur-grid {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 12px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 6px !important;
  overflow: hidden;
}
.dur-grid::before {
  content: '';
  position: absolute; left: 33%; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline), transparent);
}
.dur-grid::after {
  content: '';
  position: absolute; right: 33%; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline), transparent);
}
.dur-card {
  background: transparent !important;
  border: 0 !important;
  padding: 22px 22px 28px !important;
  border-radius: 16px !important;
}
.dur-card:hover { background: var(--bg-warm) !important; transform: translateY(0) !important; box-shadow: none !important; }
.dur-card.best {
  background: linear-gradient(180deg, rgba(232, 101, 43, 0.08), rgba(212, 168, 67, 0.04)) !important;
  border: 1px solid rgba(232, 101, 43, 0.28) !important;
  border-radius: 16px !important;
}
.dur-card.best::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 0 0 4px 4px;
}
.dur-pop {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)) !important;
  color: var(--paper) !important;
  box-shadow: 0 4px 12px rgba(232, 101, 43, 0.4);
}
@media (max-width: 720px) {
  .dur-grid { grid-template-columns: 1fr !important; padding: 8px; }
  .dur-grid::before, .dur-grid::after { display: none; }
}

/* ===== Time Slots — distinct tonal cards ===== */
.ts-card[href*="morning"] {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(212, 168, 67, 0.08) 100%) !important;
  border-color: rgba(212, 168, 67, 0.3) !important;
}
.ts-card[href*="morning"] .ts-icon { background: rgba(212, 168, 67, 0.18); color: var(--gold); }
.ts-card[href*="evening"] {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(232, 101, 43, 0.08) 100%) !important;
  border-color: rgba(232, 101, 43, 0.3) !important;
}
.ts-card[href*="evening"] .ts-icon { background: rgba(232, 101, 43, 0.18); color: var(--orange); }
.ts-card[href*="private"] {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(13, 79, 92, 0.06) 100%) !important;
  border-color: rgba(13, 79, 92, 0.3) !important;
}
.ts-card[href*="private"] .ts-icon { background: rgba(13, 79, 92, 0.14); color: var(--teal); }
.ts-card { position: relative; }
.ts-mood-chip {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Locations — visual terrain tiles ===== */
.loc-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.loc-card-inner {
  position: relative;
  z-index: 2;
  padding: 26px 26px;
  background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(247, 243, 236, 0.96) 65%, var(--paper) 100%);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 280px;
}
.loc-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100%; height: 100%;
}
.loc-card .loc-coord { align-self: flex-start; }
.loc-card .loc-arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}
.loc-card .loc-arrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin-left: 8px;
}

/* ===== Process — timeline with connecting line ===== */
.process-list {
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 60px; left: 8.33%; right: 8.33%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(212, 168, 67, 0.4) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.ps-num {
  position: relative;
  z-index: 2;
}
.process-step .ps-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.12);
  z-index: -1;
}
@media (max-width: 1024px) { .process-list::before { display: none; } }

/* ===== Why Ride — proof badge style ===== */
.why-tile {
  position: relative;
  padding: 30px 26px 24px !important;
}
.why-tile::before {
  content: '✓';
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.16);
}

/* ===== Compare — highlight winner column ===== */
.vs-table tr td:nth-child(2) { background: rgba(232, 101, 43, 0.06); }
.vs-table tr td:first-child { color: var(--ink-soft); font-weight: 500; }
.vs-table thead th:nth-child(2),
.vs-table tr:first-child th:nth-child(2) {
  color: var(--orange) !important;
  font-weight: 700;
}

/* ===== Pricing — best value markers (CSS-only highlighting on Most Popular row) ===== */
.rate-table tbody tr.hi {
  background: linear-gradient(90deg, rgba(232, 101, 43, 0.10), rgba(232, 101, 43, 0.02)) !important;
  position: relative;
}
.rate-table tbody tr.hi td:first-child {
  border-left: 3px solid var(--orange);
  padding-left: 16px !important;
}
.rate-tag {
  font-weight: 700 !important;
}

/* ===== Reviews — platform badges + avatar ===== */
.rev-quote {
  position: relative;
  padding: 28px 28px 22px !important;
}
.rev-platform {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rev-platform[data-platform="google"]      { background: #4285F4; color: #fff; }
.rev-platform[data-platform="tripadvisor"] { background: #00AF87; color: #fff; }
.rev-platform[data-platform="viator"]      { background: #328E7A; color: #fff; }
.rev-stars { color: var(--gold); font-size: 14px; letter-spacing: 0.05em; display: block; margin-bottom: 12px; }
.rev-quote::before { display: none !important; }
.rev-quote p { font-size: 16px !important; }
.rev-quote footer {
  display: flex !important;
  align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.rev-avatar {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.rev-author {
  display: flex; flex-direction: column; gap: 1px;
  flex: 1; align-items: flex-start;
  letter-spacing: 0;
  text-transform: none;
}
.rev-author cite { font-style: normal; font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.rev-loc { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--ink-soft); text-transform: uppercase; }
.rev-date { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--ink-soft); text-transform: uppercase; }

/* ===== FAQ — first 4 prominent ===== */
.pillar-faq .faq-item:nth-child(-n+4) summary .q { font-size: clamp(18px, 1.6vw, 22px) !important; }
.pillar-faq .faq-item summary { padding: 22px 4px !important; min-height: 56px; }
.pillar-faq .faq-item .toggle { width: 32px !important; height: 32px !important; font-size: 20px !important; }

/* ===== Related Guides — group by intent ===== */
.explore-grid { gap: 18px !important; }
.ec-tag {
  background: rgba(232, 101, 43, 0.08) !important;
  padding: 4px 9px !important;
  border-radius: 999px;
  display: inline-block !important;
}

/* ===== Final CTA — cinematic dark desert ===== */
.pillar-final {
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232, 101, 43, 0.22) 0%, transparent 70%),
              linear-gradient(180deg, var(--teal-night) 0%, var(--teal-deep) 50%, #1a0a05 100%) !important;
  padding: clamp(60px, 8vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}
.pillar-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 15% 20%, rgba(247, 243, 236, 0.6), transparent),
    radial-gradient(circle 1px at 28% 35%, rgba(247, 243, 236, 0.5), transparent),
    radial-gradient(circle 1.5px at 42% 18%, rgba(247, 243, 236, 0.7), transparent),
    radial-gradient(circle 1px at 60% 30%, rgba(247, 243, 236, 0.4), transparent),
    radial-gradient(circle 1.5px at 75% 22%, rgba(247, 243, 236, 0.6), transparent),
    radial-gradient(circle 1px at 88% 38%, rgba(247, 243, 236, 0.5), transparent),
    radial-gradient(circle 2px at 50% 12%, var(--gold-soft), transparent);
  pointer-events: none;
  opacity: 0.85;
}
.pillar-final::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 10, 5, 0.6) 100%);
  pointer-events: none;
}
.pillar-final-inner h2 {
  text-shadow: 0 4px 20px rgba(7, 47, 56, 0.5);
}

/* ===== Mobile TOC compact (segmented bar) ===== */
@media (max-width: 720px) {
  .pillar-toc ul {
    display: flex !important;
    gap: 4px !important;
    padding: 8px 16px !important;
  }
  .pillar-toc a {
    padding: 7px 12px !important;
    font-size: 9.5px !important;
    border: 1px solid var(--hairline);
    flex-shrink: 0;
  }
  .pillar-toc a.is-active {
    background: var(--orange) !important;
    color: var(--paper) !important;
    border-color: var(--orange) !important;
  }
}

/* ===== Hero mobile compact (already done in v6, additional safety) ===== */
@media (max-width: 720px) {
  .pillar-hero { padding: 28px 0 20px !important; }
  .hero-grid { gap: 24px !important; }
  .pillar-hero h1, .pillar-hero.v2 h1 { font-size: clamp(32px, 8vw, 44px) !important; margin: 6px 0 10px !important; }
  .hero-trust-badges { font-size: 8.5px !important; gap: 3px 6px !important; margin-bottom: 10px !important; }
  .hero-eyebrow { font-size: 10px !important; }
  .pillar-hero-sub { font-size: 14px !important; margin-bottom: 14px !important; }
  .pillar-hero-price { padding: 8px 12px !important; margin-bottom: 14px !important; }
  .pillar-hero-price .from-num { font-size: 22px !important; }
  .hero-stats-compact { display: none !important; }
  .card-stack { height: 280px !important; max-width: 280px !important; }
  .cs-card.cs-left, .cs-card.cs-right { width: 80px !important; height: 200px !important; }
  .cs-card.cs-center { width: 140px !important; height: 260px !important; }
}
@media (max-width: 480px) {
  .pillar-hero h1 { font-size: 30px !important; }
  .pillar-hero-sub { font-size: 13.5px !important; }
}

/* Dune pillar image pass: keep the photo-heavy hero inside narrow mobile viewports */
@media (max-width: 480px) {
  body[data-page="dune-buggy"] main {
    max-width: 100vw;
    overflow: hidden;
  }
  body[data-page="dune-buggy"] main > section > .wrap {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body[data-page="dune-buggy"] .pillar-hero .wrap,
  body[data-page="dune-buggy"] .pillar-hero-inner,
  body[data-page="dune-buggy"] .hero-grid,
  body[data-page="dune-buggy"] .hero-left,
  body[data-page="dune-buggy"] .hero-right {
    min-width: 0;
    max-width: 100%;
  }
  body[data-page="dune-buggy"] .hero-left {
    overflow-wrap: anywhere;
  }
  body[data-page="dune-buggy"] .pillar-hero h1,
  body[data-page="dune-buggy"] .pillar-hero-sub,
  body[data-page="dune-buggy"] .intro-card,
  body[data-page="dune-buggy"] .fleet-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  body[data-page="dune-buggy"] .hero-trust-badges .htb {
    white-space: normal;
  }
  body[data-page="dune-buggy"] .pillar-hero-price {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: baseline;
  }
  body[data-page="dune-buggy"] .pillar-hero-price .from-meta {
    width: 100%;
  }
  body[data-page="dune-buggy"] .hero-ctas .btn {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  body[data-page="dune-buggy"] .fleet-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  body[data-page="dune-buggy"] .fc-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  body[data-page="dune-buggy"] .fc-actions {
    flex-direction: column;
  }
}

/* ============================================================
   PILLAR v8 — fleet rename + price simplify + locations terrain
                + FAQ split + 15-min duration card
   ============================================================ */

/* ===== Fleet card price line — single 'Starts from' ===== */
.fc-price { display: none !important; } /* hide old 3-row stack */
.fc-price-line {
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.fpl-from {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.fpl-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}
.fpl-meta { font-size: 11.5px; color: var(--ink-soft); white-space: nowrap; }

/* Fleet dual CTAs — consistent labels */
.fc-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.fc-cta {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.30);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.fc-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232, 101, 43, 0.5); }
.fc-detail {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.fc-detail:hover { background: var(--teal-deep); color: var(--paper); border-color: var(--teal-deep); }

/* ===== Duration cards: 4-col with 15-min ===== */
.dur-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 4px !important;
}
.dur-grid-4::before, .dur-grid-4::after { display: none; }
.dur-card.dur-new {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.10), rgba(232, 101, 43, 0.05)) !important;
  border: 1px solid rgba(212, 168, 67, 0.35) !important;
}
.dur-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1024px) { .dur-grid-4 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .dur-grid-4 { grid-template-columns: 1fr !important; } }

/* ===== Rate-table: 15-min column + new tag ===== */
.rate-tag.tag-new {
  background: var(--gold) !important;
  color: var(--teal-deep) !important;
}
.rate-table thead tr th { white-space: nowrap; }
.rate-table tbody td:nth-child(2),
.rate-table thead th:nth-child(2) { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.rate-table tbody td:nth-child(2) { color: var(--gold) !important; font-weight: 700; font-size: 13px !important; }

@media (max-width: 720px) {
  .rate-table tbody td:nth-child(2)::before { content: '15 min'; }
  .rate-table tbody td:nth-child(3)::before { content: '30 min'; }
  .rate-table tbody td:nth-child(4)::before { content: '1 hr'; }
  .rate-table tbody td:nth-child(5)::before { content: '2 hr'; }
}

/* ============================================================
   LOCATIONS v2 — terrain selector with featured Lahbab + 3 supporting
   ============================================================ */
.pillar-locations-v2 { background: var(--bg); padding: clamp(48px, 6.5vw, 88px) 0; }
.pillar-locations-v2 .section-head { margin-bottom: 32px; }

/* Featured Lahbab card */
.loc-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: linear-gradient(135deg, var(--paper) 0%, rgba(232, 101, 43, 0.04) 100%);
  border: 1px solid rgba(232, 101, 43, 0.32);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 18px 50px -16px rgba(232, 101, 43, 0.18);
}
.lf-image { position: relative; min-height: 320px; overflow: hidden; }
.lf-image svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lf-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.04) brightness(0.86);
}
.lf-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,18,16,0.02) 0%, rgba(20,18,16,0.2) 62%, rgba(20,18,16,0.52) 100%);
}
.lf-base-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(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(232, 101, 43, 0.4);
}
.lf-base-badge svg { color: currentColor; }
.lf-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lf-coord {
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  background: rgba(13, 79, 92, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.lf-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}
.lf-body p { margin: 0 0 6px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

.lf-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.lf-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 6px 8px;
}
.lfc-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lf-chip b { font-size: 13px; color: var(--teal-deep); font-weight: 600; }

.lf-ctas { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .loc-feature { grid-template-columns: 1fr; }
  .lf-image { min-height: 240px; aspect-ratio: 16/9; }
  .lf-body { padding: 26px 24px; }
  .lf-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lf-chips { grid-template-columns: 1fr; }
  .lf-ctas .pkg-btn { width: 100%; }
}

/* Supporting 3-card grid */
.loc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .loc-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .loc-grid-3 { grid-template-columns: 1fr; } }

.loc-card-v3 {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.loc-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(20, 18, 16, 0.18);
  border-color: rgba(13, 79, 92, 0.35);
}
.lcv-image {
  position: relative;
  aspect-ratio: 4 / 2.2;
  overflow: hidden;
}
.lcv-image svg { width: 100%; height: 100%; display: block; }
.lcv-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .35s var(--ease-out), filter .35s var(--ease-out);
}
.loc-card-v3:hover .lcv-image img { transform: scale(1.04); filter: saturate(1.12) contrast(1.06); }
.lcv-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,18,16,0.02) 0%, rgba(20,18,16,0.18) 66%, rgba(20,18,16,0.5) 100%);
}
.lcv-coord {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.96);
  color: var(--teal-deep);
  text-transform: uppercase;
  font-weight: 600;
}
.lcv-body {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.loc-card-v3 h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.lcv-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.lcv-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 101, 43, 0.08);
  color: var(--orange);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.lcv-body p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.lcv-ctas { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.lcv-ctas .pkg-btn-primary { flex: 1; }
.lcv-ctas .pkg-btn-ghost { color: var(--orange); border-color: rgba(232, 101, 43, 0.35); }
.lcv-ctas .pkg-btn-ghost:hover { background: var(--orange-soft); border-color: var(--orange); }

@media (max-width: 480px) {
  .lcv-ctas { flex-direction: column; }
  .lcv-ctas .pkg-btn { width: 100%; }
}

/* Hide legacy .loc-card / .loc-grid in favour of v2 */
.pillar-locations { display: none !important; }
.loc-grid { display: none !important; }

/* ============================================================
   FAQ v2 — split layout: help panel + accordion
   ============================================================ */
.pillar-faq-v2 { background: var(--bg); padding: clamp(48px, 6.5vw, 88px) 0; }
.pillar-faq-v2 .section-head h2 { color: var(--ink); }
.pillar-faq-v2 .section-head { text-align: left; max-width: 760px; margin-bottom: 32px; }
.pillar-faq-v2 .section-head h2,
.pillar-faq-v2 .section-head .lead { margin-left: 0; margin-right: 0; }
.pillar-faq-v2 .section-head .lead { max-width: 620px; margin-left: 0; }

.faq-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) { .faq-split { grid-template-columns: 1fr; gap: 20px; } }

/* Aside left panel */
.faq-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 200px; }
@media (max-width: 1024px) { .faq-aside { position: static; } }

.fa-card {
  padding: 22px 22px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.fa-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.fa-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fa-chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.fa-chip:hover { color: var(--ink); background: var(--bg-warm); }
.fa-chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.fa-cta-card {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-night) 100%) !important;
  border-color: rgba(212, 168, 67, 0.35) !important;
  color: var(--paper);
}
.fa-cta-card h3 {
  margin: 8px 0 6px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--paper);
}
.fa-cta-card p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.5; color: rgba(247, 243, 236, 0.78); }
.fa-cta-card .pkg-btn-primary { width: 100%; }
.fa-wa-icon { color: var(--gold); }

.fa-hub-link {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(232, 101, 43, 0.25);
  transition: background .25s, border-color .25s;
}
.fa-hub-link:hover { background: rgba(232, 101, 43, 0.14); border-color: var(--orange); }

/* Right accordion */
.faq-list-v2 { display: flex; flex-direction: column; gap: 8px; }
.faq-list-v2 .faq-item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 0 18px;
  transition: border-color .25s, box-shadow .25s;
}
.faq-list-v2 .faq-item.fc-hide { display: none; }
.faq-list-v2 .faq-item:hover { border-color: rgba(232, 101, 43, 0.32); }
.faq-list-v2 .faq-item[open] { border-color: var(--orange); box-shadow: 0 8px 24px -8px rgba(232, 101, 43, 0.18); }
.faq-list-v2 .faq-item.is-top { border-color: rgba(212, 168, 67, 0.4); }
.faq-list-v2 .faq-item.is-top::before {
  content: 'Top question';
  position: absolute;
  top: -10px; left: 16px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.faq-list-v2 .faq-item { position: relative; }

.faq-list-v2 .faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 4px;
  min-height: 56px;
}
.faq-list-v2 .faq-item summary::-webkit-details-marker { display: none; }
.faq-list-v2 .q-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-list-v2 .faq-item .q {
  flex: 1;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.faq-list-v2 .faq-item.is-top .q { font-size: 17px; font-weight: 600; }
.faq-list-v2 .faq-item .toggle {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.14);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  transition: transform .3s var(--ease-spring), background .25s;
  flex-shrink: 0;
}
.faq-list-v2 .faq-item[open] .toggle { transform: rotate(45deg); background: var(--orange); color: var(--paper); }
.faq-list-v2 .faq-item .answer {
  padding: 4px 0 18px 26px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  margin-left: 4px;
}

/* Hide legacy faq-list inside pillar-faq-v2 children avoid */
.pillar-faq-v2 .faq-list { display: none !important; }
/* Hide entire old .pillar-faq if still used elsewhere — cosmetic dedup */

/* ============================================================
   GLOBAL CTA STYLE (Book Now + View Detail consistency)
   ============================================================ */
[data-cta="book"] {
  /* Future-ready hook: when external booking engine ready, swap href via [data-cta="book"] selector */
}

/* ============================================================
   FAQ v3 — fix clipped badges, compact rows, cleaner typography
   ============================================================ */

/* Reset old v2 rules that caused clipping */
.faq-list-v2 .faq-item.is-top::before { content: none !important; }
.faq-list-v2 .faq-item { overflow: visible; }

/* Item container — compact, premium, no clipping */
.faq-list-v2 .faq-item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 0 18px !important;
  transition: border-color .25s, box-shadow .25s, background .25s;
  position: relative;
}
.faq-list-v2 .faq-item:hover { border-color: rgba(232, 101, 43, 0.32); }
.faq-list-v2 .faq-item[open] {
  border-color: rgba(232, 101, 43, 0.5) !important;
  background: linear-gradient(180deg, rgba(232, 101, 43, 0.04) 0%, var(--paper) 35%) !important;
  box-shadow: 0 8px 22px -10px rgba(232, 101, 43, 0.18) !important;
}
.faq-list-v2 .faq-item.is-top { border-color: rgba(212, 168, 67, 0.4); }

/* Summary row — tight, aligned */
.faq-list-v2 .faq-item summary {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 4px !important;
  min-height: 44px !important;
  cursor: pointer;
  list-style: none;
}
.faq-list-v2 .faq-item summary::-webkit-details-marker { display: none; }

/* Number — small mono badge */
.faq-list-v2 .q-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 22px;
}

/* Question wrapper — pill + text inline */
.q-text {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.q-pill {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Question text — readable, mostly sans-serif, slight serif accent only on top items */
.faq-list-v2 .faq-item .q {
  font-family: 'Inter Tight', system-ui, sans-serif !important;
  font-style: normal !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  color: var(--ink);
  line-height: 1.4 !important;
}
.faq-list-v2 .faq-item.is-top .q { font-size: 16px !important; font-weight: 600 !important; }

/* Toggle — proper plus → minus rotation via CSS */
.faq-list-v2 .faq-item .toggle {
  position: relative;
  width: 28px !important; height: 28px !important;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.14);
  color: var(--gold);
  flex-shrink: 0;
  transition: background .25s, transform .3s var(--ease-spring);
  font-size: 0 !important;
}
.faq-list-v2 .faq-item .toggle::before,
.faq-list-v2 .faq-item .toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s var(--ease-spring), opacity .25s;
}
.faq-list-v2 .faq-item .toggle::before { width: 12px; height: 2px; }
.faq-list-v2 .faq-item .toggle::after  { width: 2px; height: 12px; }
.faq-list-v2 .faq-item[open] .toggle { background: var(--orange); color: var(--paper); }
.faq-list-v2 .faq-item[open] .toggle::after { transform: scaleY(0); opacity: 0; }

/* Answer — soft highlighted left accent */
.faq-list-v2 .faq-item .answer {
  padding: 4px 0 16px 36px !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  margin-left: 11px;
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.04), transparent 80%);
}

/* Aside support card — meta list */
.fa-cta-meta {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.fa-cta-meta li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.78);
}
.fcm-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hub link button — primary outline style */
.fa-hub-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  background: var(--paper) !important;
  color: var(--orange) !important;
  border: 1.5px solid rgba(232, 101, 43, 0.35) !important;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s var(--ease-spring);
}
.fa-hub-link:hover {
  background: var(--orange-soft) !important;
  border-color: var(--orange) !important;
  transform: translateY(-1px);
}
.fa-hub-link svg { transition: transform .25s var(--ease-spring); }
.fa-hub-link:hover svg { transform: translateX(3px); }

/* Mobile: filters first, then accordion, then support card */
@media (max-width: 1024px) {
  .faq-split { display: flex; flex-direction: column; gap: 18px; }
  .faq-aside { display: contents; }
  .faq-aside .fa-card:first-child { order: 1; } /* filter chips */
  .faq-list-v2 { order: 2; }
  .faq-aside .fa-cta-card { order: 3; }
  .faq-aside .fa-hub-link { order: 4; }
}
@media (max-width: 480px) {
  .faq-list-v2 .faq-item summary { padding: 12px 4px !important; gap: 10px; }
  .faq-list-v2 .faq-item .q { font-size: 14px !important; }
  .faq-list-v2 .faq-item.is-top .q { font-size: 14.5px !important; }
  .q-pill { font-size: 8px; padding: 2px 7px; }
  .faq-list-v2 .faq-item .answer { padding-left: 30px !important; font-size: 13.5px !important; }
}

/* No-JS / non-interactive chips fallback: chip click already wired in animations.js. Cosmetic enhancement: */
.fa-chip { transition: all .2s var(--ease-out); }
.fa-chip:hover { transform: translateY(-1px); }

/* ============================================================
   v10 — CTA strategy cleanup (locations/durations/time-slots)
   ============================================================ */

/* Section-level help bar under terrain cards */
.loc-help-bar {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-night) 100%);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--paper);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px -16px rgba(7, 47, 56, 0.5);
}
.lhb-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lhb-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.lhb-lead { font-size: 15px; color: rgba(247, 243, 236, 0.88); line-height: 1.5; }
.lhb-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .loc-help-bar { flex-direction: column; align-items: flex-start; padding: 20px; gap: 14px; }
  .lhb-ctas { width: 100%; }
  .lhb-ctas .pkg-btn { flex: 1; min-width: 140px; }
}

/* Soft secondary location button (no Book Now style) */
.pkg-btn-soft {
  background: transparent !important;
  color: var(--orange) !important;
  border: 1px solid rgba(232, 101, 43, 0.35) !important;
  width: 100%;
}
.pkg-btn-soft:hover {
  background: var(--orange-soft) !important;
  border-color: var(--orange) !important;
  transform: translateY(-1px);
}

/* Duration card link label (replaces arrow) */
.dur-link {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.dur-card:hover .dur-link { color: var(--orange-deep); }
.dur-card.dur-new .dur-link { color: var(--gold); }

/* Final mobile containment for the photo-upgraded dune buggy pillar */
@media (max-width: 720px) {
  body[data-page="dune-buggy"] main {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  body[data-page="dune-buggy"] main > section > .wrap {
    width: min(100%, 350px) !important;
    max-width: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body[data-page="dune-buggy"] .pillar-hero > .wrap {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }
  body[data-page="dune-buggy"] .hero-grid,
  body[data-page="dune-buggy"] .hero-left,
  body[data-page="dune-buggy"] .hero-right,
  body[data-page="dune-buggy"] .intro-card,
  body[data-page="dune-buggy"] .fleet-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  body[data-page="dune-buggy"] .pillar-hero h1,
  body[data-page="dune-buggy"] .pillar-hero-sub {
    max-width: 100% !important;
    overflow-wrap: break-word;
  }
  body[data-page="dune-buggy"] .hero-trust-badges .htb,
  body[data-page="dune-buggy"] .pillar-hero-price .from-meta,
  body[data-page="dune-buggy"] .fpl-meta {
    white-space: normal !important;
  }
  body[data-page="dune-buggy"] .hero-ctas {
    flex-direction: column !important;
  }
  body[data-page="dune-buggy"] .hero-ctas .btn,
  body[data-page="dune-buggy"] .fc-actions > a {
    width: 100% !important;
    min-width: 0 !important;
  }
  body[data-page="dune-buggy"] .fleet-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  body[data-page="dune-buggy"] .fc-body {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  body[data-page="dune-buggy"] .fc-actions {
    flex-direction: column !important;
  }
}
