:root {
  --black: #050505;
  --ink: #111111;
  --paper: #ffffff;
  --warm: #f6f1e7;
  --muted: #666666;
  --gold: #d4a33a;
  --gold-light: #ffe4a3;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 8px;
  --header-h: 68px;
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-tiny: 0 3px 10px rgba(0, 0, 0, 0.06);
  --font-sans: "Inter", "Manrope", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font: inherit;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: auto;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #111;
  background: var(--gold-light);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

p,
li,
dd,
td,
th,
figcaption,
summary {
  overflow-wrap: break-word;
}

button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

button,
a,
summary,
input,
select,
textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(212, 163, 58, 0.18);
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #c9a84c;
  outline-offset: 3px;
}

.btn:focus-visible,
.filter-btn:focus-visible,
.vehicle-call-button:focus-visible,
.site-nav a:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.24);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

p,
li,
dd,
figcaption {
  overflow-wrap: break-word;
}

.btn,
.site-nav a,
.vehicle-call-button,
.quick-contact {
  min-width: 0;
  overflow-wrap: normal;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: env(safe-area-inset-top) 16px 0;
  color: #fff;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  min-height: 52px;
}

.brand img {
  width: auto;
  max-width: 154px;
  height: 52px;
  object-fit: contain;
}

.nav-toggle {
  position: relative;
  z-index: 1002;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-weight: 800;
}

.site-nav[data-nav] {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 16px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  contain: layout paint style;
  -webkit-overflow-scrolling: touch;
}

@supports (top: env(safe-area-inset-top)) {
  .site-nav[data-nav] {
    top: calc(var(--header-h) + env(safe-area-inset-top));
  }
}

.site-nav[data-nav].open,
body.nav-open .site-nav[data-nav] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.site-nav[data-nav] a {
  padding-inline: 14px;
  color: #111;
  font-size: 1.05rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav[data-nav] a:hover,
.site-nav[data-nav] a[aria-current="page"] {
  color: #111;
  background: rgba(212, 163, 58, 0.14);
}

.site-nav .btn,
.site-nav .btn.btn-small {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  color: #111;
}

.site-nav:not([data-nav]) {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-left: 12px;
}

.site-nav:not([data-nav]) a {
  min-height: 44px;
  padding-inline: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.site-nav:not([data-nav]) .btn {
  width: auto;
  min-height: 44px;
  margin: 0;
  padding-inline: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.btn-small {
  min-height: 46px;
  padding-inline: 16px;
}

.btn-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: #050505;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.52) 48%, rgba(5, 5, 5, 0.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: center;
  padding-block: 76px 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin-top: 0;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: 2.45rem;
}

.hero h1 {
  max-width: 780px;
  margin-inline: 0;
  font-size: 2.46rem;
}

h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 26px;
  color: #eeeeee;
  font-size: 1rem;
  line-height: 1.66;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(100%, 460px);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 900px);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.52);
}

.trust-strip span {
  display: block;
  width: 100%;
  padding: 14px 15px;
  color: #e0e0e0;
  font-size: 0.9rem;
}

.trust-strip span + span {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-size: 0.94rem;
  font-weight: 800;
}

.section {
  padding-block: 54px;
}

.band {
  background: var(--warm);
}

.dark {
  color: #fff;
  background: #070707;
}

.split,
.two-col,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.section-copy,
.seo-panel p,
.fleet-card p,
.footer p,
.legal-copy p,
.price-disclaimer,
.vehicle-detail-copy p {
  color: var(--muted);
}

.section-copy {
  margin: 16px 0 0;
  font-size: 1rem;
}

.seo-panel p,
.legal-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  color: #6f6a61;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #111;
  font-weight: 800;
}

.page-hero {
  padding-block: 72px 46px;
  background: #fafaf8;
  border-bottom: 1px solid #e8e8e4;
}

.page-hero .eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #888;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.page-hero h1 {
  max-width: 16ch;
  margin: 0 0 18px;
  color: #0a0a0a;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.08;
}

.page-hero p {
  max-width: 56ch;
  margin: 0;
  color: #666;
  font-size: 1rem;
}

.vehicle-detail {
  padding-top: 36px;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.vehicle-hero-card {
  overflow: hidden;
  background: #f4eee2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.vehicle-hero-card img {
  width: 100%;
  aspect-ratio: 20 / 13;
  object-fit: cover;
  object-position: center 58%;
  background: #f3eee4;
}

.vehicle-detail-copy h1 {
  color: #111;
  font-size: 2.35rem;
}

.vehicle-detail-copy p {
  max-width: 620px;
  font-size: 1rem;
}

.quick-cta-section {
  padding-block: 68px;
  background: #050505;
}

.quick-cta {
  display: grid;
  gap: 30px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(180deg, #101010, #070707);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.quick-cta-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 2.15rem;
}

.quick-cta-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.quick-cta-list,
.quick-cta-trust {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.quick-cta-list li,
.quick-cta-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 2px);
  font-weight: 700;
}

.trust-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.08);
}

.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
}

.trust-icon::before {
  left: 8px;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg);
}

.trust-icon::after {
  display: none;
}

.quick-cta-delivery {
  margin: 26px 0 0;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-cta-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-tiny);
}

.quick-cta-actions {
  display: grid;
  gap: 12px;
}

.quick-cta-actions .btn {
  width: 100%;
  min-height: 58px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-call {
  background: var(--gold-light);
}

.btn-whatsapp {
  color: #fff;
  background: #1f6f4a;
}

.quick-cta-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.quick-cta-meta div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.quick-cta-meta dt {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-cta-meta dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.quick-cta-trust {
  margin-top: 2px;
}

.quick-cta-trust li {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
}

.quick-cta-support {
  margin: 0;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 2px);
}

.quick-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #111;
  background: var(--gold-light);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  contain: layout paint style;
}

@supports (bottom: env(safe-area-inset-bottom)) {
  .quick-contact {
    bottom: env(safe-area-inset-bottom);
    margin-bottom: 16px;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 540px);
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-strip span:nth-child(-n + 2) {
    border-top: 0;
  }

  .trust-strip span:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(100% - 48px, 1180px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .brand {
    min-height: 60px;
  }

  .brand img {
    height: 60px;
    max-width: 176px;
  }

  .section {
    padding-block: 70px;
  }

  .hero-content {
    padding-block: 94px 50px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .page-hero h1,
  .vehicle-detail-copy h1 {
    font-size: 3.05rem;
  }

  .quick-cta-copy h2 {
    font-size: 2.85rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  body.nav-open {
    overflow: auto;
  }

  .site-nav[data-nav],
  .site-nav[data-nav].open,
  body.nav-open .site-nav[data-nav] {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    gap: 22px;
    color: #fff;
    background: transparent;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    contain: none;
  }

  .site-nav[data-nav] a,
  .site-nav:not([data-nav]) a {
    min-height: 44px;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    font-size: 0.94rem;
  }

  .site-nav[data-nav] a:hover,
  .site-nav[data-nav] a[aria-current="page"],
  .site-nav:not([data-nav]) a:hover,
  .site-nav:not([data-nav]) a[aria-current="page"] {
    color: var(--gold-light);
    background: transparent;
  }

  .site-nav .btn,
  .site-nav .btn.btn-small {
    width: auto;
    margin-top: 0;
    padding-inline: 16px;
    color: #111;
  }

  .btn {
    width: auto;
  }

  .hero {
    min-height: 86svh;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.52) 54%, rgba(5, 5, 5, 0.2));
  }

  .hero-content {
    padding-block: 102px 58px;
  }

  h1 {
    margin-inline: 0;
  }

  h1 {
    font-size: 4.35rem;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .page-hero h1,
  .vehicle-detail-copy h1 {
    font-size: 3.9rem;
  }

  .quick-cta-copy h2 {
    font-size: 3.45rem;
  }

  .hero-actions {
    width: min(100%, 520px);
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 980px);
  }

  .trust-strip span,
  .trust-strip span:nth-child(-n + 2) {
    border-top: 0;
  }

  .trust-strip span:nth-child(even) {
    border-left: 0;
  }

  .trust-strip span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .split,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .quick-cta {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
    align-items: center;
    gap: 54px;
    padding: 48px;
  }

  .quick-cta-card {
    padding: 32px;
  }

  .vehicle-detail-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 54px;
  }

  .page-hero {
    padding-block: 118px 74px;
  }

  .page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 48px;
  }

  .page-hero h1,
  .page-hero .eyebrow {
    grid-column: 1;
  }

  .page-hero p {
    grid-column: 2;
    align-self: end;
    padding-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(100% - 64px, 1240px);
  }

  .site-header {
    padding-inline: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
