/* ROOT */
:root {
  --ink: #302d27;
  --ink-soft: #49453e;
  --muted: #706a62;
  --paper: #d4caa6;
  --paper-light: #d2c9aa;
  --paper-soft: #beb38f;
  --orange: #c66041;
  --cream: #eee8d7;
  --line: rgba(48, 45, 39, 0.16);
  --line-light: rgba(238, 232, 215, 0.16);
  --header-height: 82px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
/* RESET */
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
img,
svg {
  max-width: 100%;
}
/* SHARED */
.brand-ml {
  color: var(--orange) !important;
}
.brand-name {
  white-space: nowrap;
}
.content-container {
  width: min(calc(100% - 64px), 1540px);
  margin-inline: auto;
}
#top,
#services,
#transit-times,
#about,
#partners,
#contact {
  scroll-margin-top: calc(var(--header-height) + 22px);
}
/* SKIP LINK */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}
/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease,
    -webkit-backdrop-filter 300ms ease;
}
/* Accepted glass colour */
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(248, 238, 203, 0.42);
  border-bottom: 1px solid rgba(134, 0, 0, 0.48);
  box-shadow:
    0 8px 32px rgba(35, 35, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(26px) saturate(115%) brightness(1.06) grayscale(28%);
  -webkit-backdrop-filter: blur(26px) saturate(115%) brightness(1.06)
    grayscale(28%);
}
.site-header__inner {
  width: min(calc(100% - 64px), 1800px);
  margin-inline: auto;
}
/* WORDMARK */
.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink) !important;
  font-size: clamp(1.22rem, 1.42vw, 1.58rem) !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
  text-decoration: none;
  transition:
    opacity 200ms ease,
    transform 220ms var(--ease);
}
.wordmark .brand-ml {
  margin-right: 0.35em;
}
.wordmark:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}
/* DESKTOP NAV */
#mainNavigation .navbar-nav {
  gap: clamp(1.25rem, 1.7vw, 2.25rem);
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding: 12px 0 !important;
  color: var(--ink) !important;
  font-size: clamp(1.04rem, 1.1vw, 1.18rem) !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.018em;
  opacity: 0.8;
  transition: opacity 180ms ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  opacity: 1;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}
/* LETTER EFFECT */
.nav-char {
  display: inline-block;
  transform: translateY(0);
}
.nav-char--space {
  width: 0.28em;
}
.nav-link:hover .nav-char,
.nav-link:focus-visible .nav-char {
  color: var(--orange);
  animation: nav-letter-rise 350ms var(--ease) both;
  animation-delay: calc(var(--char-index) * 15ms);
}
.nav-link.active .nav-char {
  color: var(--orange);
}
@keyframes nav-letter-rise {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-4px);
  }
  72% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/* HAMBURGER */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 !important;
  border-radius: 50%;
  background: transparent !important;
  touch-action: manipulation;
  transition:
    background 150ms ease,
    transform 150ms var(--ease);
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}
.menu-toggle:active {
  transform: scale(0.94);
}
.menu-toggle__lines {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}
.menu-line {
  position: absolute;
  left: 0;
  width: 24px;
  height: 1.6px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition:
    top 190ms var(--ease),
    transform 190ms var(--ease),
    opacity 100ms ease;
}
.menu-line--top {
  top: 1px;
}
.menu-line--middle {
  top: 8px;
}
.menu-line--bottom {
  top: 15px;
}
.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.13) !important;
}
.menu-toggle[aria-expanded="true"] .menu-line--top {
  top: 8px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-line--middle {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .menu-line--bottom {
  top: 8px;
  transform: rotate(-45deg);
}
/* HERO */
.hero-shell {
  min-height: calc(100svh - var(--header-height));
  background: var(--paper);
}
.hero-content {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(24px, 3vh, 42px) 0 78px;
}
.hero-frame {
  width: min(calc(100% - 64px), 1800px);
  margin-inline: auto;
}
.hero-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-copy {
  width: min(100%, 640px);
}
.eyebrow {
  margin-left: 1%;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(2.85rem, 4.25vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.032em;
  font-weight: 400;
}
h1 span {
  display: block;
}
.headline-orange {
  margin-top: 0.14em;
  font-size: 3rem;
  color: var(--orange);
}
.headline-ml {
  color: var(--orange);
}
.headline-courier {
  color: var(--ink);
}
.hero-tagline {
  /* margin:
    clamp(
      16px,
      2vh,
      22px
    )
    0
    0; */
  margin-top: 0.4rem;
  padding-left: 0.3rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.hero-copy__body {
  width: min(100%, 390px);
  margin: 8px 0 21px;
  margin-left: 1%;
  color: var(--muted);
  font-size: clamp(0.91rem, 1vw, 1rem);
  line-height: 1.6;
}
@media (min-width: 992px) {
  .hero-copy__body {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}
/* LET'S CONNECT */
.shipping-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 192px;
  height: 52px;
  padding: 6px 7px 6px 22px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #f3eee2;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 6px 18px rgba(48, 45, 39, 0.08);
  transition:
    transform 180ms var(--ease),
    box-shadow 220ms ease;
}
.shipping-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #4b473f;
  transform: translateX(-102%);
  transition: transform 280ms var(--ease);
}
.shipping-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(48, 45, 39, 0.15);
}
.shipping-cta:hover::before {
  transform: translateX(0);
}
.shipping-cta:active {
  transform: scale(0.965);
}
.shipping-cta__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 220ms var(--ease),
    background 180ms ease;
}
.shipping-cta:hover .shipping-cta__icon {
  transform: rotate(35deg);
  background: var(--orange);
}
.cta-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: cta-ripple-animation 500ms ease-out forwards;
}
@keyframes cta-ripple-animation {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(20);
  }
}
/* SCROLL DISCOVER */
.scroll-discover {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.scroll-discover i {
  color: var(--ink);
  font-size: 1.05rem;
  animation: discover-bounce 1.55s ease-in-out infinite;
}
@keyframes discover-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
/* GLOBE + AUTOMATIC LOAD INDICATOR */
.hero-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistics-animation {
  position: relative;
  width: min(100%, 720px, 72vh);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
/*
  Loader only exists while Lottie has not yet inserted
  an SVG into the container.
*/
.logistics-animation:not(:has(svg))::before {
  content: "";
  width: 52px;
  height: 52px;
  border: 1px solid rgba(48, 45, 39, 0.14);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: globe-loader 800ms linear infinite;
}
.logistics-animation:not(:has(svg))::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes globe-loader {
  to {
    transform: rotate(360deg);
  }
}
.logistics-animation svg {
  grid-area: 1 / 1;
  display: block;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
  animation: globe-arrive 280ms ease both;
}
@keyframes globe-arrive {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* SHARED SECTIONS */
.content-section {
  padding: clamp(38px, 4vw, 64px) 0;
}
.section-kicker {
  margin: 0 0 0 0.6rem;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.88vw, 0.92rem);
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-kicker--light {
  color: rgba(238, 232, 215, 0.54);
}
.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 2.8vw, 38px);
}
.section-heading h2,
.transit-heading h2,
.about-title,
.partners-heading h2,
.footer-heading h2 {
  margin: 9px 0 0;
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 400;
}
.section-heading > p:last-child {
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
/* SERVICES */
.services-section {
  background: var(--paper-light);
}
.service-card {
  height: 100%;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 1.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    background 250ms ease,
    box-shadow 300ms ease;
}
.service-card:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(48, 45, 39, 0.07);
}
.service-card__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-number {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.service-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 250ms var(--ease),
    background 250ms ease,
    color 250ms ease;
}
.service-card:hover .service-arrow {
  background: var(--ink);
  color: white;
  transform: rotate(-45deg);
}
.service-card h3 {
  margin: auto 0 10px;
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  letter-spacing: -0.045em;
  font-weight: 400;
}
.service-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.92rem;
}
.service-card__link {
  margin-top: 16px;
  color: var(--orange);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* TRANSIT TIMES */
.transit-section {
  background: var(--paper);
}
.transit-inner {
  width: min(85vw, 1500px);
  max-width: 100%;
  margin-inline: auto;
}
.transit-heading {
  margin-bottom: clamp(25px, 2.8vw, 38px);
}
.transit-intro {
  max-width: 630px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.55;
}
.table-shell {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.table-scroll {
  overflow-x: auto;
}
.delivery-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
}
.delivery-table th,
.delivery-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.delivery-table thead th {
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--ink);
  color: var(--cream);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  font-weight: 400;
}
.delivery-table thead th:first-child {
  width: 43%;
}
.delivery-table th span,
.delivery-table th small {
  display: block;
}
.delivery-table th small {
  margin-top: 5px;
  color: rgba(238, 232, 215, 0.53);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.delivery-table td:first-child {
  font-weight: 500;
}
.delivery-table td small {
  display: block;
  max-width: 600px;
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(0.74rem, 0.78vw, 0.82rem);
  line-height: 1.35;
}
.delivery-table tbody tr:last-child td {
  border-bottom: 0;
}
.delivery-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.11);
}
.na {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(48, 45, 39, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
}
.table-note {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}
/* TABLE HIGHLIGHT */
.table-shell.highlight-surface [data-mode="surface"],
.table-shell.highlight-air [data-mode="air"],
.table-shell.highlight-ace [data-mode="ace"] {
  background: rgba(198, 96, 65, 0.13);
}
.table-shell.highlight-all {
  box-shadow: 0 0 0 4px rgba(198, 96, 65, 0.13);
}
/* ABOUT */
.about-section {
  background: #d2c9aa;
}
.about-title {
  max-width: 530px;
}
.about-copy {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
  line-height: 1.52;
}
.about-copy p {
  margin: 0 0 14px;
}
/* CENTERED SENTENCES */
.about-details {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.about-details > div {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.about-details span,
.about-details strong {
  display: block;
}
.about-details span {
  color: var(--ink);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.about-details strong {
  margin-left: 0;
  font-weight: 600;
  text-align: right;
}
.about-details > div:nth-child(2) span::after,
.about-details > div:nth-child(3) span::after {
  content: none;
}
/* PARTNERS */
.partners-section {
  overflow: hidden;
  padding: clamp(42px, 4.5vw, 68px) 0;
  background: var(--ink);
  color: var(--cream);
}
.partners-heading {
  margin-bottom: clamp(22px, 2.5vw, 32px);
}
.partners-heading h2 {
  max-width: 780px;
}
.partner-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 25s linear infinite;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
.partner-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(50px, 6vw, 110px);
  padding: 24px 56px 24px 0;
}
.partner-name {
  flex-shrink: 0;
  color: var(--cream);
  font-size: clamp(1.6rem, 3.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.partner-blue {
  color: #d8e9ff;
}
.partner-maruti {
  color: #e7dfe4;
}
.partner-everyday {
  color: #f1c99d;
}
@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* FOOTER */
.site-footer {
  padding: clamp(58px, 5.6vw, 90px) 0 0;
  background: #25231f;
  color: var(--cream);
}
.contact-inner {
  width: min(88vw, 1380px);
  margin-inline: auto;
}
.footer-heading {
  width: 100%;
  margin: 0 0 34px;
}
.footer-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3rem, 4.8vw, 5rem);
}
.contact-row {
  width: 100%;
  margin-inline: 0;
}
/* CONTACT CARD */
.contact-panel {
  height: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
}
.contact-label {
  margin: 0 0 16px;
  color: rgba(238, 232, 215, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-brand {
  margin: 20px 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}
.contact-panel address {
  margin: 0 0 24px;
  color: rgba(238, 232, 215, 0.64);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}
/* CONTACT ITEMS */
.contact-links {
  width: 100%;
  border-top: 1px solid var(--line-light);
}
.contact-links a {
  width: 100%;
  display: grid;
  grid-template-columns:
    42px
    minmax(0, 1fr)
    28px;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--cream);
  text-decoration: none;
  text-align: left;
  transition: opacity 160ms ease;
}
.contact-links a:hover {
  opacity: 0.82;
}
.contact-link__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(210, 201, 170, 0.16);
  border-radius: 50%;
  background: rgba(210, 201, 170, 0.06);
  color: #d2c9aa;
  font-size: 1rem;
  transition:
    transform 170ms var(--ease),
    background 170ms ease,
    border-color 170ms ease;
}
.contact-link__icon i {
  color: #d2c9aa;
}
.contact-links a strong {
  min-width: 0;
  margin: 0;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  overflow-wrap: anywhere;
}
.contact-link__arrow {
  width: 28px;
  display: grid;
  place-items: center;
  color: #d2c9aa;
  font-size: 1rem;
  transition: transform 170ms var(--ease);
}
.contact-links a:hover .contact-link__icon {
  transform: scale(1.04);
  background: rgba(210, 201, 170, 0.11);
  border-color: rgba(210, 201, 170, 0.3);
}
.contact-links a:hover .contact-link__arrow {
  transform: translate(2px, -2px);
}
/* MAP */
.map-shell {
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: #39362f;
}
.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
/* LEGAL FOOTER */
.footer-legal {
  display: grid;
  grid-template-columns:
    auto
    1fr
    auto;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
  padding: 22px 0 27px;
  border-top: 1px solid var(--line-light);
  color: rgba(238, 232, 215, 0.68);
  font-size: clamp(0.78rem, 0.8vw, 0.9rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 24px;
}
.footer-policy-links button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(238, 232, 215, 0.7);
  font-size: inherit;
  line-height: 1.45;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms var(--ease);
}
.footer-policy-links button:hover {
  color: var(--orange);
  transform: translateY(-1px);
}
.back-top {
  color: rgba(238, 232, 215, 0.7);
  font-size: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.back-top:hover {
  color: var(--orange);
}
/* CONNECT MODAL */
.connect-modal {
  --bs-modal-width: 500px;
}
.connect-modal .modal-content {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(218, 208, 177, 0.88);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  box-shadow: 0 30px 90px rgba(31, 29, 25, 0.25);
}
.connect-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(48, 45, 39, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    background 180ms ease;
}
.connect-close:hover {
  background: var(--ink);
  color: white;
  transform: rotate(90deg);
}
.connect-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.connect-modal__heading h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 400;
}
.connect-modal__heading > p:last-child {
  max-width: 380px;
  margin: 13px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.connect-options {
  display: grid;
  gap: 8px;
}
.connect-option {
  display: grid;
  grid-template-columns:
    auto
    1fr
    auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 8px 10px;
  border: 1px solid rgba(48, 45, 39, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    background 200ms ease,
    box-shadow 220ms ease;
}
.connect-option:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(48, 45, 39, 0.07);
}
.connect-option__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.08rem;
  transition:
    transform 180ms var(--ease),
    background 180ms ease;
}
.connect-option:hover .connect-option__icon {
  background: var(--orange);
  transform: scale(1.04);
}
.connect-option__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.connect-option__content strong {
  font-size: 0.92rem;
  font-weight: 500;
}
.connect-option__content small {
  color: var(--muted);
  font-size: 0.72rem;
}
.connect-option__arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition:
    transform 180ms var(--ease),
    color 180ms ease;
}
.connect-option:hover .connect-option__arrow {
  color: var(--orange);
  transform: translate(2px, -2px);
}
.modal-backdrop.show {
  opacity: 0.42;
}
/* LEGAL MODALS */
.legal-modal {
  --bs-modal-width: 680px;
}
.legal-modal .modal-content {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}
.legal-modal .modal-header {
  align-items: flex-start;
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-modal .modal-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
  font-weight: 400;
}
.legal-modal .modal-body {
  padding: 24px 28px 28px;
  color: var(--muted);
  line-height: 1.6;
}
.legal-modal .modal-body p:last-child {
  margin-bottom: 0;
}
/* TABLET + MOBILE NAV */
@media (max-width: 991.98px) {
  :root {
    --header-height: 76px;
  }
  .site-header {
    min-height: 76px;
    padding-top: max(7px, env(safe-area-inset-top));
    padding-bottom: 7px;
  }
  .site-header__inner {
    position: relative;
    width: calc(100% - 36px);
  }
  .site-header .navbar {
    min-height: 58px;
    align-items: center;
  }
  /* MOBILE MENU */
  #mainNavigation {
    position: absolute;
    top: 100%;
    left: -18px;
    right: -18px;
    z-index: 6000;
    margin: 0;
    padding: 14px 22px 18px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(134, 0, 0, 0.16);
    background: rgba(248, 238, 203, 0.42);
    box-shadow: 0 16px 30px rgba(35, 35, 35, 0.055);
    backdrop-filter: blur(18px) saturate(115%) brightness(1.06) grayscale(28%);
    -webkit-backdrop-filter: blur(18px) saturate(115%) brightness(1.06)
      grayscale(28%);
  }
  #mainNavigation.collapsing {
    transition: height 190ms var(--ease);
  }
  #mainNavigation .navbar-nav {
    width: 100%;
    padding: 0;
    gap: 0;
  }
  #mainNavigation .nav-link {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 2px !important;
    border-bottom: 1px solid rgba(48, 45, 39, 0.075);
    color: var(--ink) !important;
    font-size: 1rem !important;
    line-height: 1.2;
    opacity: 0.84;
  }
  #mainNavigation .nav-link:last-child {
    border-bottom: 0;
  }
  #mainNavigation .nav-link:hover,
  #mainNavigation .nav-link.active {
    opacity: 1;
  }
  #mainNavigation .nav-link::after {
    left: 2px;
    right: auto;
    bottom: 6px;
    width: 30px;
  }
  /* TRANSIT CARDS */
  .transit-inner {
    width: 100%;
    max-width: 100%;
  }
  .table-shell {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .table-scroll {
    width: 100%;
    overflow: visible;
  }
  .delivery-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: separate;
  }
  .delivery-table thead {
    display: none;
  }
  .delivery-table tbody {
    display: grid;
    width: 100%;
    gap: 12px;
  }
  .delivery-table tbody tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(48, 45, 39, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
  }
  .delivery-table tbody td:first-child {
    grid-column: 1 / -1;
    width: 100%;
    padding: 15px 16px 13px;
    border: 0;
    border-bottom: 1px solid rgba(48, 45, 39, 0.12);
    background: rgba(48, 45, 39, 0.032);
    color: var(--ink);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
  }
  .delivery-table tbody td:first-child small {
    text-align: center;
  }
  .delivery-table tbody td[data-mode] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 77px;
    padding: 11px 6px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 0.96rem;
    font-weight: 500;
  }
  .delivery-table tbody td:nth-child(3),
  .delivery-table tbody td:nth-child(4) {
    border-left: 1px solid rgba(48, 45, 39, 0.11);
  }
  .delivery-table tbody td[data-mode]::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }
  .delivery-table tbody tr:hover td {
    background: transparent;
  }
  .delivery-table tbody tr:hover td:first-child {
    background: rgba(48, 45, 39, 0.032);
  }
  .table-note {
    justify-content: center;
    margin-top: 13px;
    padding: 0 2px;
    border: 0;
    text-align: center;
  }
  /* FOOTER */
  .contact-inner {
    width: min(92vw, 760px);
  }
  .contact-panel,
  .map-shell,
  .map-shell iframe {
    min-height: 350px;
  }
  .footer-legal {
    grid-template-columns:
      1fr
      auto;
    font-size: 0.8rem;
  }
  .footer-policy-links {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: center;
  }
  .about-details {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* PHONE */
@media (max-width: 767.98px) {
  .about-details {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-details > div {
    display: block;
    padding: 15px 10px;
    text-align: center;
  }
  .about-details span,
  .about-details strong {
    display: inline;
    text-align: center;
  }
  .about-details strong {
    margin-left: 0.28em;
  }
  .about-details > div:nth-child(2) span::after,
  .about-details > div:nth-child(3) span::after {
    content: " —";
  }
  .content-container,
  .hero-frame {
    width: calc(100% - 30px);
  }
  .content-section {
    padding: 40px 0;
  }
  /* CENTER SECTION HEADINGS */
  .section-heading,
  .transit-heading,
  .partners-heading,
  .footer-heading {
    text-align: center;
  }
  .section-kicker {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .section-heading > p:last-child,
  .transit-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  /* HERO */
  .hero-content {
    min-height: calc(100svh - var(--header-height));
    height: auto;
    display: flex;
    align-items: center;
    padding: 20px 0 24px;
    overflow: visible;
    text-align: center;
  }
  .hero-frame {
    height: auto;
    margin: 0 auto;
  }
  .hero-frame > .row {
    --bs-gutter-y: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }
  .hero-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .hero-column:first-child {
    flex: 0 0 auto;
  }
  .hero-copy {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }
  .eyebrow {
    width: 100%;
    text-align: center;
  }
  .hero-copy h1 {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .hero-tagline {
    margin: 16px auto 0;
    text-align: center;
  }
  .hero-copy__body {
    width: min(100%, 390px);
    max-width: 390px;
    margin: 8px auto 17px;
    text-align: center;
    white-space: normal;
  }
  .shipping-cta {
    margin: 0 auto;
  }
  /* No scroll indicator on phones */
  .scroll-discover {
    display: none;
  }
  /* Larger phone globe */
  .hero-column:last-child {
    flex: 0 0 auto;
    margin: 18px 0 0;
    overflow: visible;
  }
  .hero-visual {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .logistics-animation {
    width: min(82vw, 38svh, 310px);
    max-width: 310px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  /* SERVICES */
  .service-card {
    align-items: center;
    text-align: center;
  }
  .service-card p {
    margin-left: auto;
    margin-right: auto;
  }
  /* ABOUT */
  .about-section {
    text-align: center;
  }
  .about-title,
  .about-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  /* PARTNERS */
  .partners-heading h2 {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  /* FOOTER */
  .footer-heading h2 {
    white-space: normal;
    text-align: center;
  }
  .contact-inner {
    width: 100%;
  }
  .contact-panel {
    align-items: center;
    text-align: center;
  }
  .contact-panel address {
    text-align: center;
  }
  .contact-links {
    width: min(100%, 340px);
    margin-inline: auto;
  }
  .contact-links a {
    grid-template-columns:
      42px
      minmax(0, 1fr)
      28px;
    text-align: left;
  }
  .contact-links a strong {
    text-align: left;
  }
  .map-shell,
  .map-shell iframe {
    min-height: 330px;
  }
  /* LEGAL */
  .footer-legal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    font-size: 0.82rem;
  }
  .footer-copyright {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .footer-policy-links {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
    text-align: center;
  }
  .back-top {
    width: 100%;
    text-align: center;
  }
}
/* CONNECT MODAL — PHONE */
@media (max-width: 575.98px) {
  .connect-modal .modal-dialog {
    width: min(calc(100vw - 32px), 370px);
    max-width: 370px;
    margin: 18px auto;
  }
  .connect-modal .modal-content {
    width: 100%;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }
  .connect-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .connect-kicker {
    margin-bottom: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }
  .connect-modal__heading h2 {
    max-width: 285px;
    padding-right: 24px;
    font-size: clamp(1.7rem, 7.2vw, 2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
  .connect-modal__heading > p:last-child {
    max-width: 290px;
    margin: 14px 0 20px;
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .connect-options {
    gap: 8px;
  }
  .connect-option {
    min-height: 60px;
    grid-template-columns:
      42px
      minmax(0, 1fr)
      28px;
    gap: 11px;
    padding: 8px 10px;
    border-radius: 15px;
  }
  .connect-option__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .connect-option__content {
    min-width: 0;
    gap: 2px;
  }
  .connect-option__content strong {
    font-size: 0.94rem;
    line-height: 1.2;
  }
  .connect-option__content small {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
  }
  .connect-option__arrow {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }
}
/* SMALL PHONES */
@media (max-width: 480px) {
  .site-header__inner {
    width: calc(100% - 34px);
  }
  .wordmark {
    font-size: 1.25rem !important;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 1;
  }
  .hero-copy__body {
    font-size: 0.94rem;
  }
  .delivery-table tbody {
    gap: 10px;
  }
  .delivery-table tbody td:first-child {
    padding: 14px;
  }
  .delivery-table tbody td[data-mode] {
    min-height: 72px;
    padding: 11px 5px;
    font-size: 0.9rem;
  }
  .delivery-table tbody td[data-mode]::before {
    font-size: 0.57rem;
    letter-spacing: 0.06em;
  }
  .partners-heading h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }
  .footer-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }
}
/* VERY SMALL PHONES */
@media (max-width: 380px) {
  .connect-modal .modal-dialog {
    width: calc(100vw - 24px);
    margin: 12px auto;
  }
  .connect-modal .modal-content {
    padding: 20px 15px 15px;
  }
  .connect-modal__heading h2 {
    font-size: 1.62rem;
  }
  .connect-modal__heading > p:last-child {
    font-size: 0.84rem;
  }
  .connect-option {
    min-height: 56px;
    grid-template-columns:
      39px
      minmax(0, 1fr)
      25px;
    gap: 9px;
  }
  .connect-option__icon {
    width: 39px;
    height: 39px;
  }
  .connect-option__content strong {
    font-size: 0.9rem;
  }
  .connect-option__content small {
    font-size: 0.68rem;
  }
}
/* SHORT PHONE SCREENS */
@media (max-width: 767.98px) and (max-height: 700px) {
  .hero-content {
    padding: 14px 0 18px;
  }
  .eyebrow {
    margin-bottom: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.85rem);
  }
  .hero-copy__body {
    margin: 12px auto 14px;
  }
  .hero-column:last-child {
    margin-top: 12px;
  }
  .logistics-animation {
    width: min(76vw, 34svh, 275px);
    max-width: 275px;
  }
}
/* SHORT LANDSCAPE */
@media (orientation: landscape) and (max-height: 650px) and (min-width: 768px) {
  :root {
    --header-height: 60px;
  }
  .hero-content {
    padding: 8px 0;
  }
  .eyebrow {
    margin-bottom: 11px;
  }
  h1 {
    font-size: clamp(2.7rem, 6vw, 4.5rem);
  }
  .hero-copy__body {
    margin: 11px 0 13px;
    line-height: 1.45;
  }
  .shipping-cta {
    height: 43px;
    min-width: 160px;
  }
  .shipping-cta__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .logistics-animation {
    width: min(100%, 63vh);
  }
}
/* TOUCH DEVICES */
@media (hover: none) {
  .shipping-cta:hover {
    transform: none;
  }
  .shipping-cta:hover::before {
    transform: translateX(-102%);
  }
  .shipping-cta:hover .shipping-cta__icon {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }
  .shipping-cta:active {
    transform: scale(0.965);
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* CONTACT ACTIONS */
.contact-actions-wrap {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.contact-actions-title {
  margin: 0 0 17px;
  color: rgba(238, 232, 215, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-action {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(210, 201, 170, 0.22);
  border-radius: 50%;
  background: rgba(210, 201, 170, 0.055);
  color: #d2c9aa;
  text-decoration: none;
  font-size: 1.05rem;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.contact-action i {
  color: #d2c9aa;
}
.contact-action:hover {
  color: #d2c9aa;
  transform: translateY(-3px);
  background: rgba(210, 201, 170, 0.13);
  border-color: rgba(210, 201, 170, 0.42);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.contact-action:active {
  transform: scale(0.94);
}
/* MOBILE CONTACT CARD — CENTER EVERYTHING */
@media (max-width: 767.98px) {
  .contact-panel {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .contact-label {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .contact-brand {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .contact-panel address {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .contact-actions-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .contact-actions-title {
    width: 100% !important;
    max-width: 310px !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
  }
  .contact-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact-action {
    margin: 0 !important;
  }
}
/* HERO TITLE */
.hero-title {
  margin: 0;
  font-size: clamp(2.85rem, 4.25vw, 4.8rem);
  line-height: 1.04;
  /* slightly more breathing room than before */
  letter-spacing: -0.025em;
  font-weight: 400;
}
/* EXACTLY TWO LINES */
.hero-title__line {
  display: block;
  white-space: nowrap;
  margin-bottom: -0.7rem;
}
/* IMPORTANT:
   prevents the inner coloured spans
   from becoming separate lines
*/
.hero-title__line > span {
  display: inline;
}
/* ML = ORANGE */
.hero-title__ml {
  color: var(--orange);
}
/* ENTERPRISE = BLACK */
.hero-title__enterprise {
  color: var(--ink);
}
/* COURIER & = BLACK */
.hero-title__courier {
  color: var(--ink);
  font-size: 2.8rem;
}
/* LOGISTICS SERVICES = ORANGE */
.hero-title__logistics {
  color: var(--orange);
  font-size: 2.8rem;
}
/* UNIFORM SECTION SPACING Keeps Services / Transit / About / Partners consistent */
:root {
  --section-space: clamp(58px, 6vw, 82px);
}
/* Main website sections */
#services,
#transit-times,
#about,
#partners {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
/* SERVICES — MORE COMPACT */
.services-section .section-heading {
  margin-bottom: clamp(28px, 3vw, 40px);
}
/* slightly reduce the giant Services heading */
.services-section .section-heading h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  line-height: 1.02;
}
/* description closer to heading */
.services-section .section-heading > p:last-child {
  margin-top: 16px;
  margin-bottom: 0;
}
/* cards slightly shorter */
.services-section .service-card {
  min-height: 220px;
  padding: 28px 30px;
}
/* reduce internal card spacing */
.services-section .service-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}
.services-section .service-card p {
  margin-bottom: 16px;
}
/* TABLET */
@media (max-width: 991.98px) {
  :root {
    --section-space: 60px;
  }
  .services-section .service-card {
    min-height: 205px;
    padding: 25px 26px;
  }
}
/* MOBILE */
@media (max-width: 575.98px) {
  :root {
    --section-space: 44px;
  }
  .services-section .section-heading {
    margin-bottom: 26px;
  }
  .services-section .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }
  .services-section .service-card {
    min-height: auto;
    padding: 24px 22px;
  }
}
/* Responsive hero: size text against its own column, allow natural wrapping. */
.hero-frame {
  width: min(calc(100% - 40px), 1800px);
}
.hero-frame > .row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(24px, 4vw, 64px);
  margin: 0;
}
.hero-frame > .row > .hero-column {
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
}
.hero-copy {
  width: 100%;
  max-width: 900px;
  min-width: 0;
  container-type: inline-size;
}
.hero-copy .hero-title {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4.8rem);
  font-size: clamp(2rem, 7cqi, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.hero-title .hero-title__line {
  display: block;
  max-width: 100%;
  margin: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}
.hero-title .hero-title__line + .hero-title__line {
  margin-top: 0.12em;
}
.hero-title .hero-title__line > span {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}
.hero-copy .hero-copy__body {
  width: 100%;
  max-width: 560px;
  white-space: normal;
}
.hero-visual {
  min-width: 0;
}
.hero-visual .logistics-animation {
  width: min(100%, 620px, 65svh);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 767.98px), (orientation: portrait) and (max-width: 1199.98px) {
  .hero-content {
    min-height: auto;
    height: auto;
    padding: clamp(40px, 6svh, 72px) 0 40px;
    text-align: center;
  }
  .hero-frame > .row {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .hero-copy {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }
  .hero-copy .hero-title {
    text-align: center;
    font-size: clamp(2rem, 7.8vw, 3.4rem);
    font-size: clamp(2rem, 8.5cqi, 3.4rem);
  }
  .hero-copy .eyebrow {
    margin: 0 0 18px;
    text-align: center;
  }
  .hero-copy .hero-tagline {
    margin: 16px 0 0;
    padding: 0;
    text-align: center;
  }
  .hero-copy .hero-copy__body {
    margin: 12px auto 22px;
    text-align: center;
  }
  .hero-visual .logistics-animation {
    width: min(100%, 40svh, 400px);
    margin: 0 auto;
  }
  .scroll-discover { display: none; }
}
@media (orientation: landscape) and (max-height: 650px) {
  .hero-shell, .hero-content {
    min-height: calc(100svh - var(--header-height));
    height: auto;
  }
  .hero-content { padding: 24px 0 32px; }
  .hero-frame > .row {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
  }
  .hero-copy, .hero-copy .hero-title,
  .hero-copy .eyebrow, .hero-copy .hero-tagline,
  .hero-copy .hero-copy__body { text-align: left; }
  .hero-copy .hero-title {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    font-size: clamp(1.75rem, 8cqi, 2.5rem);
  }
  .hero-copy .eyebrow { margin: 0 0 12px; }
  .hero-copy .hero-tagline { margin: 12px 0 0; padding: 0; }
  .hero-copy .hero-copy__body { margin: 10px 0 18px; }
  .hero-visual .logistics-animation { width: min(100%, 65svh, 360px); }
  .scroll-discover { display: none; }
}
/* Brand selection colour and desktop scrollbar appearance. */
::selection {
  background: var(--orange);
  color: #fff;
}
@media (min-width: 992px) {
  html, body { scrollbar-width: none; }
  html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
/* CONSOLIDATED SECTION LAYOUT */
.hero-content .hero-frame,
#services > .content-container,
#about > .content-container,
#partners > .content-container,
#partners > .partner-marquee {
  width: calc(100% - 2 * clamp(20px, 5vw, 100px));
  max-width: 1680px;
  margin-inline: auto;
}
.hero-content .hero-frame > .row { margin-inline: 0; }
.hero-content .hero-column { min-width: 0; }
@media (min-width: 992px) {
  #services .service-card {
    min-height: 190px;
    height: 100%;
    padding: 20px 24px;
    border-radius: 16px;
  }
  #services .service-card h3 {
    margin: 16px 0 8px;
    font-size: clamp(1.35rem, 1.65vw, 1.7rem);
    line-height: 1.2;
  }
  #services .service-card p { margin: 0 0 14px; font-size: .9rem; line-height: 1.45; }
  #services .service-card__link { margin-top: auto; padding-top: 8px; }
  #services .service-arrow { width: 30px; height: 30px; font-size: .85rem; }
}
#services .section-heading,
#transit-times .transit-heading,
#partners .partners-heading,
#contact .footer-heading {
  text-align: center;
  margin-inline: auto;
}
#services .section-heading > *,
#transit-times .transit-heading > *,
#partners .partners-heading > *,
#contact .footer-heading > * {
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 1200px) {
  #services .section-heading,
  #services .section-heading h2 { width: 100%; max-width: none; }
  #services .section-heading h2 { text-align: center; white-space: normal; }
}
.site-header, .site-header.is-scrolled, .site-header.menu-open { border-bottom: none; }
#logistics-animation { overflow: hidden; }
#logistics-animation > svg { overflow: hidden !important; }
/* FAQ SECTION */
.faq-section {
  padding-block: var(--section-space, 64px);
  background: var(--paper);
  scroll-margin-top: calc(var(--header-height) + 22px);
}
.faq-container {
  width: calc(100% - 2 * clamp(20px, 5vw, 100px));
  max-width: 1680px;
  margin-inline: auto;
}
.faq-heading { margin-bottom: clamp(28px, 4vw, 44px); text-align: center; }
.faq-heading > * { margin-inline: auto; }
.faq-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.faq-heading > p:last-child { max-width: 560px; color: var(--muted); line-height: 1.6; }
.faq-list { max-width: 1040px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  padding: 23px 48px 23px 0;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 2px;
  background: var(--orange);
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item summary:hover { color: var(--orange); }
.faq-item summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 4px; }
.faq-answer {
  max-width: 900px;
  padding: 0 40px 24px 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-contact { margin: 28px 0 0; text-align: center; color: var(--muted); line-height: 1.7; }
.faq-contact a { color: var(--ink); text-decoration-color: var(--orange); text-underline-offset: 4px; }
.faq-contact a:hover { color: var(--orange); }
.legal-modal .modal-body a { overflow-wrap: anywhere; }
@media (max-width: 575.98px) {
  .faq-item summary { padding-block: 19px; }
  .faq-answer { padding-right: 12px; }
}
/* BRAND LOGO AND FLEXIBLE HEADER */
.site-header { height: auto; }
.site-header__inner .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}
.site-header .site-logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 76px);
  padding: 8px 0;
  text-decoration: none;
}
.site-header .site-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 88px;
  max-width: min(300px, 100%);
  object-fit: contain;
  object-position: left center;
}
.site-logo:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
  border-radius: 4px;
}
.site-header .menu-toggle { flex: 0 0 auto; }
@media (max-width: 991.98px) {
  .site-header #mainNavigation { flex-basis: 100%; min-width: 0; }
  .site-header .site-logo img { max-height: 72px; max-width: min(240px, 100%); }
}
@media (min-width: 992px) {
  .site-header #mainNavigation { flex: 1 1 520px; min-width: 0; }
  .site-header #mainNavigation .navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: clamp(14px, 1.5vw, 28px);
    row-gap: 4px;
  }
}
@media (orientation: landscape) and (max-height: 650px) {
  .site-header .site-logo img { max-height: 60px; max-width: min(220px, 100%); }
}
/* FAQ CONTACT PROMPT */
.faq-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  text-align: center;
}
.faq-contact > * { margin: 0; }
.faq-contact a.faq-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: .95rem;
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.faq-contact a.faq-contact-button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--cream);
}
.faq-contact a.faq-contact-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
@media (max-width: 767.98px) {
  .faq-contact { gap: 10px 14px; }
  .faq-contact > span { font-size: .9rem; }
  .faq-contact a.faq-contact-button {
    min-height: 40px;
    padding: 9px 20px;
    font-size: .85rem;
  }
}
@media (max-width: 380px) {
  .faq-contact { column-gap: 10px; }
  .faq-contact a.faq-contact-button { padding-inline: 16px; }
}



/* chaning colors for ML as per clients request */
/* Landing page: dark ML, white Enterprise */
.hero-title .hero-title__ml {
  color: var(--ink);
}

.hero-title .hero-title__enterprise {
  color: #fff;
}

/* Contact card: ML matches Enterprise */
#contact .contact-brand .brand-ml {
  color: inherit !important;
}
@media (max-width: 1199.98px) {
  #privacyModal .modal-dialog {
    width: calc(100% - 32px);
    max-width: 560px;
    margin: 16px auto;
    min-height: calc(100% - 32px);
  }

  #privacyModal .modal-content {
    max-height: calc(100vh - 48px);
    max-height: min(80dvh, 680px);
    overflow: hidden;
  }

  #privacyModal .modal-header {
    flex-shrink: 0;
    padding: 16px 18px;
    gap: 12px;
  }

  #privacyModal .modal-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.25;
  }

  #privacyModal .modal-header .btn-close {
    flex-shrink: 0;
    margin: 0;
    padding: 12px;
  }

  #privacyModal .modal-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 16px 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
#privacyModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#privacyModal .modal-header > div {
  flex: 1;
  min-width: 0;
}

#privacyModal .modal-header .btn-close {
  position: static;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 0 0 auto;
  box-sizing: border-box;
  background-position: center;
  background-size: 16px;
}