/* Imperial VIP — matched to rent-a-car-mu-snowy.vercel.app */
:root {
  --background: #0d0d0c;
  --background-secondary: #0f0f0e;
  --surface: #171715;
  --surface-elevated: #1f1e1b;
  --foreground: #f5f1e8;
  --text-light: #a9a49a;
  --accent: #dbb54a;
  --accent-hover: #e7c86a;
  --accent-muted: #95732b;
  --on-accent: #14120c;
  --border: #f5f1e81f;
  --border-strong: #f5f1e833;
  --overlay: #000000a6;
  --accent-glow: #dbb54a59;
  --accent-glow-soft: #dbb54a1f;
  --wrap: 1300px;
  --font: Rubik, ui-sans-serif, system-ui, sans-serif;
  --radius-btn: 13px;
  --radius-card: 20px;
  --radius-img: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-weight: 300;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap {
  width: min(100% - 24px, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before,
.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--foreground);
}
.lead {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .lead { font-size: 14px; }
}

/* Buttons — 13px radius like reference */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-btn);
  height: 44px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 400;
  transition: box-shadow 0.25s, background 0.25s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-gold, .btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(219, 181, 74, 0.35);
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 22px rgba(219, 181, 74, 0.45);
}
.btn-ghost, .btn-secondary {
  background: rgba(245, 241, 232, 0.05);
  color: var(--foreground);
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover, .btn-secondary:hover {
  background: rgba(245, 241, 232, 0.1);
}
.btn-sm { height: 38px; padding: 0 22px; }
.btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
}

/* Header */
.hdr {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 40;
}
.hdr.is-solid {
  position: sticky;
  background: rgba(13, 13, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.hdr__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.nav {
  display: none;
  gap: 28px;
}
.nav a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav a:hover, .nav a.is-on { color: var(--foreground); }
.hdr__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr__actions > .btn {
  display: none;
}
@media (min-width: 768px) {
  .hdr__actions > .btn { display: inline-flex; }
}
/* Hamburger → X (reference MenuButton) */
.menu-btn {
  position: relative;
  z-index: 50;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 13, 12, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.menu-btn:active { transform: scale(0.95); }
.menu-btn__bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
}
.menu-btn__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.menu-btn.is-open .menu-btn__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-btn.is-open .menu-btn__bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open .menu-btn__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
}

/* Mobile dropdown menu (not side drawer) */
.mnav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 14000;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mnav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mnav {
  position: fixed;
  z-index: 14010;
  width: min(292px, calc(100vw - 24px));
  transform-origin: top right;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(31, 30, 27, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) scale(0.94);
  filter: blur(8px);
  transition:
    opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.mnav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.mnav__shine {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219,181,74,0.7), transparent);
  pointer-events: none;
}
.mnav__glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(219,181,74,0.1);
  filter: blur(40px);
  pointer-events: none;
}
.mnav__inner {
  position: relative;
  padding: 16px 14px 14px;
}
.mnav__label {
  margin: 0 0 12px;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.06s, transform 0.35s ease 0.06s;
}
.mnav.is-open .mnav__label {
  opacity: 1;
  transform: translateY(0);
}
.mnav__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 12px;
  color: var(--foreground);
  opacity: 0;
  transform: translateX(20px);
  transition:
    background 0.2s,
    color 0.2s,
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mnav.is-open .mnav__item {
  opacity: 1;
  transform: translateX(0);
}
.mnav.is-open .mnav__item:nth-child(1) { transition-delay: 0.1s; }
.mnav.is-open .mnav__item:nth-child(2) { transition-delay: 0.17s; }
.mnav.is-open .mnav__item:nth-child(3) { transition-delay: 0.24s; }
.mnav.is-open .mnav__item:nth-child(4) { transition-delay: 0.31s; }
.mnav.is-open .mnav__item:nth-child(5) { transition-delay: 0.38s; }
.mnav__item:hover { background: rgba(255,255,255,0.05); }
.mnav__item.is-on {
  background: rgba(219,181,74,0.15);
  color: var(--accent);
}
.mnav__n {
  width: 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(169,164,154,0.7);
}
.mnav__item.is-on .mnav__n { color: var(--accent); }
.mnav__t {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.mnav__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  transition: transform 0.3s, background 0.3s;
}
.mnav__item:hover .mnav__dot { transform: scale(1.25); }
.mnav__item.is-on .mnav__dot { background: var(--accent); }
.mnav__cta {
  margin-top: 12px;
  width: 100%;
  height: 46px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s, box-shadow 0.25s;
}
.mnav.is-open .mnav__cta {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 900px) {
  .mnav, .mnav-backdrop { display: none !important; }
}

/* ========== HERO (centered) ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0d0c;
  text-align: center;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.88);
  transform: scale(1.02);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,12,0.70) 0%, rgba(13,13,12,0.15) 40%, rgba(13,13,12,0.50) 75%, #0d0d0c 100%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(219,181,74,0.12), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 28px, 720px);
  margin: 0 auto;
  padding: 6rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero__loc::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(219,181,74,0.8);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--foreground);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero h1 span {
  display: block;
  font-weight: 300;
  opacity: 0.92;
}
.hero__sub {
  margin: 16px auto 0;
  max-width: 420px;
  color: rgba(245,241,232,0.75);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .hero__sub { font-size: 16px; }
}
.hero__cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 0; right: 0;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
}
.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 34px;
  background: rgba(245,241,232,0.15);
  overflow: hidden;
}
.hero__scroll-line span {
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  height: 12px;
  background: var(--accent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-12px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(34px); opacity: 0; }
}

/* ========== ABOUT ========== */
.about {
  padding: 72px 0 24px;
  background: var(--background);
}
@media (min-width: 768px) {
  .about { padding: 96px 0 32px; }
}
@media (min-width: 1280px) {
  .about { padding: 120px 0 32px; }
}
.about__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 180px 1fr;
    gap: 44px;
  }
}
.about__lead {
  margin: 0;
  max-width: 900px;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: rgba(169,164,154,0.55);
}
.about__lead strong {
  font-weight: 400;
  color: var(--foreground);
}
.about__sub {
  margin: 24px 0 0;
  max-width: 440px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .about__sub { margin-top: 32px; font-size: 14px; }
}
.about__stats {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .about__stats {
    margin-top: 52px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.about__stat {
  padding: 10px 12px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.about__stat:first-child { border-left: 0; padding-left: 0; }
.about__stat b {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1;
  color: var(--foreground);
}
.about__stat span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .about__stat span { font-size: 13px; }
}

/* ========== FEATURED ========== */
.featured {
  padding: 56px 0 48px;
  background: var(--background);
}
.featured__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.featured__head .eyebrow { margin-bottom: 12px; }
.featured__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--foreground);
}
.featured__frame {
  position: relative;
  margin-top: 8px;
}
.featured__bgtype {
  pointer-events: none;
  user-select: none;
  text-align: center;
  font-size: 17.5vw;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,241,232,0.14);
}
@media (min-width: 1280px) {
  .featured__bgtype { font-size: 230px; }
}
.featured__stage {
  position: relative;
  z-index: 1;
  margin: -7vw auto 0;
  width: 100%;
  max-width: 1080px;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
@media (min-width: 1280px) {
  .featured__stage { margin-top: -100px; }
}
.featured__stage::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  pointer-events: none;
  z-index: 1;
}
.featured__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
@media (max-width: 639px) {
  .featured__img { aspect-ratio: 4 / 3; }
}
.featured__meta {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.featured__meta small {
  display: block;
  color: rgba(245,241,232,0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.featured__meta strong {
  display: block;
  margin-top: 2px;
  font-size: 22px;
  font-weight: 500;
}
.featured__price { text-align: right; }
.featured__price b {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
}
.featured__price span {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 300;
}
.featured__foot {
  margin: 28px auto 0;
  max-width: 1080px;
  display: grid;
  gap: 20px;
  align-items: center;
}
@media (min-width: 900px) {
  .featured__foot {
    grid-template-columns: 1.1fr 1.2fr auto;
    gap: 24px;
  }
}
.featured__desc {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 300;
  max-width: 340px;
  line-height: 1.55;
}
.featured__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.stat b {
  display: block;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.stat b span {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
}
.stat small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
}

/* ========== COLLECTION ========== */
.collection {
  padding: 48px 0 56px;
  background: var(--background);
}
.collection__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.collection__head .eyebrow { margin-bottom: 12px; }
.collection__head .h2 { max-width: 420px; }
.collection__head .lead { max-width: 340px; }
.grid-4 {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 {
    margin-top: 40px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.vcard {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: rgba(23,23,21,0.8);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  transition: transform 0.4s, box-shadow 0.4s;
}
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.vcard__media {
  position: relative;
  margin: 6px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 15px;
  background: #0a0a0a;
}
.vcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vcard:hover .vcard__media img { transform: scale(1.06); }
.vcard__price {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 400;
  color: var(--foreground);
  backdrop-filter: blur(6px);
}
.vcard__body {
  padding: 14px 16px 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.vcard__body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.vcard__body p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.4;
}
.vcard__go {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(245,241,232,0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--foreground);
}

/* ========== EXPERIENCE ========== */
.experience {
  padding: 48px 0 56px;
  background: var(--background);
}
.experience__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .experience__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
}
.experience__media {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
}
.experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.experience .eyebrow { margin-bottom: 12px; }
.experience .h2 { max-width: 400px; }
.exp-list { margin-top: 24px; }
@media (min-width: 768px) {
  .exp-list { margin-top: 36px; }
}
.exp-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.exp-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.exp-item__n {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  min-width: 22px;
}
.exp-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.exp-item p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 42ch;
}
.experience .btn { margin-top: 28px; }

/* ========== REQUIREMENTS (centered) ========== */
.reqs {
  padding: 64px 0 48px;
  background: var(--background);
  text-align: center;
}
.reqs .eyebrow { margin-bottom: 14px; }
.reqs .h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}
.reqs .h2 em,
.reqs .h2 .hl {
  font-style: normal;
  color: var(--accent);
}
.req-grid {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  text-align: left;
}
@media (min-width: 768px) {
  .req-grid {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.req {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(23,23,21,0.8);
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  transition: transform 0.4s, border-color 0.4s;
}
@media (min-width: 768px) {
  .req { padding: 26px; }
}
.req:hover {
  transform: translateY(-3px);
  border-color: rgba(219,181,74,0.35);
}
.req__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.req__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(219,181,74,0.25);
  background: rgba(219,181,74,0.05);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.req__n {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(169,164,154,0.6);
}
.req h3 {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
.req p {
  margin: 12px 0 0;
  flex: 1;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .req p { font-size: 13px; }
}
.req__line {
  margin-top: 24px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(219,181,74,0.65), transparent);
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 56px 0 48px;
  background: var(--background);
}
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.reviews__head .eyebrow { margin-bottom: 12px; }
.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.rating__score {
  display: flex;
  align-items: end;
  gap: 14px;
}
.rating__score b {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 400;
  line-height: 1;
}
.rating__stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  padding-bottom: 4px;
}
.rating small {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
}
.rev-grid {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .rev-grid {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.rev {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(23,23,21,0.8);
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.rev__q {
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}
.rev > p {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--foreground);
}
.rev__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rev__foot strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.rev__foot span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
}

/* ========== PHILOSOPHY (centered) ========== */
.philosophy {
  padding: 24px 12px 40px;
  background: var(--background);
}
.philosophy__box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(48px, 8vw, 88px) 24px;
  text-align: center;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(245,241,232,0.03) 47px,
      rgba(245,241,232,0.03) 48px
    );
}
.philosophy__box::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  width: 70%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(219,181,74,0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.philosophy__box > * { position: relative; z-index: 1; }
.philosophy__box .eyebrow {
  justify-content: center;
}
.philosophy__box .eyebrow::before { display: none; }
.philosophy__box h2 {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.philosophy__box p {
  margin: 16px auto 0;
  max-width: 520px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .philosophy__box p { font-size: 14px; }
}
.philosophy__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .philosophy__actions { margin-top: 36px; }
}

/* ========== FOOTER ========== */
.ftr {
  padding: 80px 0 16px;
  background: var(--background);
  position: relative;
}
@media (min-width: 768px) {
  .ftr { padding: 120px 0 20px; }
}
.ftr__grid {
  display: grid;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}
@media (min-width: 768px) {
  .ftr__grid {
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-top: 48px;
  }
}
.ftr__brand p {
  margin: 16px 0 0;
  max-width: 280px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
}
.ftr__brand .btn { margin-top: 22px; }
.ftr__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .ftr__cols { grid-template-columns: repeat(4, 1fr); }
}
.ftr h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.ftr__cols > div > :nth-child(2) {
  margin-top: 12px;
}
.ftr__cols p,
.ftr__cols a,
.ftr__cols span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.45;
}
.ftr__cols small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
}
.ftr__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.ftr__watermark {
  margin-top: 48px;
  text-align: center;
  font-size: 14.5vw;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,241,232,0.12);
  user-select: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ftr__watermark { margin-top: 64px; }
}
@media (min-width: 1280px) {
  .ftr__watermark { font-size: 190px; }
}
.ftr__copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
}
@media (min-width: 640px) {
  .ftr__copy {
    flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .ftr__copy { margin-top: 32px; }
}

/* FABs — matched to reference (32→36→40px) */
.fabs {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .fabs { right: 20px; bottom: 20px; }
}
.fab {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 0;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  line-height: 0;
}
.fab svg {
  width: 11px;
  height: 11px;
  display: block;
}
.fab--wa svg {
  width: 13px;
  height: 13px;
}
@media (min-width: 640px) {
  .fab { width: 40px; height: 40px; }
  .fab svg { width: 14px; height: 14px; }
  .fab--wa svg { width: 16px; height: 16px; }
}
@media (min-width: 768px) {
  .fab { width: 36px; height: 36px; }
}
.fab:hover { transform: translateY(-2px); }
.fab:active { transform: scale(0.95); }
.fab--dark {
  background: var(--surface-elevated);
  color: var(--foreground);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.fab--wa {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 14px rgba(255,255,255,0.14);
}
.fab--wa:hover {
  box-shadow: 0 6px 18px rgba(255,255,255,0.2);
}
.fab--gold {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 16px rgba(219,181,74,0.35);
}
.fab--gold:hover {
  box-shadow: 0 8px 22px rgba(219,181,74,0.4);
}

/* Inner pages */
.page, .page-hero {
  padding: 5.5rem 0 1.25rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.page h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.page p, .page-hero p {
  margin: 0.4rem 0 0;
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.9rem;
}
.section { padding: 1.25rem 0 3rem; }

.toolbar { display: grid; gap: 0.65rem; margin: 0.75rem 0 0.75rem; }
.search-input {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--text-light);
}
.search-input input {
  border: 0;
  outline: none;
  width: 100%;
  background: transparent;
  color: var(--foreground);
}
.pm-filters, #fleet-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.fleet-filter, .fleet-brand, .picks__filter {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-light);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
}
.fleet-filter.is-active, .fleet-brand.is-active, .picks__filter.is-active,
.fleet-filter:hover, .fleet-brand:hover, .picks__filter:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.fleet-meta, #fleet-count {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}
.pm-vehicle-grid, .car-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pm-vehicle-grid, .car-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .pm-vehicle-grid, .car-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1280px) {
  .pm-vehicle-grid, .car-grid { grid-template-columns: repeat(4, 1fr); }
}
.pm-more { text-align: center; margin-top: 1.5rem; }
.pm-more.is-hidden, .pm-empty.is-hidden, .is-hidden { display: none !important; }
.pm-empty { text-align: center; color: var(--text-light); padding: 2.5rem 1rem; }
.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 0.7rem 1.1rem;
  font-weight: 400;
  font-size: 0.875rem;
  border: 0;
  cursor: pointer;
}
.pm-btn--primary { background: var(--accent); color: var(--on-accent); }
.pm-btn--line { background: transparent; border: 1px solid var(--border); color: var(--foreground); }

.car-card {
  background: #121110;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.car-card:hover {
  transform: translateY(-3px);
  border-color: rgba(219,181,74,0.28);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.car-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1816;
}
.car-card__img {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 118%;
  height: 118%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: 1;
}
.car-card:hover .car-card__img {
  width: 124%;
  height: 124%;
}
.car-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,17,16,0.72) 0%, rgba(18,17,16,0.08) 22%, rgba(18,17,16,0.05) 48%, rgba(18,17,16,0.82) 78%, #121110 100%),
    radial-gradient(ellipse 85% 70% at 50% 45%, transparent 20%, rgba(18,17,16,0.55) 100%);
}
.car-card__tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--foreground);
}
.car-card__caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  z-index: 3;
}
.car-card__brand {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.7);
}
.car-card__name {
  margin: 0.12rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--foreground);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.car-card__body {
  padding: 0.75rem 0.9rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  background: #121110;
}
.car-card__specs {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.4;
}
.car-card__spec-dot { margin: 0 0.25rem; opacity: 0.5; }
.car-card__foot {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.car-card__price { font-size: 0.92rem; font-weight: 500; }
.car-card__price small {
  display: block;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-light);
}
.car-card__cta { display: flex; gap: 0.35rem; flex-shrink: 0; }
.car-card__btn {
  border: 0;
  border-radius: var(--radius-btn);
  padding: 0.48rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.car-card__btn--primary { background: var(--accent); color: var(--on-accent); }
.car-card__btn--ghost { background: rgba(245,241,232,.06); color: var(--text-light); }

.booking-layout { display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .booking-layout { grid-template-columns: 1.25fr 0.75fr; align-items: start; }
}
.form-card, .summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
}
.form-card h2 { margin: 0 0 1rem; font-size: 1.15rem; font-weight: 500; }
.field { margin-bottom: 0.8rem; }
.field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: #0a0a0a;
  outline: none;
  color: var(--foreground);
}
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.booking-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.booking-success { display: none; text-align: center; padding: 1.5rem 0; }
.booking-success.is-shown { display: block; }
.booking-success i { font-size: 2rem; color: var(--accent); }
.summary-media {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: #0a0a0a;
  overflow: hidden;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-media img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; }
.summary-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-light);
  font-size: 0.85rem;
}
.summary-tag { font-size: 0.72rem; font-weight: 500; color: var(--text-light); }
.summary-name { margin: 0.2rem 0 0.75rem; font-size: 1.1rem; font-weight: 500; }
.summary-meta { display: grid; gap: 0.4rem; font-size: 0.85rem; }
.summary-row { display: flex; justify-content: space-between; color: var(--text-light); }
.summary-row span:last-child { color: var(--foreground); font-weight: 500; }
.summary-foot {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-light);
}
.summary-actions { margin-top: 0.85rem; display: flex; gap: 0.45rem; }
.summary-actions a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.modal {
  position: fixed; inset: 0; z-index: 80;
  display: none; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(0,0,0,.65);
}
.modal.is-open { display: flex; }
.modal__dialog {
  width: min(100%, 520px);
  max-height: 90vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 0.7rem; right: 0.7rem; z-index: 2;
  width: 36px; height: 36px;
  border: 0; border-radius: 999px;
  background: rgba(0,0,0,.7);
  color: #fff;
  cursor: pointer;
}
.modal__media { position: relative; aspect-ratio: 16/10; background: #0a0a0a; }
.modal__img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.modal__tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
}
.modal__body { padding: 1.1rem 1.2rem 1.3rem; }
.modal__brand { font-size: 0.75rem; font-weight: 500; color: var(--text-light); }
.modal__name { margin: 0.15rem 0 0.45rem; font-size: 1.25rem; font-weight: 500; }
.modal__desc { margin: 0; font-size: 0.875rem; color: var(--text-light); }
.modal__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.85rem 0;
}
.modal__spec {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
}
.modal__spec-lbl { display: block; font-size: 0.68rem; color: var(--text-light); }
.modal__spec-val { display: block; margin-top: 0.1rem; font-size: 0.82rem; font-weight: 500; }
.modal__price { display: flex; justify-content: space-between; margin-bottom: 0.9rem; }
.modal__price-lbl { font-size: 0.75rem; color: var(--text-light); }
.modal__price-val { font-weight: 500; }
.modal__actions { display: flex; gap: 0.5rem; }
.btn--primary, .modal__actions .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 0.7rem 1.1rem;
  font-weight: 400;
  font-size: 0.875rem;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
}
.btn--ghost, .modal__actions .btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 0.7rem 1.1rem;
  font-weight: 400;
  font-size: 0.875rem;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.scrollup { display: none !important; }
