:root {
  color-scheme: light;
  --ink: #111714;
  --muted: #5c6862;
  --soft: #eef4f1;
  --soft-2: #f8faf8;
  --white: #ffffff;
  --dark: #0d1a16;
  --dark-2: #17231f;
  --green: #236c50;
  --gold: #d6a63a;
  --red: #b84634;
  --line: #dce5e0;
  --shadow: 0 24px 70px rgba(13, 26, 22, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-2);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(13, 26, 22, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--dark);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 950;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold);
}

nav a,
.button,
.service-card,
.vehicle-grid article,
.review-card,
.gallery-stack article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(184, 70, 52, 0.26);
}

.button.secondary {
  color: var(--dark);
  background: var(--white);
  border-color: var(--line);
}

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

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 75px);
  align-items: center;
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 26, 22, 0.92) 0%, rgba(13, 26, 22, 0.72) 44%, rgba(13, 26, 22, 0.18) 100%),
    url("assets/hero-service.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 5.6rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-panel article {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.quick-panel span,
.service-card p,
.section-heading p,
.vehicle-grid span,
.map-copy p,
.contact p {
  color: var(--muted);
}

.quick-panel span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 750;
}

.quick-panel strong {
  font-size: 1.14rem;
}

.gallery {
  background: var(--white);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.gallery-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 26, 22, 0.72), rgba(13, 26, 22, 0) 46%);
}

.gallery-main figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
}

.gallery-stack {
  display: grid;
  gap: 14px;
}

.gallery-stack article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 24px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.gallery-stack span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 10px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.gallery-stack strong {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.gallery-stack p {
  margin-bottom: 0;
  color: #c6d6cf;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 14px;
  font-size: 3.3rem;
  line-height: 1;
  letter-spacing: 0;
}

.vehicles {
  background: var(--soft);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vehicle-grid article {
  min-height: 132px;
  padding: 22px;
  background: var(--white);
}

.vehicle-grid span,
.vehicle-grid strong {
  display: block;
}

.vehicle-grid span {
  margin-bottom: 30px;
  font-size: 0.82rem;
  font-weight: 850;
}

.vehicle-grid strong {
  font-size: 1.08rem;
}

.vehicle-grid article:hover,
.service-card:hover,
.review-card:hover,
.gallery-stack article:hover {
  transform: translateY(-4px);
  border-color: #c9d8d0;
  box-shadow: 0 18px 44px rgba(13, 26, 22, 0.1);
}

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

.service-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 26, 22, 0.05);
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--dark);
  background: #e5eee9;
  border-radius: 8px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.reviews {
  background: var(--white);
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.reviews-head .section-heading {
  margin-bottom: 0;
}

.rating-box {
  display: grid;
  min-width: 210px;
  padding: 24px;
  color: var(--dark);
  background: linear-gradient(180deg, #fff7df, #ffffff);
  border: 1px solid #efd38e;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(214, 166, 58, 0.18);
}

.rating-box strong {
  font-size: 4.2rem;
  line-height: 1;
}

.rating-box span {
  color: #6d5830;
  font-weight: 850;
}

.rating-box a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card.featured {
  background: var(--white);
  border-color: #efd38e;
  box-shadow: var(--shadow);
}

.review-top {
  margin-bottom: 18px;
}

.review-top strong,
.review-top span {
  display: block;
}

.review-top strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.review-top span {
  color: #996d16;
  font-size: 0.82rem;
  font-weight: 900;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 26, 22, 0.98), rgba(23, 35, 31, 0.96)),
    var(--dark);
}

.promise .eyebrow,
.promise p {
  color: #b8d5c9;
}

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

.promise p {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: var(--soft);
}

.map-copy {
  max-width: 560px;
}

.map-frame {
  overflow: hidden;
  min-height: 460px;
  background: #dfe7e2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(46px, 7vw, 84px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--dark-2);
}

.contact .eyebrow,
.contact p {
  color: #c6d6cf;
}

.contact h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

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

footer {
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

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

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

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

  .hero {
    min-height: auto;
    background:
      linear-gradient(0deg, rgba(13, 26, 22, 0.94) 0%, rgba(13, 26, 22, 0.62) 68%, rgba(13, 26, 22, 0.32) 100%),
      url("assets/hero-service.png") center / cover no-repeat;
  }

  .promise,
  .map-section,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-main,
  .gallery-main img {
    min-height: 380px;
  }

  .quick-panel,
  .vehicle-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-head {
    flex-direction: column;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding-inline: 14px;
  }

  nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .hero-text,
  .promise p {
    font-size: 1.06rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .quick-panel,
  .vehicle-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.9rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

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

  @keyframes hero-pan {
    0%,
    100% {
      background-position: center, center right;
    }

    50% {
      background-position: center, center center;
    }
  }

  .hero {
    animation: hero-pan 14s ease-in-out infinite;
  }

  .hero-copy,
  .quick-panel article,
  .section-heading,
  .gallery-main,
  .gallery-stack article,
  .vehicle-grid article,
  .service-card,
  .review-card,
  .rating-box,
  .promise > *,
  .map-copy,
  .map-frame,
  .contact > * {
    animation: fade-up 640ms ease both;
  }

  .quick-panel article:nth-child(2),
  .gallery-stack article:nth-child(2),
  .vehicle-grid article:nth-child(2),
  .service-card:nth-child(2),
  .review-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .quick-panel article:nth-child(3),
  .gallery-stack article:nth-child(3),
  .vehicle-grid article:nth-child(3),
  .service-card:nth-child(3),
  .review-card:nth-child(3) {
    animation-delay: 140ms;
  }

  .vehicle-grid article:nth-child(4),
  .service-card:nth-child(4),
  .review-card:nth-child(4) {
    animation-delay: 200ms;
  }
}
