:root {
  --navy-950: #071120;
  --navy-900: #0b1c30;
  --navy-800: #102a44;
  --navy-700: #16375a;
  --ink: #16283a;
  --muted: #5c6f82;
  --line: #e4ebf2;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --accent: #f2a33c;
  --accent-strong: #d97f06;
  --accent-soft: #fdf3e0;
  --wa: #25d366;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(7, 17, 32, .07);
  --shadow-lg: 0 24px 60px rgba(7, 17, 32, .16);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--navy-950);
  padding: .5rem 1rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.topbar {
  background: var(--navy-950); color: #b9c7d6;
  font-size: .8rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: .45rem 0; flex-wrap: wrap;
}
.topbar-phone { color: var(--accent); font-weight: 700; text-decoration: none; }
.topbar-phone:hover { color: #ffcf7d; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(7,17,32,.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy-900); }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #f6b352, #e0821a);
  color: var(--navy-950); font-weight: 800; font-size: 1.4rem;
  font-family: Georgia, serif;
  box-shadow: 0 6px 16px rgba(224,130,26,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.05rem; letter-spacing: -.01em; }
.brand-text small { color: var(--muted); font-size: .76rem; }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .92rem; position: relative; padding: .3rem 0; }
.nav a[data-spy]::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px; transition: right .25s ease;
}
.nav a[data-spy]:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--accent-strong); }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; transition: .2s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 11px; border: 0;
  font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: .9rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; border-radius: 9px; }
.btn-accent {
  background: linear-gradient(120deg, #f6b352, #e0821a);
  color: var(--navy-950); box-shadow: 0 6px 18px rgba(224,130,26,.35);
}
.btn-accent:hover { box-shadow: 0 10px 26px rgba(224,130,26,.45); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.04);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: var(--wa); color: #fff; }

.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% -12%, rgba(242,163,60,.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(56,132,255,.12), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 500px at 75% 20%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 75% 20%, black, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 3rem; padding: 4.5rem 0 4.5rem;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; font-weight: 800; color: var(--accent);
  margin-bottom: .7rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.06; letter-spacing: -.025em; margin-bottom: 1.1rem;
}
.hero h1 span {
  background: linear-gradient(120deg, #f6b352, #e0821a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 1.06rem; color: #b9c7d6; max-width: 33rem; margin-bottom: 1.9rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.1rem; }
.hero-stats {
  display: flex; gap: 1.6rem; list-style: none; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem;
}
.hero-stats li { display: flex; flex-direction: column; gap: .1rem; }
.hero-stats strong { font-size: 1.15rem; letter-spacing: -.01em; color: #fff; }
.hero-stats span { font-size: .78rem; color: #8ea2b5; }

.featured-card {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  max-width: 520px; justify-self: end; width: 100%;
}
.featured-img { aspect-ratio: 16 / 10; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.04); }
.featured-body { padding: 1.3rem 1.5rem 1.5rem; }
.featured-tag {
  display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-950);
  background: linear-gradient(120deg, #f6b352, #e0821a);
  padding: .28rem .7rem; border-radius: 999px; margin-bottom: .6rem;
}
.featured-body h3 { font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: .2rem; }
.featured-price { font-size: 1.05rem; font-weight: 800; color: var(--accent); }
.featured-price span { color: #8ea2b5; font-weight: 600; font-size: .85rem; }
.featured-link {
  display: inline-block; margin-top: .7rem; color: #fff; font-weight: 700;
  font-size: .9rem; text-decoration: none; border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.featured-link:hover { color: var(--accent); }

.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.022em; margin-bottom: .6rem; }
.section-head p { color: var(--muted); }

.filter-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.chip {
  padding: .45rem 1.05rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-weight: 600; font-size: .86rem;
  cursor: pointer; transition: all .18s ease; font-family: inherit;
}
.chip:hover { border-color: var(--accent); color: var(--accent-strong); }
.chip.active {
  background: var(--navy-900); border-color: var(--navy-900); color: #fff;
  box-shadow: 0 4px 14px rgba(11,28,48,.25);
}

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d3dee8; }

.listing { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.listing.hidden { display: none; }
.listing-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.listing-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform .45s ease;
}
.listing:hover .listing-img img { transform: scale(1.05); }
.stock-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(7,17,32,.72); color: #fff; backdrop-filter: blur(4px);
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 999px;
}
.stock-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--wa);
  box-shadow: 0 0 8px var(--wa);
}
.listing-body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.listing-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .6rem; }
.listing-top h3 { font-size: 1.04rem; letter-spacing: -.01em; line-height: 1.3; }
.trim {
  font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent-strong); background: var(--accent-soft);
  padding: .22rem .6rem; border-radius: 999px; white-space: nowrap; margin-top: .1rem;
}
.price-row { display: flex; align-items: baseline; gap: .55rem; }
.price { font-size: 1.42rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; }
.price-note { font-size: .74rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.specs { list-style: none; display: flex; flex-direction: column; gap: .18rem; font-size: .86rem; color: var(--muted); }
.specs .vin { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .74rem; letter-spacing: .02em; }
.listing-actions { margin-top: auto; display: flex; gap: .8rem; align-items: center; padding-top: .5rem; flex-wrap: wrap; }
.call-link { font-weight: 700; font-size: .88rem; color: var(--accent-strong); text-decoration: none; }
.call-link:hover { text-decoration: underline; }
.inventory-footnote { margin-top: 2rem; color: var(--muted); font-size: .92rem; }
.inventory-footnote a { color: var(--accent-strong); font-weight: 700; text-decoration: none; }
.inventory-footnote a:hover { text-decoration: underline; }

.service-card { padding: 1.7rem; border-top: 3px solid transparent; }
.service-card:hover { border-top-color: var(--accent); }
.service-card h3 { font-size: 1.06rem; margin-bottom: .5rem; color: var(--navy-900); }
.service-card p { font-size: .92rem; color: var(--muted); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--accent-soft), #fbe6c2); color: var(--accent-strong);
}
.service-icon svg { width: 26px; height: 26px; }

.transport-band {
  position: relative;
  background:
    radial-gradient(700px 380px at 12% 120%, rgba(242,163,60,.13), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #fff; padding: 4.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.transport-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.transport-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: .8rem; letter-spacing: -.02em; }
.transport-copy p { color: #b9c7d6; margin-bottom: 1.7rem; max-width: 34rem; }
.transport-cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.transport-list { list-style: none; display: grid; gap: .85rem; }
.transport-list li {
  padding: .8rem 1rem .8rem 2.6rem; position: relative; font-weight: 600; font-size: .95rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px;
}
.transport-list li::before {
  content: ""; position: absolute; left: .95rem; top: 1.05em;
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 3%, 38% 68%);
}

.about-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; letter-spacing: -.02em; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.7rem; }
.about-points strong { display: block; color: var(--navy-900); font-size: .95rem; }
.about-points span { font-size: .82rem; color: var(--muted); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.2rem; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-num { display: block; font-size: 1.55rem; font-weight: 800; color: var(--accent-strong); letter-spacing: -.02em; }
.stat-label { font-size: .8rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-info { display: grid; gap: 1.1rem; align-content: start; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.5rem; box-shadow: var(--shadow);
}
.info-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: var(--navy-900); margin-bottom: .45rem; }
.info-card p { font-size: .95rem; }
.info-card a { color: var(--accent-strong); font-weight: 700; text-decoration: none; }
.text-link { font-size: .88rem; }
.muted { color: var(--muted); font-size: .85rem; }

.quote-box {
  background: var(--navy-900); color: #fff; border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow-lg); align-self: start;
}
.quote-box h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.quote-box .muted { color: #93a8bc; margin-bottom: 1.2rem; }
.quote-box form { display: grid; gap: .9rem; }
.quote-box label { display: grid; gap: .3rem; font-size: .84rem; font-weight: 600; color: #b9c7d6; }
.quote-box input, .quote-box select, .quote-box textarea {
  width: 100%; padding: .68rem .85rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: .95rem;
}
.quote-box input::placeholder, .quote-box textarea::placeholder { color: #71879c; }
.quote-box select option { color: var(--ink); }
.quote-box input:focus, .quote-box select:focus, .quote-box textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px;
}

.map-wrap { grid-column: 1 / -1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

.site-footer { background: var(--navy-950); color: #8ea2b5; padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand p { margin-top: .4rem; font-size: .9rem; }
.footer-brand a { color: var(--accent); text-decoration: none; font-weight: 700; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: flex-start; padding-top: .4rem; }
.footer-nav a { color: #c4d2e0; text-decoration: none; font-size: .9rem; font-weight: 600; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { padding-top: 1.2rem; font-size: .8rem; display: grid; gap: .3rem; }
.credits { color: #5f7488; font-size: .74rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .listing-img img, .card, .chip { transition: none; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3.5rem 0; gap: 2.5rem; }
  .featured-card { justify-self: start; max-width: 460px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .transport-inner, .about-inner, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 1.1rem 5%; gap: 1rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }
}

@media (max-width: 640px) {
  .grid-3, .about-points, .about-stats { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .topbar-hours { display: none; }
  .section { padding: 3rem 0; }
  .hero-stats { gap: 1.1rem; }
  .listing-actions .btn { flex: 1; }
}
