:root {
  --red: #b10628;
  --red-deep: #85011d;
  --blue: #12355d;
  --blue-deep: #082133;
  --steel: #e9edf0;
  --ash: #f7f7f7;
  --charcoal: #24272a;
  --yellow: #e5a817;
  --white: #ffffff;
  --max: 1180px;
  --display: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: #eeeeee;
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 33, 51, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 33, 51, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.brand {
  display: inline-grid;
  width: max-content;
  grid-template-columns: auto auto;
  column-gap: 0;
  align-items: end;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

.brand-mm,
.brand-seven {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.brand-mm {
  color: var(--red);
}

.brand-seven {
  color: var(--white);
}

.brand-sub {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0;
  line-height: 1;
}

.site-header {
  position: absolute;
  top: 26px;
  left: 28px;
  right: 28px;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: start;
  color: var(--white);
}

.nav-links {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  justify-content: flex-start;
  padding: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(177, 6, 40, 0.22);
}

.hero-brand {
  position: relative;
  justify-self: center;
  min-width: 230px;
  justify-items: center;
  padding: 18px 30px 16px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 0 0 26px 26px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.hero-brand::before,
.hero-brand::after {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  content: "";
  background: transparent;
}

.hero-brand::before {
  left: -30px;
  border-top-right-radius: 24px;
  box-shadow: 16px -16px 0 15px var(--white);
}

.hero-brand::after {
  right: -30px;
  border-top-left-radius: 24px;
  box-shadow: -16px -16px 0 15px var(--white);
}

.hero-brand .brand-seven,
.hero-brand .brand-sub {
  color: var(--blue);
}

.hero-brand .brand-mm,
.hero-brand .brand-seven {
  font-size: 2.4rem;
}

.nav-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2), 0 14px 30px rgba(177, 6, 40, 0.28);
}

.header-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  align-items: stretch;
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: var(--blue-deep);
}

.hero-frame {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  background: var(--blue-deep);
  border-radius: 0;
  box-shadow: none;
}

.hero-frame::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 28px;
  content: "";
  background: var(--white);
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
}

.hero-shade {
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 33, 51, 0.92) 0%, rgba(8, 33, 51, 0.76) 38%, rgba(8, 33, 51, 0.16) 74%, rgba(8, 33, 51, 0.38) 100%),
    linear-gradient(0deg, rgba(8, 33, 51, 0.92) 0%, rgba(8, 33, 51, 0.1) 52%, rgba(8, 33, 51, 0.48) 100%);
}

.route-mark {
  position: absolute;
  pointer-events: none;
}

.route-mark-hero {
  right: -8%;
  bottom: 15%;
  z-index: 3;
  width: min(520px, 42vw);
  height: 170px;
  min-width: 340px;
  border-top: 10px solid rgba(177, 6, 40, 0.88);
  border-left: 10px solid rgba(177, 6, 40, 0.88);
  transform: skewX(-20deg) rotate(-5deg);
  opacity: 0.82;
}

.route-mark-hero::before,
.route-mark-hero::after {
  position: absolute;
  content: "";
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(177, 6, 40, 0.18);
}

.route-mark-hero::before {
  top: -22px;
  left: -24px;
  width: 26px;
  height: 26px;
}

.route-mark-hero::after {
  right: -12px;
  bottom: -7px;
  width: 46%;
  height: 10px;
}

.hero-content {
  position: absolute;
  left: clamp(34px, 4.8vw, 66px);
  top: 48%;
  z-index: 4;
  display: flex;
  width: min(650px, calc(100% - 90px));
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  transform: translateY(-34%);
}

.eyebrow,
.section-kicker,
.service-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--body);
  font-size: clamp(2.35rem, 4.25vw, 4.65rem);
  font-weight: 900;
  line-height: 0.96;
  color: var(--white);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  text-transform: none;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18), 0 18px 40px rgba(177, 6, 40, 0.25);
}

.button-primary:hover {
  background: #c20830;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-stats {
  position: absolute;
  left: clamp(34px, 4.8vw, 66px);
  bottom: 46px;
  z-index: 4;
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.hero-stats article {
  color: var(--white);
}

.hero-stats strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-stats span {
  display: block;
  max-width: 170px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 7;
  display: flex;
  width: min(250px, 28vw);
  min-width: 220px;
  height: 88px;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 16px 18px 14px 28px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 24px 0 0 0;
  box-shadow: -18px -22px 44px rgba(8, 33, 51, 0.18);
}

.hero-panel::before {
  position: absolute;
  top: -28px;
  right: 0;
  width: 28px;
  height: 28px;
  content: "";
  border-bottom-right-radius: 22px;
  box-shadow: 12px 12px 0 10px var(--white);
}

.hero-panel::after {
  position: absolute;
  right: 250px;
  bottom: 0;
  width: 28px;
  height: 28px;
  content: "";
  border-bottom-right-radius: 22px;
  box-shadow: 12px 12px 0 10px var(--white);
}

.hero-panel-arrows {
  display: flex;
  gap: 8px;
}

.hero-panel-arrows span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-panel i {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 72%, rgba(8, 33, 51, 0.14) 72%);
}

.hero-panel strong {
  color: var(--blue-deep);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.intro-section {
  position: relative;
}

.intro-section::before {
  position: absolute;
  right: calc(50% + 110px);
  bottom: 10px;
  z-index: -1;
  color: rgba(18, 53, 93, 0.05);
  content: "MM7";
  font-family: var(--display);
  font-size: clamp(12rem, 24vw, 22rem);
  font-weight: 900;
  line-height: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3.15rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
}

.intro-copy {
  padding-top: 14px;
  border-top: 8px solid var(--red);
}

.intro-copy p {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 650;
}

.value-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--blue);
}

.value-section h2,
.value-section .section-kicker {
  color: var(--white);
}

.value-heading {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.72fr);
  gap: 34px;
  align-items: end;
}

.value-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  font-weight: 650;
}

.value-track {
  position: relative;
  height: 72px;
  margin: 30px 0 -4px;
}

.value-track::before {
  position: absolute;
  top: 35px;
  left: 3%;
  right: 3%;
  height: 8px;
  content: "";
  background-image: linear-gradient(90deg, var(--red) 52%, transparent 0);
  background-size: 28px 8px;
  border-radius: 999px;
  opacity: 0.9;
}

.value-track span {
  position: absolute;
  top: 22px;
  width: 32px;
  height: 32px;
  background: var(--red);
  border: 7px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.value-track span:nth-child(1) {
  left: 5%;
}

.value-track span:nth-child(2) {
  left: 34%;
}

.value-track span:nth-child(3) {
  left: 63%;
}

.value-track span:nth-child(4) {
  left: 92%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.value-card {
  min-height: 330px;
  padding: 26px;
  background: rgba(8, 33, 51, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.value-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 32px;
}

.terrain .value-icon {
  border: 8px dotted var(--red);
  border-radius: 50%;
}

.terrain .value-icon::before,
.terrain .value-icon::after {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
  border: 7px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.terrain .value-icon::before {
  top: -14px;
  left: -10px;
}

.terrain .value-icon::after {
  right: -14px;
  bottom: -8px;
}

.trust .value-icon {
  border: 7px solid var(--red);
  border-radius: 28px 28px 42px 42px;
}

.trust .value-icon::before {
  position: absolute;
  top: 38px;
  left: -10px;
  width: 92px;
  height: 44px;
  content: "";
  border-bottom: 8px solid var(--red);
  border-left: 8px solid var(--red);
  transform: rotate(35deg);
}

.safety .value-icon {
  border: 8px solid var(--red);
  border-radius: 50% 50% 34% 34%;
}

.safety .value-icon::before {
  position: absolute;
  right: -26px;
  bottom: -36px;
  left: -26px;
  height: 44px;
  content: "";
  border: 8px solid var(--red);
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.adapt .value-icon {
  border-bottom: 8px solid var(--red);
}

.adapt .value-icon::before {
  position: absolute;
  inset: 14px 4px 8px;
  content: "";
  border: 8px solid var(--red);
  clip-path: polygon(0 22%, 18% 0, 100% 0, 86% 100%, 22% 100%);
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.services-section h2 {
  max-width: 930px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  display: grid;
  min-height: 610px;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(8, 33, 51, 0.16);
}

.service-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card > div {
  grid-area: 1 / 1;
  align-self: end;
  padding: 34px;
  background: linear-gradient(0deg, rgba(8, 33, 51, 0.95) 0%, rgba(8, 33, 51, 0.76) 58%, rgba(8, 33, 51, 0) 100%);
}

.service-card-alt > div {
  background: linear-gradient(0deg, rgba(177, 6, 40, 0.96) 0%, rgba(177, 6, 40, 0.68) 54%, rgba(177, 6, 40, 0) 100%);
}

.service-label {
  color: var(--yellow);
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.service-card p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  min-height: 780px;
  color: var(--white);
  background: var(--blue-deep);
}

.fleet-media {
  min-height: 620px;
}

.fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 88px);
}

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

.fleet-content p {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 650;
}

.fleet-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.fleet-list span {
  padding: 13px 16px;
  color: var(--white);
  background: rgba(177, 6, 40, 0.95);
  border-radius: 6px;
  font-weight: 950;
  text-transform: uppercase;
}

.spec-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  gap: 38px;
}

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

.spec-grid article {
  padding: 24px;
  background: var(--white);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(8, 33, 51, 0.08);
}

.spec-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.88;
  text-transform: uppercase;
}

.spec-grid p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 650;
}

.commitment-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

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

.commitment-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 33, 51, 0.94) 0%, rgba(8, 33, 51, 0.76) 45%, rgba(8, 33, 51, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 33, 51, 0.8), rgba(8, 33, 51, 0));
}

.commitment-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 40px, var(--max));
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.commitment-copy h2 {
  max-width: 900px;
  color: var(--white);
}

.commitment-copy p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 650;
}

.contact-section {
  display: grid;
  width: min(100% - 40px, var(--max));
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 1fr);
  gap: 18px;
  padding: clamp(70px, 9vw, 118px) 0;
  margin: 0 auto;
}

.contact-info,
.contact-form {
  border-radius: 8px;
}

.contact-info {
  padding: clamp(32px, 5vw, 52px);
  color: var(--white);
  background: var(--blue);
}

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

.contact-info > p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
}

.contact-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-list dt {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  box-shadow: 0 22px 80px rgba(8, 33, 51, 0.12);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--charcoal);
  background: #f3f5f7;
  border: 1px solid #d9e0e6;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer {
  display: flex;
  width: min(100% - 40px, var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 46px;
  margin: 0 auto;
  color: var(--blue);
  border-top: 1px solid rgba(18, 53, 93, 0.16);
}

.brand-footer .brand-seven,
.brand-footer .brand-sub {
  color: var(--blue);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  font-weight: 750;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    left: 20px;
    right: 20px;
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .nav-links {
    display: none;
  }

  .hero-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: auto;
    padding: 14px 20px 12px;
    border-radius: 0 0 18px 18px;
  }

  .hero-brand::before,
  .hero-brand::after {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-content {
    top: 44%;
    width: min(560px, calc(100% - 56px));
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 18px;
  }

  .hero-stats span {
    font-size: 0.78rem;
  }

  .hero-panel {
    width: 220px;
  }

  .intro-grid,
  .value-heading,
  .fleet-section,
  .spec-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .fleet-media {
    min-height: 540px;
  }
}

@media (max-width: 700px) {
  body::before {
    background-size: 52px 52px;
  }

  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    margin-top: 0;
  }

  .site-header .brand {
    justify-self: start;
  }

  .brand-mm,
  .brand-seven {
    font-size: 2rem;
  }

  .header-action {
    display: none;
  }

  .header-secondary {
    display: none;
  }

  .nav-actions {
    justify-self: start;
  }

  .hero {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
  }

  .hero-frame {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
  }

  .hero-media,
  .hero-media img,
  .hero-shade {
    inset: 0;
    border-radius: 0;
  }

  .hero-media img {
    object-position: 58% bottom;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 33, 51, 0.93) 0%, rgba(8, 33, 51, 0.74) 66%, rgba(8, 33, 51, 0.44) 100%),
      linear-gradient(0deg, rgba(8, 33, 51, 0.96) 0%, rgba(8, 33, 51, 0.32) 55%, rgba(8, 33, 51, 0.62) 100%);
  }

  .hero-brand .brand-mm,
  .hero-brand .brand-seven {
    font-size: 1.9rem;
  }

  .hero-content {
    left: 24px;
    top: 24vh;
    width: min(300px, calc(100% - 48px));
    max-width: none;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
    line-height: 1;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.78rem;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-stats {
    left: 24px;
    right: auto;
    bottom: 50px;
    width: min(300px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-stats article {
    display: block;
  }

  .hero-stats strong {
    margin: 0 0 2px;
    font-size: 1.72rem;
  }

  .hero-stats span {
    max-width: none;
    font-size: 0.8rem;
  }

  .hero-panel {
    right: 0;
    bottom: 0;
    left: auto;
    width: 188px;
    min-width: 188px;
    height: 74px;
    gap: 10px;
    padding: 12px 12px 10px 20px;
  }

  .hero-panel::after {
    right: 188px;
  }

  .hero-panel-arrows span {
    width: 26px;
    height: 26px;
    font-size: 1.15rem;
  }

  .hero-panel i {
    width: 34px;
  }

  .hero-panel strong {
    font-size: 1.05rem;
  }

  .route-mark-hero {
    display: none;
  }

  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  h2 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .value-section {
    padding-inline: 14px;
  }

  .value-track {
    display: none;
  }

  .value-grid,
  .service-grid,
  .spec-grid,
  .form-row-split {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 520px;
  }

  .fleet-media {
    min-height: 480px;
  }

  .fleet-content {
    padding: 38px 20px 52px;
  }

  .commitment-copy {
    width: min(100% - 28px, var(--max));
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
