:root {
  --navy: #14283a;
  --workwear-blue: #31546d;
  --oxide: #a33b32;
  --oxide-dark: #873029;
  --canvas: #e8e1d4;
  --warm-white: #f6f3ed;
  --ink: #1d2328;
  --ink-soft: #4b565e;
  --brass: #b58a42;
  --forest: var(--workwear-blue);
  --forest-deep: var(--navy);
  --orange: var(--oxide);
  --orange-dark: var(--oxide-dark);
  --cream: var(--warm-white);
  --sand: var(--canvas);
  --white: #fffdf8;
  --line: rgba(29, 35, 40, 0.14);
  --shadow: 0 24px 60px rgba(20, 40, 58, 0.14);
  --radius: 3px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(246, 243, 237, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 40, 58, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--white);
  background: var(--orange);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 29px;
  font-style: italic;
  font-weight: 800;
  place-items: center;
  transform: skew(-5deg);
}

.brand-logo {
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  object-fit: cover;
}

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

.brand strong {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--forest-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  box-shadow: 2px 2px 0 var(--forest-deep);
  transform: translate(3px, 3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  box-shadow: none;
}

.button-small:hover,
.button-small:focus-visible {
  box-shadow: none;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  font-size: 18px;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.hero {
  min-height: 740px;
  padding: calc(var(--header-height) + 68px) 0 80px;
  overflow: hidden;
  background:
    linear-gradient(rgba(29, 35, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 35, 40, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 48px 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 3px;
  background: var(--orange);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  line-height: 0.94;
}

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(4.3rem, 7.7vw, 7.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-list {
  display: flex;
  gap: 26px;
  margin: 52px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "◆";
  font-size: 7px;
}

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.13) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(255, 255, 255, 0.13) 50%, transparent 50.5%),
    var(--forest);
  background-size: 52px 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  place-items: center;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 570px;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -35px;
  right: -35px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  content: "";
}

.availability-card {
  position: absolute;
  right: -12px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--orange);
  transform: rotate(-1.4deg);
}

.availability-card strong {
  color: var(--orange);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.availability-card span {
  max-width: 80px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 560px;
  padding: 38px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.32);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(29, 35, 40, 0.24);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--forest);
  font-size: 22px;
  place-items: center;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-list {
  margin: 0 0 28px;
  padding: 18px 0 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 4px 0 4px 16px;
}

.service-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brass);
  content: "";
  transform: rotate(45deg);
}

.service-card a {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card a span {
  margin-left: 8px;
}

.automotive-section {
  background: var(--canvas);
}

.automotive-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  align-items: start;
}

.automotive-copy h2 {
  max-width: 600px;
}

.automotive-lede {
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.35;
}

.automotive-copy > p:not(.eyebrow, .automotive-lede) {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 14px;
}

.automotive-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.automotive-feature {
  position: relative;
  min-width: 0;
  padding: 30px;
  background: var(--warm-white);
  border-top: 3px solid var(--workwear-blue);
}

.automotive-feature:nth-child(3) {
  grid-column: 1 / -1;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(29, 35, 40, 0.25);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.automotive-feature h3 {
  max-width: calc(100% - 32px);
  margin-bottom: 20px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.automotive-feature ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.automotive-feature li {
  position: relative;
  padding-left: 13px;
}

.automotive-feature li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--oxide);
  content: "";
}

.service-disclaimer {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.vehicle-showcase {
  margin-top: 90px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.showcase-heading .eyebrow {
  margin-bottom: 0;
}

.showcase-heading h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-align: right;
}

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

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  background: var(--warm-white);
  border-bottom: 3px solid var(--workwear-blue);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.vehicle-card-copy {
  padding: 24px;
}

.vehicle-card-copy p {
  margin-bottom: 10px;
  color: var(--oxide);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-card-copy h4 {
  margin: 0 0 10px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.vehicle-card-copy span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.work-section {
  color: var(--white);
  background: var(--forest-deep);
}

.work-section .section-heading {
  margin-bottom: 55px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 30px;
  align-items: end;
}

.work-image {
  min-height: 360px;
  width: 100%;
  overflow: hidden;
  background-color: var(--workwear-blue);
}

.work-card-large .work-image {
  min-height: 500px;
}

.work-copy {
  padding-top: 24px;
}

.work-copy p {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-bottom: 10px;
}

.work-copy > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.testimonials-section {
  background: var(--canvas);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.rating {
  margin-top: 42px;
}

.rating span {
  display: block;
  color: var(--orange);
  letter-spacing: 0.15em;
}

.rating strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-list {
  border-top: 1px solid var(--line);
}

.testimonial {
  margin: 0;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.testimonial blockquote {
  margin: 0 0 28px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.testimonial figcaption strong,
.testimonial figcaption small {
  display: block;
}

.testimonial figcaption strong {
  font-size: 12px;
  text-transform: uppercase;
}

.testimonial figcaption small {
  color: var(--ink-soft);
  font-size: 11px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  min-height: 570px;
  overflow: visible;
  background-color: #756d62;
}

.experience-badge {
  position: absolute;
  right: -55px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 7px 7px 0 var(--forest-deep);
}

.experience-badge strong {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 46px;
  line-height: 1;
}

.experience-badge span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-lede {
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.35;
}

.about-copy > p:not(.eyebrow, .about-lede) {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 0;
}

.contact-details > p:first-child {
  max-width: 500px;
  font-size: 17px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 28px 0 24px;
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.light-link {
  color: var(--white);
}

.light-link span {
  color: var(--white);
}

.service-area {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 62px 0 35px;
  color: var(--white);
  background: #0d1d29;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--warm-white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--oxide);
}

@media (max-width: 900px) {
  .primary-nav {
    gap: 16px;
  }

  .hero-grid,
  .about-grid {
    gap: 45px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .testimonial-grid {
    gap: 50px;
  }

  .contact-grid {
    gap: 50px;
  }

  .automotive-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .vehicle-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

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

  .nav-toggle {
    z-index: 2;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    background: var(--cream);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 20px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .primary-nav .button {
    margin-top: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 55px);
  }

  .hero-grid,
  .split-heading,
  .automotive-grid,
  .work-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 20px;
  }

  .trust-list {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .section {
    padding: 85px 0;
  }

  .split-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

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

  .service-card {
    min-height: 0;
  }

  .automotive-features,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .automotive-feature:nth-child(3),
  .vehicle-card:last-child {
    grid-column: auto;
  }

  .vehicle-showcase {
    margin-top: 70px;
    padding-top: 48px;
  }

  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .showcase-heading h3 {
    text-align: left;
  }

  .work-grid {
    gap: 55px;
  }

  .work-card-large .work-image,
  .work-image {
    min-height: 380px;
  }

  .testimonial-grid {
    gap: 45px;
  }

  .about-grid {
    gap: 75px;
  }

  .about-visual {
    min-height: 450px;
  }

  .experience-badge {
    right: 20px;
    bottom: -35px;
  }

  .contact-grid {
    gap: 35px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 340px;
  }

  .availability-card {
    right: 8px;
  }

  .service-card {
    padding: 30px;
  }

  .automotive-feature ul {
    grid-template-columns: 1fr;
  }

  .work-card-large .work-image,
  .work-image {
    min-height: 300px;
  }

  .about-visual {
    min-height: 380px;
  }
}

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

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