:root { --hero-bg: #111111; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--hero-bg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(13,13,13,.93) 0%, rgba(13,13,13,.6) 50%, rgba(13,13,13,.15) 100%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 45%;
  background: linear-gradient(to top, rgba(13,13,13,.65) 0%, transparent 100%);
}
.hero__bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero__bg-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.hero__bg-slide.prev {
  opacity: 0;
  transform: scale(1.08);
}

/* content */
.hero__body {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero__text-area {
  padding-top: 110px;
  padding-bottom: 3rem;
  max-width: 720px;
}
.hero__category {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .98;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero__title span { color: var(--gold); }
.hero__sub {
  font-size: .87rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 2rem;
}
.hero__btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* HERO PILLS */
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.hero__pill:hover { background: rgba(201,169,110,.25); border-color: rgba(201,169,110,.5); color: #fff; }

/* POPULAR TAGS */
.hero__popular { display: flex; align-items: center; gap: .4rem; flex-wrap: nowrap; overflow: hidden; }
.hero__popular-label {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase; flex-shrink: 0; margin-right: .2rem;
}
.hero__popular-tag {
  display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  padding: .25rem .6rem;
  border: 1px solid rgba(255,255,255,.14);
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.8);
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
  background: rgba(255,255,255,.04);
  text-decoration: none;
}
.hero__popular-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }

/* HERO STATS STRIP */
.hero__stats {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,.08);
  background: transparent;
}
.hero__stats-inner {
  display: flex; align-items: stretch;
}
.hero__stat {
  flex: 1; display: flex; flex-direction: column; gap: .25rem;
  padding: 1.1rem 1.5rem;
}
.hero__stat-num {
  font-size: 1.1rem; font-weight: 900;
  color: var(--white); letter-spacing: -.02em; line-height: 1;
}
.hero__stat-label {
  font-size: .7rem; font-weight: 500;
  color: rgba(255,255,255,.58); line-height: 1.4;
}
@media (max-width: 768px) {
  .hero__stats-inner { flex-wrap: wrap; }
  .hero__stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 480px) { .hero__stat { flex: 1 1 100%; } }

/* ═══════════════════════════════════════════
   FEATURED VEHICLES
═══════════════════════════════════════════ */
.featured {
  padding: 5rem 0;
  background: #F8F5F0;
}
.featured__head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.featured__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; margin-top: .4rem;
  color: var(--ink);
}
.featured__sub {
  font-size: .82rem; color: rgba(13,13,13,.45);
  margin-top: .35rem;
}
.featured .sec-label { color: var(--gold-dark); }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* CARD */
.feat-card {
  background: #1E1E1E;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.5);
}

/* IMAGE */
.feat-card__img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.feat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.feat-card:hover .feat-card__img img { transform: scale(1.05); }

/* top tag */
.feat-card__tag {
  position: absolute; top: 0; left: 0;
  padding: .3rem .7rem;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--white); z-index: 1;
}
.feat-card__tag--new { background: #2D8080; }

/* rating badge — overlaps image bottom */
.feat-card__badge {
  position: absolute; bottom: .75rem; right: .75rem;
  display: flex; align-items: center; gap: .35rem;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  padding: .3rem .7rem;
  font-size: .7rem; font-weight: 700; color: var(--white);
  z-index: 1;
}
.feat-card__badge svg { color: #4ADE80; flex-shrink: 0; }

/* BODY */
.feat-card__body { padding: 1.1rem 1.1rem .9rem; flex: 1; }
.feat-card__name {
  font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
  margin-bottom: .3rem; line-height: 1.2;
}
.feat-card__location {
  display: flex; align-items: center; gap: .3rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
  font-weight: 500; margin-bottom: .9rem;
}
.feat-card__location svg { flex-shrink: 0; }
.feat-card__specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .45rem .75rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.feat-card__spec {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500;
}
.feat-card__spec svg { flex-shrink: 0; color: rgba(255,255,255,.4); }

/* FOOTER */
.feat-card__foot {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .85rem 1.1rem;
  gap: .5rem;
}
.feat-card__price-label {
  font-size: .72rem; color: rgba(255,255,255,.55);
  font-weight: 500; margin-bottom: .1rem;
}
.feat-card__price {
  font-size: 1.15rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -.01em;
}
.feat-card__price span { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); }

/* LIGHT VARIANT */
.feat-card--light { background: var(--white); border: 1px solid rgba(13,13,13,.08); }
.feat-card--light:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); border-color: transparent; }
.feat-card--light .feat-card__name { color: var(--ink); }
.feat-card--light .feat-card__location { color: rgba(13,13,13,.55); }
.feat-card--light .feat-card__specs { border-bottom: none; padding-bottom: 0; }
.feat-card--light .feat-card__spec { color: rgba(13,13,13,.6); }
.feat-card--light .feat-card__spec svg { color: rgba(13,13,13,.35); }
.feat-card--light .feat-card__price-label { color: rgba(13,13,13,.55); }
.feat-card--light .feat-card__price { color: var(--ink); }
.feat-card--light .feat-card__price span { color: rgba(13,13,13,.55); }
.feat-card--light .feat-card__foot { border-top: none; background: rgba(13,13,13,.03); }

@media (max-width: 1024px) {
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .featured__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how { padding: 6rem 0; background: var(--off); }
.how__head { margin-bottom: 3.5rem; }
.sec-label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dark); display: block; margin-bottom: .75rem;
}
.sec-title {
  font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 800; letter-spacing: -.025em;
}
.how__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.how__col-title {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: .6rem;
}
.how__col-title-bar { width: 24px; height: 3px; background: currentColor; }
.how__steps { display: flex; flex-direction: column; gap: 1.5rem; }
.how__step { display: flex; gap: 1rem; }
.how__step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--off-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
  color: var(--ink-2);
}
.how__step-num--teal { background: rgba(126,200,200,.15); color: #2D8080; }
.how__step-num--gold { background: rgba(139,102,53,.1); color: var(--gold-dark); }
.how__step-title { font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.how__step-text  { font-size: .85rem; color: var(--ink-2); line-height: 1.7; }

/* ═══════════════════════════════════════════
   LISTINGS
═══════════════════════════════════════════ */
.listings { padding: 6rem 0; background: var(--white); }
.listings__head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 1.75rem; flex-wrap: wrap;
}
.listings__title {
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800; letter-spacing: -.025em;
  margin-top: .4rem;
}

/* Grid */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5px; background: var(--off-2); }
.car-card { background: var(--white); overflow: hidden; transition: box-shadow .25s; }
.car-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); position: relative; z-index: 1; }
.car-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--off); }
.car-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.car-card:hover .car-card__img-wrap img { transform: scale(1.04); }
.car-card__tag {
  position: absolute; top: 0; left: 0;
  padding: .3rem .7rem;
  font-size: .6rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.car-card__tag--top  { background: var(--gold); color: var(--white); }
.car-card__tag--new  { background: var(--ink); color: var(--white); }
.car-card__fav {
  position: absolute; top: .75rem; right: .75rem;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); border: none; cursor: pointer;
  transition: color .2s;
}
.car-card__fav:hover { color: #e74c3c; }
.car-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.car-card__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .25rem; }
.car-card__name { font-size: .95rem; font-weight: 800; letter-spacing: -.01em; }
.car-card__price { font-size: .95rem; font-weight: 800; }
.car-card__price span { font-size: .65rem; font-weight: 500; color: var(--ink-3); }
.car-card__meta {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .8rem; flex-wrap: wrap;
}
.car-card__meta-item {
  display: flex; align-items: center; gap: .25rem;
  font-size: .68rem; font-weight: 600; color: var(--ink-3);
}
.car-card__meta-item svg { color: var(--ink-4); }
.car-card__footer {
  display: flex; align-items: center; gap: .5rem;
  padding-top: .8rem; border-top: 2px solid var(--off);
}
.car-card__rating {
  display: flex; align-items: center; gap: .25rem;
  font-size: .7rem; font-weight: 800; color: var(--ink);
}
.car-card__rating svg { color: var(--gold-dark); }
.car-card__reviews { font-size: .65rem; color: var(--ink-3); font-weight: 500; }
.car-card__location {
  margin-left: auto; font-size: .65rem; font-weight: 700;
  color: var(--ink-3); display: flex; align-items: center; gap: .2rem;
}
.car-card__location svg { color: var(--ink-4); }
.car-card__cta-row { padding: .75rem 1.2rem; border-top: 2px solid var(--off); }

/* ═══════════════════════════════════════════
   PERKS — what you get
═══════════════════════════════════════════ */
.perks {
  padding: 5.5rem 0;
  background: #111;
}
.perks__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.perks__sub {
  font-size: .88rem; color: rgba(255,255,255,.4);
  margin-top: .75rem; max-width: 440px; margin-inline: auto;
  line-height: 1.75;
}
.perks__head .sec-title { color: var(--white); }
.perks__head .sec-title span { color: var(--gold); }
.perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.perk-card {
  background: transparent;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s;
}
.perk-card:hover { transform: translateY(-4px); }
.perk-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.perk-card__title {
  font-size: .95rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
  line-height: 1.3;
}
.perk-card__text {
  font-size: .8rem; color: rgba(255,255,255,.55);
  line-height: 1.75; margin: 0;
}
@media (max-width: 900px) { .perks__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .perks__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   OWNERS TEASER — dark
═══════════════════════════════════════════ */
.owners-teaser {
  background: var(--ink);
  padding: 6rem 0;
}
.owners-teaser__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.owners-teaser__kicker {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.owners-teaser__title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900; letter-spacing: -.025em;
  color: var(--white); line-height: 1.05; margin-bottom: 1rem;
}
.owners-teaser__title span { color: var(--gold); }
.owners-teaser__sub {
  font-size: .88rem; color: rgba(255,255,255,.6);
  line-height: 1.8; margin-bottom: 1.75rem;
}
.owners-teaser__perks { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.owners-teaser__perk {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7);
}
.owners-teaser__perk::before {
  content: ''; flex-shrink: 0;
  width: 16px; height: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 9px;
}
.owners-teaser__stats {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.owners-teaser__stat {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--gold);
}
.owners-teaser__stat-icon {
  color: var(--gold); flex-shrink: 0;
  opacity: .8;
}
.owners-teaser__stat-body { display: flex; flex-direction: column; gap: .2rem; }
.owners-teaser__stat-num {
  font-size: 1.6rem; font-weight: 900;
  color: var(--white); letter-spacing: -.03em; line-height: 1;
}
.owners-teaser__stat-label {
  font-size: .75rem; font-weight: 500;
  color: rgba(255,255,255,.45); line-height: 1.4;
}
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar { padding: 3.5rem 0; background: var(--off); border-top: 2px solid var(--off-2); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat__num {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 900; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: .2rem;
}
.stat__num b { color: var(--gold-dark); font-weight: 900; }
.stat__label { font-size: .78rem; font-weight: 600; color: var(--ink-2); letter-spacing: .06em; text-transform: uppercase; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews { padding: 6rem 0; background: var(--white); }
.reviews__head { margin-bottom: 2.5rem; }
.reviews__title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; letter-spacing: -.025em; margin-top: .4rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--off-2); }
.review-card { background: var(--white); padding: 1.75rem; transition: background .2s; }
.review-card:hover { background: var(--off); }
.review-card__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: .75rem; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .2rem .65rem;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .85rem;
}
.review-card__badge--rent  { background: rgba(126,200,200,.12); color: #2D8080; }
.review-card__badge--owner { background: rgba(139,102,53,.1); color: var(--gold-dark); }
.review-card__text { font-size: .82rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 1.1rem; }
.review-card__author { display: flex; align-items: center; gap: .7rem; }
.review-card__avatar {
  width: 34px; height: 34px; background: var(--off-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--ink-2); flex-shrink: 0;
}
.review-card__name { font-size: .85rem; font-weight: 700; }
.review-card__date { font-size: .72rem; color: var(--ink-3); margin-top: 1px; }

/* ═══════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════ */
.feat-strip { display: grid; grid-template-columns: repeat(3,1fr); }
.feat-block {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.feat-block__img {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transition: transform .7s var(--ease);
}
.feat-block:hover .feat-block__img { transform: scale(1.06); }
.feat-block::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
.feat-block__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem; z-index: 1;
}
.feat-block__title {
  font-size: clamp(1.1rem,1.8vw,1.55rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.025em; line-height: 1.2;
  margin-bottom: .7rem;
}
.feat-block__text { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.75; }
@media (max-width: 768px) { .feat-strip { grid-template-columns: 1fr; } .feat-block { aspect-ratio: 16/9; } }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.v { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__text-area { max-width: 440px; }
}
@media (max-width: 900px) {
  .how__grid, .owners-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews__grid { grid-template-columns: 1fr; gap: 1.5px; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .car-grid { grid-template-columns: 1fr; gap: 1.5px; }
}
@media (max-width: 768px) {
  .hero__text-area { max-width: 100%; }
}
