:root {
  --black: #050505;
  --panel: #0c0c0d;
  --panel-soft: #121212;
  --ink: #f7f1e6;
  --muted: #b9ad9b;
  --gold: #c9a45c;
  --gold-bright: #f2d384;
  --line: rgba(201, 164, 92, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 164, 92, 0.13), transparent 31%),
    linear-gradient(180deg, #080808 0%, #020202 44%, #070707 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 62px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.contact-lines {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.nav {
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav a:hover,
.contact-lines a:hover {
  color: var(--gold-bright);
}

.header-call,
.button,
.contact-form button {
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.header-call {
  padding: 11px 16px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: calc(100vh - 76px);
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 76px) 56px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto auto;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.14), transparent 62%);
  pointer-events: none;
}

.section-heading,
.vehicle-card,
.service-card,
.rate-table,
.rate-note,
.contact-copy,
.contact-form {
  position: relative;
}

.hero-copy,
.hero-media {
  position: relative;
  animation: heroReveal 780ms ease both;
}

.hero-media {
  animation-delay: 160ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 34px rgba(201, 164, 92, 0.22);
}

.button.ghost {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 44px);
  padding: 16px 18px;
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-badge span,
.trust-strip span,
.vehicle-card p,
.service-card p,
.rate-note,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(12, 12, 13, 0.72);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  padding: 26px clamp(18px, 4vw, 62px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--gold-bright);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1;
}

.section,
.contact-section {
  padding: clamp(76px, 10vw, 126px) clamp(20px, 6vw, 76px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.vehicle-kicker {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.services {
  background: linear-gradient(180deg, rgba(201, 164, 92, 0.05), rgba(0, 0, 0, 0));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 950;
}

.rate-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.rate-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-row span,
.rate-row strong {
  padding: 18px 20px;
}

.rate-head {
  color: var(--gold-bright);
  background: rgba(201, 164, 92, 0.08);
  font-weight: 950;
}

.rate-row strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.rate-note {
  max-width: 760px;
  margin-top: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 560px);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(201, 164, 92, 0.08), transparent 42%),
    var(--panel-soft);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy code {
  color: var(--gold-bright);
}

.contact-lines {
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--gold-bright);
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(201, 164, 92, 0.18);
  border-color: var(--gold);
}

.contact-form button {
  min-height: 52px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(201, 164, 92, 0.28);
  font-weight: 950;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--black);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 76px);
  color: rgba(247, 241, 230, 0.68);
  background: #020202;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 52px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.15rem);
  }

  .trust-strip,
  .vehicle-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .rate-row {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .rate-head {
    display: none;
  }

  .rate-row span,
  .rate-row strong {
    padding: 5px 18px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 92px;
  }
}

@media (max-width: 480px) {
  .header-call {
    padding-inline: 13px;
  }

  .brand {
    max-width: calc(100% - 104px);
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section,
  .hero {
    padding-inline: 18px;
  }

  .hero-badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .contact-form {
    padding: 18px;
  }
}
