:root {
  --bg: #030303;
  --bg-soft: #0a0907;
  --panel: #15130f;
  --panel-2: #1d1b17;
  --text: #ffffff;
  --muted: #c9c4b6;
  --gold: #d9aa17;
  --gold-bright: #f5cf4d;
  --line: rgba(217, 170, 23, 0.38);
  --line-soft: rgba(255, 255, 255, 0.12);
  --green: #1fc75a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 170, 23, 0.09), transparent 28%),
    linear-gradient(90deg, #070604, #030303 22%, #030303 78%, #151411);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 116px;
  padding: 18px clamp(22px, 5vw, 108px);
  background: rgba(3, 3, 3, 0.93);
  border-bottom: 1px solid rgba(217, 170, 23, 0.16);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 92px;
  filter: drop-shadow(0 10px 24px rgba(217, 170, 23, 0.22));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 40px);
  flex: 1;
}

.main-nav a {
  position: relative;
  color: #f6f6f6;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(217, 170, 23, 0.9);
}

.phone-cta,
.hero-phone,
.vehicle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  color: var(--gold-bright);
  font-weight: 950;
}

.phone-cta {
  min-width: 210px;
  font-size: 1.1rem;
}

.phone-cta::before,
.hero-phone::before {
  content: "☎";
  margin-right: 12px;
  color: var(--gold);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--gold-bright);
}

.showroom-shell {
  width: min(1548px, calc(100% - 48px));
  margin: 52px auto 18px;
}

.page-main {
  padding: 34px 0 70px;
}

.showroom-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 34px;
  min-height: 220px;
  padding: 24px 34px;
  border: 1px solid rgba(217, 170, 23, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 50%, rgba(217, 170, 23, 0.11), transparent 24%),
    rgba(8, 8, 7, 0.82);
  box-shadow: var(--shadow);
}

.showroom-logo-card {
  display: grid;
  place-items: center;
  min-height: 168px;
  border: 1px solid rgba(217, 170, 23, 0.34);
  border-radius: 16px;
  background: #000;
}

.showroom-logo-card img {
  width: 160px;
}

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

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

h1 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 4.15rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

h1 span,
h2,
.site-footer h3 {
  color: var(--gold);
}

.showroom-copy p {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 750;
}

.sync-pill {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(217, 170, 23, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(217, 170, 23, 0.08);
  color: #ffe58a;
  font-weight: 900;
}

.sync-pill::before {
  content: "◈";
  margin-right: 10px;
}

.hero-phone {
  justify-self: end;
  min-width: 250px;
  font-size: 1.35rem;
  background: rgba(3, 3, 3, 0.38);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.9fr) minmax(140px, 0.75fr) minmax(150px, 0.78fr) minmax(160px, 0.9fr) minmax(150px, 0.72fr) 140px;
  gap: 24px;
  align-items: center;
  margin: 34px 0 22px;
}

.search-field,
.toolbar select {
  height: 48px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: rgba(9, 9, 8, 0.96);
  color: #fff;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
}

.search-field span {
  color: var(--gold);
  font-size: 1.35rem;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.search-field input::placeholder {
  color: #b7b2a8;
}

.toolbar select {
  padding: 0 14px;
  font-weight: 800;
}

.vehicle-count {
  min-width: 140px;
  background: rgba(217, 170, 23, 0.1);
}

.inventory-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--muted);
}

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

.vehicle-card {
  overflow: hidden;
  border: 1px solid rgba(217, 170, 23, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, #1b1915, #12110f);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 207, 77, 0.72);
  outline: none;
}

.vehicle-card.hidden {
  display: none;
}

.vehicle-card.is-sold .vehicle-media::after,
.vehicle-card.is-reserved .vehicle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
}

.vehicle-card.is-sold .vehicle-badge {
  display: none;
}

.vehicle-card.is-reserved .vehicle-badge {
  display: none;
}

.vehicle-media {
  position: relative;
  min-height: 230px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62)),
    var(--vehicle-image, url("assets/showroom-hero.png"));
  background-color: #050505;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.vehicle-badge,
.vehicle-price-pill,
.photo-count,
.sold-stamp,
.reserved-stamp {
  position: absolute;
  z-index: 2;
  font-weight: 950;
}

.vehicle-badge {
  top: 14px;
  left: 14px;
  border-radius: 8px;
  padding: 9px 15px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.vehicle-price-pill {
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 9px 15px;
  background: #fff;
  color: #050505;
  font-size: 1.02rem;
}

.photo-count {
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.84rem;
}

.sold-stamp,
.reserved-stamp {
  left: 50%;
  top: 50%;
  width: min(72%, 250px);
  aspect-ratio: 1;
  display: block;
  transform: translate(-50%, -50%) rotate(-14deg);
  background: url("assets/sold-out-stamp.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
  overflow: hidden;
  text-indent: -9999px;
}

.reserved-stamp {
  width: min(76%, 275px);
  background-image: url("assets/reserved-stamp.png");
  transform: translate(-50%, -50%) rotate(-8deg);
}

.vehicle-body {
  padding: 18px;
}

.vehicle-body h3 {
  min-height: 58px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.vehicle-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vehicle-meta span {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 12px;
  color: #fff;
  font-weight: 750;
}

.vehicle-meta span::before {
  margin-right: 10px;
  color: var(--gold);
}

.vehicle-meta span:nth-child(1)::before {
  content: "▣";
}

.vehicle-meta span:nth-child(2)::before {
  content: "◔";
}

.vehicle-meta span:nth-child(3)::before {
  content: "▤";
}

.vehicle-meta span:nth-child(4)::before {
  content: "⌁";
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.service-page,
.home-services,
.about-band {
  width: min(1548px, calc(100% - 48px));
  margin: 48px auto;
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-services a {
  border: 1px solid rgba(217, 170, 23, 0.22);
  border-radius: 16px;
  background: rgba(15, 14, 12, 0.78);
  padding: 26px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.home-services a:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 207, 77, 0.72);
}

.home-services p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.service-page.reverse {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.1fr);
}

.service-page.reverse .service-copy {
  order: 2;
}

.service-copy,
.simulator-card,
.guarantee-grid article,
.about-band {
  border: 1px solid rgba(217, 170, 23, 0.22);
  border-radius: 16px;
  background: rgba(15, 14, 12, 0.78);
  padding: 26px;
}

.service-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.service-copy p,
.about-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  color: #fff;
}

.service-list li::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold-bright);
  font-weight: 950;
}

.simulator-card {
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 170, 23, 0.16), transparent 36%),
    #11100d;
}

.simulator-card h3,
.process-card h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.simulator-card label {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-weight: 850;
}

.simulator-card input,
.simulator-card select {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 12px;
}

.simulator-card select option {
  color: #111;
}

.simulator-result {
  margin-top: 22px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 18px;
  background: rgba(217, 170, 23, 0.1);
}

.simulator-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.simulator-result strong {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.simulator-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.process-card {
  border: 1px solid rgba(217, 170, 23, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 170, 23, 0.16), transparent 36%),
    #11100d;
  padding: 26px;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.process-list span {
  color: var(--gold-bright);
  font-weight: 950;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.guarantee-grid article {
  background: linear-gradient(135deg, rgba(217, 170, 23, 0.12), rgba(255, 255, 255, 0.035));
}

.guarantee-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-weight: 950;
}

.guarantee-grid h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.25rem;
}

.guarantee-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.notice-box {
  margin-top: 24px;
  border: 1px solid rgba(217, 170, 23, 0.4);
  border-radius: 12px;
  background: rgba(217, 170, 23, 0.08);
  color: #ffe58a;
  padding: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.checklist-section {
  width: min(1548px, calc(100% - 48px));
  margin: 24px auto 48px;
}

.contact-page,
.contact-details-page {
  width: min(1548px, calc(100% - 48px));
  margin: 48px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 24px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-info-grid a,
.contact-info-grid div {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.contact-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-info-grid strong {
  color: #fff;
  line-height: 1.35;
}

.contact-form-page textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 12px;
  resize: vertical;
}

.contact-details-page {
  grid-template-columns: minmax(320px, 0.45fr) minmax(0, 1fr);
}

.contact-details-page iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(217, 170, 23, 0.22);
  border-radius: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.7fr 1.25fr;
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  border-top: 1px solid var(--gold);
  background: #030303;
  padding: 44px clamp(26px, 5vw, 96px);
}

.footer-brand img {
  width: 116px;
  margin-bottom: 28px;
}

.footer-brand p,
.site-footer p,
.site-footer address,
.site-footer span {
  color: #fff;
  font-style: normal;
  line-height: 1.35;
}

.site-footer address {
  display: grid;
  gap: 10px;
}

.site-footer address a,
.site-footer address span {
  display: block;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 950;
}

.site-footer iframe {
  width: 100%;
  height: 88px;
  border: 0;
  border-radius: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 38px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.28);
}

body.modal-open {
  overflow: hidden;
}

.vehicle-modal[hidden] {
  display: none;
}

.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
}

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.vehicle-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  width: min(1180px, 100%);
  height: min(760px, calc(100vh - 44px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(217, 170, 23, 0.52);
  border-radius: 18px;
  background: #11100d;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.78);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 170, 23, 0.54);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.modal-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  background: #050505;
  position: sticky;
  top: 0;
  align-self: start;
  height: min(760px, calc(100vh - 44px));
}

.modal-media {
  min-height: 0;
  background-color: #050505;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.modal-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  border-top: 1px solid rgba(217, 170, 23, 0.28);
  padding: 12px;
}

.modal-thumb {
  flex: 0 0 92px;
  height: 68px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.72;
}

.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: clamp(24px, 4vw, 42px);
}

.modal-content h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.modal-price {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 10px 18px;
  font-size: 1.25rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.modal-specs div {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.modal-specs span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-specs strong {
  color: #fff;
}

.modal-section {
  margin-top: 22px;
}

.modal-section h3 {
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
}

.modal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-line;
}

.modal-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-contact {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  border-radius: 8px;
  background: #25d366;
  padding: 15px 18px;
  color: #fff;
  font-weight: 950;
}

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

  .search-field {
    grid-column: 1 / -1;
  }

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

  .home-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 84px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .main-nav a.active::after {
    display: none;
  }

  .phone-cta {
    display: none;
  }

  .showroom-hero {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    justify-self: stretch;
  }

  .vehicle-modal-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .modal-gallery {
    position: relative;
    height: auto;
    grid-template-rows: 320px auto;
  }

  .modal-media {
    min-height: 320px;
  }

  .service-page,
  .service-page.reverse {
    grid-template-columns: 1fr;
  }

  .contact-page,
  .contact-details-page {
    grid-template-columns: 1fr;
  }

  .service-page.reverse .service-copy {
    order: 0;
  }
}

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

  .brand-logo {
    width: 76px;
  }

  .showroom-shell,
  .service-band,
  .about-band {
    width: min(100% - 28px, 1548px);
    margin-top: 28px;
  }

  .showroom-hero {
    padding: 18px;
  }

  .showroom-logo-card {
    min-height: 132px;
  }

  .showroom-logo-card img {
    width: 132px;
  }

  .eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  .toolbar,
  .vehicle-grid,
  .site-footer,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-media {
    min-height: 220px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .modal-specs,
  .modal-two-cols {
    grid-template-columns: 1fr;
  }
}
