:root {
  --dark: #0b1724;
  --blue: #1677c8;
  --ice: #eaf4ff;
  --paper: #f7fbff;
  --muted: #5d6c7a;
  --line: #c9dced;
  --steel: #dce9f5;
  --title: "Archivo Black", Arial Black, sans-serif;
  --body: "Barlow", Arial, sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--ice);
  color: var(--dark);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  min-height: 92vh;
  padding: 22px min(6vw, 72px);
  background: linear-gradient(90deg, rgba(11, 23, 36, 0.92), rgba(11, 23, 36, 0.24)), url("mock-hero.jpg") center / cover;
  color: #fff;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.brand {
  font-family: var(--title);
  font-size: 1.4rem;
}

nav a:last-child,
.hours-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.hero-card {
  margin: auto 0;
  max-width: 700px;
}

.hero-card p,
.tag {
  color: #9fd8ff;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h1,
.pricing h2,
.before h2,
.hours h2 {
  margin: 10px 0;
  font-family: var(--title);
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: 0.92;
}

.hero-card span {
  font-weight: 800;
}

.pricing {
  padding: 72px min(6vw, 72px);
  background: #fff;
}

.pricing-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.pricing-head p:not(.tag),
.before p,
.hours p {
  color: var(--muted);
  font-weight: 600;
}

.price-grid {
  display: grid;
  gap: 16px;
}

.vehicle-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(11, 23, 36, 0.08);
}

.vehicle-card > img {
  height: 160px;
}

.vehicle-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 8px;
}

.vehicle-title svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 9px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
}

.vehicle-title h3 {
  font-family: var(--title);
  font-size: 1.65rem;
  line-height: 1;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}

.price-row b {
  font-size: 1.02rem;
}

.price-row span {
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 900;
}

.price-row small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.before {
  display: grid;
  gap: 26px;
  padding: 72px min(6vw, 72px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery img {
  aspect-ratio: 1;
  border-radius: 8px;
}

.hours {
  padding: 72px min(6vw, 72px);
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 28px;
}

.hours-card,
.map-card {
  min-width: 0;
}

.hours h2 {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.hours-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-list b {
  color: #fff;
}

.hours-list span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: right;
}

.hours p {
  color: rgba(255, 255, 255, 0.78);
}

.hours iframe {
  display: block;
  width: 100%;
  margin-top: 16px;
  border-radius: 8px;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(11, 23, 36, 0.28);
}

.wa svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (min-width: 780px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .before {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .hours {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 420px) {
  nav a:last-child {
    padding: 10px 12px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row span {
    font-size: 1.45rem;
  }
}
