@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --anthracite: #1e2429;
  --blue: #1f5f8b;
  --blue-dark: #18384d;
  --grey: #e7eaed;
  --steel: #6d7882;
  --warm: #f7f4ef;
  --orange: #e8792e;
  --text: #1c2227;
  --white: #ffffff;
  --line: #d6dbe0;
  --soft: #eef1f3;
  --shadow: 0 18px 46px rgba(30, 36, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.58;
}

main > .section:last-child {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--anthracite);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0;
}

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

.topbar {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 4vw, 2rem);
  padding: 0.55rem 1rem;
  color: var(--white);
  background: var(--anthracite);
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 244, 239, 0.96);
  border-bottom: 1px solid rgba(30, 36, 41, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 6px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
}

.brand small {
  color: var(--steel);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  color: var(--anthracite);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--blue-dark);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--anthracite);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--anthracite);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(30, 36, 41, 0.86), rgba(30, 36, 41, 0.48), rgba(30, 36, 41, 0.16));
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .lead {
  max-width: 660px;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: var(--white);
  background: var(--blue-dark);
}

.button.light {
  color: var(--anthracite);
  border-color: var(--line);
  background: var(--white);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 1.2rem;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: "Poppins", Arial, sans-serif;
}

.trust-strip span {
  margin-top: 0.25rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.2rem, 7vw, 6.2rem) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 620px;
  color: var(--steel);
}

.grid-3,
.grid-4,
.vehicle-grid,
.step-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.service-card,
.info-card,
.vehicle-card,
.step-card,
.contact-card,
.form-card,
.hours-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(30, 36, 41, 0.07);
}

.service-card img,
.vehicle-card img,
.info-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div,
.info-card div,
.vehicle-body,
.step-card,
.contact-card,
.form-card,
.hours-card {
  padding: 1.2rem;
}

.service-card h3,
.info-card h3,
.vehicle-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p,
.info-card p,
.vehicle-card p,
.step-card p,
.contact-card p {
  color: var(--steel);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

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

.band .section,
.band h2,
.band .eyebrow {
  color: var(--white);
}

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

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 380px;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2.2rem);
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--anthracite);
  isolation: isolate;
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(30, 36, 41, 0.88), rgba(30, 36, 41, 0.48) 58%, rgba(30, 36, 41, 0.2));
}

.page-hero h1,
.page-hero .eyebrow {
  color: var(--white);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 620px;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--anthracite);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem;
  border: 1px solid #c9d0d6;
  border-radius: 6px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.vehicle-body {
  display: grid;
  gap: 0.85rem;
}

.badge {
  justify-self: start;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.available {
  color: #0d5636;
  background: #dff3e8;
}

.badge.reserved {
  color: #75520d;
  background: #fff0c7;
}

.badge.sold {
  color: #5c6268;
  background: #e7eaed;
}

.vehicle-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 0.85rem;
  margin: 0;
}

.vehicle-card dt {
  color: var(--steel);
  font-size: 0.78rem;
}

.vehicle-card dd {
  margin: 0;
  font-weight: 800;
}

.price {
  color: var(--blue-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.note {
  padding: 0.7rem 0.8rem;
  border-left: 4px solid var(--orange);
  color: var(--steel);
  background: var(--soft);
  font-size: 0.94rem;
}

.image-note {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-family: "Poppins", Arial, sans-serif;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-card {
  display: grid;
  gap: 1rem;
}

.form-card .button {
  margin-top: .25rem;
  justify-self: start;
}

.form-card .full {
  grid-column: 1 / -1;
}

.form-hint,
.form-success {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: var(--soft);
  color: var(--steel);
}

.form-success {
  color: #0d5636;
  background: #dff3e8;
  outline: none;
}

.fake-upload {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px dashed #9aa4ad;
  border-radius: 8px;
  background: var(--soft);
  color: var(--steel);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.hours-list,
.contact-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.hours-list li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.map-card {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(31, 95, 139, 0.2) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(31, 95, 139, 0.2) 50%, transparent 51%),
    linear-gradient(135deg, #dfe5e9, #f9f7f1);
}

.map-pin {
  max-width: 260px;
  padding: 1rem;
  text-align: center;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--anthracite);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .trust-strip,
  .grid-3,
  .grid-4,
  .vehicle-grid,
  .step-grid,
  .filter-bar,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .page-hero,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand small,
  .topbar span:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(30, 36, 41, 0.9), rgba(30, 36, 41, 0.36));
  }

  .trust-strip,
  .grid-3,
  .grid-4,
  .vehicle-grid,
  .step-grid,
  .filter-bar,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .vehicle-card dl {
    grid-template-columns: 1fr;
  }

  .hours-list li,
  .contact-list li {
    display: block;
  }
}
