:root {
  --black: #050505;
  --ink: #111111;
  --panel: #171717;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d7a72f;
  --gold-soft: #f4d77c;
  --text: #f8f7f2;
  --muted: #c6c0b2;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--black);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #f0eee8;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px clamp(20px, 6vw, 82px) 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(0, 0, 0, 0) 40%);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7.4vw, 6.9rem);
  line-height: 0.92;
  font-weight: 800;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #eee8d9;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 12px 32px rgba(215, 167, 47, 0.26);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-whatsapp {
  background: #25d366;
  color: #06170c;
  border-color: #25d366;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.2);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 46px);
  background: #0c0c0c;
}

.trust-bar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.trust-bar span,
.section p,
.shipping-band p,
.steps p,
.vehicle-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 86px clamp(20px, 6vw, 82px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #101010;
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
}

.intro > p {
  margin: 32px 0 0;
  font-size: 1.08rem;
}

.inventory {
  background: #070707;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.vehicle-card {
  overflow: hidden;
  min-height: 440px;
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.vehicle-card figure {
  position: relative;
  margin: 0;
  min-height: 230px;
}

.vehicle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-card div {
  padding: 24px;
}

.vehicle-card span {
  color: var(--gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.vehicle-card h3,
.steps h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.vehicle-card p,
.steps p {
  margin: 0;
}

.featured-card img {
  padding: 28px;
  object-fit: contain;
  background: #020202;
}

.shipping-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 84px clamp(20px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.48)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1800&q=82") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shipping-band h2 {
  max-width: 680px;
}

.shipping-band p {
  max-width: 700px;
  font-size: 1.05rem;
}

.port-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.port-list li {
  border: 1px solid rgba(244, 215, 124, 0.32);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.44);
  font-weight: 800;
}

.process {
  background: #101010;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.steps div {
  min-height: 230px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171717;
}

.steps span {
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 74px);
  padding: 86px clamp(20px, 6vw, 82px);
  background: #070707;
}

.contact-copy p {
  max-width: 680px;
  font-size: 1.05rem;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-lines a {
  color: var(--gold-soft);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #151515;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #eee7d8;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: #070707;
  color: var(--white);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background: #020202;
}

.site-footer img {
  width: 82px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

@media (max-width: 980px) {
  .vehicle-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .shipping-band,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand img {
    width: 76px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 4, 4, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .hero {
    min-height: 88vh;
    padding: 122px 20px 48px;
  }

  .trust-bar,
  .vehicle-grid,
  .steps,
  .port-list {
    grid-template-columns: 1fr;
  }

  .section,
  .shipping-band,
  .contact-section {
    padding: 58px 20px;
  }

  .vehicle-card {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

}
