:root {
  --mm-ink: #071c2c;
  --mm-ink-soft: #12344a;
  --mm-paper: #f5f7f9;
  --mm-ice: #e9eef3;
  --mm-red: #ff304f;
  --mm-red-dark: #d91f3e;
  --mm-blue: #2d6cdf;
  --mm-yellow: #f8dc4e;
  --mm-line: rgba(7, 28, 44, .16);
  --mm-white-line: rgba(245, 247, 249, .22);
  --mm-shadow: 0 24px 70px rgba(7, 28, 44, .16);
  --mm-wrap: min(1240px, calc(100% - 72px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--mm-ink);
}

body {
  margin: 0;
  color: var(--mm-ink);
  background: var(--mm-paper);
  font-family: var(--mm-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-thickness: .14em;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mm-yellow);
  outline-offset: 4px;
}

.wrap {
  width: var(--mm-wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -4rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--mm-ink);
  background: var(--mm-yellow);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  color: var(--mm-paper);
  background: var(--mm-ink);
  transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.site-loader__mark {
  width: 68px;
  height: 68px;
  animation: mm-pulse 1.2s ease-in-out infinite;
}

.site-loader__label {
  margin: 0;
  color: var(--mm-yellow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@keyframes mm-pulse {
  50% {
    transform: translateY(-5px) rotate(-3deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--mm-paper);
  background: var(--mm-ink);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 28, 44, .2);
}

.header-utility {
  min-height: 31px;
  color: var(--mm-ice);
  background: var(--mm-ink-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 31px;
}

.header-utility__inner span:last-child {
  color: var(--mm-yellow);
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(8rem, .65fr) minmax(12rem, .95fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 145px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--mm-paper);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  grid-column: 1;
  grid-row: 1 / -1;
}

.brand__mark {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
}

.logo-image {
  display: block;
  object-fit: contain;
}

.brand__type {
  display: grid;
  gap: .05rem;
  line-height: 1;
}

.brand__type strong {
  font-family: var(--mm-display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.brand__type small {
  color: var(--mm-yellow);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2 / 4;
  grid-row: 2;
  gap: clamp(.7rem, 1.6vw, 1.65rem);
  margin-left: 0;
}

.main-nav a {
  color: var(--mm-ice);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 49px;
  padding: .75rem 1.1rem;
  border: 1px solid transparent;
  color: var(--mm-paper);
  background: var(--mm-red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.header-cta { grid-column: 4; grid-row: 1; justify-self: end; }
.roadline-header-call,
.roadline-header-hours { display:flex; align-items:center; gap:.65rem; color:var(--mm-ice); }
.roadline-header-call { grid-column:2; grid-row:1; }
.roadline-header-hours { grid-column:3; grid-row:1; }
.roadline-header-call > span,
.roadline-header-hours > span { color:var(--mm-yellow); font-size:1.7rem; line-height:1; }
.roadline-header-call div,
.roadline-header-hours div { display:grid; gap:.08rem; }
.roadline-header-call strong,
.roadline-header-hours strong { color:var(--mm-yellow); font-size:.75rem; letter-spacing:.04em; }
.roadline-header-call a,
.roadline-header-hours span { color:var(--mm-ice); font-size:.72rem; text-decoration:none; }
.roadline-social { display:flex; align-items:center; justify-content:flex-end; gap:1.2rem; grid-column:4; grid-row:2; }
.roadline-social a { color:#b6c3cb; font-size:1rem; font-weight:900; text-decoration:none; }
.roadline-social a:hover { color:var(--mm-yellow); }

.header-cta:hover,
.button:hover {
  color: var(--mm-ink);
  background: var(--mm-yellow);
  transform: translateY(-2px);
}

.button--dark {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.button--dark:hover {
  color: var(--mm-ink);
  background: var(--mm-yellow);
}

.button--outline {
  border-color: currentColor;
  color: var(--mm-ink);
  background: transparent;
}

.button--outline:hover {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.button--paper {
  color: var(--mm-ink);
  background: var(--mm-paper);
}

.button--paper:hover {
  color: var(--mm-ink);
  background: var(--mm-yellow);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: .6rem;
  border: 1px solid var(--mm-white-line);
  color: var(--mm-paper);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-panel {
  display: none;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--mm-red-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light,
.kicker--light {
  color: var(--mm-yellow);
}

.display {
  margin: 0;
  font-family: var(--mm-display);
  font-size: clamp(4rem, 8.2vw, 9.6rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .9;
  text-transform: uppercase;
}

.display em,
h1 em,
h2 em {
  color: var(--mm-red);
  font-style: normal;
}

.lead {
  max-width: 43rem;
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}

.muted {
  color: rgba(7, 28, 44, .68);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 690px;
  overflow: hidden;
  background: var(--mm-ice);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8.5rem) max(2rem, calc((100vw - 1240px) / 2)) clamp(5rem, 9vw, 8rem) max(2rem, calc((100vw - 1240px) / 2));
  padding-right: clamp(2rem, 7vw, 8rem);
  background: var(--mm-ice);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.hero__copy::before {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 90px;
  height: 90px;
  border: 16px solid rgba(45, 108, 223, .12);
  border-radius: 50%;
  content: "";
}

.hero__copy h1 {
  max-width: 680px;
  margin: 1rem 0 1.5rem;
  font-family: var(--mm-display);
  font-size: clamp(4rem, 7.8vw, 9rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}

.hero__copy h1 span {
  display: block;
  color: var(--mm-ink);
}

.hero__copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mm-line);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__facts span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 .55rem .05rem 0;
  border-radius: 50%;
  background: var(--mm-red);
  content: "";
}

.hero__media {
  position: relative;
  min-height: 690px;
  background: var(--mm-ink);
}

.hero__media::before {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(245, 247, 249, .6);
  border-radius: 50%;
  content: "";
}

.hero__media::after {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  z-index: 1;
  width: 116px;
  height: 13px;
  background: var(--mm-red);
  content: "";
  transform: rotate(-42deg);
}

.hero__media img {
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 48% 46%;
  transform: translate3d(0, var(--mm-parallax, 0px), 0) scale(1.06);
  transform-origin: center;
}

.hero__stamp {
  position: absolute;
  right: clamp(1.2rem, 6vw, 6rem);
  bottom: 2rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  padding: 1rem;
  border-radius: 50%;
  color: var(--mm-ink);
  background: var(--mm-yellow);
  font-family: var(--mm-display);
  font-size: .95rem;
  letter-spacing: .05em;
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section--dark {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.section--ice {
  background: var(--mm-ice);
}

.section-heading {
  display: grid;
  gap: .7rem;
  max-width: 55rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.section h2 {
  margin: 0;
  font-family: var(--mm-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .9;
  text-transform: uppercase;
}

.section-heading p:not(.kicker) {
  max-width: 44rem;
  margin: 0;
  font-size: 1.08rem;
}

.estimate-section {
  position: relative;
  color: var(--mm-paper);
  background: var(--mm-ink);
  overflow: hidden;
}

.estimate-section::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 32rem;
  height: 32rem;
  border: 2px solid rgba(255, 48, 79, .38);
  border-radius: 50%;
  content: "";
}

.estimate-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.estimate-copy h2 {
  max-width: 28rem;
  margin: .8rem 0 1.2rem;
}

.estimate-copy p:not(.kicker) {
  max-width: 28rem;
  color: rgba(245, 247, 249, .78);
}

.estimate-callout {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--mm-yellow);
  color: var(--mm-ice);
  background: rgba(245, 247, 249, .08);
  font-size: .9rem;
}

.estimate-form,
.callback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--mm-ink);
  background: var(--mm-paper);
  box-shadow: var(--mm-shadow);
}

.field {
  display: grid;
  gap: .4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem .8rem;
  border: 1px solid var(--mm-line);
  border-radius: 0;
  color: var(--mm-ink);
  background: #fff;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mm-blue);
  outline: 2px solid rgba(45, 108, 223, .2);
  outline-offset: 0;
}

.form-note {
  margin: 0;
  color: rgba(7, 28, 44, .66);
  font-size: .78rem;
}

.estimate-result {
  grid-column: 1 / -1;
  padding: 1.2rem;
  border: 2px solid var(--mm-red);
  color: var(--mm-ink);
  background: var(--mm-yellow);
}

.estimate-result[hidden] {
  display: none;
}

.estimate-result h3 {
  margin: 0 0 .35rem;
  font-family: var(--mm-display);
  font-size: 2rem;
  letter-spacing: -.03em;
  line-height: .9;
  text-transform: uppercase;
}

.estimate-result p {
  margin: .35rem 0;
}

.estimate-result strong {
  color: var(--mm-red-dark);
}

.services-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: var(--mm-paper);
}

.services-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.services-intro .section-heading {
  margin-bottom: 0;
}

.services-intro > p {
  max-width: 22rem;
  margin: 0;
}

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

.service-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  color: var(--mm-paper);
  background: var(--mm-ink);
  isolation: isolate;
}

.service-card::after {
  position: absolute;
  inset: 48% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(7, 28, 44, .96));
  content: "";
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  opacity: .82;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), opacity .3s ease;
}

.service-card:hover img {
  opacity: 1;
  transform: scale(1.07);
}

.service-card__body {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}

.service-card__number {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: .7rem;
  color: var(--mm-ink);
  background: var(--mm-yellow);
  font-size: .7rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 .4rem;
  font-family: var(--mm-display);
  font-size: 2.2rem;
  letter-spacing: -.03em;
  line-height: .86;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(245, 247, 249, .82);
  font-size: .88rem;
}

.service-card__link {
  display: inline-block;
  margin-top: .8rem;
  color: var(--mm-yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card__link:hover {
  color: var(--mm-paper);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--mm-line);
}

.benefit-card {
  min-height: 210px;
  padding: 1.7rem;
  background: var(--mm-ice);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--mm-paper);
  background: var(--mm-red);
  font-family: var(--mm-display);
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin: 0 0 .45rem;
  font-family: var(--mm-display);
  font-size: 1.8rem;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}

.benefit-card p {
  max-width: 22rem;
  margin: 0;
  color: rgba(7, 28, 44, .7);
  font-size: .9rem;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  min-height: 570px;
  color: var(--mm-paper);
  background: var(--mm-red);
}

.image-band__media {
  position: relative;
  overflow: hidden;
  min-height: 570px;
}

.image-band__media img {
  height: 100%;
  transform: translate3d(0, var(--mm-parallax, 0px), 0) scale(1.06);
}

.image-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  background: var(--mm-red);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.image-band__copy h2 {
  max-width: 35rem;
  margin: .8rem 0 1rem;
}

.image-band__copy p:not(.kicker) {
  max-width: 28rem;
  color: rgba(245, 247, 249, .9);
}

.image-band__copy .button {
  align-self: flex-start;
  margin-top: 1rem;
}

.why-section {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.why-copy h2 {
  max-width: 43rem;
  margin: .8rem 0 1.2rem;
}

.why-copy > p:not(.kicker) {
  max-width: 37rem;
  color: rgba(245, 247, 249, .76);
  font-size: 1.1rem;
}

.why-steps {
  display: grid;
  gap: 1px;
  margin-top: 2.3rem;
  background: var(--mm-white-line);
}

.why-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  background: var(--mm-ink);
}

.why-step__number {
  color: var(--mm-yellow);
  font-family: var(--mm-display);
  font-size: 1.9rem;
  line-height: 1;
}

.why-step h3 {
  margin: 0 0 .25rem;
  font-size: .92rem;
  text-transform: uppercase;
}

.why-step p {
  margin: 0;
  color: rgba(245, 247, 249, .65);
  font-size: .88rem;
}

.why-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--mm-ink);
  background: var(--mm-red);
  transform: rotate(2deg);
}

.why-card::before {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 4rem;
  height: 1rem;
  background: var(--mm-yellow);
  content: "";
  transform: rotate(-5deg);
}

.why-card h3 {
  max-width: 23rem;
  margin: 0 0 1rem;
  font-family: var(--mm-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -.05em;
  line-height: .83;
  text-transform: uppercase;
}

.why-card p {
  max-width: 22rem;
  margin: 0;
}

.note-section {
  background: var(--mm-ice);
}

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

.note-card {
  padding: 1.4rem;
  border-top: 5px solid var(--mm-blue);
  background: var(--mm-paper);
}

.note-card:nth-child(2) {
  border-top-color: var(--mm-red);
}

.note-card:nth-child(3) {
  border-top-color: var(--mm-yellow);
}

.note-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--mm-display);
  font-size: 1.85rem;
  letter-spacing: -.03em;
  line-height: .9;
  text-transform: uppercase;
}

.note-card p {
  margin: 0;
  color: rgba(7, 28, 44, .7);
  font-size: .9rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-panel {
  min-height: 250px;
  padding: 2rem;
  background: var(--mm-red);
}

.cta-panel:nth-child(2) {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.cta-panel:nth-child(3) {
  color: var(--mm-ink);
  background: var(--mm-blue);
}

.cta-panel h2 {
  max-width: 20rem;
  margin: 1rem 0 2rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.cta-panel .text-link {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.page-hero::after {
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(248, 220, 78, .55);
  border-radius: 50%;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: 3rem;
  align-items: end;
  min-height: 430px;
  padding-block: 5rem;
}

.page-hero h1 {
  max-width: 54rem;
  margin: .8rem 0 0;
  font-family: var(--mm-display);
  font-size: clamp(4rem, 8.5vw, 9rem);
  letter-spacing: -.045em;
  line-height: .86;
  text-transform: uppercase;
}

.page-hero__inner > p {
  max-width: 26rem;
  margin: 0 0 .4rem;
  color: rgba(245, 247, 249, .78);
  font-size: 1.05rem;
}

.route-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.route-section--dark {
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.route-copy h2 {
  margin: .8rem 0 1rem;
  font-family: var(--mm-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}

.route-copy p {
  max-width: 38rem;
}

.route-copy .button {
  margin-top: 1rem;
}

.route-media {
  overflow: hidden;
  min-height: 480px;
  background: var(--mm-ice);
}

.route-media img {
  height: 100%;
  min-height: 480px;
  transform: translate3d(0, var(--mm-parallax, 0px), 0) scale(1.06);
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--mm-line);
}

.service-list__row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1rem;
  background: var(--mm-paper);
  transition: background .2s ease, padding-left .2s ease;
}

.service-list__row:hover {
  padding-left: 1.35rem;
  background: var(--mm-yellow);
}

.service-list__number {
  color: var(--mm-red);
  font-family: var(--mm-display);
  font-size: 1.8rem;
}

.service-list__row h3 {
  margin: 0 0 .2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.service-list__row p {
  max-width: 35rem;
  margin: 0;
  color: rgba(7, 28, 44, .66);
  font-size: .88rem;
}

.service-list__tag {
  padding: .35rem .5rem;
  color: var(--mm-paper);
  background: var(--mm-ink);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--mm-ink);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(4) {
  grid-column: span 7;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(3) {
  grid-column: span 5;
}

.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(6) {
  grid-column: span 6;
}

.gallery-grid img {
  height: 100%;
  min-height: 260px;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  color: var(--mm-paper);
  background: linear-gradient(transparent, rgba(7, 28, 44, .92));
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.contact-card h2 {
  margin: .8rem 0 1.3rem;
  font-family: var(--mm-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}

.contact-card dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .7rem 1.5rem;
  margin: 0;
}

.contact-card dt {
  color: var(--mm-yellow);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
}

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

.faq-list details {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--mm-line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--mm-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--mm-red);
  content: "+";
  font-family: var(--mm-body);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 45rem;
  margin: 1rem 2rem 0 0;
  color: rgba(7, 28, 44, .7);
}

.notice {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--mm-red);
  color: var(--mm-ink);
  background: var(--mm-yellow);
}

.site-footer {
  padding: 4.5rem 0 1.2rem;
  color: var(--mm-paper);
  background: var(--mm-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand > p {
  max-width: 22rem;
  color: rgba(245, 247, 249, .68);
  font-size: .9rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: .55rem;
}

.footer-col h3 {
  margin: 0 0 .5rem;
  color: var(--mm-yellow);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(245, 247, 249, .74);
  font-size: .86rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--mm-red);
}

.footer-hours {
  display: grid;
  gap: .4rem;
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--mm-white-line);
  color: rgba(245, 247, 249, .66);
  font-size: .75rem;
}

.footer-hours span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-hours b {
  color: var(--mm-paper);
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 2rem;
}

.payment-row span {
  padding: .35rem .45rem;
  border: 1px solid var(--mm-white-line);
  color: rgba(245, 247, 249, .66);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.footer-truth {
  margin: 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--mm-white-line);
  border-bottom: 1px solid var(--mm-white-line);
  color: rgba(245, 247, 249, .62);
  font-size: .76rem;
}

.footer-truth strong {
  color: var(--mm-yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .7rem 2rem;
  padding-top: 1.2rem;
  color: rgba(245, 247, 249, .52);
  font-size: .7rem;
}

.footer-bottom__built {
  color: var(--mm-red);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom__links {
  display: flex;
  gap: 1rem;
}

.footer-bottom a {
  color: inherit;
}

.is-hidden,
[hidden] {
  display: none !important;
}

@keyframes mm-route-reveal { from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-20px); } to { opacity: 1; clip-path: inset(0); transform: none; } }
.js [data-reveal] {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1), clip-path .65s ease;
  transition-delay: calc(var(--mm-delay, 0) * 90ms);
}

.js [data-reveal].is-visible,
.js [data-reveal].in {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
  animation: mm-route-reveal .65s cubic-bezier(.2, .8, .2, 1) both;
}

@media (max-width: 1080px) {
  :root {
    --mm-wrap: min(100% - 48px, 1240px);
  }

  .main-nav {
    gap: 1rem;
  }

  .main-nav a {
    font-size: .67rem;
  }

  .hero__copy {
    padding-left: max(1.5rem, calc((100vw - 1000px) / 2));
  }

  .hero__copy h1 { font-size: clamp(3.7rem, 7.5vw, 7rem); }

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

@media (max-width: 820px) {
  :root {
    --mm-wrap: calc(100% - 36px);
  }

  .header-utility__inner span:first-child {
    display: none;
  }

  .header-utility__inner {
    justify-content: center;
  }

  .main-nav,
  .header-main > .header-cta,
  .roadline-header-call,
  .roadline-header-hours,
  .roadline-social {
    display: none;
  }

  .header-main { display:flex; min-height:82px; gap:1rem; }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 1rem;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    background: var(--mm-ink);
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav-panel.is-open,
  .nav-panel.open {
    max-height: 420px;
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid var(--mm-white-line);
  }

  .nav-panel a {
    color: var(--mm-paper);
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-panel a[aria-current="page"] {
    color: var(--mm-red);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__copy {
    min-height: 600px;
    padding: 4rem 18px 5rem;
    clip-path: none;
  }

  .hero__copy h1 {
    max-width: 35rem;
    font-size: clamp(4.4rem, 16vw, 8rem);
  }

  .hero__media,
  .hero__media img {
    min-height: 490px;
  }

  .hero__stamp {
    right: 2rem;
  }

  .estimate-layout,
  .why-layout,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .estimate-copy {
    max-width: 38rem;
  }

  .why-card {
    max-width: 34rem;
    margin-left: auto;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band__media,
  .image-band__copy {
    min-height: 440px;
  }

  .image-band__copy {
    clip-path: none;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
    min-height: 360px;
    gap: 1.5rem;
  }

  .page-hero__inner > p {
    margin-bottom: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --mm-wrap: calc(100% - 28px);
  }

  .header-main {
    min-height: 72px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand__type strong {
    font-size: .9rem;
  }

  .display,
  .hero__copy h1 {
    font-size: clamp(3.1rem, 13vw, 5.2rem);
    letter-spacing: -.035em;
    line-height: .9;
  }

  .hero__copy {
    min-height: 560px;
    padding-top: 3.5rem;
  }

  .hero__copy > p:not(.eyebrow) {
    font-size: .98rem;
  }

  .hero__facts {
    display: grid;
    gap: .6rem;
    margin-top: 1.8rem;
  }

  .hero__media,
  .hero__media img {
    min-height: 390px;
  }

  .hero__media::before {
    top: 1.3rem;
    right: 1.3rem;
    width: 60px;
    height: 60px;
  }

  .hero__media::after {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .hero__stamp {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 92px;
    height: 92px;
    font-size: .72rem;
  }

  .estimate-form,
  .callback-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .estimate-result {
    grid-column: auto;
  }

  .services-intro {
    display: grid;
    gap: 1rem;
  }

  .service-grid,
  .benefit-row,
  .note-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading h2,
  .section h2,
  .route-copy h2,
  .contact-card h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
    letter-spacing: -.035em;
    line-height: .92;
  }

  .image-band__media,
  .image-band__copy {
    min-height: 350px;
  }

  .image-band__copy {
    padding: 3rem 14px;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .why-card h3 {
    font-size: 3rem;
  }

  .page-hero__inner {
    min-height: 310px;
    padding-block: 4rem;
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 12.5vw, 5.2rem);
    letter-spacing: -.035em;
    line-height: .9;
  }

  .route-media,
  .route-media img {
    min-height: 330px;
  }

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

  .service-list__tag {
    grid-column: 2;
    justify-self: start;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:nth-child(n) {
    grid-column: auto;
    min-height: 300px;
  }

  .gallery-grid img {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  .site-loader {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
  }

  .hero__media img,
  .image-band__media img,
  .route-media img {
    transform: scale(1.01);
  }
}

/* Accessibility palette hooks — explicit mappings for the Roadline mechanic palette. */
html[data-a11y-contrast="high"] {
  --mm-ink: #000; --mm-ink-soft: #000; --mm-paper: #fff; --mm-ice: #fff;
  --mm-red: #fff; --mm-red-dark: #fff; --mm-blue: #fff; --mm-yellow: #fff;
  --mm-line: #fff; --mm-white-line: #fff;
}
html[data-a11y-colour="safe"] {
  --mm-ink: #23282a; --mm-ink-soft: #3a4245; --mm-paper: #f7f7f7; --mm-ice: #e8f1f7;
  --mm-red: #e69f00; --mm-red-dark: #b87f00; --mm-blue: #0072b2; --mm-yellow: #e69f00;
}
/* S301 parity pass — make Roadline's mobile-service roles readable as a compact route rail,
   especially on the narrow opening where the earlier title was doing too much work. */
.roadline-service-rail { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; background:var(--mm-ink-soft); color:var(--mm-paper); border-bottom:3px solid var(--mm-red); }
.roadline-service-rail > span, .roadline-service-rail > a { padding:.55rem .82rem; border-right:1px solid var(--mm-white-line); font-size:.61rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.roadline-service-rail__label { color:var(--mm-yellow); }
.roadline-service-rail a { color:#fff; text-decoration:underline; text-underline-offset:.18em; }
@media (max-width:700px) { .roadline-service-rail { justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; scrollbar-width:none; } .roadline-service-rail::-webkit-scrollbar { display:none; } .roadline-service-rail > span, .roadline-service-rail > a { flex:none; padding:.55rem .62rem; font-size:.52rem; } }

/* S301 opening-parity repair — Roadline's wheel/mechanic role and phone utility stay together
   at the first decision, with a deliberately high-contrast label for the mobile crop. */
.hero__media { position:relative; }
.hero__image-note { position:absolute; right:1rem; bottom:1rem; z-index:2; padding:.45rem .6rem; color:var(--mm-ink); background:var(--mm-yellow); font-size:.56rem; font-weight:900; letter-spacing:.12em; }
.hero__phonebar { display:grid; grid-template-columns:1fr 1fr; gap:.65rem; margin-top:1rem; padding:.7rem .8rem; border-left:3px solid var(--mm-red); background:rgba(7,28,44,.08); color:var(--mm-ink-soft); }
.hero__phonebar a { display:grid; gap:.12rem; color:var(--mm-ink); text-decoration:none; }
.hero__phonebar strong { font-size:.9rem; }
.hero__phonebar span { font-size:.64rem; line-height:1.3; }
.hero__phonebar > span { display:grid; gap:.12rem; }
@media (max-width:700px) { .hero__phonebar { grid-template-columns:1fr; gap:.45rem; } .hero__image-note { right:.6rem; bottom:.6rem; font-size:.5rem; } }
@media (max-width:700px) { .hero__media img { object-position: 43% 42%; } }

/* S301 opening-parity closeout — Paul's reference keeps the call/hours/quote row, social
   navigation and small privacy card visible before the wheel image. Roadline mirrors those
   roles with fictional local copy and a dismissible, local-only notice. */
.roadline-privacy { position:fixed; left:1.75rem; bottom:1.75rem; z-index:70; width:min(27.5rem,calc(100% - 3.5rem)); padding:1.35rem 1.55rem 1.25rem; color:var(--mm-ink); background:#fff; border:1px solid rgba(7,28,44,.08); border-radius:.35rem; box-shadow:0 1rem 2.5rem rgba(7,28,44,.2); transition:opacity .22s ease, transform .22s ease; }
.roadline-privacy.is-dismissed { opacity:0; transform:translateY(120%); pointer-events:none; }
.roadline-privacy h2 { font-family:inherit; font-size:1rem; line-height:1.2; }
.roadline-privacy p { margin-top:.55rem; color:rgba(7,28,44,.72); font-size:.78rem; line-height:1.45; }
.roadline-privacy-actions { display:grid; grid-template-columns:repeat(3,1fr); gap:.45rem; margin-top:1rem; }
.roadline-privacy-actions button { min-height:2.55rem; padding:.45rem .35rem; border:2px solid var(--mm-blue); color:var(--mm-blue); background:#fff; font-size:.62rem; font-weight:900; letter-spacing:.04em; text-transform:uppercase; cursor:pointer; }
.roadline-privacy-actions button:last-child { color:#fff; background:var(--mm-blue); }
.roadline-privacy-actions button:hover { color:var(--mm-ink); background:var(--mm-yellow); border-color:var(--mm-yellow); }
@media (max-width:700px) { .roadline-privacy { left:.75rem; right:.75rem; bottom:.75rem; width:auto; padding:1rem; } .roadline-privacy p { font-size:.7rem; } .roadline-privacy-actions { margin-top:.7rem; } .roadline-privacy-actions button { min-height:2.25rem; font-size:.55rem; } }

/* S301 rendered closeout — keep the desktop notice off the statement headline so the
   full Roadline promise remains legible; the mobile notice keeps its bottom-sheet role. */
@media (min-width:701px) {
  .roadline-privacy { left:auto; right:1.75rem; }
}

/* S301 precision pass — keep the reference's call-led first decision visible on phones without
   rebuilding the header. The compact phone chip shares the brand row; the full hours/quote
   treatment remains in the desktop utility row and in the hero phone bar. */
@media (max-width:820px) {
  .header-main { gap:.55rem; }
  .roadline-header-call { display:flex; align-items:center; gap:.35rem; margin-left:auto; }
  .roadline-header-call > span { display:none; }
  .roadline-header-call div { gap:.02rem; }
  .roadline-header-call strong { font-size:.52rem; letter-spacing:.02em; }
  .roadline-header-call a { font-size:.6rem; white-space:nowrap; }
}
@media (max-width:700px) {
  .hero__copy { min-height:520px; padding-top:3rem; padding-bottom:3.6rem; }
  .hero__copy h1 { font-size:clamp(3rem,14vw,5.2rem); }
  .hero__facts { margin-top:1.2rem; }
  .hero__phonebar { margin-top:.8rem; padding-top:.8rem; }
}
