@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --dark: #07343a;
  --dark-soft: #0b4148;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #20292b;
  --muted: #6d6760;
  --gold: #bf9e60;
  --gold-hover: #d0b276;
  --line-light: rgba(255, 255, 255, 0.13);
  --line-dark: #ddd3c6;
  --shell: 1320px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  overflow-x: clip;
}

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

body,
button,
a {
  font-family: "Inter", Arial, sans-serif;
}

img,
svg {
  display: block;
}

img {
  width: 100%;
}

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

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

button {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 78px;
  gap: 28px;
  padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
  color: #fff;
  background: rgba(7, 52, 58, 0.98);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
  transition:
    height 420ms var(--ease-premium),
    background-color 420ms ease,
    box-shadow 420ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  box-shadow: 0 0 16px rgba(191, 158, 96, 0.4);
  transition: transform 80ms linear;
}

@media (min-width: 1041px) {
  .site-header.is-scrolled {
    height: 68px;
    background: rgba(7, 52, 58, 0.94);
    box-shadow: 0 12px 34px rgba(3, 27, 31, 0.18);
  }

  .site-header.is-scrolled .brand {
    width: 220px;
  }
}

.brand {
  display: inline-grid;
  width: 250px;
  flex: none;
  margin-right: auto;
  color: var(--paper);
  line-height: 1;
}

.brand-symbol {
  display: block;
  width: 100%;
  height: auto;
}

.brand-wordmark {
  display: block;
  margin-top: -4px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 58, "wght" 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  color: #12272b;
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-hover);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(7, 52, 58, 0.08);
}

.button-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-dark:hover {
  background: var(--dark-soft);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
}

.hero-image {
  position: absolute;
  top: -4%;
  right: 0;
  left: 0;
  height: 108%;
  object-fit: cover;
  object-position: 77% center;
  transform: translate3d(0, var(--hero-shift, 0px), 0)
    scale(var(--hero-scale, 1.045));
  transition: transform 220ms linear;
}

body.page-ready .hero-image {
  --hero-scale: 1.015;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 40, 47, 0.98) 0%,
    rgba(5, 40, 47, 0.92) 35%,
    rgba(5, 40, 47, 0.48) 68%,
    rgba(5, 40, 47, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--shell)) / 2));
  padding-top: 105px;
  transform: translate3d(0, var(--hero-copy-shift, 0px), 0);
  transition: transform 100ms linear;
}

.hero-content > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 820ms var(--ease-premium),
    transform 920ms var(--ease-premium);
}

body.page-ready .hero-content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-ready .hero-content > :nth-child(1) { transition-delay: 100ms; }
body.page-ready .hero-content > :nth-child(2) { transition-delay: 190ms; }
body.page-ready .hero-content > :nth-child(3) { transition-delay: 290ms; }
body.page-ready .hero-content > :nth-child(4) { transition-delay: 370ms; }
body.page-ready .hero-content > :nth-child(5) { transition-delay: 450ms; }

.eyebrow {
  margin: 0 0 21px;
  color: var(--gold);
  background: transparent !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.015em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 710px;
  font-size: clamp(46px, 3.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 10px;
  font-size: 18px;
  line-height: 1.65;
}

.hero-detail {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  color: #fff;
  background: var(--dark);
  border: 0;
  box-shadow: 0 22px 58px rgba(4, 31, 35, 0.16);
}

.trust-bar article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 164px;
  padding: 30px clamp(28px, 3vw, 64px);
  border: 0;
  transition: transform 600ms var(--ease-premium), background-color 600ms ease;
}

.trust-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold);
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 500ms var(--ease-premium);
}

.trust-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.025);
}

.trust-bar article:hover .trust-icon {
  transform: translateX(5px) rotate(-3deg);
}

.trust-bar h2 {
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-bar p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 92px 0;
  isolation: isolate;
}

.section-light {
  background:
    radial-gradient(circle at 9% 8%, rgba(191, 158, 96, 0.045), transparent 28%),
    var(--cream);
}

.section-dark {
  color: #fff;
  background: linear-gradient(135deg, #062f35 0%, var(--dark) 52%, #083b41 100%);
  box-shadow: 0 -24px 70px rgba(4, 31, 35, 0.12);
}

.section-heading {
  position: relative;
  max-width: 940px;
  margin: 0 auto 46px;
  padding-bottom: 24px;
  text-align: center;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 54px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 900ms 260ms var(--ease-premium);
}

.section-heading.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

.section-heading h2,
.coverage-copy h2,
.image-band-copy h2 {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

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

.service-card {
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(22, 42, 43, 0.08);
  transition: transform 650ms var(--ease-premium), box-shadow 650ms var(--ease-premium);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(22, 42, 43, 0.14);
}

.service-card > img {
  height: 255px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover > img {
  transform: scale(1.025);
}

.service-card-copy {
  min-height: 158px;
  padding: 18px 20px 24px;
}

.service-card-copy span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
}

.service-card-copy h3 {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.centered-action {
  margin-top: 32px;
  text-align: center;
}

.why-section .section-heading {
  max-width: 1060px;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.why-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  text-align: left;
}

.why-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0;
  color: var(--gold);
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 600ms var(--ease-premium);
}

.why-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid article:hover .why-icon {
  transform: translateX(5px);
}

.why-grid h3 {
  color: var(--gold);
  font-size: 24px;
  line-height: 1.22;
}

.why-grid p {
  max-width: 300px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.map-frame {
  padding: 4px;
  filter: none;
}

.coverage-section {
  background: #f6f2ea;
}

.china-map {
  width: 100%;
  height: auto;
  overflow: visible;
}

.china-map > image {
  opacity: 1;
}

.map-pin {
  fill: #993336;
  stroke: var(--cream);
  stroke-width: 2.2;
  paint-order: stroke;
  filter: drop-shadow(0 3px 2px rgba(80, 24, 20, 0.18));
}

.map-pin-center {
  fill: #fff;
}

.map-marker text {
  fill: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  paint-order: stroke;
  stroke: var(--cream);
  stroke-linejoin: round;
  stroke-width: 6px;
}

.motion-ready .map-marker {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
  translate: 0 -15px;
  transition:
    opacity 620ms var(--ease-premium),
    translate 760ms var(--ease-premium);
}

.motion-ready .map-frame.in-view .map-marker {
  opacity: 1;
  translate: 0 0;
}

.motion-ready .map-frame.in-view .map-marker:nth-of-type(2) { transition-delay: 80ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(3) { transition-delay: 140ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(4) { transition-delay: 200ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(5) { transition-delay: 260ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(6) { transition-delay: 320ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(7) { transition-delay: 380ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(8) { transition-delay: 440ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(9) { transition-delay: 500ms; }
.motion-ready .map-frame.in-view .map-marker:nth-of-type(10) { transition-delay: 560ms; }

.coverage-copy > .eyebrow {
  margin-bottom: 21px;
}

.coverage-copy h2 {
  margin-bottom: 26px;
}

.route-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.route-block h3 {
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-block p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.image-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}

.image-band > img {
  position: absolute;
  top: -5%;
  right: 0;
  left: 0;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, var(--band-shift, 0px), 0)
    scale(var(--band-scale, 1.045));
  transition: transform 280ms linear, filter 900ms ease;
}

.image-band.in-view > img {
  --band-scale: 1.012;
}

.corporate-band > img {
  object-position: 68% center;
}

.quote-band > img {
  object-position: 66% center;
}

.image-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 40, 47, 0.97),
    rgba(5, 40, 47, 0.83) 38%,
    rgba(5, 40, 47, 0.24) 72%
  );
}

.image-band-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 66px;
}

.image-band-copy {
  width: min(650px, 50%);
}

.image-band-copy h2 {
  font-size: clamp(46px, 3.8vw, 56px);
}

.image-band-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.image-band-copy ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.image-band-copy li {
  font-size: 17px;
  line-height: 1.55;
}

.image-band-copy li::before {
  content: "✓";
  display: inline-block;
  width: 28px;
  color: var(--gold);
  font-weight: 800;
}

.quote-band {
  min-height: 525px;
}

.quote-band .image-band-copy .button {
  margin-top: 30px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.fleet-grid figure {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.vehicle-image-wrap {
  display: flex;
  height: 180px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.vehicle-image-wrap img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: normal;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 850ms var(--ease-premium), filter 500ms ease;
}

.fleet-grid figure:hover .vehicle-image-wrap img {
  transform: translateY(-7px) scale(1.025);
  filter: saturate(1) contrast(1.04) drop-shadow(0 16px 12px rgba(20, 35, 36, 0.12));
}

.fleet-grid figcaption {
  padding-top: 18px;
}

.fleet-grid figcaption strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.fleet-grid figcaption span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
}

.testimonial-slider > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.testimonial-slider > button:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-slider > button svg {
  width: 22px;
  height: 22px;
}

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

.testimonial-pages {
  display: grid;
  min-width: 0;
}

.testimonial-grid {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 650ms var(--ease-premium), transform 650ms var(--ease-premium), visibility 650ms;
}

.testimonial-grid.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-grid article {
  min-height: 275px;
  padding: 23px 22px;
  background: var(--dark-soft);
  border-top: 1px solid rgba(191, 158, 96, 0.28);
  transition: transform 500ms var(--ease-premium), background-color 500ms ease;
}

.testimonial-grid article:hover {
  transform: translateY(-4px);
  background: #0d4850;
}

.stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.testimonial-grid blockquote {
  margin: 15px 0 22px;
  font-size: 15.5px;
  line-height: 1.65;
}

.testimonial-grid article > p {
  margin: 0;
  color: #c6d0d1;
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #708589;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--gold);
}

.contact-section {
  padding-top: 68px;
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.contact-grid article {
  padding: 5px 18px;
}

.contact-grid article > svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  color: var(--gold);
  stroke-width: 1.55;
}

.contact-grid h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin: 13px 0 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

footer {
  padding-top: 38px;
  color: #fff;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.72fr 1.48fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-brand > img {
  width: auto;
  max-width: 220px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand > strong {
  display: block;
  margin-top: 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.footer-logo-link {
  display: inline-grid;
  width: min(205px, 100%);
  color: var(--paper);
  line-height: 1;
}

.footer-logo-link .brand-wordmark {
  margin-top: -3px;
  font-size: 18px;
}

.footer-brand .association-logo {
  width: auto;
  max-width: 190px;
  max-height: 53px;
  margin-top: 19px;
  opacity: .86;
}

.footer-brand p {
  max-width: 340px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

/* Visible but refined transitions create continuity between sections. */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 68px, 0) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 1000ms var(--ease-premium),
    transform 1100ms var(--ease-premium),
    filter 900ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-66px, 0, 0) scale(0.985);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(66px, 0, 0) scale(0.985);
}

.motion-ready [data-reveal].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.footer-links a:hover {
  color: #fff;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}

.payment-brand {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.payment-brand svg,
.payment-brand img {
  width: 38px;
  height: 32px;
  object-fit: contain;
}

.payment-brand:nth-child(1) svg,
.payment-brand:nth-child(2) svg,
.payment-brand:nth-child(1) img,
.payment-brand:nth-child(2) img {
  width: 50px;
}

.payment-brand:nth-child(3) svg,
.payment-brand:nth-child(3) img {
  width: 40px;
  height: 36px;
}

.payment-brand:nth-child(4) svg,
.payment-brand:nth-child(5) svg,
.payment-brand:nth-child(6) svg,
.payment-brand:nth-child(7) svg,
.payment-brand:nth-child(4) img,
.payment-brand:nth-child(5) img,
.payment-brand:nth-child(6) img,
.payment-brand:nth-child(7) img {
  width: 36px;
  height: 36px;
}

.payment-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.copyright {
  padding: 18px 0 21px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
  }

  .service-card-copy h3 {
    font-size: 22px;
  }

  .trust-bar article {
    padding-inline: 22px;
  }

  .trust-bar h2 {
    font-size: 18px;
  }

  .why-grid {
    gap: 22px;
  }

  .why-grid h3 {
    font-size: 22px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    margin-right: 0;
  }

  .menu-button {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    background: var(--dark);
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 18px 34px rgba(4, 33, 37, 0.25);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

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

  .service-card-copy {
    min-height: 130px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .map-frame {
    max-width: 760px;
    margin-inline: auto;
  }

  .coverage-copy {
    max-width: 780px;
    margin-inline: auto;
  }

  .image-band-copy {
    width: min(680px, 68%);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

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

  .testimonial-grid article:nth-child(n + 3) {
    display: none;
  }

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

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .site-header {
    height: 70px;
    padding-inline: 15px;
  }

  .brand {
    width: 215px;
  }

  .brand-wordmark {
    margin-top: -3px;
    font-size: 18px;
  }

  .main-nav {
    top: 70px;
    padding-inline: 15px;
  }

  .hero {
    min-height: 735px;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 40, 47, 0.94),
      rgba(5, 40, 47, 0.77) 58%,
      rgba(5, 40, 47, 0.56)
    );
  }

  .hero-content {
    width: calc(100% - 30px);
    margin-inline: auto;
    padding-top: 78px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 50px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-detail {
    font-size: 15px;
    line-height: 1.62;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .trust-bar,
  .service-grid,
  .why-grid,
  .fleet-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    width: 100%;
    margin-top: 0;
  }

  .trust-bar article {
    min-height: 125px;
    padding: 23px 22px;
    border: 0;
  }

  .trust-icon svg {
    width: 38px;
    height: 38px;
  }

  .why-icon svg {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .image-band-copy h2 {
    font-size: 38px;
  }

  .service-card > img {
    height: 260px;
  }

  .why-grid {
    gap: 34px;
  }

  .why-grid p {
    max-width: 100%;
  }

  .map-frame {
    padding: 0;
  }

  .map-marker text {
    font-size: 18px;
  }

  .coverage-layout {
    gap: 28px;
  }

  .image-band {
    min-height: 650px;
  }

  .image-band > img {
    object-position: 66% center;
  }

  .image-band-overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 40, 47, 0.96),
      rgba(5, 40, 47, 0.8) 68%,
      rgba(5, 40, 47, 0.45)
    );
  }

  .image-band-layout {
    align-items: flex-start;
    padding-block: 58px;
  }

  .image-band-copy {
    width: 100%;
  }

  .image-band-copy h2 {
    font-size: 43px;
  }

  .quote-band {
    min-height: 565px;
  }

  .fleet-grid {
    gap: 38px;
  }

  .vehicle-image-wrap {
    height: 205px;
  }

  .vehicle-image-wrap img {
    height: 200px;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .testimonial-slider > button {
    display: none;
  }

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

  .testimonial-grid article:nth-child(n + 2) {
    display: none;
  }

  .testimonial-grid article {
    min-height: 250px;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-grid strong {
    overflow-wrap: anywhere;
    font-size: 18px;
  }

  .footer-grid {
    gap: 32px;
  }

  .payment-grid {
    gap: 17px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* V39 — shared identity, contact and mobile refinements. */
.footer-grid {
  grid-template-columns: 1.35fr .85fr .72fr 1.25fr;
}

.footer-brand > img {
  max-width: 148px;
  max-height: 38px;
  opacity: .86;
}

.footer-contact {
  display: grid;
  gap: 5px;
  margin-top: 17px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--gold-hover);
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: #fff;
}

.services-page details.case-note summary {
  color: var(--gold) !important;
}

.services-page .long-term-note {
  margin-top: 22px;
  padding-left: 15px;
  border-left: 2px solid var(--gold);
}

.services-page .services-hero .inner-hero-image {
  object-position: center 42%;
}

.file-error {
  display: none;
  color: #9f342f !important;
  font-weight: 700 !important;
}

.file-error.is-visible {
  display: block;
}

@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .footer-brand > img {
    max-width: 132px;
    max-height: 34px;
  }

  .footer-logo-link {
    width: min(190px, 100%);
  }

  .footer-logo-link .brand-wordmark {
    font-size: 16.5px;
  }

  .footer-brand .association-logo {
    max-width: 178px;
    max-height: 50px;
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal {
    gap: 18px;
  }

  .services-page .services-hero .inner-hero-image {
    object-position: 56% center;
  }
}

/* V9.7: remove service dividers and restore the dark business-solutions chapter */
.services-page .car-service-card,
.services-page .car-service-card:first-child,
.services-page .car-service-card:last-child,
.services-page .support-card,
.services-page .support-card:first-child,
.services-page .support-card:last-child {
  border-left: 0;
}

.services-page .car-service-grid {
  column-gap: clamp(38px, 4.8vw, 74px);
}

.services-page .business-solutions {
  border-top: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(191, 158, 96, .065), transparent 120px),
    #06343a;
}

.services-page .business-solutions::after {
  display: none;
}

.services-page .business-solutions-heading h2,
.services-page .business-story-copy .solution-type {
  color: #fff;
}

.services-page .business-solutions-heading > p,
.services-page .business-story-copy > p:not(.solution-promise) {
  color: rgba(255, 255, 255, .76);
}

.services-page .business-story-copy .solution-promise {
  color: rgba(255, 255, 255, .9);
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  border-top-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .035);
}

.services-page .case-note {
  border-top-color: rgba(255, 255, 255, .13);
}

.services-page details.case-note summary,
.services-page .case-note p {
  color: rgba(255, 255, 255, .84);
}

@media (max-width: 760px) {
  .services-page .car-service-card,
  .services-page .car-service-card:first-child,
  .services-page .car-service-card:last-child,
  .services-page .support-card,
  .services-page .support-card:first-child,
  .services-page .support-card:last-child {
    border-left: 0;
  }
}

/* Services page editorial refinement — V9.1 */
.services-page .inner-hero-content {
  max-width: none;
}

.services-page .inner-hero h1 {
  max-width: 790px;
}

.services-page .inner-hero-lead {
  max-width: 720px;
}

.services-page .services-hero .inner-hero-image {
  object-position: 72% center;
}

.services-page .services-jump {
  gap: 14px 34px;
  padding-top: 8px;
  border-top: 0;
}

.services-page .services-jump a {
  position: relative;
  padding-bottom: 7px;
}

.services-page .services-jump a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform 300ms var(--ease-premium);
}

.services-page .services-jump a:hover::before,
.services-page .services-jump a:focus-visible::before {
  transform: scaleX(1);
}

.services-page .services-category-header {
  padding-bottom: 0;
  border-bottom: 0;
}

.business-solutions {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(191,158,96,.11), transparent 26%),
    linear-gradient(150deg, #052f35, #07343a 58%, #062c31);
}

.business-solutions-heading,
.coordination-heading,
.support-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
  gap: 10%;
  align-items: end;
  margin-bottom: 64px;
}

.business-solutions-heading h2,
.coordination-heading h2,
.support-showcase-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.business-solutions-heading h2 {
  color: #fff;
}

.business-solutions-heading > p,
.coordination-heading > p,
.support-showcase-heading > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.business-solutions-heading > p {
  color: rgba(255,255,255,.76);
}

.business-story-list {
  display: grid;
  gap: 48px;
}

.business-story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: 520px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.business-story-reverse .business-story-media {
  order: 2;
}

.business-story-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.business-story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 54%, rgba(5,47,53,.2));
  content: "";
  pointer-events: none;
}

.business-story-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-premium);
}

.business-story:hover .business-story-media img {
  transform: scale(1.025);
}

.business-story-copy {
  align-self: center;
  padding: clamp(38px, 5vw, 70px);
}

.business-story-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.06;
}

.business-story-copy > p:not(.service-label) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
}

.case-note {
  margin-top: 30px;
  padding: 26px 28px;
  background: rgba(255,255,255,.065);
}

.case-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-note p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.7;
}

.coordination-section {
  background:
    radial-gradient(circle at 0 100%, rgba(191,158,96,.08), transparent 24%),
    var(--light);
}

.coordination-heading h2,
.support-showcase-heading h2 {
  color: var(--dark);
}

.coordination-heading > p,
.support-showcase-heading > p {
  color: var(--muted);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 6%;
}

.process-flow article {
  position: relative;
  padding: 4px 0 0 28px;
}

.process-flow article::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(191,158,96,.14));
  content: "";
}

.process-flow article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-flow h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.process-flow p {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.support-showcase {
  overflow: hidden;
  background: #f1ede4;
}

.support-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 7%;
  align-items: center;
}

.support-media-stack {
  position: relative;
  min-height: 660px;
}

.support-media-stack figure {
  margin: 0;
}

.support-media-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 84%;
  height: 560px;
}

.support-media-main img,
.support-media-secondary img {
  height: 100%;
  object-fit: cover;
}

.support-media-main figcaption {
  position: absolute;
  right: -12%;
  bottom: 28px;
  width: 72%;
  padding: 24px 26px;
  color: rgba(255,255,255,.84);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  line-height: 1.25;
  background: rgba(7,52,58,.94);
}

.support-media-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  box-shadow: 0 20px 45px rgba(7,52,58,.17);
}

.support-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-value-list article {
  min-height: 265px;
  padding: 30px;
  background: rgba(255,255,255,.7);
}

.support-value-list h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}

.support-value-list article > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.67;
}

.support-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
  background: transparent;
}

.support-scenarios p {
  margin: 0;
  padding: 28px 30px;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
  background: var(--dark-soft);
}

.support-scenarios span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

  .business-story-reverse .business-story-media {
    order: 0;
  }

  .business-story-media {
    min-height: 430px;
  }

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

  .support-showcase-grid {
    grid-template-columns: 1fr;
  }

  .support-media-stack {
    max-width: 760px;
    margin-bottom: 54px;
  }
}

@media (max-width: 760px) {
  .services-page .services-hero .inner-hero-image {
    object-position: 67% center;
  }

  .business-solutions-heading,
  .coordination-heading,
  .support-showcase-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .business-story-list {
    gap: 28px;
  }

  .business-story {
    min-height: 0;
  }

  .business-story-media {
    min-height: 300px;
  }

  .business-story-copy {
    padding: 34px 26px 38px;
  }

  .case-note {
    padding: 22px;
  }

  .process-flow,
  .support-value-list,
  .support-scenarios {
    grid-template-columns: 1fr;
  }

  .process-flow {
    gap: 38px;
  }

  .support-media-stack {
    min-height: 480px;
    margin-bottom: 38px;
  }

  .support-media-main {
    width: 92%;
    height: 420px;
  }

  .support-media-main figcaption {
    right: -8%;
    width: 82%;
    padding: 19px 21px;
    font-size: 18px;
  }

  .support-media-secondary {
    width: 46%;
    height: 170px;
  }

  .support-value-list article {
    min-height: 0;
  }
}

/* V9.6: quieter section transitions and a more continuous editorial rhythm */
.services-page #car-services,
.services-page .business-solutions,
.services-page .support-showcase {
  background: #f7f3ec;
}

.services-page #car-services {
  padding-bottom: 112px;
}

.services-page .business-solutions {
  padding-top: 106px;
  border-top: 1px solid rgba(7, 52, 58, .1);
  color: var(--dark);
}

.services-page .business-solutions-heading h2,
.services-page .business-story-copy .solution-type {
  color: var(--dark);
}

.services-page .business-solutions-heading > p,
.services-page .business-story-copy > p:not(.solution-promise) {
  color: var(--muted);
}

.services-page .business-story-copy .solution-promise {
  color: #315054;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  background: transparent;
  border-top: 1px solid rgba(7, 52, 58, .11);
}

.services-page .case-note {
  border-top-color: rgba(7, 52, 58, .13);
}

.services-page details.case-note summary,
.services-page .case-note p {
  color: #34484a;
}

.services-page .support-showcase {
  padding-top: 104px;
  border-top: 1px solid rgba(7, 52, 58, .1);
}

.services-page .business-solutions::after,
.services-page .support-showcase::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(112px, 16vw);
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.services-page .car-service-card > img,
.services-page .business-story-media img,
.services-page .support-card > img {
  will-change: transform, filter;
}

.motion-ready.services-page .car-service-card > img,
.motion-ready.services-page .business-story-media img,
.motion-ready.services-page .support-card > img {
  filter: saturate(.9) contrast(.98);
  transform: scale(1.035);
  transition: transform 1.15s var(--ease-premium), filter .9s var(--ease-premium);
}

.motion-ready.services-page .car-service-card.in-view > img,
.motion-ready.services-page .business-story.in-view .business-story-media img,
.motion-ready.services-page .support-card.in-view > img {
  filter: saturate(1) contrast(1);
  transform: scale(1);
}

.services-page .coordination-section {
  border-top: 0;
}

@media (max-width: 760px) {
  .services-page #car-services {
    padding-bottom: 82px;
  }

  .services-page .business-solutions,
  .services-page .support-showcase {
    padding-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready.services-page .car-service-card > img,
  .motion-ready.services-page .business-story-media img,
  .motion-ready.services-page .support-card > img {
    filter: none;
    transform: none;
    transition: none;
  }
}

/* V9.8 definitive final overrides - restore the approved V9.4 structures */
.services-page .services-jump {
  padding-top: 8px;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

.services-page .car-service-card,
.services-page .car-service-card:first-child,
.services-page .car-service-card:last-child,
.services-page .car-service-card:nth-child(odd),
.services-page .car-service-card:nth-child(even) {
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.services-page .business-solutions {
  border-top: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(191, 158, 96, .07), transparent 90px),
    linear-gradient(150deg, #052f35, #07343a 58%, #062c31);
}

.services-page .business-solutions::after {
  display: none;
}

.services-page .business-solutions-heading h2,
.services-page .business-story-copy .solution-type {
  color: #fff;
}

.services-page .business-solutions-heading > p,
.services-page .business-story-copy > p:not(.solution-promise) {
  color: rgba(255, 255, 255, .76);
}

.services-page .business-story-copy .solution-promise {
  color: rgba(255, 255, 255, .9);
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  border-top-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .035);
}

.services-page .case-note {
  border-top-color: rgba(255, 255, 255, .13);
}

.services-page details.case-note summary,
.services-page .case-note p {
  color: rgba(255, 255, 255, .84);
}

/* Services page quiet transitions and square editorial system — V9.4 */
.services-page .services-intro {
  padding-bottom: 76px;
}

.services-page #car-services,
.services-page .business-solutions,
.services-page .support-showcase,
.services-page .coordination-section,
.services-page .services-cta {
  margin-top: 0;
  border-radius: 0;
}

.services-page #car-services {
  padding-top: 88px;
}

.services-page .business-solutions,
.services-page .support-showcase,
.services-page .coordination-section,
.services-page .services-cta {
  padding-top: 96px;
}

.services-page .business-solutions {
  background:
    linear-gradient(180deg, rgba(191,158,96,.07), transparent 90px),
    linear-gradient(150deg, #052f35, #07343a 58%, #062c31);
}

.services-page .support-showcase {
  background: linear-gradient(180deg, #ebe4d8 0, #f3efe7 100px, #f3efe7 100%);
}

.services-page .coordination-section {
  background:
    linear-gradient(180deg, rgba(191,158,96,.075), transparent 100px),
    linear-gradient(145deg, #052f35, #07343a 58%, #062d32);
}

.services-page section,
.services-page article,
.services-page img,
.services-page .case-note,
.services-page .service-path,
.services-page .car-service-card,
.services-page .business-story,
.services-page .support-card > img {
  border-radius: 0;
}

.services-page .services-section-head,
.services-page .business-solutions-heading,
.services-page .support-showcase-heading {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7%;
}

.services-page .services-section-head > p,
.services-page .business-solutions-heading > p,
.services-page .support-showcase-heading > p {
  width: 100%;
  max-width: 520px;
  justify-self: start;
}

.services-page .car-service-card,
.services-page .car-service-card-featured,
.services-page .car-service-card:hover,
.services-page .car-service-card-featured:hover {
  transform: none;
}

.services-page .car-service-card > img {
  height: 195px;
}

.services-page .business-story-list {
  align-items: start;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  align-self: start;
  border-radius: 0;
  box-shadow: 0 14px 38px rgba(0,0,0,.11);
}

.services-page .business-story-media {
  height: 175px;
  min-height: 175px;
}

.services-page details.case-note {
  padding: 0;
  overflow: hidden;
}

.services-page details.case-note summary {
  position: relative;
  padding: 19px 48px 19px 21px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.services-page details.case-note summary::-webkit-details-marker {
  display: none;
}

.services-page details.case-note summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  color: rgba(255,255,255,.74);
  font-size: 20px;
  font-weight: 400;
  content: "+";
  transform: translateY(-52%);
}

.services-page details.case-note[open] summary::after {
  content: "−";
}

.services-page .case-detail {
  padding: 0 21px 21px;
}

.services-page .coordination-heading {
  display: block;
  margin-bottom: 54px;
}

.services-page .coordination-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.services-page .services-cta::after {
  display: none;
}

.services-page .services-cta .inner-cta-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 5%;
}

.services-page .services-cta .button {
  justify-self: center;
}

@media (max-width: 1040px) {
  .services-page .services-section-head,
  .services-page .business-solutions-heading,
  .services-page .support-showcase-heading {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 6%;
  }

  .services-page .coordination-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 760px) {
  .services-page .services-section-head,
  .services-page .business-solutions-heading,
  .services-page .support-showcase-heading,
  .services-page .services-cta .inner-cta-layout {
    grid-template-columns: 1fr;
  }

  .services-page .coordination-heading h2 {
    font-size: 38px;
    white-space: normal;
  }

  .services-page .services-cta .button {
    justify-self: center;
  }
}

/* Shared inner-page system */
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.inner-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(191, 158, 96, 0.17), transparent 28%),
    linear-gradient(132deg, #052f35 0%, #07343a 56%, #0b4148 100%);
}

.inner-hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.025);
  transition: transform 1200ms var(--ease-premium);
}

body.page-ready .inner-hero-image {
  transform: scale(1);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 36, 42, 0.96) 0%, rgba(4, 36, 42, 0.86) 44%, rgba(4, 36, 42, 0.32) 100%);
}

.inner-hero:not(:has(.inner-hero-image)) .inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(191, 158, 96, 0.08), transparent 36%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,.025) 118px 119px);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 510px;
  max-width: 850px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 64px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 45px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--gold-hover);
}

.inner-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: .98;
  text-wrap: balance;
}

.inner-hero-lead {
  max-width: 760px;
  margin: 26px 0 30px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.68;
}

.inner-hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-premium), transform 700ms var(--ease-premium);
}

body.page-ready .inner-hero-content > * {
  opacity: 1;
  transform: none;
}

body.page-ready .inner-hero-content > :nth-child(2) { transition-delay: 80ms; }
body.page-ready .inner-hero-content > :nth-child(3) { transition-delay: 150ms; }
body.page-ready .inner-hero-content > :nth-child(4) { transition-delay: 230ms; }
body.page-ready .inner-hero-content > :nth-child(5) { transition-delay: 310ms; }

.section-paper {
  background: var(--paper);
}

.page-intro {
  padding-block: 82px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 9%;
  align-items: start;
}

.intro-grid h2,
.category-header h2,
.itinerary-layout h2,
.inner-cta h2,
.note-panel h2,
.presence-layout h2,
.quote-aside h2,
.faq-layout aside h2,
.about-values h2,
.inclusion-grid h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.intro-grid > div:last-child {
  padding-top: 4px;
  color: #4d5555;
  font-size: 18px;
  line-height: 1.75;
}

.intro-grid > div:last-child p {
  margin: 0 0 18px;
}

.page-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.page-jump a {
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-jump a::after {
  content: "↓";
  margin-left: 9px;
  color: var(--gold);
}

.category-header {
  display: grid;
  grid-template-columns: .68fr 1fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 58px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.category-header .eyebrow,
.category-header h2,
.category-header p {
  margin: 0;
}

.category-header > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.category-header-light {
  border-color: rgba(255,255,255,.15);
}

.category-header-light h2,
.category-header-light > p:last-child {
  color: #fff;
}

.service-detail-list {
  display: grid;
  gap: 76px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 7%;
  align-items: center;
}

.service-detail-reverse img {
  order: 2;
}

.service-detail img {
  height: 450px;
  object-fit: cover;
}

.service-label,
.region-tag {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-detail h3,
.solution-grid h3,
.process-grid h3,
.hub-grid h3,
.route-list h3,
.quote-type-grid h3,
.rate-grid h3,
.membership-panel h3,
.faq-group h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
}

.service-detail h3 {
  color: var(--dark);
  font-size: clamp(34px, 3.5vw, 52px);
}

.service-detail div > p:not(.service-label) {
  margin: 22px 0;
  color: #4d5555;
  font-size: 17px;
  line-height: 1.72;
}

.line-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.line-list li {
  position: relative;
  padding-left: 25px;
}

.line-list li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.line-list-light {
  color: rgba(255,255,255,.84);
}

.solution-grid,
.process-grid,
.rate-grid,
.quote-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.solution-grid article,
.process-grid article,
.quote-type-grid article {
  min-height: 260px;
  padding: 34px 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-right: 1px solid rgba(255,255,255,.12);
}

.solution-grid article:last-child,
.process-grid article:last-child,
.quote-type-grid article:last-child {
  border-right: 0;
}

.solution-grid h3,
.process-grid h3,
.quote-type-grid h3 {
  color: #fff;
  font-size: 30px;
}

.solution-grid p,
.process-grid p,
.quote-type-grid p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
}

.process-grid article span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-light .process-grid article {
  border-color: var(--line-dark);
}

.section-light .process-grid h3 {
  color: var(--dark);
}

.section-light .process-grid p {
  color: var(--muted);
}

.support-band {
  padding-block: 72px;
  color: #fff;
  background: var(--dark-soft);
  border-block: 1px solid rgba(255,255,255,.12);
}

.support-layout,
.inner-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 10%;
  align-items: center;
}

.support-layout h2,
.inner-cta h2 {
  color: #fff;
}

.support-layout h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.support-layout > p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.inner-cta {
  padding-block: 82px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,52,58,.97), rgba(7,52,58,.9)),
    url("../images/quote-band.webp") center/cover;
}

.inner-cta-layout {
  grid-template-columns: minmax(0, 1fr) auto;
}

.inner-cta h2 {
  max-width: 760px;
}

.inner-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
}

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

.region-grid article {
  padding: 46px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

.region-grid h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 46px;
  font-weight: 500;
}

.region-grid article > p:not(.region-tag) {
  color: var(--muted);
  line-height: 1.7;
}

.route-sequence {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 34px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.route-sequence i {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

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

.hub-grid article {
  min-height: 220px;
  padding: 30px;
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
}

.hub-grid article:nth-child(4n) {
  border-right: 0;
}

.hub-grid h3 {
  color: var(--dark);
  font-size: 30px;
}

.hub-grid p {
  color: var(--muted);
  line-height: 1.68;
}

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

.route-list article {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.17);
}

.route-list h3 {
  color: #fff;
  font-size: 34px;
}

.route-list p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.7);
}

.itinerary-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 8%;
}

.itinerary-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.itinerary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: itinerary;
}

.itinerary-list li {
  position: relative;
  padding: 0 0 30px 44px;
  border-left: 1px solid var(--gold);
  counter-increment: itinerary;
}

.itinerary-list li::before {
  position: absolute;
  top: 0;
  left: -7px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.itinerary-list span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.itinerary-list strong {
  display: block;
  margin-top: 6px;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.itinerary-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.vehicle-detail-grid {
  display: grid;
  gap: 0;
}

.vehicle-detail-grid > article {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8%;
  align-items: center;
  min-height: 390px;
  padding-block: 52px;
  border-top: 1px solid var(--line-dark);
}

.vehicle-detail-image {
  height: 270px;
}

.vehicle-detail-image img {
  height: 100%;
  object-fit: contain;
}

.vehicle-detail-grid h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
}

.vehicle-detail-grid article > div:last-child > p:not(.service-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.vehicle-detail-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.vehicle-detail-grid dl div {
  padding-top: 16px;
}

.vehicle-detail-grid dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vehicle-detail-grid dd {
  margin: 5px 0 0;
  color: var(--dark);
  font-weight: 600;
}

.note-panel {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 8%;
  align-items: start;
  padding: 46px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

.note-panel p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.rate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.rate-grid article {
  min-height: 230px;
  padding: 34px;
  background: var(--paper);
}

.rate-grid h3 {
  color: var(--dark);
  font-size: 30px;
}

.rate-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.quote-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inclusion-grid,
.about-values,
.presence-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8%;
}

.inclusion-grid > div,
.about-values article {
  padding-top: 28px;
  border-top: 2px solid var(--gold);
}

.inclusion-grid p,
.about-values p:not(.service-label),
.presence-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.membership-panel {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
}

.membership-panel img {
  width: 100px;
  height: auto;
  flex: none;
}

.membership-panel h3 {
  color: var(--dark);
  font-size: 28px;
}

.membership-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: 9%;
  align-items: start;
}

.faq-layout aside {
  position: sticky;
  top: 112px;
}

.faq-layout aside p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.faq-group {
  margin-bottom: 52px;
}

.faq-group h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 38px;
}

.faq-group details {
  border-top: 1px solid var(--line-dark);
}

.faq-group details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq-group summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-group summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  content: "+";
}

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

.faq-group details p {
  max-width: 780px;
  margin: -4px 0 23px;
  color: var(--muted);
  line-height: 1.75;
}

.quote-section {
  padding-block: 90px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: 8%;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 112px;
}

.quote-aside .line-list {
  margin-top: 28px;
  color: #4f5757;
}

.response-note {
  margin-top: 34px;
  padding: 22px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

.response-note strong {
  color: var(--dark);
}

.response-note p,
.contact-note {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-note {
  margin-top: 26px;
}

.contact-note a,
.footer-email {
  color: var(--gold-hover);
  font-weight: 700;
}

.quote-form {
  padding: 44px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(7,52,58,.09);
}

.quote-form fieldset {
  margin: 0 0 38px;
  padding: 0 0 36px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
}

.quote-form legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #394345;
  font-size: 13px;
  font-weight: 700;
}

.quote-form label > span {
  color: #9f342f;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfc5b8;
  border-radius: 0;
  font: inherit;
  font-weight: 400;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.quote-form small {
  color: var(--muted);
  font-weight: 400;
}

.quote-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-form .consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.quote-form .consent span {
  color: var(--muted);
  font-weight: 500;
}

.quote-form .button {
  margin-top: 10px;
}

.form-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.thank-you-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 90px;
  background: var(--cream);
}

.thank-you-panel {
  max-width: 860px;
  padding: 64px;
  background: var(--paper);
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 70px rgba(7,52,58,.1);
}

.thank-you-panel h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(46px, 6vw, 72px);
}

.thank-you-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.payment-grid-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.payment-grid-images img {
  width: auto;
  max-width: 58px;
  max-height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .86;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
}

.legal-hero {
  padding-block: 72px 62px;
  color: #fff;
  background: var(--dark);
}

.legal-hero .breadcrumb {
  margin-bottom: 38px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
}

.legal-hero > div > p:last-child {
  color: rgba(255,255,255,.62);
}

.legal-page {
  max-width: 900px;
  padding-block: 78px 96px;
}

.legal-page > p:first-child {
  color: #465052;
  font-size: 19px;
  line-height: 1.75;
}

.legal-page h2 {
  margin: 48px 0 12px;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.78;
}

.legal-page a {
  color: var(--dark-soft);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .category-header {
    grid-template-columns: .75fr 1.25fr;
  }

  .category-header > p:last-child {
    grid-column: 1 / -1;
  }

  .solution-grid,
  .process-grid,
  .quote-type-grid,
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-grid article:nth-child(2n),
  .process-grid article:nth-child(2n),
  .quote-type-grid article:nth-child(2n),
  .hub-grid article:nth-child(2n) {
    border-right: 0;
  }

  .hub-grid article:nth-child(4n) {
    border-right: 0;
  }

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

  .quote-layout,
  .faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 6%;
  }
}

@media (max-width: 760px) {
  .inner-hero,
  .inner-hero-content {
    min-height: 560px;
  }

  .inner-hero-image {
    object-position: 72% center;
  }

  .inner-hero-overlay {
    background: linear-gradient(180deg, rgba(4,36,42,.94), rgba(4,36,42,.84) 58%, rgba(4,36,42,.58));
  }

  .inner-hero-content {
    justify-content: flex-end;
    padding-block: 54px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .inner-hero h1 {
    font-size: clamp(41px, 12vw, 54px);
    line-height: 1;
  }

  .inner-hero-lead {
    font-size: 16px;
  }

  .page-intro {
    padding-block: 64px;
  }

  .intro-grid,
  .category-header,
  .service-detail,
  .support-layout,
  .inner-cta-layout,
  .region-grid,
  .itinerary-layout,
  .vehicle-detail-grid > article,
  .note-panel,
  .inclusion-grid,
  .about-values,
  .presence-layout,
  .faq-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .category-header,
  .service-detail-list {
    gap: 34px;
  }

  .service-detail-reverse img {
    order: 0;
  }

  .service-detail img {
    height: 300px;
  }

  .solution-grid,
  .process-grid,
  .rate-grid,
  .quote-type-grid,
  .hub-grid,
  .route-list {
    grid-template-columns: 1fr;
  }

  .solution-grid article,
  .process-grid article,
  .quote-type-grid article,
  .hub-grid article {
    min-height: 0;
    border-right: 0;
  }

  .support-layout,
  .inner-cta-layout {
    gap: 34px;
  }

  .inner-cta-layout .button {
    justify-self: start;
  }

  .region-grid article {
    padding: 32px 26px;
  }

  .route-sequence {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-sequence i {
    width: 1px;
    height: 18px;
    flex: none;
    margin-left: 8px;
  }

  .vehicle-detail-grid > article {
    gap: 24px;
  }

  .vehicle-detail-image {
    height: 210px;
  }

  .vehicle-detail-grid dl,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .note-panel {
    gap: 20px;
    padding: 30px;
  }

  .membership-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-layout aside,
  .quote-aside {
    position: static;
  }

  .faq-layout,
  .quote-layout {
    gap: 48px;
  }

  .quote-form {
    padding: 28px 22px;
  }

  .thank-you-panel {
    padding: 42px 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero-image,
  .inner-hero-content > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Services page typography and layout refinement — V9.2 */
.services-page .inner-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 3.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -.025em;
}

.services-page .inner-hero-lead,
.services-page .intro-grid > div:last-child,
.services-page .category-header > p:last-child,
.services-page .service-detail div > p:not(.service-label),
.services-page .business-solutions-heading > p,
.services-page .coordination-heading > p,
.services-page .support-showcase-heading > p,
.services-page .services-cta p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
}

.services-page .intro-grid h2,
.services-page .category-header h2,
.services-page .business-solutions-heading h2,
.services-page .coordination-heading h2,
.services-page .support-showcase-heading h2,
.services-page .services-cta h2 {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -.018em;
}

.services-page .service-detail-list {
  gap: 88px;
}

.services-page .service-detail {
  gap: 7%;
}

.services-page .service-detail img {
  height: 430px;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(7,52,58,.11);
}

.services-page .service-detail h3 {
  font-size: clamp(32px, 2.9vw, 42px);
  line-height: 1.1;
}

.services-page .business-solutions-heading,
.services-page .coordination-heading,
.services-page .support-showcase-heading {
  margin-bottom: 54px;
}

.services-page .business-story-list {
  gap: 96px;
}

.services-page .business-story {
  grid-template-columns: minmax(0, 1fr) minmax(0, .94fr);
  gap: 7%;
  min-height: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.services-page .business-story-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(0,0,0,.2);
}

.services-page .business-story-media::after {
  background: linear-gradient(145deg, transparent 62%, rgba(5,47,53,.2));
}

.services-page .business-story-copy {
  padding: 12px 0;
}

.services-page .business-story-copy .solution-type {
  margin: 0;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.07;
}

.services-page .business-story-copy .solution-promise {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
}

.services-page .business-story-copy > p:not(.solution-promise) {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.services-page .case-note {
  margin-top: 26px;
  padding: 25px 27px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.services-page .case-note > span {
  margin-bottom: 15px;
}

.services-page .case-note p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.62;
}

.services-page .case-note p + p {
  margin-top: 13px;
}

.services-page .case-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.services-page .support-showcase {
  background: #f3efe7;
}

.services-page .support-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.services-page .support-card {
  min-width: 0;
}

.services-page .support-card > img {
  height: 245px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(7,52,58,.1);
  transition: transform 600ms var(--ease-premium), box-shadow 600ms var(--ease-premium);
}

.services-page .support-card:hover > img {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(7,52,58,.16);
}

.services-page .support-card > div {
  padding: 22px 5px 0;
}

.services-page .support-card h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
}

.services-page .support-card div > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.services-page .coordination-section {
  background: var(--light);
}

.services-page .process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}

.services-page .process-track::before {
  position: absolute;
  top: 27px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, rgba(191,158,96,.18), var(--gold), rgba(191,158,96,.18));
  content: "";
}

.services-page .process-track article {
  position: relative;
  min-width: 0;
  padding-top: 76px;
}

.services-page .process-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--gold);
  background: var(--light);
}

.services-page .process-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.services-page .process-track article > span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.services-page .process-track h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.12;
}

.services-page .process-track p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.services-page .services-cta {
  position: relative;
  overflow: hidden;
  color: var(--dark);
  background:
    radial-gradient(circle at 82% 40%, rgba(191,158,96,.2), transparent 26%),
    var(--paper);
}

.services-page .services-cta::after {
  position: absolute;
  top: -120px;
  right: 7%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(191,158,96,.07);
  content: "";
  pointer-events: none;
}

.services-page .services-cta .inner-cta-layout {
  position: relative;
  z-index: 2;
}

.services-page .services-cta h2 {
  color: var(--dark);
}

.services-page .services-cta p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .services-page .support-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 26px;
  }

  .services-page .process-track {
    grid-template-columns: repeat(6, 215px);
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-color: var(--gold) rgba(7,52,58,.08);
  }

  .services-page .process-track::before {
    right: auto;
    width: 1175px;
  }
}

@media (max-width: 1040px) {
  .services-page .business-story {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-page .business-story-reverse .business-story-media {
    order: 0;
  }

  .services-page .business-story-media {
    min-height: 440px;
  }

  .services-page .business-story-copy {
    padding: 0 4%;
  }
}

@media (max-width: 760px) {
  .services-page .inner-hero h1 {
    font-size: clamp(41px, 12vw, 50px);
  }

  .services-page .service-detail-list,
  .services-page .business-story-list {
    gap: 62px;
  }

  .services-page .service-detail img,
  .services-page .business-story-media {
    height: 310px;
    min-height: 310px;
    border-radius: 18px;
  }

  .services-page .business-story-copy {
    padding-inline: 0;
  }

  .services-page .business-story-copy .solution-type {
    font-size: 34px;
  }

  .services-page .business-story-copy .solution-promise {
    font-size: 20px;
  }

  .services-page .support-card-row {
    grid-template-columns: 1fr;
  }

  .services-page .support-card > img {
    height: 290px;
  }
}

/* Services page scanning, flow and search-intent refinement — V9.3 */
.services-page .services-intro {
  padding-bottom: 92px;
}

.services-page .service-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 46px;
  padding: 24px 30px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(105deg, #07343a, #0a444a);
  box-shadow: 0 16px 42px rgba(7,52,58,.14);
}

.services-page .service-path a {
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
}

.services-page .service-path a span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.services-page .service-path i {
  color: rgba(191,158,96,.7);
  font-style: normal;
}

.services-page #car-services {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding-top: 105px;
  border-radius: 52px 52px 0 0;
}

.services-page .services-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 10%;
  align-items: end;
  margin-bottom: 46px;
}

.services-page .services-section-head h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.018em;
}

.services-page .services-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-page .car-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.services-page .car-service-card {
  overflow: hidden;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7,52,58,.085);
  transition: transform 600ms var(--ease-premium), box-shadow 600ms var(--ease-premium);
}

.services-page .car-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(7,52,58,.13);
}

.services-page .car-service-card-featured {
  transform: translateY(-12px);
  background: #f7f2e7;
}

.services-page .car-service-card-featured:hover {
  transform: translateY(-17px);
}

.services-page .car-service-card > img {
  height: 205px;
  object-fit: cover;
}

.services-page .car-service-card > div {
  padding: 27px 28px 30px;
}

.services-page .car-service-card h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
}

.services-page .car-service-card div > p:not(.service-label):not(.availability-note) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.services-page .service-keywords {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: #34484a;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.services-page .service-keywords li {
  position: relative;
  padding-left: 19px;
}

.services-page .service-keywords li::before {
  position: absolute;
  top: .67em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.services-page .availability-note {
  margin: 18px 0 0;
  color: #77716a;
  font-size: 12px;
  line-height: 1.55;
}

.services-page .business-solutions,
.services-page .support-showcase,
.services-page .coordination-section,
.services-page .services-cta {
  position: relative;
  z-index: 3;
  margin-top: -28px;
  border-radius: 52px 52px 0 0;
}

.services-page .business-solutions {
  padding-top: 112px;
}

.services-page .business-story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 48px rgba(0,0,0,.13);
}

.services-page .business-story-reverse .business-story-media {
  order: initial;
}

.services-page .business-story-media {
  width: 100%;
  height: 190px;
  min-height: 190px;
  border-radius: 0;
  box-shadow: none;
}

.services-page .business-story-media img {
  object-position: center 42%;
}

.services-page .business-story-copy {
  padding: 30px 31px 33px;
}

.services-page .business-story-copy .solution-type {
  font-size: clamp(29px, 2.4vw, 36px);
  line-height: 1.08;
}

.services-page .business-story-copy .solution-promise {
  margin-top: 13px;
  font-size: 18px;
  line-height: 1.32;
}

.services-page .business-story-copy > p:not(.solution-promise) {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.62;
}

.services-page .case-note {
  margin-top: 21px;
  padding: 21px 22px;
  border-radius: 15px;
}

.services-page .case-note p {
  font-size: 14px;
  line-height: 1.55;
}

.services-page .support-showcase {
  z-index: 4;
  padding-top: 108px;
}

.services-page .support-card-row {
  gap: 22px;
}

.services-page .support-card > img {
  height: 185px;
  border-radius: 17px;
}

.services-page .support-card > div {
  padding: 20px 3px 0;
}

.services-page .coordination-section {
  z-index: 5;
  padding-top: 108px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(191,158,96,.13), transparent 25%),
    linear-gradient(145deg, #052f35, #07343a 58%, #062d32);
}

.services-page .coordination-heading h2,
.services-page .coordination-heading > p {
  color: #fff;
}

.services-page .coordination-heading > p {
  color: rgba(255,255,255,.75);
}

.services-page .process-track::before {
  background: linear-gradient(90deg, rgba(191,158,96,.15), var(--gold), rgba(191,158,96,.15));
}

.services-page .process-icon {
  background: #07343a;
}

.services-page .process-track h3 {
  color: #fff;
}

.services-page .process-track p {
  color: rgba(255,255,255,.7);
}

.services-page .services-cta {
  z-index: 6;
  padding-top: 104px;
}

@media (max-width: 1040px) {
  .services-page .service-path {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    overflow-x: auto;
  }

  .services-page .service-path i {
    display: none;
  }

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

  .services-page .car-service-card-featured {
    transform: none;
  }

  .services-page .car-service-card-featured:hover {
    transform: translateY(-5px);
  }

  .services-page .business-story-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-page .services-intro {
    padding-bottom: 76px;
  }

  .services-page .service-path {
    grid-template-columns: repeat(4, 178px);
    padding: 21px 23px;
  }

  .services-page .services-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .services-page .car-service-card > img,
  .services-page .support-card > img {
    height: 205px;
  }

  .services-page .business-story-media {
    height: 175px;
    min-height: 175px;
    border-radius: 0;
  }

  .services-page .business-story-copy {
    padding: 27px 24px 29px;
  }

  .services-page .business-solutions,
  .services-page .support-showcase,
  .services-page .coordination-section,
  .services-page .services-cta,
  .services-page #car-services {
    border-radius: 30px 30px 0 0;
  }
}

/* V9.4 final cascade: intentionally square, quietly connected */
.services-page #car-services,
.services-page .business-solutions,
.services-page .support-showcase,
.services-page .coordination-section,
.services-page .services-cta {
  margin-top: 0;
  border-radius: 0;
}

.services-page #car-services {
  padding-top: 88px;
}

.services-page .business-solutions,
.services-page .support-showcase,
.services-page .coordination-section,
.services-page .services-cta {
  padding-top: 96px;
}

.services-page .business-solutions {
  background:
    linear-gradient(180deg, rgba(191,158,96,.07), transparent 90px),
    linear-gradient(150deg, #052f35, #07343a 58%, #062c31);
}

.services-page .support-showcase {
  background: linear-gradient(180deg, #ebe4d8 0, #f3efe7 100px, #f3efe7 100%);
}

.services-page .coordination-section {
  background:
    linear-gradient(180deg, rgba(191,158,96,.075), transparent 100px),
    linear-gradient(145deg, #052f35, #07343a 58%, #062d32);
}

.services-page section,
.services-page article,
.services-page img,
.services-page .case-note,
.services-page .car-service-card,
.services-page .business-story,
.services-page .support-card > img,
.services-page .services-cta::after {
  border-radius: 0;
}

.services-page .services-section-head,
.services-page .business-solutions-heading,
.services-page .support-showcase-heading {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7%;
}

.services-page .services-section-head > p,
.services-page .business-solutions-heading > p,
.services-page .support-showcase-heading > p {
  width: 100%;
  max-width: 520px;
  justify-self: start;
}

.services-page .car-service-card,
.services-page .car-service-card-featured,
.services-page .car-service-card:hover,
.services-page .car-service-card-featured:hover {
  transform: none;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  align-self: start;
  border-radius: 0;
}

.services-page .coordination-heading {
  display: block;
  margin-bottom: 54px;
}

.services-page .coordination-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.services-page .services-cta::after {
  display: none;
}

.services-page .services-cta .inner-cta-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 5%;
}

.services-page .services-cta .button {
  justify-self: center;
}

@media (max-width: 760px) {
  .services-page #car-services,
  .services-page .business-solutions,
  .services-page .support-showcase,
  .services-page .coordination-section,
  .services-page .services-cta {
    border-radius: 0;
  }

  .services-page .services-section-head,
  .services-page .business-solutions-heading,
  .services-page .support-showcase-heading,
  .services-page .services-cta .inner-cta-layout {
    grid-template-columns: 1fr;
  }

  .services-page .coordination-heading h2 {
    font-size: 38px;
    white-space: normal;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .services-page .coordination-heading h2 {
    font-size: 42px;
  }
}

/* V9.5 final cascade: fewer colour blocks, stronger visual continuity */
.services-page .services-intro,
.services-page #car-services {
  background: #f7f3ec;
}

.services-page .services-intro {
  padding-bottom: 58px;
}

.services-page #car-services {
  padding-top: 58px;
  padding-bottom: 104px;
}

.services-page .services-intro::after,
.services-page #car-services::before,
.services-page .support-showcase::before,
.services-page .services-cta::before {
  display: none;
}

.services-page .services-jump {
  border-top: 1px solid rgba(7, 52, 58, .1);
  border-bottom: 1px solid rgba(7, 52, 58, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.services-page .car-service-grid {
  gap: 0;
}

.services-page .car-service-card,
.services-page .car-service-card-featured,
.services-page .car-service-card:hover,
.services-page .car-service-card-featured:hover {
  overflow: visible;
  padding: 0 28px;
  border-left: 1px solid rgba(7, 52, 58, .11);
  background: transparent;
  box-shadow: none;
}

.services-page .car-service-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.services-page .car-service-card:last-child {
  padding-right: 0;
}

.services-page .car-service-card > img {
  height: 178px;
  transition: filter 550ms var(--ease-premium), transform 750ms var(--ease-premium);
}

.services-page .car-service-card:hover > img {
  filter: saturate(1.03) contrast(1.015);
  transform: scale(1.012);
}

.services-page .car-service-card > div {
  padding: 25px 0 0;
}

.services-page .car-service-card h3 {
  font-size: clamp(27px, 2.1vw, 32px);
}

.services-page .availability-note {
  padding-top: 15px;
  border-top: 1px solid rgba(7, 52, 58, .1);
}

.services-page .business-solutions {
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, rgba(191, 158, 96, .065), transparent 120px),
    #06343a;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  background: rgba(255, 255, 255, .035);
  box-shadow: none;
}

.services-page .business-story-media {
  height: 168px;
  min-height: 168px;
}

.services-page .business-story-copy {
  padding: 27px 29px 31px;
}

.services-page .case-note {
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: transparent;
  box-shadow: none;
}

.services-page .support-showcase {
  padding-bottom: 106px;
  background: #f1ece4;
}

.services-page .support-card-row {
  gap: 0;
}

.services-page .support-card {
  padding: 0 22px;
  border-left: 1px solid rgba(7, 52, 58, .1);
  background: transparent;
  box-shadow: none;
}

.services-page .support-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.services-page .support-card:last-child {
  padding-right: 0;
}

.services-page .support-card > img {
  height: 164px;
  transition: filter 550ms var(--ease-premium), transform 750ms var(--ease-premium);
}

.services-page .support-card:hover > img {
  filter: saturate(1.03) contrast(1.015);
  transform: scale(1.012);
}

.services-page .support-card > div {
  padding-top: 20px;
}

.services-page .coordination-section {
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, rgba(191, 158, 96, .065), transparent 120px),
    #06343a;
}

.services-page .services-cta {
  background: #f7f3ec;
}

@media (max-width: 1040px) {
  .services-page .car-service-grid {
    gap: 44px 0;
  }

  .services-page .car-service-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .services-page .car-service-card:nth-child(even) {
    padding-right: 0;
  }

  .services-page .support-card-row {
    gap: 42px 0;
  }

  .services-page .support-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .services-page .support-card:nth-child(even) {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .services-page .services-intro {
    padding-bottom: 42px;
  }

  .services-page #car-services {
    padding-top: 42px;
  }

  .services-page .car-service-grid,
  .services-page .support-card-row {
    gap: 0;
  }

  .services-page .car-service-card,
  .services-page .car-service-card:first-child,
  .services-page .car-service-card:last-child,
  .services-page .support-card,
  .services-page .support-card:first-child,
  .services-page .support-card:last-child {
    padding: 34px 0 38px;
    border-top: 1px solid rgba(7, 52, 58, .11);
    border-left: 0;
  }

  .services-page .car-service-card:first-child,
  .services-page .support-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .services-page .car-service-card > img,
  .services-page .support-card > img {
    height: 190px;
  }

  .services-page .business-story-media {
    height: 160px;
    min-height: 160px;
  }
}

/* V9.6 final cascade */
.services-page #car-services,
.services-page .business-solutions,
.services-page .support-showcase {
  background: #f7f3ec;
}

.services-page #car-services {
  padding-bottom: 112px;
}

.services-page .business-solutions {
  padding-top: 106px;
  border-top: 1px solid rgba(7, 52, 58, .1);
  color: var(--dark);
}

.services-page .business-solutions-heading h2,
.services-page .business-story-copy .solution-type {
  color: var(--dark);
}

.services-page .business-solutions-heading > p,
.services-page .business-story-copy > p:not(.solution-promise) {
  color: var(--muted);
}

.services-page .business-story-copy .solution-promise {
  color: #315054;
}

.services-page .business-story,
.services-page .business-story.business-story-reverse {
  border-top: 1px solid rgba(7, 52, 58, .11);
  background: transparent;
}

.services-page .case-note {
  border-top-color: rgba(7, 52, 58, .13);
}

.services-page details.case-note summary,
.services-page .case-note p {
  color: #34484a;
}

.services-page .support-showcase {
  padding-top: 104px;
  border-top: 1px solid rgba(7, 52, 58, .1);
}

.services-page .business-solutions::after,
.services-page .support-showcase::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(112px, 16vw);
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.motion-ready.services-page .car-service-card > img,
.motion-ready.services-page .business-story-media img,
.motion-ready.services-page .support-card > img {
  filter: saturate(.9) contrast(.98);
  transform: scale(1.035);
  transition: transform 1.15s var(--ease-premium), filter .9s var(--ease-premium);
  will-change: transform, filter;
}

.motion-ready.services-page .car-service-card.in-view > img,
.motion-ready.services-page .business-story.in-view .business-story-media img,
.motion-ready.services-page .support-card.in-view > img {
  filter: saturate(1) contrast(1);
  transform: scale(1);
}

@media (max-width: 760px) {
  .services-page #car-services {
    padding-bottom: 82px;
  }

  .services-page .business-solutions,
  .services-page .support-showcase {
    padding-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready.services-page .car-service-card > img,
  .motion-ready.services-page .business-story-media img,
  .motion-ready.services-page .support-card > img {
    filter: none;
    transform: none;
    transition: none;
  }
}
