:root {
  --rm-bg: #FFFFFF;
  --rm-surface: #F7F7F5;
  --rm-ink: #1F1F1F;
  --rm-accent: #0D438D;
  --rm-accent-hover: #0A3570;
  --rm-gold: #F7D61E;
  --rm-whatsapp: #25D366;
  --rm-whatsapp-hover: #1DA851;
  --rm-radius: 8px;
  --rm-space-sm: 8px;
  --rm-space-md: 16px;
  --rm-space-lg: 32px;
  --rm-border: #E3E3E0;
}

.rm-vehicle {
  max-width: 1140px;
  margin: 0 auto;
  padding: var(--rm-space-lg) var(--rm-space-md);
  color: var(--rm-ink);
  font-family: 'Jost', sans-serif;
}

.rm-vehicle :where(h1, h2, h3, h4) {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--rm-ink);
}

.rm-vehicle__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--rm-space-lg);
  align-items: start;
}

@media (max-width: 860px) {
  .rm-vehicle__top { grid-template-columns: 1fr; }
}

/* Gallery */
.rm-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--rm-radius);
  border: 1px solid var(--rm-border);
  cursor: zoom-in;
}

.rm-gallery__thumbs {
  display: flex;
  gap: var(--rm-space-sm);
  margin-top: var(--rm-space-sm);
}

.rm-gallery__thumb {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity .15s, border-color .15s;
}

.rm-gallery__thumb:hover,
.rm-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--rm-accent);
}

/* Sticky booking box */
.rm-booking {
  position: sticky;
  top: var(--rm-space-lg);
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: var(--rm-space-lg);
}

.rm-booking__title {
  font-size: 1.6rem;
  margin: 0 0 var(--rm-space-sm);
}

.rm-booking__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rm-gold);
  font-size: 0.95rem;
  margin-bottom: var(--rm-space-md);
}

.rm-booking__rating span.rm-star-count { color: var(--rm-ink); opacity: 0.7; }

.rm-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--rm-space-md);
  font-size: 0.95rem;
}

.rm-price-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--rm-border);
}

.rm-price-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.rm-price-table tr:last-child td { border-bottom: none; }

.rm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--rm-space-md);
}

.rm-badge {
  font-size: 0.78rem;
  background: #fff;
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--rm-ink);
}

.rm-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--rm-whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 20px;
  border-radius: var(--rm-radius);
  text-decoration: none;
  border: none;
  transition: background .15s;
}

.rm-cta-whatsapp:hover { background: var(--rm-whatsapp-hover); color: #fff; }
.rm-cta-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

.rm-cta-note {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: var(--rm-space-sm);
}

/* Content sections below */
.rm-vehicle__body {
  margin-top: calc(var(--rm-space-lg) * 1.5);
  max-width: 780px;
}

.rm-vehicle__body h2 {
  font-size: 1.5rem;
  margin-top: var(--rm-space-lg);
  margin-bottom: var(--rm-space-sm);
  padding-bottom: var(--rm-space-sm);
  border-bottom: 2px solid var(--rm-accent);
  display: inline-block;
}

.rm-vehicle__body ul {
  padding-left: 20px;
}

.rm-vehicle__body li { margin-bottom: 6px; }

.rm-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--rm-space-md);
  margin: var(--rm-space-md) 0;
}

.rm-spec-item {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: var(--rm-space-md);
}

.rm-spec-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
  margin-bottom: 4px;
}

/* FAQ accordion */
.rm-faq { border-top: 1px solid var(--rm-border); }

.rm-faq__item {
  border-bottom: 1px solid var(--rm-border);
}

.rm-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--rm-space-md) 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--rm-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.rm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
  padding: 0;
  margin: 0;
  opacity: 0.85;
}

.rm-faq__item.is-open .rm-faq__answer {
  max-height: 300px;
  padding-bottom: var(--rm-space-md);
}

/* Reviews */
.rm-reviews__item {
  border-bottom: 1px solid var(--rm-border);
  padding: var(--rm-space-md) 0;
}

.rm-reviews__author {
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.rm-reviews__stars { color: var(--rm-gold); font-size: 0.9rem; }
/* ---------- Price TBD placeholder ---------- */
.rm-price-tbd {
  font-style: italic;
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.85rem;
}

/* ---------- Luxury FAQ ---------- */
.rm-faq {
  border-top: 1px solid var(--rm-border);
  margin-top: var(--rm-space-md);
}

.rm-faq__item {
  border-bottom: 1px solid var(--rm-border);
  position: relative;
}

.rm-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 16px;
  transition: padding-left .2s ease;
}

.rm-faq__item:hover .rm-faq__question { padding-left: 10px; }

.rm-faq__num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--rm-gold);
  letter-spacing: 0.05em;
  border: 1px solid var(--rm-gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-faq__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--rm-ink);
}

.rm-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}

.rm-faq__icon::before,
.rm-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--rm-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.rm-faq__icon::before { width: 14px; height: 2px; }
.rm-faq__icon::after { width: 2px; height: 14px; }

.rm-faq__item.is-open .rm-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.rm-faq__item.is-open .rm-faq__num { background: var(--rm-gold); color: #fff; }

.rm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 4px 0 56px;
  margin: 0;
}

.rm-faq__answer p {
  opacity: 0.75;
  line-height: 1.6;
}

.rm-faq__item.is-open .rm-faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ---------- Luxury Reviews ---------- */
.rm-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--rm-space-md);
  margin-top: var(--rm-space-md);
}

.rm-reviews__card {
  background: linear-gradient(180deg, #fff 0%, var(--rm-surface) 100%);
  border: 1px solid var(--rm-border);
  border-top: 3px solid var(--rm-gold);
  border-radius: var(--rm-radius);
  padding: 28px 24px 22px;
  position: relative;
  box-shadow: 0 4px 16px rgba(13, 67, 141, 0.06);
}

.rm-reviews__quote {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--rm-gold);
  opacity: 0.5;
  margin-bottom: -10px;
}

.rm-reviews__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--rm-ink);
  opacity: 0.85;
  margin-bottom: 18px;
  min-height: 60px;
}

.rm-reviews__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--rm-border);
  padding-top: 16px;
}

.rm-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rm-accent);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rm-reviews__author {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}

.rm-reviews__stars {
  color: var(--rm-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
/* ---------- Category archive grid ---------- */
.rm-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--rm-space-lg) var(--rm-space-md);
  font-family: 'Jost', sans-serif;
  color: var(--rm-ink);
}

.rm-archive__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--rm-space-lg);
}

.rm-archive__header h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--rm-ink);
}

.rm-archive__subtitle {
  opacity: 0.7;
  line-height: 1.6;
}

.rm-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rm-space-lg);
}

@media (max-width: 900px) {
  .rm-archive__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rm-archive__grid { grid-template-columns: 1fr; }
}

.rm-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #fff 0%, var(--rm-surface) 100%);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 2px 10px rgba(13, 67, 141, 0.05);
}

.rm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(13, 67, 141, 0.14);
  border-color: var(--rm-gold);
}

.rm-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rm-surface);
}

.rm-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.rm-card:hover .rm-card__image img { transform: scale(1.05); }

.rm-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--rm-surface) 0%, #ececea 100%);
}

.rm-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rm-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

.rm-card__body {
  padding: 18px 20px 20px;
}

.rm-card__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--rm-ink);
}

.rm-card__rating {
  color: var(--rm-gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.rm-card__rating span { color: var(--rm-ink); opacity: 0.6; margin-left: 4px; }

.rm-card__specs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.rm-card__specs span {
  font-size: 0.76rem;
  color: var(--rm-ink);
  opacity: 0.65;
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 3px 10px;
}

.rm-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rm-border);
  padding-top: 14px;
}

.rm-card__price-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.55;
}

.rm-card__price-value {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rm-accent);
}

.rm-card__price-value span {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--rm-ink);
  opacity: 0.6;
}

.rm-card__price-tbd {
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.55;
}

.rm-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rm-accent);
  border: 1px solid var(--rm-accent);
  border-radius: 20px;
  padding: 6px 14px;
  transition: background .15s, color .15s;
}

.rm-card:hover .rm-card__cta {
  background: var(--rm-accent);
  color: #fff;
}