﻿:root {
  --yellow: #f9c80e;
  --yellow-dark: #d7a800;
  --yellow-soft: #fff5c7;
  --ink: #11130f;
  --ink-2: #191c18;
  --ink-3: #262a25;
  --muted: #6b7168;
  --line: rgba(17, 19, 15, .1);
  --white: #ffffff;
  --off-white: #f7f7f2;
  --green: #1fb75b;
  --shadow: 0 20px 60px rgba(17, 19, 15, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.icon-sprite {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #6d5700;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
}

.section-heading {
  max-width: 680px;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1.04;
}

.section-copy {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 13px 28px rgba(249, 200, 14, .22);
}

.button-yellow:hover {
  background: #ffda38;
  box-shadow: 0 18px 35px rgba(249, 200, 14, .32);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-3);
}

.button-green {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 13px 28px rgba(31, 183, 91, .18);
}

.button-green:hover {
  background: #18994b;
  box-shadow: 0 18px 35px rgba(31, 183, 91, .26);
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(17, 19, 15, .07);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 9px 22px rgba(249, 200, 14, .23);
}

.logo-mark svg {
  width: 32px;
  height: 32px;
}

.logo-copy {
  min-width: 0;
  overflow: hidden;
  line-height: 1;
}

.logo-copy strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a {
  color: #5b6059;
  font-size: 13px;
  font-weight: 850;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-call {
  min-height: 46px;
  padding-inline: 16px;
  border-radius: 12px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 86px;
  background:
    radial-gradient(circle at 85% 18%, rgba(249, 200, 14, .18), transparent 25%),
    radial-gradient(circle at 4% 75%, rgba(249, 200, 14, .08), transparent 25%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
}

.hero-content {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 183, 91, .16);
}

h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 950;
  letter-spacing: -.077em;
  line-height: .98;
}

h1 span {
  display: block;
  color: var(--yellow);
}

.hero-copy {
  max-width: 670px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 99px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 800;
}

.trust-pill svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-width: 0;
  justify-self: end;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 29px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: .9 / 1;
  border-radius: 21px;
  object-fit: cover;
  object-position: center center;
}

.availability-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.availability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--yellow);
}

.availability-icon svg {
  width: 20px;
  height: 20px;
}

.availability-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.05;
}

.availability-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-number {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(17, 19, 15, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  backdrop-filter: blur(14px);
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--ink);
  background: var(--yellow);
}

.quick-strip-inner {
  display: grid;
  min-height: 97px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid rgba(17, 19, 15, .13);
}

.quick-item:first-child {
  border-left: 1px solid rgba(17, 19, 15, .13);
}

.quick-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.quick-item strong {
  display: block;
  font-size: 14px;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.quick-item span {
  display: block;
  margin-top: 3px;
  color: rgba(17, 19, 15, .65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.services-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.services-note {
  max-width: 290px;
  padding: 14px 16px;
  border-left: 3px solid var(--yellow);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  gap: 14px;
  margin-top: 45px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.service-card:hover {
  border-color: rgba(249, 200, 14, .75);
  box-shadow: 0 20px 38px rgba(17, 19, 15, .08);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -18px;
  bottom: -31px;
  color: rgba(17, 19, 15, .028);
  content: attr(data-number);
  font-size: 120px;
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: 1;
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--yellow-soft);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.fleet {
  color: var(--white);
  background: var(--ink);
}

.fleet .section-kicker {
  color: var(--yellow);
}

.fleet .section-copy {
  color: rgba(255, 255, 255, .62);
}

.fleet-grid {
  display: grid;
  gap: 18px;
  margin-top: 43px;
  grid-template-columns: 1.12fr .88fr;
}

.fleet-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: var(--ink-2);
}

.fleet-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .45s ease;
}

.fleet-card:first-child img {
  object-position: center 48%;
}

.fleet-card:hover img {
  transform: scale(1.045);
}

.fleet-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .76));
  content: "";
}

.fleet-caption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.fleet-caption span {
  display: block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.fleet-caption strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 19px;
  letter-spacing: -.045em;
}

.fleet-caption svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.availability {
  padding: 0 0 104px;
  color: var(--white);
  background: var(--ink);
}

.availability-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  background: var(--ink-2);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
}

.availability-copy {
  padding: 43px 46px;
}

.availability-copy h2 {
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: 1;
}

.availability-copy h2 span {
  color: var(--yellow);
}

.availability-copy p {
  max-width: 590px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
}

.availability-copy .button {
  margin-top: 23px;
}

.availability-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.availability-stat {
  display: grid;
  min-height: 145px;
  align-content: center;
  padding: 20px 26px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.availability-stat:nth-child(n + 3) {
  border-bottom: 0;
}

.availability-stat strong {
  color: var(--yellow);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
}

.availability-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .63);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.location {
  background: var(--off-white);
}

.location-grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
}

.location-copy {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 15, .055);
}

.location-copy h2 {
  max-width: 650px;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
}

.address-box {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(249, 200, 14, .32);
  border-radius: 15px;
  background: #fffdf1;
}

.address-box svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--yellow-dark);
}

.address-box strong {
  display: block;
  font-size: 14px;
  letter-spacing: -.02em;
}

.address-box p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.location-copy .button {
  margin-top: 22px;
}

.location-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 19, 15, .09);
}

.location-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 15, .08), rgba(17, 19, 15, .3));
  content: "";
}

.map-pin-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(260px, calc(100% - 40px));
  min-height: 236px;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(17, 19, 15, .06);
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
}

.pin-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 0 0 13px rgba(249, 200, 14, .17);
}

.pin-icon svg {
  width: 32px;
  height: 32px;
}

.map-pin-card strong {
  display: block;
  margin-top: 21px;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.map-pin-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review {
  padding: 0 0 104px;
}

.review-panel {
  position: relative;
  display: grid;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 42px 46px;
  border-radius: 26px;
  background: var(--yellow);
  grid-template-columns: minmax(0, 1fr) auto;
}

.review-panel::after {
  position: absolute;
  right: 205px;
  bottom: -97px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.review-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.google-mark {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 19px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(17, 19, 15, .11);
}

.google-mark svg {
  width: 24px;
  height: 24px;
  color: var(--yellow-dark);
}

.google-mark span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
}

.review-panel h2 {
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
}

.review-panel p {
  margin-top: 10px;
  color: rgba(17, 19, 15, .7);
  font-size: 15px;
  font-weight: 700;
}

.review-panel .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 50%, rgba(249, 200, 14, .15), transparent 28%),
    var(--ink);
}

.contact::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 58px solid rgba(249, 200, 14, .07);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 45px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact h2 {
  font-size: clamp(39px, 5.5vw, 70px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .98;
}

.contact h2 span {
  color: var(--yellow);
}

.contact p {
  max-width: 630px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.contact-actions {
  display: grid;
  gap: 11px;
  min-width: 224px;
}

.footer {
  padding: 35px 0 107px;
  color: rgba(255, 255, 255, .72);
  background: #0b0d0a;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.15fr .85fr .9fr;
}

.footer .logo-copy strong {
  color: var(--white);
}

.footer .logo-copy span {
  color: rgba(255, 255, 255, .52);
}

.footer-text {
  max-width: 350px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 31px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 9px;
}

.floating-button {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .19);
  transition: transform .2s ease;
}

.floating-button:hover {
  transform: translateY(-4px);
}

.floating-button svg {
  width: 23px;
  height: 23px;
}

.floating-call {
  color: var(--ink);
  background: var(--yellow);
}

.floating-whatsapp {
  color: var(--white);
  background: var(--green);
}

.mobile-bottom {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    position: fixed;
    z-index: 49;
    inset: 76px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 40px rgba(17, 19, 15, .1);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height .28s ease, opacity .2s ease, transform .28s ease, border-color .2s ease;
  }

  .mobile-menu.is-open {
    max-height: 420px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    display: grid;
    gap: 4px;
    width: min(calc(100% - 40px), var(--container));
    margin: auto;
    padding: 16px 0 20px;
  }

  .mobile-menu a:not(.button) {
    padding: 10px 2px;
    color: #4e534c;
    font-size: 15px;
    font-weight: 850;
  }

  .mobile-menu .button {
    margin-top: 7px;
  }

  .hero {
    padding-top: 61px;
  }

  .hero-grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    width: min(100%, 560px);
    max-width: 560px;
    margin-inline: auto;
    justify-self: center;
  }

  .hero-frame img {
    aspect-ratio: 1.25 / 1;
  }

  .quick-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-item {
    border-bottom: 1px solid rgba(17, 19, 15, .13);
  }

  .quick-item:nth-child(3),
  .quick-item:nth-child(4) {
    border-bottom: 0;
  }

  .quick-item:nth-child(odd) {
    border-left: 1px solid rgba(17, 19, 15, .13);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .availability-panel {
    grid-template-columns: 1fr;
  }

  .availability-stat:nth-child(odd) {
    border-left: 0;
  }

  .availability-stat:nth-child(3) {
    border-bottom: 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-visual {
    min-height: 360px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    min-height: 68px;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .logo-mark svg {
    width: 29px;
    height: 29px;
  }

  .logo-copy strong {
    font-size: 14px;
  }

  .logo-copy span {
    margin-top: 5px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    inset: 68px 0 auto;
  }

  .hero {
    padding: 48px 0 63px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-trust {
    gap: 7px;
    margin-top: 27px;
  }

  .trust-pill {
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero-frame {
    padding: 7px;
    border-radius: 23px;
    transform: none;
  }

  .hero-frame img {
    height: auto;
    aspect-ratio: 1.08 / 1;
    border-radius: 17px;
  }

  .availability-card {
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 11px 12px;
    transform: none;
  }

  .availability-icon {
    width: 36px;
    height: 36px;
  }

  .availability-card strong {
    font-size: 13px;
  }

  .availability-card span {
    font-size: 10px;
  }

  .hero-number {
    top: 13px;
    right: 13px;
    padding: 8px 10px;
    font-size: 10px;
    transform: none;
  }

  .quick-strip-inner {
    min-height: 0;
  }

  .quick-item {
    gap: 9px;
    min-height: 72px;
    padding: 12px 10px;
  }

  .quick-item svg {
    width: 18px;
    height: 18px;
  }

  .quick-item strong {
    font-size: 12px;
  }

  .quick-item span {
    font-size: 9px;
  }

  .services-intro {
    display: block;
  }

  .services-note {
    margin-top: 21px;
  }

  .services-grid {
    gap: 10px;
    margin-top: 29px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 19px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
  }

  .service-card h3 {
    margin-top: 18px;
  }

  .fleet-grid {
    gap: 12px;
    margin-top: 29px;
    grid-template-columns: 1fr;
  }

  .fleet-card,
  .fleet-card img {
    min-height: 290px;
  }

  .fleet-card:first-child img {
    object-position: center 43%;
  }

  .availability {
    padding-bottom: 76px;
  }

  .availability-copy {
    padding: 28px 22px;
  }

  .availability-stats {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .availability-stat {
    min-height: 112px;
    padding: 16px;
  }

  .availability-stat strong {
    font-size: 27px;
  }

  .availability-stat span {
    font-size: 10px;
  }

  .location-copy {
    padding: 25px 21px;
    border-radius: 22px;
  }

  .address-box {
    padding: 14px;
  }

  .location-visual {
    min-height: 300px;
    border-radius: 22px;
  }

  .review {
    padding-bottom: 76px;
  }

  .review-panel {
    display: block;
    padding: 26px 21px;
    border-radius: 22px;
  }

  .review-copy {
    display: block;
  }

  .google-mark {
    width: 62px;
    height: 62px;
    border-radius: 15px;
  }

  .review-panel h2 {
    margin-top: 20px;
  }

  .review-panel .button {
    width: 100%;
    margin-top: 21px;
  }

  .contact {
    padding: 76px 0;
  }

  .contact-actions {
    display: grid;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bottom {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 7px;
    padding: 8px 10px;
    border-top: 1px solid rgba(17, 19, 15, .1);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 24px rgba(17, 19, 15, .08);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    backdrop-filter: blur(14px);
  }

  .mobile-bottom .button {
    min-height: 50px;
    padding-inline: 8px;
    border-radius: 11px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
