:root {
  --bg: #0c0c0e;
  --bg-2: #111114;
  --bg-card: #141418;
  --gold: #c9a84c;
  --gold-dim: #8a6f2e;
  --text: #f0ede8;
  --text-2: #9e9a94;
  --text-3: #5e5a54;
  --border: #222226;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-mark { color: var(--gold); font-size: 0.75rem; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em; font-weight: 500; }
.nav__phone { color: var(--text-2); font-size: 0.85rem; text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.nav__phone:hover { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.6) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.6) 0%, transparent 70%);
}
.hero__content { max-width: 760px; position: relative; z-index: 1; }
.hero__eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 400; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  color: var(--text);
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: 1.05rem; color: var(--text-2); max-width: 560px; line-height: 1.75; margin-bottom: 3rem; }
.hero__stats { display: flex; align-items: center; gap: 2.5rem; }
.hero__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 500; line-height: 1; }
.hero__stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero__vehicle-strip {
  margin-top: auto;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__vehicle-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); flex-shrink: 0; }
.hero__vehicles { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__vehicles span { font-size: 0.82rem; color: var(--text-2); font-family: var(--font-display); font-style: italic; }
.hero__vehicles .sep { color: var(--gold-dim); font-style: normal; }

/* SERVICES */
.services { padding: 6rem 3rem; background: var(--bg-2); }
.services__inner { max-width: 1100px; margin: 0 auto; }
.services__header { margin-bottom: 3.5rem; }
.services__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; margin-bottom: 0.75rem; }
.services__desc { color: var(--text-2); font-size: 0.95rem; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.services__card { background: var(--bg-card); padding: 2.5rem 2rem; position: relative; }
.services__card--featured { background: #161619; border-left: 2px solid var(--gold); }
.services__card--featured::before { content: 'Most popular'; position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.services__card-icon { color: var(--gold); font-size: 0.65rem; margin-bottom: 1.5rem; }
.services__card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.5rem; }
.services__card-price { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.services__card-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

/* FLEET */
.fleet { padding: 6rem 3rem; background: var(--bg); }
.fleet__inner { max-width: 1100px; margin: 0 auto; }
.fleet__header { margin-bottom: 3.5rem; }
.fleet__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.fleet__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; max-width: 500px; }
.fleet__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--border); }
.fleet__vehicle { background: var(--bg-card); overflow: hidden; }
.fleet__vehicle--wide { grid-column: span 2; }
.fleet__vehicle-img { height: 180px; background: #1a1a1e; position: relative; overflow: hidden; }
/* Escalade - warm dark gradient */
.fleet__vehicle-img--escalade { background: linear-gradient(135deg, #1c1a17 0%, #2a2820 40%, #1a1916 100%); }
.fleet__vehicle-img--escalade::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'%3E%3Crect x='200' y='80' width='160' height='60' rx='8' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='0.15'/%3E%3Crect x='170' y='60' width='220' height='90' rx='10' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E") center/contain no-repeat; }
.fleet__vehicle-img--expedition { background: linear-gradient(135deg, #18191c 0%, #22242a 40%, #191b1e 100%); }
.fleet__vehicle-img--expedition::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'%3E%3Crect x='180' y='70' width='180' height='70' rx='6' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='0.12'/%3E%3Crect x='150' y='55' width='240' height='95' rx='8' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E") center/contain no-repeat; }
.fleet__vehicle-img--nautilus { background: linear-gradient(135deg, #1a1817 0%, #262420 40%, #1c1a18 100%); }
.fleet__vehicle-img--nautilus::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'%3E%3Crect x='190' y='75' width='150' height='55' rx='5' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='0.12'/%3E%3Crect x='160' y='60' width='210' height='80' rx='7' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E") center/contain no-repeat; }
.fleet__vehicle-img--tesla { background: linear-gradient(135deg, #141a1e 0%, #1e2832 40%, #161d24 100%); }
.fleet__vehicle-img--tesla::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'%3E%3Crect x='185' y='70' width='160' height='58' rx='6' fill='none' stroke='%2355aaff' stroke-width='1' opacity='0.15'/%3E%3Crect x='155' y='55' width='220' height='85' rx='8' fill='none' stroke='%2355aaff' stroke-width='0.5' opacity='0.07'/%3E%3C/svg%3E") center/contain no-repeat; }
.fleet__vehicle-info { padding: 1.5rem 1.8rem; border-top: 1px solid var(--border); }
.fleet__vehicle-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.3rem; }
.fleet__vehicle-meta { font-size: 0.75rem; color: var(--text-3); letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.fleet__vehicle-tag { font-size: 0.78rem; color: var(--gold); font-style: italic; }

/* ASSURANCE */
.assurance { padding: 6rem 3rem; background: var(--bg-2); }
.assurance__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.assurance__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.assurance__title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.2; }
.assurance__body { color: var(--text-2); font-size: 0.95rem; line-height: 1.8; }
.assurance__features { display: flex; flex-direction: column; gap: 0; }
.assurance__feature { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.assurance__feature:first-child { border-top: 1px solid var(--border); }
.assurance__feature-check { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.2rem; }
.assurance__feature-title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 0.2rem; }
.assurance__feature-desc { font-size: 0.82rem; color: var(--text-3); }

/* TESTIMONIALS */
.testimonials { padding: 6rem 3rem; background: var(--bg); }
.testimonials__inner { max-width: 1100px; margin: 0 auto; }
.testimonials__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; background: var(--border); }
.testimonials__card { background: var(--bg-card); padding: 2.5rem 2rem; }
.testimonials__quote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; border-left: 2px solid var(--gold-dim); padding-left: 1.2rem; }
.testimonials__author { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonials__author strong { font-size: 0.85rem; font-weight: 500; }
.testimonials__author span { font-size: 0.75rem; color: var(--text-3); }

/* CLOSING */
.closing { padding: 7rem 3rem; background: var(--bg-2); border-top: 1px solid var(--border); }
.closing__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing__title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.15; }
.closing__body { color: var(--text-2); font-size: 1rem; line-height: 1.8; margin-bottom: 3rem; }
.closing__contact-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.closing__call { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; transition: color 0.2s; }
.closing__call:hover { color: #e0c060; }
.closing__divider { width: 1px; height: 20px; background: var(--border); }
.closing__location { font-size: 0.82rem; color: var(--text-3); }

/* FOOTER */
.footer { padding: 3rem; border-top: 1px solid var(--border); background: var(--bg); }
.footer__inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 0.5rem; }
.footer__logo-mark { color: var(--gold); font-size: 0.65rem; }
.footer__logo-name { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; }
.footer__tagline { font-size: 0.78rem; color: var(--text-3); }
.footer__meta { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; justify-content: center; font-size: 0.78rem; color: var(--text-3); }
.footer__meta a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer__meta a:hover { color: var(--gold); }
.footer__copy { font-size: 0.72rem; color: var(--text-3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 2rem; min-height: 90vh; }
  .hero__stats { gap: 1.5rem; }
  .services, .fleet, .assurance, .testimonials, .closing { padding: 4rem 1.5rem; }
  .assurance__inner { grid-template-columns: 1fr; gap: 3rem; }
  .fleet__vehicle--wide { grid-column: span 1; }
  .closing__divider { display: none; }
}