﻿@font-face {
  font-family: "DIN Next Arabic";
  src: url("../../Font/DINNextLTArabic-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next Arabic";
  src: url("../../Font/DIN%20Next%20LT%20W23%20Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next Arabic";
  src: url("../../Font/DIN%20Next%20LT%20W23%20Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink-950: #0b2545;
  --ink-900: #0b2545;
  --brand-navy: #0b2545;
  --ink-800: #0b2545;
  --ink-700: #0b2545;
  --brand-orange: #ff6b35;
  --orange-700: var(--brand-navy);
  --brand-green: #137547;
  --brand-gold: #d9a05b;
  --paper-0: #ffffff;
  --paper-50: #f8f9fa;
  --paper-100: #f8f9fa;
  --sand-200: rgb(11 37 69 / 14%);
  --sand-300: var(--brand-gold);
  --charcoal: #0b2545;
  --muted-ink: rgb(11 37 69 / 72%);
  --danger: #ff6b35;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 11vw, 168px);
  --motion-press: 120ms;
  --motion-state: 220ms;
  --motion-panel: 360ms;
  --motion-reveal: 560ms;
  --motion-chapter: 780ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --focus: 0 0 0 3px var(--paper-0), 0 0 0 6px var(--brand-orange);
}

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

html {
  background: var(--paper-50);
  color: var(--charcoal);
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper-50);
  font-family: "DIN Next Arabic", Tahoma, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

img {
  background: var(--paper-100);
}

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

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

button,
summary,
a,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
b,
strong {
  font-weight: 500;
}

::selection {
  background: var(--brand-orange);
  color: var(--ink-950);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  padding: 10px 18px;
  color: var(--paper-0);
  background: var(--ink-900);
  transform: translateY(-180%);
  transition: transform var(--motion-state) var(--ease-out);
}

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

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

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

.button:active {
  transform: scale(.96);
  transition-duration: var(--motion-press);
}

.button--primary {
  color: var(--ink-950);
  background: var(--brand-orange);
  box-shadow: 0 12px 34px rgb(255 107 53 / 24%);
}

.button--primary:hover {
  background: var(--brand-orange);
  box-shadow: 0 16px 40px rgb(255 107 53 / 34%);
}

.button--whatsapp {
  color: var(--paper-0);
  background: var(--brand-green);
}

.button--ghost {
  color: var(--paper-0);
  border-color: rgb(255 255 255 / 44%);
  background: rgb(11 37 69 / 42%);
}

.button--ghost:hover {
  border-color: var(--paper-0);
  background: rgb(11 37 69 / 72%);
}

.button--light {
  color: var(--ink-900);
  background: var(--paper-0);
}

.button--outline {
  color: var(--ink-900);
  border-color: var(--sand-300);
  background: transparent;
}

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

.button--track {
  color: var(--paper-0);
  background: var(--ink-800);
}

.button--compact {
  min-height: 44px;
  padding: 9px 15px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-navy);
  font-weight: 500;
}

.text-link .icon {
  transition: transform var(--motion-state) var(--ease-out);
}

.text-link:hover .icon {
  transform: translateX(-5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange-700);
  font-size: 15px;
  font-weight: 500;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #D9A05B;
}

.section-heading {
  max-width: 820px;
  margin-block-end: clamp(38px, 5vw, 74px);
}

.section-heading h2 {
  max-width: 780px;
  margin-block-start: 13px;
  color: var(--ink-900);
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 680px;
  margin-block-start: 20px;
  color: var(--muted-ink);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
  text-wrap: pretty;
}

.section-heading--light h2,
.section-heading--light > p {
  color: var(--paper-0);
}

.section-heading--light > p {
  color: rgb(255 255 255 / 72%);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--ink-900);
  pointer-events: none;
}

.route-bar {
  height: 34px;
  color: rgb(255 255 255 / 78%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(11 37 69 / 90%);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition-property: opacity, transform;
  transition-duration: var(--motion-panel);
  transition-timing-function: var(--ease-out);
}

.route-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.route-bar p,
.route-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-bar .icon {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
}

.header-main {
  position: relative;
  height: 78px;
  display: grid;
  grid-template-columns: 198px 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  margin-block-start: 12px;
  padding-inline: 13px 16px;
  color: var(--paper-0);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 9px;
  background: rgb(11 37 69 / 96%);
  box-shadow: 0 20px 55px rgb(11 37 69 / 24%);
  backdrop-filter: blur(12px);
  pointer-events: auto;
  transition-property: transform, box-shadow, background-color;
  transition-duration: var(--motion-panel);
  transition-timing-function: var(--ease-out);
}

.site-header.is-scrolled .route-bar {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header.is-scrolled .header-main {
  transform: translateY(-30px);
  background: rgb(11 37 69 / 98%);
  box-shadow: 0 18px 48px rgb(11 37 69 / 30%);
}

.brand-logo {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.brand-logo__crop {
  position: relative;
  width: 190px;
  height: 60px;
  display: block;
  overflow: hidden;
}

.brand-logo__crop picture {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-logo__crop img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  background: transparent;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav > a,
.nav-group > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  list-style: none;
}

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

.primary-nav > a::after,
.nav-group > summary::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-state) var(--ease-out);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-group:hover > summary::after,
.nav-group.is-active > summary::after,
.nav-group[open] > summary::after {
  transform: scaleX(1);
}

.nav-group {
  position: static;
}

.nav-sheet {
  position: absolute;
  z-index: 5;
  inset: calc(100% + 10px) 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 26px;
  color: var(--brand-navy);
  border: 1px solid var(--sand-200);
  border-radius: 8px;
  background: var(--paper-0);
  box-shadow: 0 30px 70px rgb(11 37 69 / 20%);
}

.nav-sheet--compact {
  grid-template-columns: 1fr;
}

.nav-sheet__intro {
  padding-inline-end: 24px;
  color: var(--muted-ink);
  border-inline-end: 1px solid var(--sand-200);
  white-space: normal;
}

.nav-sheet > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 18px;
}

.nav-sheet a {
  min-height: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-inline: 10px;
  border-bottom: 1px solid var(--paper-100);
  transition-property: color, background-color;
  transition-duration: var(--motion-state);
}

.nav-sheet a:hover,
.nav-sheet a[aria-current="page"] {
  color: var(--brand-gold);
  background: var(--paper-50);
}

.nav-sheet a .icon {
  width: 17px;
  height: 17px;
}

.nav-sheet a .icon--arrow {
  color: var(--sand-300);
}

.header-call {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: var(--paper-0);
  border-radius: 6px;
  background: var(--brand-navy);
  direction: rtl;
  transition-property: background-color, transform;
  transition-duration: var(--motion-state);
}

.header-call:hover {
  background: var(--ink-800);
  transform: translateY(-1px);
}

.header-call small,
.header-call b {
  display: block;
  line-height: 1.25;
}

.header-call small {
  color: rgb(255 255 255 / 65%);
  font-size: 11px;
}

.header-call b {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.menu-toggle {
  display: none;
}

.mobile-nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: var(--paper-0);
  background: var(--ink-950);
  isolation: isolate;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.hero__veil {
  z-index: 1;
  background:
    linear-gradient(to left, rgb(11 37 69 / 94%) 0%, rgb(11 37 69 / 74%) 35%, rgb(11 37 69 / 14%) 70%, rgb(11 37 69 / 8%) 100%),
    linear-gradient(to top, rgb(11 37 69 / 74%) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(900px, 100svh);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 180px 120px;
}

.hero__content h1 {
  max-width: 900px;
  margin-block-start: 18px;
  font-size: clamp(56px, 6.2vw, 90px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__content h1 span {
  color: var(--brand-gold);
}

.hero__content > p:not(.eyebrow, .hero__phone) {
  max-width: 650px;
  margin-block-start: 24px;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 34px;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-block-start: 18px;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
}

.hero__phone a {
  color: var(--paper-0);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.hero__route {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  width: 100%;
  height: 29%;
  overflow: visible;
  color: var(--brand-orange);
  pointer-events: none;
}

.hero__route path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero__route-base {
  opacity: .42;
}

.hero__route-progress {
  stroke-width: 2.5;
}

.hero__route circle {
  fill: var(--paper-0);
  stroke: currentColor;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.hero-label {
  position: absolute;
  z-index: 4;
  inset: auto auto 104px var(--gutter);
  width: min(272px, 23vw);
  padding: 18px 20px 16px;
  color: var(--ink-900);
  border-radius: 5px;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 18px 42px rgb(11 37 69 / 24%);
  transform: rotate(.65deg);
}

.hero-label__head,
.hero-label strong,
.hero-label p {
  display: flex;
  align-items: center;
}

.hero-label__head {
  justify-content: space-between;
  padding-block-end: 10px;
  border-bottom: 2px solid var(--brand-navy);
  font-size: 11px;
  letter-spacing: 0;
  direction: rtl;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgb(19 117 71 / 16%);
}

.hero-label strong {
  gap: 8px;
  margin-block-start: 13px;
  font-size: 20px;
}

.hero-label strong .icon {
  width: 17px;
  color: var(--brand-orange);
}

.hero-label p {
  margin-block-start: 3px;
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.6;
}

.hero-label__code {
  position: relative;
  height: 10px;
  margin-block-start: 18px;
  border-block-start: 2px solid rgb(11 37 69 / 18%);
}

.hero-label__code::before,
.hero-label__code::after {
  content: "";
  position: absolute;
  inset-block-start: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-label__code::before {
  inset-inline-start: 0;
  background: var(--brand-orange);
}

.hero-label__code::after {
  inset-inline-end: 0;
  background: var(--brand-green);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  inset: auto auto 28px 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: flex-end;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  transform: translateX(-50%);
  transition-property: color, transform;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.hero__scroll i {
  width: 1px;
  height: 34px;
  background: var(--brand-orange);
  transform-origin: top;
  transition: transform var(--motion-state) var(--ease-out);
}

.hero__scroll:hover {
  color: var(--paper-0);
  transform: translateX(-50%) translateY(-2px);
}

.hero__scroll:hover i {
  transform: scaleY(1.12);
}

.hero a:focus-visible {
  box-shadow: var(--focus);
}

.route-ledger {
  position: relative;
  z-index: 4;
  color: var(--paper-0);
  background: var(--ink-900);
}

.route-ledger__track {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr .9fr;
  border-inline: 1px solid rgb(255 255 255 / 10%);
}

.route-ledger__track > div {
  min-height: 142px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px clamp(18px, 2.4vw, 34px);
  border-inline-end: 1px solid rgb(255 255 255 / 10%);
}

.route-ledger__track > div:first-child {
  border-inline-end: 0;
}

.route-ledger__track span {
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.route-ledger__track p {
  color: rgb(255 255 255 / 56%);
  font-size: 14px;
  line-height: 1.55;
}

.route-ledger__track b {
  display: block;
  margin-block-end: 4px;
  color: var(--paper-0);
  font-size: 17px;
}

.services-story {
  position: relative;
  overflow: hidden;
}

.services-story::before {
  content: "NM / 2026";
  position: absolute;
  inset: 70px auto auto 3vw;
  color: var(--sand-200);
  font-size: 12px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  direction: ltr;
}

.service-editorial {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: minmax(310px, 38vw) minmax(310px, 38vw);
  gap: 18px;
}

.service-feature {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--paper-0);
  border-radius: 5px;
  isolation: isolate;
}

.service-feature--tall {
  grid-row: 1 / 3;
}

.service-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.service-feature:hover .service-feature__image {
  transform: scale(1.025);
}

.service-feature__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgb(11 37 69 / 92%) 0%, rgb(11 37 69 / 8%) 64%);
}

.service-feature__index {
  position: absolute;
  z-index: 2;
  inset: 18px auto auto 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink-900);
  border-radius: 50%;
  background: var(--paper-0);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.service-feature__caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 18px;
  padding: clamp(24px, 4vw, 54px);
}

.service-feature__caption small,
.service-feature__caption b,
.service-feature__caption em {
  grid-column: 1;
}

.service-feature__caption small {
  color: var(--brand-gold);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.service-feature__caption b {
  margin-block-start: 7px;
  font-size: clamp(28px, 3.5vw, 54px);
  line-height: 1.1;
}

.service-feature__caption em {
  margin-block-start: 8px;
  color: rgb(255 255 255 / 68%);
  font-size: 15px;
  font-style: normal;
}

.service-feature__caption .icon {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 35px;
  height: 35px;
  transition: transform var(--motion-state) var(--ease-out);
}

.service-feature:hover .service-feature__caption .icon {
  transform: translateX(-7px);
}

.service-index {
  display: none;
}

.service-index > p {
  color: var(--muted-ink);
}

.service-index a {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--sand-200);
}

.service-index a span {
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}

.journey {
  position: relative;
  padding-block: var(--section-space) 60px;
  color: var(--paper-0);
  background: var(--ink-950);
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.journey__intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5px;
  gap: 70px;
}

.journey__progress {
  width: 3px;
  height: 100%;
  overflow: hidden;
  background: rgb(255 255 255 / 12%);
}

.journey__progress span {
  display: block;
  width: 100%;
  height: 20%;
  background: var(--brand-orange);
  transition: height var(--motion-chapter) var(--ease-out);
}

.journey__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.journey-chapter {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 70px;
  color: rgb(255 255 255 / 44%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  transition: color var(--motion-chapter) var(--ease-out);
}

.journey-chapter > span {
  color: var(--brand-orange);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.journey-chapter h3 {
  margin-block-start: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}

.journey-chapter p {
  max-width: 520px;
  margin-block-start: 18px;
  font-size: 18px;
  line-height: 1.8;
}

.journey-chapter.is-active {
  color: var(--paper-0);
}

.journey-chapter.is-active p {
  color: rgb(255 255 255 / 70%);
}

.journey-chapter__image {
  display: none;
}

.journey-stage {
  position: sticky;
  top: 110px;
  height: calc(100vh - 130px);
  min-height: 560px;
  padding-block: 22px;
}

.journey-stage__frame {
  position: relative;
  height: calc(100% - 64px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 6px;
  background: var(--ink-800);
  box-shadow: 0 35px 90px rgb(0 0 0 / 32%);
}

.journey-stage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02) translateX(12px);
  transition-property: opacity, transform;
  transition-duration: var(--motion-chapter);
  transition-timing-function: var(--ease-out);
}

.journey-stage__image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1) translateX(0);
}

.journey-stage__stamp {
  position: absolute;
  z-index: 3;
  inset: auto auto 24px 24px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper-0);
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  background: rgb(11 37 69 / 64%);
  transform: rotate(-8deg);
  backdrop-filter: blur(6px);
}

.journey-stage__stamp span {
  color: var(--brand-orange);
  font-size: 23px;
  font-weight: 500;
}

.journey-stage__stamp b {
  font-size: 11px;
  letter-spacing: .12em;
}

.journey-stage__stamp small {
  color: rgb(255 255 255 / 64%);
  font-size: 10px;
}

.journey-stage__caption {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.journey-stage__caption span {
  color: var(--brand-orange);
  font-variant-numeric: tabular-nums;
}

.journey-stage__caption p {
  font-weight: 500;
}

.packing-anatomy {
  background: var(--paper-0);
}

.packing-anatomy__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .55fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.packing-figure {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-900);
}

.packing-figure__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packing-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink-900);
  border: 3px solid var(--paper-0);
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 10px 30px rgb(11 37 69 / 30%);
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition-property: color, background-color, transform, box-shadow;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.packing-pin:hover,
.packing-pin.is-active {
  color: var(--paper-0);
  background: var(--brand-green);
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgb(19 117 71 / 20%), 0 12px 30px rgb(11 37 69 / 32%);
}

.packing-pin--1 { inset: 13% 70% auto auto; }
.packing-pin--2 { inset: 43% 72% auto auto; }
.packing-pin--3 { inset: 24% 55% auto auto; }
.packing-pin--4 { inset: 57% 68% auto auto; }
.packing-pin--5 { inset: 34% 17% auto auto; }

.packing-notes {
  border-top: 1px solid var(--sand-200);
}

.packing-notes li {
  border-bottom: 1px solid var(--sand-200);
}

.packing-notes button {
  width: 100%;
  min-height: 94px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 14px;
  padding: 15px 4px;
  text-align: start;
  background: transparent;
}

.packing-notes span {
  grid-row: 1 / 3;
  color: var(--sand-300);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color var(--motion-state);
}

.packing-notes b {
  color: var(--ink-900);
  font-size: 18px;
}

.packing-notes small {
  max-height: 0;
  overflow: hidden;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition-property: max-height, opacity, transform;
  transition-duration: var(--motion-panel);
  transition-timing-function: var(--ease-out);
}

.packing-notes li.is-active span {
  color: var(--orange-700);
}

.packing-notes li.is-active small {
  max-height: 56px;
  opacity: 1;
  transform: translateY(0);
}

.section-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: 38px;
}

.coverage-theater {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper-0);
  background: var(--ink-950);
}

.coverage-theater__media,
.coverage-theater__veil {
  position: absolute;
  inset: 0;
}

.coverage-theater__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coverage-theater__veil {
  background: linear-gradient(to bottom, rgb(11 37 69 / 90%), rgb(11 37 69 / 44%) 55%, rgb(11 37 69 / 78%));
}

.coverage-theater__content {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.route-map {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(200px, 1fr) minmax(280px, .7fr);
  align-items: center;
  gap: 12px;
  margin-block: 34px 42px;
}

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

.route-map__saudi > span,
.route-map__egypt > span {
  grid-column: 1 / -1;
  margin-block-end: 8px;
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 500;
}

.route-map__saudi a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-inline: 12px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 4px;
  background: rgb(11 37 69 / 56%);
  transition-property: border-color, background-color;
  transition-duration: var(--motion-state);
}

.route-map__saudi a:hover {
  border-color: var(--brand-orange);
  background: rgb(11 37 69 / 88%);
}

.route-map svg {
  width: 100%;
  color: var(--brand-orange);
}

.route-map svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-dasharray: 8 9;
  vector-effect: non-scaling-stroke;
}

.route-map svg circle {
  fill: var(--paper-0);
  stroke: currentColor;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.route-map__egypt b,
.route-map__egypt small {
  display: block;
}

.route-map__egypt b {
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.1;
}

.route-map__egypt small {
  max-width: 320px;
  margin-block-start: 12px;
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
  line-height: 1.65;
}

.tracking-scene {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper-0);
  background: var(--ink-950);
}

.tracking-scene > figure,
.tracking-scene__veil {
  position: absolute;
  inset: 0;
}

.tracking-scene__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracking-scene__veil {
  background: linear-gradient(to left, rgb(11 37 69 / 96%) 0%, rgb(11 37 69 / 92%) 43%, transparent 72%);
}

.tracking-scene__content {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}

.tracking-scene__copy {
  width: min(610px, 48%);
}

.tracking-scene__copy h2 {
  margin-block-start: 14px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.04em;
}

.tracking-scene__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-block-start: 20px;
  color: rgb(255 255 255 / 68%);
  font-size: 19px;
}

.tracking-form {
  display: grid;
  grid-template-columns: 1fr .72fr auto;
  gap: 12px;
  margin-block-start: 32px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-block-end: 7px;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid var(--sand-200);
  border-radius: 5px;
  background: var(--paper-0);
  color: var(--charcoal);
  font-size: 16px;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: var(--motion-state);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgb(255 107 53 / 20%);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgb(180 35 24 / 14%);
}

.tracking-form > .button {
  align-self: end;
}

.form-hint,
.form-feedback {
  grid-column: 1 / -1;
}

.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
}

.form-hint .icon {
  width: 17px;
  height: 17px;
  margin-block-start: 4px;
  color: #FFFFFF;
}

.form-hint b {
  color: rgb(255 255 255 / 76%);
  font-variant-numeric: tabular-nums;
}

.form-feedback {
  min-height: 0;
}

.message {
  padding: 14px 16px;
  border-inline-start: 4px solid var(--brand-orange);
  background: rgb(255 255 255 / 10%);
  font-size: 15px;
}

.message--error {
  border-color: #FFFFFF;
}

.tracking-result {
  margin-block-start: 18px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  background: rgb(11 37 69 / 86%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 24%);
}

.tracking-result__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-block-end: 15px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.tracking-result__head span {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
}

.tracking-result__head b {
  display: block;
  color: var(--paper-0);
  font-size: 21px;
}

.tracking-result__head code {
  direction: ltr;
  color: var(--brand-gold);
  font-family: inherit;
  font-variant-numeric: tabular-nums;
}

.tracking-timeline {
  margin-block-start: 16px;
}

.tracking-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding-block: 8px;
  color: rgb(255 255 255 / 64%);
  font-size: 13px;
}

.tracking-timeline li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-block-start: 7px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: var(--ink-900);
}

.tracking-timeline b {
  display: block;
  color: var(--paper-0);
  font-size: 15px;
}

.tracking-timeline small {
  display: block;
  color: inherit;
}

.review-journal {
  background: var(--paper-50);
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--sand-200);
  border-radius: 6px;
  background: var(--paper-0);
}

.review-feature figure {
  min-height: 100%;
}

.review-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.review-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.review-status {
  color: var(--orange-700);
  font-size: 13px;
  font-weight: 500;
}

.review-feature blockquote {
  position: relative;
  margin-block-start: 26px;
  color: var(--ink-900);
  font-size: clamp(23px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

.review-feature h3 {
  margin-block-start: 26px;
  font-size: 19px;
}

.review-feature dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-block-start: 34px;
  padding-block-start: 20px;
  border-top: 1px solid var(--sand-200);
}

.review-feature dt {
  color: var(--muted-ink);
  font-size: 12px;
}

.review-feature dd {
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(310px, 37%);
  grid-auto-flow: column;
  gap: 0;
  margin-block-start: 36px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brand-orange) var(--paper-100);
  scrollbar-width: thin;
}

.review-rail article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-block: 1px solid var(--sand-200);
  border-inline-start: 1px solid var(--sand-200);
  scroll-snap-align: start;
}

.review-rail article > span {
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}

.review-rail article > p {
  margin-block: 24px;
  color: var(--ink-900);
  font-size: 18px;
  line-height: 1.7;
}

.review-rail footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-rail footer small {
  color: var(--muted-ink);
}

.duration-section {
  padding-block: clamp(80px, 9vw, 130px);
  color: var(--paper-0);
  background: var(--brand-navy);
}

.duration-section__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.duration-number {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-block-start: 18px;
}

.duration-number span,
.duration-number em {
  color: rgb(255 255 255 / 58%);
  font-size: 19px;
  font-style: normal;
}

.duration-number b {
  color: var(--brand-orange);
  font-size: clamp(100px, 15vw, 210px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.07em;
  font-variant-numeric: tabular-nums;
}

.duration-copy h2 {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.1;
}

.duration-copy > p {
  max-width: 660px;
  margin-block-start: 20px;
  color: rgb(255 255 255 / 68%);
}

.duration-copy ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-block-start: 38px;
}

.duration-copy li {
  padding-block-start: 15px;
  color: rgb(255 255 255 / 72%);
  border-top: 1px solid rgb(255 255 255 / 18%);
  font-size: 14px;
}

.duration-copy li span {
  display: block;
  color: var(--brand-orange);
  font-variant-numeric: tabular-nums;
}

.faq-preview {
  background: var(--paper-0);
}

.faq-preview__grid,
.faq-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-preview__intro,
.faq-page aside {
  position: sticky;
  top: 120px;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block-start: 25px;
  border-top: 1px solid var(--sand-200);
}

.faq-contact .icon {
  width: 32px;
  height: 32px;
  color: var(--brand-orange);
}

.faq-contact span,
.faq-contact a {
  display: block;
}

.faq-contact span {
  color: var(--muted-ink);
  font-size: 13px;
}

.faq-contact a {
  color: var(--ink-900);
  font-size: 24px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

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

.faq-list details {
  border-bottom: 1px solid var(--sand-200);
}

.faq-list summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 16px;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--sand-300);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.faq-list summary b {
  color: var(--ink-900);
  font-size: 20px;
}

.faq-list summary .icon {
  color: var(--orange-700);
  transition: transform var(--motion-panel) var(--ease-out);
}

.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 720px;
  padding: 0 61px 26px 0;
  color: var(--muted-ink);
}

.final-handoff {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper-0);
  background: var(--ink-950);
}

.final-handoff > figure,
.final-handoff__veil {
  position: absolute;
  inset: 0;
}

.final-handoff__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.final-handoff__veil {
  background: linear-gradient(to left, rgb(11 37 69 / 94%) 0%, rgb(11 37 69 / 74%) 42%, rgb(11 37 69 / 12%) 74%);
}

.final-handoff__content {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.final-handoff__content h2 {
  max-width: 740px;
  margin-block-start: 16px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -.04em;
}

.final-handoff__content > p {
  max-width: 630px;
  margin-block-start: 23px;
  color: rgb(255 255 255 / 70%);
  font-size: 19px;
}

.final-handoff__content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 34px;
}

.breadcrumb {
	position: relative;
	z-index: 4;
	width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
	margin-inline: 0;
	margin-block-end: -54px;
	padding: 138px max(var(--gutter), calc((100vw - var(--container)) / 2)) 18px;
	color: rgb(255 255 255 / 72%);
	font-size: 14px;
	background: linear-gradient(to bottom, var(--ink-950) 0%, var(--ink-950) 72%, rgb(11 37 69 / 88%) 100%);
}

.breadcrumb .icon {
  width: 15px;
  height: 15px;
	color: var(--brand-orange);
}

.breadcrumb a {
	color: var(--paper-0);
}

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

.breadcrumb + .inner-hero {
	margin-block-start: 0;
}

.inner-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: end;
  margin-block-start: 16px;
  overflow: hidden;
  color: var(--paper-0);
  background: var(--ink-950);
}

.inner-hero > figure,
.inner-hero__veil {
  position: absolute;
  inset: 0;
}

.inner-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero__veil {
  background: linear-gradient(to left, rgb(11 37 69 / 92%) 0%, rgb(11 37 69 / 65%) 48%, rgb(11 37 69 / 10%) 78%), linear-gradient(to top, rgb(11 37 69 / 72%), transparent 55%);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 100px 90px;
}

.inner-hero__content h1 {
  max-width: 920px;
  margin-block-start: 15px;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.inner-hero__content > p {
  max-width: 720px;
  margin-block-start: 22px;
  color: rgb(255 255 255 / 74%);
  font-size: 20px;
}

.inner-hero__content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 30px;
}

.process-rail {
  color: var(--paper-0);
  background: var(--brand-navy);
}

.process-rail .container {
  min-height: 112px;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 34px;
}

.process-rail p {
  color: rgb(255 255 255 / 64%);
  font-size: 14px;
}

.process-rail ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-rail li {
  position: relative;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 20px;
  border-inline-start: 1px solid rgb(255 255 255 / 12%);
  font-size: 15px;
}

.process-rail li::after {
  content: "";
  position: absolute;
  inset: 50% auto auto -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.process-rail li span {
  color: var(--brand-orange);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.editorial-detail__grid,
.city-dispatch__grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.editorial-detail__lead h2 {
  margin-block-start: 14px;
  color: var(--ink-900);
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.12;
}

.editorial-detail__lead > p {
  margin-block-start: 20px;
  color: var(--muted-ink);
}

.lined-list {
  margin-block-start: 36px;
  border-top: 1px solid var(--sand-200);
}

.lined-list li {
  min-height: 61px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--sand-200);
  color: var(--ink-900);
  font-weight: 500;
}

.lined-list span {
  color: var(--orange-700);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.editorial-detail__figure,
.city-dispatch figure {
  position: relative;
}

.editorial-detail__image,
.city-dispatch__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.editorial-detail__figure figcaption {
  width: min(460px, 78%);
  margin: -44px 0 0 auto;
  position: relative;
  z-index: 2;
  padding: 22px 26px;
  color: var(--paper-0);
  border-inline-start: 4px solid var(--brand-orange);
  background: var(--ink-900);
  box-shadow: 0 24px 60px rgb(11 37 69 / 24%);
}

.article-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-block: 1px solid var(--sand-200);
}

.article-pair article {
  min-height: 340px;
  padding: clamp(34px, 5vw, 68px);
  border-inline-start: 1px solid var(--sand-200);
}

.article-pair article:first-child {
  border-inline-start: 0;
}

.article-pair span,
.about-story article > span {
  color: var(--orange-700);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.article-pair h2 {
  margin-block-start: 20px;
  color: var(--ink-900);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.15;
}

.article-pair p {
  margin-block-start: 18px;
  color: var(--muted-ink);
}

.city-dispatch__note {
  margin-block: -30px 30px;
  padding: 24px 27px;
  color: var(--ink-900);
  border-inline-start: 4px solid var(--brand-orange);
  background: var(--paper-0);
}

.city-dispatch figure figcaption {
  position: absolute;
  inset: auto 24px 24px auto;
  width: min(370px, calc(100% - 48px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--paper-0);
  border-radius: 5px;
  background: rgb(11 37 69 / 88%);
  backdrop-filter: blur(8px);
}

.city-dispatch figcaption span {
  color: var(--brand-orange);
}

.city-dispatch figcaption b {
  display: block;
}

.city-dispatch figcaption p {
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
}

.city-cargo {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
}

.city-cargo__list {
  border-top: 1px solid var(--sand-200);
}

.city-cargo__list a {
  min-height: 115px;
  display: grid;
  grid-template-columns: 42px .75fr 1.3fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--sand-200);
  transition-property: color, background-color, padding-inline;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.city-cargo__list a:hover {
  padding-inline: 12px;
  background: var(--paper-50);
}

.city-cargo__list span {
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}

.city-cargo__list b {
  color: var(--ink-900);
  font-size: 19px;
}

.city-cargo__list small {
  color: var(--muted-ink);
  font-size: 14px;
}

.tracking-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.tracking-page .tracking-form {
  padding: clamp(26px, 4vw, 46px);
  color: var(--charcoal);
  border: 1px solid var(--sand-200);
  border-radius: 6px;
  background: var(--paper-0);
  box-shadow: 0 30px 70px rgb(11 37 69 / 10%);
}

.tracking-page .form-hint {
  color: var(--muted-ink);
}

.tracking-page .form-hint b {
  color: var(--ink-900);
}

.tracking-page .message {
  color: var(--paper-0);
  background: var(--ink-900);
}

.tracking-page .message--loading {
  border-inline-start: 4px solid var(--brand-gold);
}

.tracking-result__privacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  color: var(--muted-ink);
  border: 1px solid var(--sand-200);
  background: var(--paper-50);
  font-size: 13px;
}

.tracking-result__privacy b {
  color: var(--brand-navy);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.tracking-form[aria-busy="true"] button[type="submit"] {
  cursor: wait;
  opacity: .72;
}

.tracking-page aside {
  padding-block-start: 20px;
}

.tracking-page aside h2 {
  color: var(--ink-900);
  font-size: 32px;
}

.tracking-page aside ol {
  margin-block-start: 24px;
  border-top: 1px solid var(--sand-200);
}

.tracking-page aside li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding-block: 22px;
  border-bottom: 1px solid var(--sand-200);
}

.tracking-page aside li > span {
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}

.tracking-page aside b {
  display: block;
  color: var(--ink-900);
}

.tracking-page aside p {
  color: var(--muted-ink);
  font-size: 15px;
}

.review-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  max-width: 880px;
  margin-block-end: 46px;
  padding: 24px;
  border-block: 1px solid var(--sand-200);
}

.review-ledger {
  border-top: 1px solid var(--sand-200);
}

.review-ledger article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 32px;
  padding-block: 44px;
  border-bottom: 1px solid var(--sand-200);
}

.review-ledger article.is-featured {
  margin-block: 18px 28px;
  padding-inline: clamp(26px, 4vw, 56px);
  color: var(--paper-0);
  border: 0;
  border-inline-start: 5px solid var(--brand-orange);
  background: var(--brand-navy);
}

.review-ledger article.is-featured h2,
.review-ledger article.is-featured dd,
.review-ledger article.is-featured .review-customer {
  color: var(--paper-0);
}

.review-ledger article.is-featured blockquote,
.review-ledger article.is-featured dt {
  color: rgb(255 255 255 / 76%);
}

.review-ledger article.is-featured dl,
.review-ledger article.is-featured dl > div {
  border-color: rgb(255 255 255 / 18%);
}

.review-ledger__featured-label {
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 500;
}

.review-ledger article[hidden] {
  display: none;
}

.review-ledger article > span {
  color: var(--orange-700);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.review-ledger h2 {
  margin-block-start: 8px;
  color: var(--ink-900);
  font-size: 28px;
}

.review-ledger blockquote {
  max-width: 760px;
  margin-block-start: 12px;
  color: var(--muted-ink);
}

.review-ledger dl {
  border-top: 1px solid var(--sand-200);
}

.review-ledger dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding-block: 9px;
  border-bottom: 1px solid var(--sand-200);
  font-size: 13px;
}

.review-ledger dt {
  color: var(--muted-ink);
}

.review-ledger dd {
  color: var(--ink-900);
  font-weight: 500;
}

.empty-state {
  padding: 26px;
  color: var(--muted-ink);
  border: 1px solid var(--sand-200);
}

.faq-page aside h2 {
  margin-block-start: 14px;
  color: var(--ink-900);
  font-size: 37px;
  line-height: 1.2;
}

.faq-page aside nav {
  margin-block-start: 28px;
  border-top: 1px solid var(--sand-200);
}

.faq-page aside nav a {
  display: block;
  padding-block: 12px;
  color: var(--muted-ink);
  border-bottom: 1px solid var(--sand-200);
  font-size: 14px;
}

.faq-page aside nav a:hover {
  color: var(--orange-700);
}

.about-story {
  background: var(--paper-0);
}

.about-story .container {
  position: relative;
}

.about-story__line {
  position: absolute;
  inset: 0 66px 0 auto;
  width: 2px;
  background: var(--sand-200);
}

.about-story article {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
  min-height: 380px;
  padding-block: 50px;
  border-bottom: 1px solid var(--sand-200);
}

.about-story article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: var(--ink-900);
  border: 2px solid var(--brand-orange);
  border-radius: 50%;
  background: var(--paper-0);
}

.about-story h2 {
  color: var(--ink-900);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

.about-story p {
  margin-block-start: 18px;
  color: var(--muted-ink);
}

.about-story__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 5px;
}

.contact-dispatch__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.contact-direct {
  position: sticky;
  top: 120px;
}

.contact-number {
  display: block;
  margin-block-end: 22px;
  color: var(--ink-900);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.contact-direct > .button {
  margin: 0 0 10px 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--sand-200);
  border-radius: 6px;
  background: var(--paper-0);
  box-shadow: 0 30px 80px rgb(11 37 69 / 10%);
}

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

.legal-hero {
  padding-block: 180px 90px;
  color: var(--paper-0);
  background: var(--ink-900);
}

.legal-hero h1 {
  margin-block-start: 16px;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 1;
}

.legal-hero p {
  max-width: 700px;
  margin-block-start: 22px;
  color: rgb(255 255 255 / 70%);
  font-size: 20px;
}

.legal-hero > .container > span {
  display: block;
  margin-block-start: 28px;
  color: var(--brand-gold);
  font-size: 13px;
}

.legal-document > .container {
  display: grid;
  grid-template-columns: minmax(240px, .45fr) minmax(0, 1.55fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.legal-document nav {
  position: sticky;
  top: 120px;
  border-top: 1px solid var(--sand-200);
}

.legal-document nav p,
.legal-document nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--sand-200);
}

.legal-document nav p {
  color: var(--ink-900);
  font-weight: 500;
}

.legal-document nav a {
  color: var(--muted-ink);
  font-size: 14px;
}

.legal-document nav a:hover {
  color: var(--orange-700);
}

.legal-document nav span {
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}

.legal-document article {
  position: relative;
  padding: 0 70px 58px 0;
  margin-block-end: 58px;
  border-bottom: 1px solid var(--sand-200);
}

.legal-document article > span {
  position: absolute;
  inset: 0 0 auto auto;
  color: var(--orange-700);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.legal-document h2 {
  color: var(--ink-900);
  font-size: 34px;
}

.legal-document article p {
  max-width: 760px;
  margin-block-start: 16px;
  color: var(--muted-ink);
  font-size: 18px;
}

/* Secondary-page editorial system */
.inner-hero > figure picture {
  display: contents;
}

.inner-hero__actions {
  align-items: center;
}

.hero-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 10px;
  color: var(--paper-0);
  border-block-end: 1px solid rgb(255 255 255 / 44%);
  font-weight: 500;
  transition-property: color, border-color;
  transition-duration: var(--motion-state);
}

.hero-text-link:hover {
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.inner-route-card {
  position: absolute;
  z-index: 3;
  inset: 68px var(--gutter) auto auto;
  width: min(320px, 25vw);
  padding: 18px 20px;
  color: var(--brand-navy);
  border-block-start: 3px solid var(--brand-orange);
  background: var(--paper-0);
  box-shadow: 0 24px 70px rgb(11 37 69 / 24%);
}

.inner-route-card > span,
.inner-route-card > small {
  display: block;
  color: var(--muted-ink);
  font-size: 11px;
  letter-spacing: .08em;
}

.inner-route-card b {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 8px 5px;
  font-size: 21px;
}

.inner-route-card b .icon {
  color: var(--brand-orange);
}

.inner-hero--stone-threshold .inner-route-card,
.inner-hero--scan-record .inner-route-card {
  inset: auto auto 52px var(--gutter);
}

.inner-hero--gate-route .inner-route-card,
.inner-hero--regional-load .inner-route-card {
  inset: 72px auto auto var(--gutter);
}

/* Route/service summary stays opposite the RTL copy at every desktop width. */
:is(.inner-hero--city, .inner-hero--service) .inner-route-card {
  inset: 64px auto auto var(--gutter);
  width: clamp(240px, 22vw, 300px);
}

@media (min-width: 769px) {
  .header-call {
    color: var(--brand-navy);
    background: var(--brand-orange);
  }

  .header-call:hover {
    color: var(--brand-navy);
    background: var(--brand-orange);
  }

  .header-call small {
    color: rgb(11 37 69 / 72%);
  }

  :is(.inner-hero--city, .inner-hero--service) .inner-hero__content h1 {
    width: min(760px, calc(100% - 340px));
    margin-inline-end: auto;
    font-size: clamp(48px, 5.8vw, 84px);
    line-height: 1.04;
  }

  :is(.inner-hero--city, .inner-hero--service) .inner-hero__content > p {
    width: min(680px, calc(100% - 340px));
    margin-inline-end: auto;
  }
}

.inner-hero--furniture-stage .inner-hero__image {
  object-position: 50% 42%;
}

.inner-hero--appliance-frame .inner-hero__image,
.inner-hero--carton-ledger .inner-hero__image,
.inner-hero--packing-detail .inner-hero__image {
  object-position: center;
}

.route-steps {
  color: var(--paper-0);
  background: var(--brand-navy);
}

.route-steps .container {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 100px);
  padding-block: clamp(68px, 8vw, 112px);
}

.route-steps__heading h2 {
  max-width: 430px;
  margin-block-start: 15px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.12;
}

.route-steps ol {
  border-block-start: 1px solid rgb(255 255 255 / 16%);
}

.route-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-block: 18px;
  border-block-end: 1px solid rgb(255 255 255 / 16%);
}

.route-steps li > span {
  color: var(--brand-orange);
  font-variant-numeric: tabular-nums;
}

.route-steps li b,
.route-steps li small {
  display: block;
}

.route-steps li small {
  margin-block-start: 3px;
  color: rgb(255 255 255 / 68%);
}

.route-steps .container > a {
  grid-column: 2;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-0);
  border-block-end: 1px solid rgb(255 255 255 / 28%);
}

.route-steps .container > a .icon:last-child {
  margin-inline-start: auto;
  color: var(--brand-orange);
}

.service-preparation .article-pair,
.coverage-handoff .article-pair {
  grid-template-columns: repeat(3, 1fr);
}

.service-preparation .article-pair article,
.coverage-handoff .article-pair article {
  min-height: 390px;
}

.city-dispatch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-coverage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.city-coverage__link {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px;
  color: var(--paper-0);
  border-inline-start: 5px solid var(--brand-orange);
  background: var(--brand-navy);
}

.city-coverage__link > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  border: 1px solid rgb(255 255 255 / 18%);
}

.city-coverage__link b,
.city-coverage__link small {
  display: block;
}

.city-coverage__link small {
  margin-block-start: 5px;
  color: rgb(255 255 255 / 66%);
}

.related-routes {
  background: var(--paper-50);
}

.related-routes__head {
  max-width: 780px;
}

.related-routes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(34px, 6vw, 80px);
  margin-block-start: 48px;
}

.related-routes__grid > div {
  border-block-start: 3px solid var(--brand-orange);
}

.related-routes__grid h3,
.related-routes__grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-block-end: 1px solid var(--sand-200);
}

.related-routes__grid h3 {
  color: var(--muted-ink);
  font-size: 14px;
}

.related-routes__grid a {
  color: var(--brand-navy);
  font-size: 18px;
  font-weight: 500;
}

.related-routes__grid a .icon {
  margin-inline-start: auto;
  color: var(--brand-orange);
}

.page-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.coverage-directory__intro {
  max-width: 780px;
}

.coverage-directory__bands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block-start: 52px;
  border-block: 1px solid var(--sand-200);
}

.coverage-directory__bands article {
  min-height: 280px;
  padding: 30px;
  border-inline-start: 1px solid var(--sand-200);
}

.coverage-directory__bands article:first-child {
  border-inline-start: 0;
}

.coverage-directory__bands span {
  color: var(--brand-orange);
}

.coverage-directory__bands h2 {
  margin-block-start: 58px;
  color: var(--brand-navy);
  font-size: 28px;
}

.coverage-directory__bands p {
  margin-block-start: 13px;
  color: var(--muted-ink);
  font-size: 15px;
}

.coverage-origin .container {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
  gap: clamp(48px, 8vw, 110px);
}

.coverage-origin__cities {
  border-block-start: 1px solid var(--sand-200);
}

.coverage-origin__cities a {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border-block-end: 1px solid var(--sand-200);
}

.coverage-origin__cities a > .icon:first-child,
.coverage-origin__cities a > .icon:last-child {
  color: var(--brand-orange);
}

.coverage-origin__cities b,
.coverage-origin__cities small {
  display: block;
}

.coverage-origin__cities b {
  color: var(--brand-navy);
}

.coverage-origin__cities small {
  margin-block-start: 5px;
  color: var(--muted-ink);
  font-size: 13px;
}

.review-customer {
  margin-block-start: 16px;
  color: var(--brand-navy);
  font-weight: 500;
}

.site-footer {
  padding-block: 78px 24px;
  color: rgb(255 255 255 / 68%);
  background: var(--ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .7fr);
  gap: clamp(32px, 6vw, 80px);
}

.footer-brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer .brand-logo--footer {
  width: min(100%, var(--nm-logo-width, 220px));
  min-height: 0;
  height: auto;
  display: block;
  justify-content: flex-start;
  overflow: visible;
  line-height: normal;
  border-radius: 0;
  background: transparent;
}

.site-footer .brand-logo--footer .brand-logo__crop,
.site-footer .brand-logo--footer .brand-logo__crop picture {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.site-footer .brand-logo--footer .brand-logo__crop img {
  position: static;
  inset: auto;
  width: var(--nm-logo-width, 220px);
  max-width: 100%;
  max-height: var(--nm-logo-max-height, none);
  height: auto !important;
  display: block;
  object-fit: contain;
  transform: none;
}

.footer-brand > p {
  max-width: 370px;
  margin: 24px 0 0;
}

.footer-phone {
  display: inline-block;
  margin: 24px 0 0;
  color: var(--paper-0);
  font-size: 25px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.footer-grid h2 {
  margin-block-end: 20px;
  color: var(--paper-0);
  font-size: 16px;
}

.footer-grid li + li {
  margin-block-start: 9px;
}

.footer-grid a:not(.brand-logo, .footer-phone) {
  font-size: 14px;
  transition: color var(--motion-state);
}

.footer-grid a:not(.brand-logo, .footer-phone):hover {
  color: var(--brand-gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-block-start: 58px;
  padding-block-start: 22px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 12px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgb(255 255 255 / 74%);
  white-space: nowrap;
}

.footer-credit a {
  min-width: 92px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 5px;
  transition-property: opacity, transform, box-shadow;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  opacity: .86;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 18%);
}

.footer-credit a:active {
  scale: .96;
}

.footer-credit img {
  width: 84px;
  height: auto;
  background: transparent;
  outline: 0;
}

.mobile-dock {
  display: none;
}

.floating-actions {
  position: fixed;
  z-index: 82;
  inset: auto;
  inset-inline-end: max(var(--floating-inline-offset, 24px), env(safe-area-inset-left));
  inset-block-end: max(var(--floating-block-offset, 24px), env(safe-area-inset-bottom));
  display: grid;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgb(11 37 69 / 10%);
  border-radius: 18px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 18px 44px rgb(11 37 69 / 18%);
  backdrop-filter: blur(12px);
}

.floating-actions a {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper-0);
  border: 1px solid transparent;
  border-radius: 13px;
  box-shadow: none;
  isolation: isolate;
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.floating-actions a:hover {
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgb(11 37 69 / 20%);
}

.floating-actions a:focus-visible {
  outline: 3px solid var(--paper-0);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--brand-orange), 0 10px 24px rgb(11 37 69 / 20%);
}

.floating-actions a:active {
  transform: scale(.94);
}

.floating-actions__phone {
  background: var(--brand-orange);
}

.floating-actions__whatsapp {
  border-color: rgb(19 117 71 / 20%) !important;
  background: var(--paper-0);
}

.floating-actions__tracking {
  background: var(--brand-navy);
}

.floating-actions .action-icon,
.mobile-dock .action-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  background: transparent;
  pointer-events: none;
}

.floating-actions :is(.action-icon--phone, .action-icon--tracking),
.mobile-dock :is(.action-icon--phone, .action-icon--tracking) {
  filter: brightness(0) invert(1);
}

.floating-actions .action-icon--whatsapp {
  width: 27px;
  height: 27px;
}

.floating-actions a span {
  position: absolute;
  inset: 50% auto auto calc(100% + 10px);
  min-width: max-content;
  padding: 7px 10px;
  color: var(--paper-0);
  border-radius: 4px;
  background: var(--ink-950);
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translate(-5px, -50%);
  transition-property: opacity, transform;
  transition-duration: var(--motion-state);
  transition-timing-function: var(--ease-out);
}

.floating-actions a:hover span,
.floating-actions a:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: var(--motion-reveal);
  transition-timing-function: var(--ease-out);
}

.js .hero__content > * {
  opacity: 0;
  transform: translateY(18px);
}

.js .hero.is-ready .hero__content > * {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: var(--ease-out);
}

.js .hero.is-ready .hero__content > :nth-child(2) { transition-delay: 80ms; }
.js .hero.is-ready .hero__content > :nth-child(3) { transition-delay: 150ms; }
.js .hero.is-ready .hero__content > :nth-child(4) { transition-delay: 220ms; }
.js .hero.is-ready .hero__content > :nth-child(5) { transition-delay: 290ms; }

.js .hero__route path[data-route-path] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.js .hero.is-ready .hero__route path[data-route-path] {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-duration: 1050ms;
  transition-timing-function: var(--ease-out);
}

.js .hero__route circle {
  opacity: 0;
  transform: scale(.65);
}

.js .hero.is-ready .hero__route circle {
  opacity: 1;
  transform: scale(1);
  transition-property: opacity, transform;
  transition-duration: 260ms;
  transition-delay: 880ms;
  transition-timing-function: var(--ease-out);
}

@media (min-width: 1180px) {
  .service-editorial {
    grid-template-columns: 1.06fr .94fr 300px;
  }

  .service-feature--tall {
    grid-column: 1;
  }

  .service-feature--wide {
    grid-column: 2;
  }

  .service-index {
    grid-column: 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-inline-start: 22px;
  }
}

@media (max-width: 1179px) {
  .header-main {
    grid-template-columns: 172px 1fr auto;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a:nth-of-type(3),
  .primary-nav > a:nth-of-type(4) {
    display: none;
  }

  .brand-logo__crop,
  .brand-logo__crop img {
    width: 164px;
  }

  .hero-label {
    right: auto;
    left: var(--gutter);
  }

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

  .route-ledger__track > div {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .route-map {
    grid-template-columns: minmax(250px, .8fr) minmax(160px, .8fr) minmax(250px, .8fr);
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(74px, 10vw, 110px);
  }

  body {
    font-size: 17px;
  }

  .header-main {
    grid-template-columns: 150px 1fr auto;
  }

  .primary-nav {
    gap: 12px;
    font-size: 14px;
  }

  .primary-nav > a:nth-of-type(2) {
    display: none;
  }

  .brand-logo__crop,
  .brand-logo__crop img {
    width: 144px;
  }

  .hero__content h1 {
    max-width: 650px;
  }

  .hero-label {
    inset: 118px auto auto var(--gutter);
    width: min(246px, 38vw);
    padding: 15px 17px 14px;
    transform: rotate(1deg);
  }

  .journey__layout {
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: 44px;
  }

  .journey-stage {
    height: calc(100vh - 100px);
  }

  .packing-anatomy__layout {
    grid-template-columns: 1fr;
  }

  .packing-notes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .packing-notes li {
    border-inline-start: 1px solid var(--sand-200);
  }

  .packing-notes button {
    grid-template-columns: 1fr;
  }

  .packing-notes span {
    grid-row: auto;
  }

  .packing-notes small {
    display: none;
  }

  .route-map {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .route-map svg {
    height: 100px;
    transform: rotate(6deg);
  }

  .tracking-scene__copy {
    width: min(680px, 70%);
  }

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

  .review-feature figure {
    min-height: 460px;
  }

  .duration-section__grid,
  .faq-preview__grid,
  .faq-page__grid,
  .editorial-detail__grid,
  .city-dispatch__grid,
  .city-cargo,
  .city-coverage__grid,
  .page-faq__grid,
  .coverage-origin .container,
  .tracking-page__grid,
  .contact-dispatch__grid,
  .legal-document > .container {
    grid-template-columns: 1fr;
  }

  .route-steps .container {
    grid-template-columns: 1fr;
  }

  .route-steps .container > a {
    grid-column: 1;
  }

  .service-preparation .article-pair,
  .coverage-handoff .article-pair {
    grid-template-columns: 1fr;
  }

  .service-preparation .article-pair article,
  .coverage-handoff .article-pair article {
    min-height: 0;
  }

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

  .faq-preview__intro,
  .faq-page aside,
  .contact-direct,
  .legal-document nav {
    position: static;
  }

  .process-rail .container {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 18px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .site-header {
    --mobile-nav-top: calc(env(safe-area-inset-top) + 98px);
    --mobile-nav-bottom: max(12px, env(safe-area-inset-bottom));
    padding-block-start: env(safe-area-inset-top);
  }

  .site-header.is-scrolled {
    --mobile-nav-top: calc(env(safe-area-inset-top) + 70px);
  }

  .route-bar {
    height: 28px;
  }

  .route-bar__inner {
    justify-content: center;
    font-size: 11px;
  }

  .route-bar a,
  .route-bar p .icon {
    display: none;
  }

  .header-main {
    z-index: 103;
    width: calc(100% - 24px);
    height: 62px;
    grid-template-columns: 132px auto 1fr;
    gap: 10px;
    margin-block-start: 8px;
    padding-inline: 8px 10px;
    color: var(--paper-0);
    border-color: rgb(255 255 255 / 10%);
    background: rgb(11 37 69 / 96%);
    box-shadow: 0 18px 48px rgb(11 37 69 / 30%);
  }

  .site-header.is-scrolled .header-main {
    background: rgb(11 37 69 / 98%);
  }

  body.menu-open .site-header.is-scrolled .header-main {
    position: fixed;
    inset: calc(env(safe-area-inset-top) + 8px) 12px auto;
    width: auto;
    margin: 0;
    transform: none;
  }

  .header-main .brand-logo {
    min-height: 50px;
    overflow: visible;
    background: transparent;
  }

  .header-main .brand-logo__crop {
    position: relative;
    width: 132px;
    height: 50px;
    overflow: visible;
  }

  .header-main .brand-logo__crop picture {
    display: block;
  }

  .header-main .brand-logo__crop img {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 152px;
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: translate(-50%, -50%);
    background: transparent;
  }

  .menu-toggle {
    position: relative;
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    color: var(--ink-900);
    border-radius: 5px;
    background: var(--paper-50);
    transition-property: scale, background-color;
    transition-duration: 150ms;
    transition-timing-function: var(--ease-out);
  }

  .menu-toggle:active {
    scale: .96;
  }

  .menu-toggle__icons {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
  }

  .menu-toggle__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition-property: opacity, scale, filter;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(.2, 0, 0, 1);
  }

  .menu-toggle__icon--open,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
    opacity: 1;
    scale: 1;
    filter: blur(0);
  }

  .menu-toggle__icon--close,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
    opacity: 0;
    scale: .25;
    filter: blur(4px);
  }

  .header-call {
    min-width: 44px;
    min-height: 44px;
    justify-self: end;
    padding: 9px;
  }

  .header-call span {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 102;
    inset: var(--mobile-nav-top) 0 var(--mobile-nav-bottom) auto;
    width: min(88vw, 360px);
    height: calc(100dvh - var(--mobile-nav-top) - var(--mobile-nav-bottom));
    max-height: calc(100dvh - var(--mobile-nav-top) - var(--mobile-nav-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 18px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    color: var(--paper-0);
    border-inline-end: 1px solid rgb(255 255 255 / 9%);
    background: rgb(11 37 69 / 98%);
    box-shadow: -22px 0 55px rgb(0 0 0 / 28%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    white-space: normal;
    scrollbar-width: thin;
    scrollbar-color: rgb(255 255 255 / 24%) transparent;
    transition-property: opacity, transform, visibility;
    transition-duration: 160ms, 180ms, 0ms;
    transition-timing-function: var(--ease-out);
    transition-delay: 0ms, 0ms, 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0ms;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 101;
    inset: var(--mobile-nav-top) 0 var(--mobile-nav-bottom);
    display: block;
    border: 0;
    background: rgb(11 37 69 / 58%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-property: opacity, visibility;
    transition-duration: 160ms, 0ms;
    transition-timing-function: var(--ease-out);
    transition-delay: 0ms, 160ms;
  }

  body.menu-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0ms;
  }

  .primary-nav > a,
  .nav-group > summary {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding-inline: 4px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 18px;
    line-height: 1.5;
  }

  .primary-nav > a:nth-of-type(2),
  .primary-nav > a:nth-of-type(3),
  .primary-nav > a:nth-of-type(4) {
    display: flex;
  }

  .primary-nav > a::after,
  .nav-group > summary::after {
    display: none;
  }

  .nav-sheet {
    position: static;
    display: block;
    padding: 0 12px 14px 0;
    color: var(--paper-0);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-sheet__intro {
    display: none;
  }

  .nav-sheet > div {
    grid-template-columns: 1fr;
  }

  .nav-sheet a {
    min-height: 48px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-block: 8px;
    border-color: rgb(255 255 255 / 10%);
    white-space: normal;
  }

  .nav-sheet a span {
    min-width: 0;
    text-wrap: pretty;
  }

  .nav-sheet a:hover,
  .nav-sheet a[aria-current="page"] {
    color: var(--brand-gold);
    background: rgb(255 255 255 / 5%);
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .mobile-nav-backdrop {
    display: none;
  }

  .no-js .site-header {
    position: relative;
    background: var(--paper-0);
  }

  .no-js .header-main {
    height: auto;
    grid-template-columns: 132px 1fr;
    align-items: start;
    padding-block-end: 12px;
    transform: none;
  }

  .no-js .primary-nav {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    display: block;
    padding: 8px 0 0;
    color: var(--ink-900);
    background: var(--paper-0);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .no-js .primary-nav > a,
  .no-js .nav-group > summary {
    min-height: 48px;
    color: var(--ink-900);
    border-color: var(--sand-200);
    font-size: 17px;
  }

  .no-js .nav-sheet {
    color: var(--ink-900);
  }

  .no-js .header-call {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-block-end: 70px;
  }

  .site-header {
    --mobile-nav-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: 790px;
  }

  .hero__image {
    object-position: 39% center;
  }

  .hero__veil {
    background: linear-gradient(to top, rgb(11 37 69 / 97%) 0%, rgb(11 37 69 / 80%) 52%, rgb(11 37 69 / 18%) 100%);
  }

  .hero__content {
    min-height: 790px;
    justify-content: flex-end;
    padding-block: 160px 78px;
  }

  .hero__content h1 {
    font-size: clamp(48px, 12.5vw, 58px);
    line-height: 1.04;
  }

  .hero__content > p:not(.eyebrow, .hero__phone) {
    font-size: 17px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 150px;
  }

  .hero__phone,
  .hero__scroll {
    display: none;
  }

  .hero__route {
    height: 20%;
    opacity: .6;
  }

  .hero-label {
    inset: 110px auto auto var(--gutter);
    width: min(238px, calc(100vw - (var(--gutter) * 2)));
    padding: 13px 15px 12px;
  }

  .hero-label strong {
    font-size: 17px;
  }

  .hero-label p,
  .hero-label__code {
    display: none;
  }

  .route-ledger__track {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .route-ledger__track > div {
    min-height: 104px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 11.5vw, 55px);
  }

  .service-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .service-feature,
  .service-feature--tall,
  .service-feature--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 500px;
  }

  .service-feature--wide {
    min-height: 360px;
  }

  .service-feature__caption {
    padding: 28px;
  }

  .service-index {
    display: flex;
    flex-direction: column;
    padding-block-start: 24px;
  }

  .journey {
    padding-block-end: var(--section-space);
  }

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

  .journey__progress,
  .journey-stage {
    display: none;
  }

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

  .journey-chapter {
    min-height: 0;
    padding-block: 54px;
    color: var(--paper-0);
  }

  .journey-chapter p {
    color: rgb(255 255 255 / 70%);
  }

  .journey-chapter__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    margin-block-start: 27px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 5px;
  }

  .packing-figure {
    min-height: 410px;
  }

  .packing-figure__image {
    object-position: 44% center;
  }

  .packing-pin {
    width: 38px;
    height: 38px;
  }

  .packing-notes {
    grid-template-columns: 1fr;
  }

  .packing-notes li {
    border-inline-start: 0;
  }

  .packing-notes button {
    min-height: 78px;
    grid-template-columns: 36px 1fr;
  }

  .packing-notes small {
    display: block;
  }

  .coverage-theater {
    min-height: 820px;
  }

  .route-map svg {
    height: 74px;
  }

  .tracking-scene {
    min-height: 840px;
    align-items: end;
  }

  .tracking-scene__image {
    object-position: 36% top;
  }

  .tracking-scene__veil {
    background: linear-gradient(to top, rgb(11 37 69 / 98%) 0%, rgb(11 37 69 / 90%) 58%, rgb(11 37 69 / 16%) 100%);
  }

  .tracking-scene__content {
    padding-block: 290px 70px;
  }

  .tracking-scene__copy {
    width: 100%;
  }

  .tracking-scene__copy h2 {
    font-size: 52px;
  }

  .tracking-form {
    grid-template-columns: 1fr;
  }

  .tracking-form > .button {
    width: 100%;
  }

  .review-feature {
    min-height: 0;
  }

  .review-feature figure {
    min-height: 390px;
  }

  .review-feature__body {
    padding: 30px 24px 36px;
  }

  .review-feature dl {
    grid-template-columns: 1fr;
  }

  .review-rail {
    grid-auto-columns: 86%;
  }

  .duration-section__grid {
    gap: 50px;
  }

  .duration-number b {
    font-size: 135px;
  }

  .duration-copy ul {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 80px;
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
  }

  .faq-list summary b {
    font-size: 17px;
  }

  .faq-list details > div {
    padding-inline-start: 40px;
  }

  .final-handoff {
    min-height: 720px;
    align-items: end;
  }

  .final-handoff__image {
    object-position: 48% center;
  }

  .final-handoff__veil {
    background: linear-gradient(to top, rgb(11 37 69 / 97%) 0%, rgb(11 37 69 / 72%) 60%, rgb(11 37 69 / 12%) 100%);
  }

  .final-handoff__content {
    padding-block: 260px 74px;
  }

  .final-handoff__content h2 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .final-handoff__content > div {
    display: grid;
  }

  .breadcrumb {
		margin-block-end: -46px;
		padding: 108px var(--gutter) 14px;
		font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .inner-hero {
    min-height: 700px;
    align-items: end;
  }

  .inner-hero__image {
    object-position: 42% center;
  }

  .inner-hero__veil {
    background: linear-gradient(to top, rgb(11 37 69 / 96%) 0%, rgb(11 37 69 / 76%) 55%, rgb(11 37 69 / 16%) 100%);
  }

  .inner-hero__content {
    padding-block: 260px 58px;
  }

  .inner-hero__content h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .inner-hero__content > p {
    font-size: 17px;
  }

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

  .inner-hero__actions .button,
  .inner-hero__actions .hero-text-link {
    width: 100%;
    justify-content: center;
  }

  .inner-hero__actions .hero-text-link {
    grid-column: 1 / -1;
  }

  .inner-route-card {
    inset: 118px var(--gutter) auto auto !important;
    width: min(270px, calc(100vw - (var(--gutter) * 2)));
    padding: 13px 15px;
  }

  .inner-route-card b {
    min-height: 38px;
    font-size: 17px;
  }

  .inner-route-card > small {
    display: none;
  }

  .process-rail {
    overflow-x: auto;
  }

  .process-rail .container {
    min-width: 620px;
  }

  .process-rail p {
    display: none;
  }

  .editorial-detail__figure figcaption {
    width: calc(100% - 28px);
    margin-block-start: -25px;
  }

  .article-pair {
    grid-template-columns: 1fr;
  }

  .article-pair article,
  .article-pair article:first-child {
    min-height: 0;
    border-inline-start: 0;
    border-bottom: 1px solid var(--sand-200);
  }

  .route-steps .container {
    gap: 34px;
    padding-block: 64px;
  }

  .route-steps__heading h2 {
    font-size: 39px;
  }

  .related-routes__grid,
  .coverage-directory__bands {
    grid-template-columns: 1fr;
  }

  .coverage-directory__bands article,
  .coverage-directory__bands article:first-child {
    min-height: 0;
    border-inline-start: 0;
    border-block-end: 1px solid var(--sand-200);
  }

  .coverage-directory__bands h2 {
    margin-block-start: 24px;
  }

  .coverage-origin__cities a {
    min-height: 112px;
  }

  .city-coverage__link {
    min-height: 132px;
    padding: 22px;
  }

  .city-cargo__list a {
    min-height: 96px;
    grid-template-columns: 34px 1fr auto;
  }

  .city-cargo__list small {
    display: none;
  }

  .tracking-page .tracking-form {
    padding: 22px;
  }

  .review-filters,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .review-filters .button,
  .field--full {
    grid-column: 1;
  }

  .review-ledger article {
    grid-template-columns: 34px 1fr;
    gap: 15px;
  }

  .review-ledger article dl {
    grid-column: 2;
  }

  .about-story__line {
    inset-inline-end: 20px;
  }

  .about-story article {
    grid-template-columns: 55px 1fr;
    min-height: 0;
  }

  .about-story article figure {
    grid-column: 2;
  }

  .contact-form {
    padding: 24px;
  }

  .legal-hero {
    padding-block: 150px 70px;
  }

  .legal-document article {
    padding-inline-start: 0;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-credit {
    justify-content: flex-start;
  }

  .mobile-dock {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 7px max(7px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
    background: rgb(11 37 69 / 97%);
    box-shadow: 0 -14px 40px rgb(11 37 69 / 24%);
    backdrop-filter: blur(12px);
  }

  .floating-actions {
    display: none;
  }

  .mobile-dock .button {
    min-height: 48px;
    gap: 7px;
    padding: 7px 6px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: none;
  }

  .mobile-dock .button:hover {
    transform: none;
  }

  .mobile-dock .button:focus-visible {
    outline: 2px solid var(--paper-0);
    outline-offset: 2px;
  }

  .mobile-dock .button:active {
    transform: scale(.96);
  }

  .mobile-dock .action-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-actions a,
  .floating-actions a span,
  .mobile-dock .button {
    transition: none;
  }

  .floating-actions a:hover,
  .floating-actions a:active,
  .mobile-dock .button:active {
    transform: none;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .hero,
  .hero__content {
    min-height: 820px;
  }

  .hero__content {
    padding-block: 128px 24px;
  }

  .hero__actions {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 600px) {
  .hero__image {
    object-position: 29% center;
  }
}

@media (max-width: 380px) {
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }
}

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

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

  .js [data-reveal],
  .js .hero__content > *,
  .js .journey-stage__image {
    opacity: 1;
    transform: none;
  }

  .js .hero__route path[data-route-path] {
    stroke-dashoffset: 0;
  }

  .js .hero__route circle {
    opacity: 1;
    transform: none;
  }

  .hero__scroll,
  .hero__scroll i {
    transition: none !important;
  }
}


