:root {
  --blue: #1644c5;
  --blue-dark: #0f2f8a;
  --orange: #ef7622;
  --ink: #171717;
  --muted: #5f5f5f;
  --soft: #efefef;
  --line: #d6d6d6;
  --white: #ffffff;
  --max: 1140px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.top-bar {
  min-height: 56px;
  display: flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
}

.header-inner {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--orange);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(470px, 54vw, 650px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #c9c9c9;
  color: var(--white);
}

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

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.3));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  max-width: 830px;
  margin: 24px 0 30px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

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

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

.button-link.light:hover {
  background: transparent;
  color: var(--white);
}

.page-title {
  padding: 62px 0 32px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1.08;
}

.page-title p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.strip {
  padding: 82px 0;
}

.strip.gray {
  background: var(--soft);
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-title,
.copy h2 {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
}

.section-intro p,
.copy p {
  margin: 0 0 18px;
  color: #393939;
  font-size: 17px;
  line-height: 1.75;
}

.copy p:last-child {
  margin-bottom: 0;
}

.copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.copy li {
  position: relative;
  margin: 9px 0;
  padding-left: 27px;
  color: #353535;
  font-size: 17px;
  line-height: 1.6;
}

.copy li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--orange);
  content: "\2192";
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 62px;
}

.two-col.wide-image {
  grid-template-columns: 1.08fr 0.92fr;
}

.two-col > img,
.two-col > figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  justify-self: center;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.two-col > figure {
  margin: 0;
}

.simple-link {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

.simple-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

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

.service-item img {
  width: 100%;
  height: auto;
  max-height: 225px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.vehicle-photo {
  object-fit: contain !important;
}

.two-col > img.vehicle-photo {
  height: auto;
  max-height: 340px;
}

.focus-upper {
  object-position: center 28%;
}

.service-item h3 {
  margin: 22px 0 9px;
  color: var(--orange);
  font-size: 25px;
  line-height: 1.2;
}

.service-item p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.65;
}

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

.media-grid img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  justify-self: center;
  object-fit: contain;
  box-shadow: var(--shadow);
}

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

.media-grid.landscape-grid img {
  max-height: 360px;
}

.location-map {
  width: 100%;
  height: 470px;
  display: block;
  border: 0;
  box-shadow: var(--shadow);
}

.address-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--white);
  border-left: 5px solid var(--orange);
}

.address-panel address {
  color: #343434;
  font-size: 17px;
  font-style: normal;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-stack {
  display: grid;
  gap: 34px;
}

.contact-block {
  padding-top: 24px;
  border-top: 4px solid var(--orange);
}

.contact-block h2 {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 32px;
}

.contact-block p,
.contact-block address {
  margin: 0 0 20px;
  color: #353535;
  font-size: 18px;
  font-style: normal;
  line-height: 1.75;
}

.contact-block a:not(.button-link):hover {
  color: var(--orange);
}

.service-note {
  max-width: 850px;
  padding: 30px 34px;
  border-left: 5px solid var(--orange);
  background: var(--soft);
}

.service-note h2 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 28px;
}

.service-note p {
  margin: 0;
  color: #3d3d3d;
}

.cta-band {
  padding: 58px 0;
  background: var(--blue);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner h2 {
  margin: 0 0 7px;
  font-size: 34px;
  line-height: 1.2;
}

.cta-inner p {
  margin: 0;
  font-size: 18px;
}

.site-footer {
  background: var(--soft);
  border-top: 2px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 64px;
  padding: 55px 0 42px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
}

.footer-main h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
}

.footer-main p,
.footer-main address,
.footer-nav a {
  color: #4f4f4f;
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
}

.footer-main p,
.footer-main address {
  margin: 0;
}

.footer-main a:hover {
  color: var(--orange);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-bottom {
  padding: 13px 0;
  background: var(--orange);
  color: var(--white);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 132px;
    gap: 30px;
  }

  .brand img {
    width: 175px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .two-col,
  .two-col.wide-image {
    gap: 38px;
  }

  .two-col > img,
  .two-col > figure img {
    max-height: 360px;
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .hero-content {
    width: min(calc(100% - 32px), var(--max));
  }

  .top-bar {
    min-height: 44px;
    font-size: 12px;
  }

  .top-bar-name,
  .top-bar-email {
    display: none;
  }

  .top-bar-contacts {
    width: 100%;
    justify-content: center;
  }

  .header-inner {
    min-height: 96px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: -16px;
    left: -16px;
    display: none;
    align-items: stretch;
    padding: 18px 24px 24px;
    background: var(--white);
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .main-nav a {
    padding: 10px 0;
    font-size: 14px;
  }

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

  .hero {
    min-height: 540px;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.56);
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 44px);
    letter-spacing: -0.02em;
  }

  .hero-copy {
    font-size: 18px;
  }

  .page-title {
    padding: 46px 0 26px;
  }

  .page-title p {
    font-size: 17px;
  }

  .strip {
    padding: 58px 0;
  }

  .two-col,
  .two-col.wide-image,
  .service-list,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .two-col,
  .two-col.wide-image {
    gap: 34px;
  }

  .two-col > img,
  .two-col > img.vehicle-photo,
  .two-col > figure img {
    height: auto;
    max-height: 430px;
  }

  .two-col .copy {
    order: -1;
  }

  .section-intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-title,
  .copy h2 {
    font-size: 32px;
  }

  .section-intro p,
  .copy p,
  .copy li {
    font-size: 16px;
  }

  .service-list {
    gap: 46px;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .media-grid img {
    max-height: 260px;
  }

  .media-grid.landscape-grid {
    grid-template-columns: 1fr;
  }

  .media-grid.landscape-grid img {
    height: auto;
    max-height: 380px;
  }

  .location-map {
    height: 390px;
  }

  .address-panel,
  .cta-inner,
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .address-panel {
    padding: 20px;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-inner h2 {
    font-size: 29px;
  }

  .footer-main {
    gap: 34px;
    padding: 44px 0 34px;
  }
}

@media (max-width: 520px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img {
    height: auto;
    max-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
