/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow: hidden;
  background: var(--black);
}
.hero .wrap{
  width: 100%;
  max-width: 100%;
  padding-left: 6%;
  padding-right: 6%;
  box-sizing: border-box;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:1;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.08);
  transition: transform 6s var(--ease);
}
.hero.loaded .hero-media img{ transform: scale(1); }
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.55) 42%, rgba(10,10,11,0.15) 68%, rgba(10,10,11,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,11,0) 72%, rgba(10,10,11,0.85) 92%, var(--black) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 60px;
}
.hero-content h1{
  color: var(--white);
  margin-bottom: 28px;
}
.hero-content h1 .accent{ color: var(--brass); font-style: italic; }
.hero-flags{
  display:flex;
  gap: 28px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.hero-flags span{
  display:flex;
  align-items:center;
  gap:9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}
.hero-flags i{
  width: 20px; height:20px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.6rem;
}
.hero-scroll{
  position:absolute;
  bottom: 40px; left: 32px;
  z-index: 2;
  display:flex; align-items:center; gap:12px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll .line{
  width: 1px; height: 42px;
  background: linear-gradient(var(--brass), transparent);
  animation: scrollLine 2s infinite var(--ease);
}
@keyframes scrollLine{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  50.1%{ transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Services grid ---------- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 26px;
  transition: transform .5s var(--ease), border-color .5s ease, background .5s ease;
}
.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(235,165,60,0.4);
  background: #1d1a12;
}
.service-icon{
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--brass);
  color: #1a1206;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  margin-bottom: 22px;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-icon{ transform: rotate(-12deg) scale(1.08); }
.service-card h3{ color: var(--white); margin-bottom: 12px; }
.service-card p{ color: var(--muted); font-size: 0.9rem; }

@media (max-width: 1020px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

/* ---------- Story split ---------- */
.story{
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 60px;
  align-items:center;
}
.story-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom: 44px;
  gap: 20px;
}
.story-visual{
  position: relative;
}
.story-quote{
  background: var(--cream-soft);
  border-radius: 22px;
  padding: 48px 46px;
  position: relative;
  margin-bottom: -70px;
  margin-right: -40px;
  max-width: 520px;
  z-index: 2;
  box-shadow: 0 40px 70px -30px rgba(0,0,0,0.35);
}
.story-quote .mark{ font-family: var(--font-display); font-size: 3rem; color: var(--brass); line-height: 1; }
.story-quote p{ color:#3a3527; margin: 18px 0 26px; font-size: 1.02rem; }
.story-avatars{ display:flex; gap:-8px; margin-bottom:20px; }
.story-avatars img{
  width: 46px; height:46px; border-radius:50%;
  border: 2px solid var(--cream-soft);
  margin-left: -12px;
  object-fit: cover;
}
.story-avatars img:first-child{ margin-left:0; }
.story-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.story-tags span{
  font-size: 0.68rem;
  font-weight:700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff;
  padding: 7px 12px;
  border-radius: 20px;
  color:#3a3527;
}
.story-photo{
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.story-photo img{
  width:100%; height: 460px; object-fit: cover;
  transition: transform .8s var(--ease);
}
.story-photo:hover img{ transform: scale(1.06); }

.story-text p{ color: var(--muted); max-width: 480px; margin-top: 14px; }

/* Feature strip below story */
.feature-strip{
  margin-top: 100px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.feature-card{
  border-radius: 20px;
  padding: 40px;
}
.feature-card.dark{ background: var(--black-card); border:1px solid var(--line); }
.feature-card.cream{ background: var(--cream); color: var(--black); }
.feature-card .eyebrow{ margin-bottom:10px; }
.feature-card h3{ margin-bottom: 14px; font-size: 1.5rem; }
.feature-card.dark h3, .feature-card.dark p{ color: var(--white); }
.feature-card p{ color: #3a3527; font-size: 0.92rem; margin-bottom: 22px; }
.feature-card.dark p{ color: var(--muted); }
.feature-car{ margin-top: 24px; }
.feature-car img{ width: 100%; }

/* ---------- CTA band ---------- */
.cta-band{
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.cta-band-media{ position:absolute; inset:0; }
.cta-band-media img{ width:100%; height:100%; object-fit:cover; }
.cta-band-media::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,10,11,0.92), rgba(10,10,11,0.55) 60%, rgba(10,10,11,0.3));
}
.cta-band-content{ position:relative; z-index:2; max-width: 560px; }
.cta-band-content h2{ color: var(--white); margin-bottom: 18px; }
.cta-band-content p{ color: var(--muted); margin-bottom: 30px; max-width: 460px; }

/* ---------- Fleet grid (cars preview) ---------- */
.fleet-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px){ .fleet-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .fleet-grid{ grid-template-columns: 1fr; } }

.car-card{
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .55s ease, box-shadow .55s var(--ease);
  perspective: 900px;
}
.car-card:hover{
  transform: translateY(-10px);
  border-color: rgba(235,165,60,0.45);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.car-media{
  background: #fff;
  padding: 26px 20px 10px;
  position: relative;
  overflow: hidden;
}
.car-media img{
  width: 100%;
  transition: transform .6s var(--ease);
}
.car-card:hover .car-media img{ transform: scale(1.05) translateY(-4px); }
.car-body{ padding: 22px 24px 26px; }
.car-body h3{ color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.car-specs{
  display:flex; gap: 16px; flex-wrap:wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.car-specs span{
  display:flex; align-items:center; gap:6px;
  font-size: 0.76rem; color: var(--muted);
}
.car-specs i{ color: var(--brass); }
.car-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 18px;
}
.car-price{ font-family: var(--font-display); font-size: 1.3rem; color: var(--brass); }
.car-price span{ font-family: var(--font-body); font-size: 0.72rem; color: var(--muted); font-weight:600; }
.car-rating{ color: var(--brass); font-size: 0.78rem; letter-spacing: 2px; }

/* ---------- Pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px){ .pricing-grid{ grid-template-columns: 1fr; max-width:420px; margin:0 auto; } }
.price-card{
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 38px 34px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25); }
.price-card.featured{
  background: var(--cream);
  border-color: transparent;
  box-shadow: 0 30px 60px -28px rgba(235,165,60,0.5);
}
.price-crown{
  position:absolute; top:-16px; right: 32px;
  width: 40px; height: 40px;
  background: var(--brass);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  color: #1a1206;
}
.price-card h3{ margin-bottom: 8px; }
.price-card > p{ color:#6f6d68; font-size: 0.86rem; margin-bottom: 20px; }
.price-tag{
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--black);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}
.price-tag span{ font-family: var(--font-body); font-size: 0.9rem; color: #6f6d68; font-weight: 600;}
.price-feats li{
  display:flex; align-items:center; gap:10px;
  font-size: 0.88rem;
  color: #3a3527;
  margin-bottom: 12px;
}
.price-feats i{ color: var(--brass); font-size: 0.8rem; }
.price-card .btn{ margin-top: 10px; }

/* ---------- FAQ split ---------- */
.faq-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.faq-panel{
  background: var(--brass);
  border-radius: 22px;
  padding: 10px;
}
.faq-item{
  border-bottom: 1px solid rgba(10,10,11,0.15);
}
.faq-item:last-child{ border-bottom:none; }
.faq-q{
  width:100%;
  background:transparent;
  border:none;
  text-align:left;
  padding: 22px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight: 700;
  color: #1a1206;
  font-size: 0.96rem;
}
.faq-q i{ transition: transform .4s var(--ease); }
.faq-item.open .faq-q i{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  padding: 0 20px;
}
.faq-item.open .faq-a{ max-height: 200px; padding: 0 20px 22px; }
.faq-a p{ color: #3a2c0f; font-size: 0.9rem; }

.faq-info p{ color: var(--muted); margin: 16px 0 26px; max-width: 440px; }
.faq-mini{ display:flex; gap:20px; margin-top: 40px; }
.faq-mini-item{ display:flex; gap:14px; }
.faq-mini-icon{
  width:44px; height:44px; border-radius:50%;
  background: var(--black-card);
  border: 1px solid var(--line);
  color: var(--brass);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.faq-mini-item h4{ font-size: 0.92rem; color: var(--white); margin-bottom:4px; font-family: var(--font-body); font-weight:700; }
.faq-mini-item p{ font-size: 0.8rem; color: var(--muted); margin:0; }

@media (max-width: 900px){
  .story{ grid-template-columns: 1fr; }
  .story-quote{ margin:0; max-width:none; }
  .feature-strip{ grid-template-columns: 1fr; margin-top: 40px;}
  .faq-split{ grid-template-columns: 1fr; }
}
