:root {
  --bg: #163f62;
  --bg-soft: #568683;
  --panel: rgba(26, 71, 99, 0.84);
  --panel-strong: rgba(21, 60, 87, 0.95);
  --line: rgba(141, 180, 55, 0.24);
  --line-strong: rgba(141, 180, 55, 0.55);
  --accent: #8db437;
  --accent-soft: #c9e06b;
  --text: #f5f7fa;
  --muted: #b8c2cc;
  --shadow: 0 30px 80px rgba(8, 28, 45, 0.34);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --content-width: min(1180px, calc(100vw - 3rem));
  --progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86, 134, 131, 0.34), transparent 34%),
    radial-gradient(circle at top right, rgba(34, 83, 127, 0.3), transparent 30%),
    radial-gradient(circle at 8% 24%, rgba(141, 180, 55, 0.14), transparent 18%),
    linear-gradient(180deg, #214f74 0%, #568683 48%, #22537f 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 36rem;
  height: 36rem;
  left: -14rem;
  top: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 180, 55, 0.12), transparent 68%);
  filter: blur(10px);
}

.page-shell::after {
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 83, 127, 0.18), transparent 72%);
  filter: blur(18px);
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 7rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: var(--content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.7rem, 1.8vw, 1.5rem);
  padding: 1.6rem 0 1.1rem;
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  min-width: 0;
  flex: 0 1 auto;
}

.brand-logo,
.footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo {
  height: clamp(2.55rem, 5vw, 3.35rem);
  flex: 0 0 auto;
}

.footer-logo {
  height: 3.2rem;
}

.brand-mark {
  font-size: clamp(1.85rem, 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.brand-wordmark,
.footer-brand strong {
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 500;
  letter-spacing: clamp(0.08em, 0.18vw, 0.12em);
}

.brand-wordmark {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  color: rgba(245, 247, 250, 0.9);
}

.site-nav a,
.footer-links a,
.footer-bottom a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.footer-bottom a:hover,
.service-copy a:hover,
.button-text:hover,
.header-cta:hover {
  color: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 0.55rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  min-height: 3.2rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(141, 180, 55, 0.7);
  color: var(--accent-soft);
}

.menu-button {
  width: 3rem;
  height: 3rem;
  display: none;
  place-items: center;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  z-index: 35;
}

.menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.menu-button span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-button span:nth-child(3) {
  transform: translate(-50%, 5px);
}

.hero-scroll {
  position: relative;
  height: 680vh;
  --progress: 0%;
  --hero-copy-opacity: 1;
  --hero-copy-body-opacity: 1;
  --hero-copy-shift: 0px;
  --hero-copy-body-shift: 0px;
  --hero-copy-scale: 1;
}

.hero-shell {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero-stage {
  --hero-gutter: max(1.35rem, calc((100vw - var(--content-width)) / 2));
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 7.2rem var(--hero-gutter) 2.2rem;
  overflow: clip;
  background: linear-gradient(160deg, rgba(24, 67, 95, 0.86), rgba(26, 73, 103, 0.58));
  isolation: isolate;
}

.services-section,
.closing-section {
  width: var(--content-width);
  margin: 0 auto;
}

.hero-stage::before,
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 8% 45% 6% -4%;
  background:
    radial-gradient(circle at 10% 90%, rgba(141, 180, 55, 0.24), transparent 12%),
    radial-gradient(circle at 38% 78%, rgba(141, 180, 55, 0.18), transparent 5%),
    linear-gradient(125deg, transparent 15%, rgba(141, 180, 55, 0.22) 15.4%, transparent 16%) no-repeat;
  opacity: 0.38;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 1;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 48%;
  bottom: 12%;
  height: 14rem;
  background-image:
    radial-gradient(circle, rgba(141, 180, 55, 0.68) 0 3px, transparent 4px),
    linear-gradient(112deg, transparent 0 14%, rgba(141, 180, 55, 0.5) 15%, transparent 16% 27%, rgba(86, 134, 131, 0.4) 28%, transparent 29% 62%, rgba(34, 83, 127, 0.28) 63%, transparent 64%);
  background-repeat: no-repeat;
  background-position: 0 100%, center;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero-copy-scroll {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  width: min(50rem, calc(100% - 7rem));
  min-height: 34rem;
  margin-inline: 0;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-shift), 0) scale(var(--hero-copy-scale));
  transform-origin: left center;
  transition:
    margin 220ms ease,
    opacity 120ms linear,
    transform 120ms linear;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-copy-scroll[data-active-slide="primary"],
.hero-copy-scroll[data-active-slide="secondary"],
.hero-copy-scroll[data-active-slide="detail"],
.hero-copy-scroll[data-active-slide="septenary"] {
  margin-inline: auto;
}

.hero-copy-scroll[data-active-slide="septenary"] {
  width: min(84rem, calc(100% - 2rem));
}

.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-self: center;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 560ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s, 0s, 0s;
}

.hero-scroll-title {
  margin: 0;
  max-width: 11.5ch;
  font-size: clamp(3.4rem, 6.1vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(3, 8, 14, 0.38);
}

.hero-scroll-title span {
  display: block;
}

.hero-scroll-title span:first-child {
  color: var(--accent);
}

.hero-slide-copy {
  max-width: 42rem;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.55;
  text-shadow: 0 14px 34px rgba(3, 8, 14, 0.32);
}

.hero-copy-scroll .hero-summary {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: 1.16rem;
  opacity: var(--hero-copy-body-opacity);
  transform: translate3d(0, var(--hero-copy-body-shift), 0);
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.hero-slide-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.42rem, 2.35vw, 2rem);
  line-height: 1.3;
  text-shadow: 0 14px 34px rgba(3, 8, 14, 0.34);
}

.hero-slide-secondary .hero-slide-copy {
  max-width: 45rem;
  margin-top: 0;
}

.hero-slide-secondary {
  justify-self: center;
  align-items: center;
  text-align: center;
}

.hero-slide-welcome {
  justify-self: center;
  align-items: center;
  text-align: center;
}

.hero-slide-secondary .hero-slide-lead,
.hero-slide-secondary .hero-slide-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-slide-welcome .hero-slide-kicker,
.hero-slide-welcome .hero-slide-heading {
  margin-left: auto;
  margin-right: auto;
}

.hero-slide-actions {
  justify-content: center;
  margin-top: 0.6rem;
  pointer-events: auto;
}

.hero-slide-actions .button {
  pointer-events: auto;
}

.hero-slide-stats {
  width: 100%;
  max-width: none;
}

.hero-slide-stats .hero-stats-slide-card {
  width: 100%;
  padding: clamp(1.35rem, 2.8vw, 2.3rem);
}

.hero-slide-stats .intro-topline {
  align-items: flex-start;
}

.hero-slide-stats .hero-actions,
.hero-slide-stats .hero-actions .button {
  pointer-events: auto;
}

.hero-slide-stats .hero-stats {
  margin-top: 0;
  padding-top: 0.8rem;
}

.hero-slide-stats .hero-stats strong {
  font-size: clamp(2rem, 4.2vw, 4.45rem);
  letter-spacing: -0.04em;
}

.hero-slide-stats .hero-stats span {
  max-width: 9ch;
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
}

.hero-slide-secondary,
.hero-slide-welcome,
.hero-slide-tertiary,
.hero-slide-quaternary {
  max-width: 46rem;
}

.hero-slide-kicker {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-shadow: 0 16px 36px rgba(3, 8, 14, 0.34);
}

.hero-slide-heading {
  margin: -0.1rem 0 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 36px rgba(3, 8, 14, 0.34);
}

.hero-slide-kicker-plain {
  font-size: clamp(1.22rem, 2.2vw, 1.7rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero-slide-heading-brand {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero-slide-copy-strong {
  max-width: 44rem;
  font-size: 1.08rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-slide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.65rem 1.35rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-slide-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.35;
}

.hero-slide-list li::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 180, 55, 0.16);
}

.intro-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem 0 1.75rem;
}

.intro-card {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border: 1px solid rgba(141, 180, 55, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(28, 73, 101, 0.92), rgba(41, 91, 112, 0.68)),
    rgba(27, 71, 98, 0.56);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.intro-card-compact {
  display: grid;
  gap: 1.8rem;
}

.intro-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.intro-topline .hero-actions {
  margin-left: auto;
}

.intro-card-compact .hero-stats {
  margin-top: 0;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-intro {
  margin: 0;
}

.accent-copy {
  color: var(--accent);
}

.hero-summary,
.section-heading p,
.closing-cta p,
.contact-lines span,
.service-copy p,
.process-list p,
.regions-card p,
.metric-list span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-summary {
  max-width: 34rem;
  margin: 1.7rem 0 2.2rem;
  font-size: 1.26rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  min-height: 3.8rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
}

.button svg,
.service-copy a svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-solid {
  background: linear-gradient(135deg, #8db437 0%, #5f9b80 100%);
  color: #163f62;
  box-shadow: 0 16px 36px rgba(141, 180, 55, 0.18);
}

.button-outline {
  border-color: rgba(141, 180, 55, 0.58);
  color: var(--accent-soft);
  background: rgba(25, 67, 95, 0.4);
}

.button-outline:hover {
  border-color: rgba(141, 180, 55, 0.92);
  background: rgba(28, 77, 107, 0.76);
}

.button-text {
  padding-inline: 0;
  min-height: auto;
  color: var(--text);
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.4rem;
}

.hero-stats article {
  position: relative;
  padding-right: 1rem;
}

.hero-stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0;
  bottom: 0.25rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.hero-stats strong,
.metric-list strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  max-width: 10ch;
  margin-top: 0.55rem;
  color: var(--text);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}

.route-marker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin-top: 3rem;
}

.route-pin {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 18%, var(--accent) 24%, rgba(141, 180, 55, 0.24) 68%, transparent 70%);
  box-shadow: 0 0 18px rgba(141, 180, 55, 0.42);
}

.route-line {
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 180, 55, 0.8), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(21, 60, 87, 0.1) 0%, rgba(21, 60, 87, 0.3) 50%, rgba(21, 60, 87, 0.82) 100%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(141, 180, 55, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(22, 63, 98, 0.82) 0%, rgba(22, 63, 98, 0.46) 34%, rgba(22, 63, 98, 0.24) 55%, rgba(34, 83, 127, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 14%),
    linear-gradient(180deg, rgba(22, 63, 98, 0.12), rgba(22, 63, 98, 0.52) 70%, rgba(22, 63, 98, 0.88));
  z-index: 1;
  pointer-events: none;
}

.scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, #8090a0, #394656);
}

.hero-video-meta,
.timeline-rail {
  position: absolute;
  z-index: 2;
}

.hero-video-meta p,
.service-visual strong,
.contact-lines a {
  color: var(--text);
}

.hero-video-meta {
  left: var(--hero-gutter);
  right: calc(var(--hero-gutter) + 3.8rem);
  bottom: 1.9rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-video-meta p {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.meta-bars {
  display: flex;
  gap: 0.5rem;
}

.meta-bars span {
  width: 3rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.meta-bars .is-active {
  background: linear-gradient(90deg, #8db437, #568683);
}

.scrub-state {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

#scrub-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

#scrub-time {
  font-size: 1rem;
}

.timeline-rail {
  top: 20%;
  right: var(--hero-gutter);
  bottom: 16%;
  width: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-track,
.timeline-fill {
  position: absolute;
  top: 2.4rem;
  bottom: 2.4rem;
  width: 2px;
  border-radius: 999px;
}

.timeline-track {
  background: rgba(255, 255, 255, 0.34);
}

.timeline-fill {
  bottom: auto;
  height: var(--progress);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(141, 180, 55, 0.72));
  transition: height 140ms linear;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.dot-top {
  top: 12%;
}

.dot-mid {
  top: 44%;
}

.dot-bottom {
  top: 76%;
}

.timeline-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.timeline-start {
  top: 0;
}

.timeline-end {
  bottom: 0;
}

.services-section {
  padding: 6rem 0 3rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.closing-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0.9rem 0 0;
  font-size: 1.08rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.58fr);
  gap: 1.8rem;
}

.service-cards {
  display: grid;
  gap: 1rem;
}

.service-card,
.aside-panel,
.closing-grid,
.site-footer {
  position: relative;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(16rem, 0.86fr);
  min-height: 15.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(26, 67, 96, 0.94), rgba(37, 89, 114, 0.92)),
    rgba(25, 68, 96, 0.92);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 31.5%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(141, 180, 55, 0.5), transparent);
  transform: skew(-15deg);
  opacity: 0.85;
}

.service-copy,
.service-visual,
.aside-panel,
.closing-cta,
.contact-panel {
  padding: 1.8rem;
}

.service-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}

.service-index {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 1;
}

.service-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.service-copy p {
  margin: 0;
  font-size: 1.02rem;
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.service-visual {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(145deg, rgba(141, 180, 55, 0.2), rgba(86, 134, 131, 0.2) 48%, rgba(20, 59, 87, 0.34)),
    linear-gradient(180deg, rgba(32, 79, 113, 0.3), rgba(21, 60, 87, 0.82));
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 72%;
  height: 74%;
  background:
    radial-gradient(circle at 70% 38%, rgba(141, 180, 55, 0.34) 0 0.22rem, transparent 0.24rem),
    linear-gradient(135deg, transparent 0 18%, rgba(141, 180, 55, 0.24) 18.4%, transparent 19.2% 32%, rgba(86, 134, 131, 0.22) 32.4%, transparent 33.2% 54%, rgba(255, 255, 255, 0.08) 54.4%, transparent 55%);
  opacity: 0.85;
}

.visual-freight::after,
.visual-relocation::after,
.visual-lastmile::after,
.visual-clearance::after {
  position: absolute;
  right: 1.8rem;
  top: 1.6rem;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.visual-freight::after {
  content: "ROUTE";
}

.visual-relocation::after {
  content: "SHIFT";
}

.visual-lastmile::after {
  content: "FINAL";
}

.visual-clearance::after {
  content: "CLEAR";
}

.visual-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 63, 98, 0.34);
  color: var(--accent-soft);
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.service-visual strong {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  font-size: 1.3rem;
  line-height: 1.28;
}

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

.aside-panel,
.closing-grid,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(30, 76, 105, 0.95), rgba(22, 63, 98, 0.96)),
    rgba(24, 68, 96, 0.95);
  box-shadow: var(--shadow);
}

.metric-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.topic-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.topic-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.topic-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.topic-list strong {
  display: block;
  color: var(--accent);
  font-size: 1.22rem;
  margin-bottom: 0.22rem;
}

.topic-list span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.metric-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.metric-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.metric-list span {
  display: block;
  margin-top: 0.35rem;
}

.process-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
}

.process-list li > span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8db437 0%, #5f9b80 100%);
  color: #163f62;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.18rem;
}

.process-list p {
  margin: 0;
}

.closing-section {
  padding: 3rem 0 4rem;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.72fr);
  overflow: clip;
}

.closing-cta {
  position: relative;
  min-height: 33rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  background:
    linear-gradient(90deg, rgba(22, 63, 98, 0.9), rgba(35, 83, 119, 0.76)),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 26%);
}

.closing-cta::before {
  inset: -5% -8% -5% 44%;
  opacity: 0.46;
}

.closing-cta h2 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.7rem);
}

.serif-accent {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.closing-cta p {
  max-width: 32rem;
  margin: 0;
  font-size: 1.22rem;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  border-left: 1px solid var(--line);
  background: rgba(24, 68, 96, 0.82);
}

.contact-card,
.regions-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  padding: 1.45rem;
  background: rgba(24, 68, 96, 0.28);
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
}

.compact-lines {
  gap: 0.45rem;
}

.compact-lines a {
  font-size: 1.05rem;
}

.contact-lines a {
  font-size: 1.4rem;
}

.region-map {
  position: relative;
  min-height: 13rem;
  margin: 1rem 0;
  border-radius: 1rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1.2px, transparent 1.5px) 0 0 / 10px 10px,
    linear-gradient(180deg, rgba(27, 39, 52, 0.3), rgba(13, 23, 34, 0.55));
  overflow: clip;
}

.region-map::before {
  content: "";
  position: absolute;
  inset: 18% 8% 20%;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.17) 0 8%, transparent 8.5%),
    radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.17) 0 7%, transparent 7.5%),
    radial-gradient(circle at 81% 46%, rgba(255, 255, 255, 0.17) 0 6%, transparent 6.5%),
    radial-gradient(circle at 64% 64%, rgba(255, 255, 255, 0.17) 0 5.5%, transparent 6%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.5;
}

.region-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}

.region-dot::before {
  content: "";
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(141, 180, 55, 0.18);
}

.dot-uae {
  left: 52%;
  top: 34%;
}

.dot-gcc {
  left: 62%;
  top: 52%;
}

.dot-south-asia {
  right: 7%;
  top: 40%;
}

.dot-east-africa {
  left: 22%;
  bottom: 16%;
}

.site-footer {
  margin-top: 1.25rem;
  padding: 1.6rem 1.8rem;
}

.site-footer,
.footer-bottom,
.footer-links {
  display: grid;
}

.site-footer {
  gap: 1.6rem;
}

.footer-brand strong {
  display: block;
}

.footer-brand span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

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

.footer-links div {
  display: grid;
  gap: 0.55rem;
}

.footer-links p {
  margin: 0 0 0.3rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
}

.footer-links a,
.footer-bottom span,
.footer-bottom a {
  color: var(--muted);
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 1.3rem;
    font-size: 0.84rem;
  }

  .hero-stage {
    padding-top: 6.8rem;
  }

  .hero-copy-scroll {
    width: min(44rem, calc(100% - 5rem));
    min-height: 31rem;
  }

  .hero-scroll-title {
    font-size: clamp(3.15rem, 5.8vw, 5.2rem);
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.86fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    padding: 1rem 0 0.9rem;
  }

  .brand {
    max-width: min(74vw, 24rem);
  }

  .brand-wordmark {
    font-size: clamp(0.8rem, 1.85vw, 0.95rem);
  }

  .site-nav {
    position: fixed;
    top: 5.1rem;
    left: 50%;
    width: var(--content-width);
    max-width: calc(100vw - 1.4rem);
    padding: 0.7rem;
    border: 1px solid rgba(141, 180, 55, 0.18);
    border-radius: 1.15rem;
    background:
      linear-gradient(180deg, rgba(33, 81, 113, 0.97), rgba(22, 63, 98, 0.98)),
      rgba(24, 68, 96, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    display: grid;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -0.8rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero-scroll {
    height: 440svh;
  }

  .hero-shell {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding-bottom: 0;
  }

  .section-heading,
  .services-layout,
  .closing-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    --hero-gutter: 1.1rem;
    min-height: 100svh;
    padding: 5.4rem var(--hero-gutter) 6.6rem;
  }

  .hero-copy-scroll {
    width: min(34rem, calc(100% - 2rem));
  }

  .hero-copy-scroll[data-active-slide="septenary"] {
    width: min(100%, calc(100% - 1rem));
  }

  .intro-section {
    padding-top: 2.7rem;
  }

  .intro-card {
    padding: 1.5rem;
  }

  .intro-topline {
    align-items: flex-start;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero-video-meta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .scrub-state {
    align-items: flex-start;
    text-align: left;
  }

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

  .closing-cta {
    order: 1;
  }

  .contact-panel {
    order: -1;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    gap: 1rem;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 1.4rem, 44rem);
  }

  .site-header {
    width: calc(100vw - 1.4rem);
    padding: 0.9rem 0 0.8rem;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
    max-width: calc(100% - 3.1rem);
  }

  .brand-logo {
    height: clamp(2.05rem, 7vw, 2.45rem);
  }

  .brand-wordmark {
    font-size: clamp(0.72rem, 2.9vw, 0.9rem);
    letter-spacing: clamp(0.06em, 0.5vw, 0.1em);
  }

  .header-cta {
    display: none;
  }

  .hero-copy-scroll {
    width: min(100%, 31rem);
    min-height: 27rem;
  }

  .hero-copy-scroll[data-active-slide="septenary"] {
    width: min(100%, 31rem);
    min-height: auto;
  }

  .hero-slide {
    gap: 0.9rem;
  }

  .hero-scroll-title {
    font-size: clamp(2.75rem, 13.2vw, 4.2rem);
  }

  .hero-summary {
    font-size: 1.05rem;
  }

  .hero-slide-lead {
    font-size: clamp(1.18rem, 4.7vw, 1.55rem);
  }

  .hero-copy-scroll .hero-summary {
    max-width: 27rem;
    margin-top: 1rem;
  }

  .hero-slide-copy {
    max-width: 27rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-slide-heading {
    font-size: clamp(1.95rem, 7.5vw, 2.5rem);
  }

  .hero-slide-kicker-plain {
    font-size: clamp(1.02rem, 4vw, 1.3rem);
  }

  .hero-slide-heading-brand {
    font-size: clamp(2.05rem, 8vw, 3rem);
  }

  .hero-slide-copy-strong {
    font-size: 0.96rem;
  }

  .hero-slide-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-slide-list li {
    font-size: 0.92rem;
  }

  .hero-stage {
    --hero-gutter: 0.85rem;
    min-height: 100svh;
    padding: 4.4rem var(--hero-gutter) 6rem;
  }

  .hero-scroll {
    height: 370svh;
  }

  .intro-card {
    padding: 1.3rem;
  }

  .intro-topline .hero-actions {
    width: 100%;
    margin-left: 0;
  }

  .hero-stats,
  .services-aside,
  .service-card,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .hero-stats article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }

  .service-card::after,
  .timeline-rail {
    display: none;
  }

  .hero-video-meta {
    gap: 0.8rem;
  }

  .hero-video-meta p {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
  }

  .meta-bars span {
    width: 2.05rem;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .service-copy h3 {
    font-size: 1.85rem;
  }

  .service-visual {
    min-height: 12rem;
  }

  .closing-cta,
  .service-copy,
  .service-visual,
  .aside-panel,
  .contact-panel,
  .site-footer {
    padding: 1.3rem;
  }

  .closing-cta h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .contact-lines a {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  :root {
    --content-width: min(100vw - 1rem, 44rem);
  }

  .site-header {
    width: calc(100vw - 1rem);
    padding: 0.8rem 0 0.7rem;
    gap: 0.7rem;
  }

  .brand {
    gap: 0.5rem;
    max-width: calc(100% - 2.9rem);
  }

  .brand-mark {
    font-size: 1.7rem;
  }

  .brand-logo {
    height: 2.15rem;
  }

  .brand-wordmark {
    font-size: clamp(0.66rem, 3.3vw, 0.82rem);
    letter-spacing: 0.08em;
  }

  .footer-logo {
    height: 2.6rem;
  }

  .menu-button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-nav {
    top: 4.6rem;
    max-width: calc(100vw - 1rem);
    padding: 0.6rem;
  }

  .hero-scroll {
    height: 330svh;
  }

  .hero-stage {
    --hero-gutter: 0.65rem;
    padding: 4rem var(--hero-gutter) 5.1rem;
  }

  .hero-copy-scroll {
    width: min(100%, 24rem);
    min-height: 25rem;
  }

  .hero-copy-scroll[data-active-slide="septenary"] {
    width: min(100%, 24rem);
  }

  .hero-slide {
    gap: 0.75rem;
  }

  .hero-scroll-title {
    font-size: clamp(2.4rem, 12.6vw, 3.65rem);
  }

  .hero-slide-lead {
    font-size: 1.02rem;
  }

  .hero-slide-kicker {
    font-size: 1.72rem;
  }

  .hero-slide-heading {
    font-size: 1.72rem;
  }

  .hero-slide-kicker-plain {
    font-size: 0.96rem;
  }

  .hero-slide-heading-brand {
    font-size: 1.82rem;
    line-height: 1.02;
  }

  .hero-slide-copy-strong {
    font-size: 0.89rem;
    line-height: 1.48;
  }

  .hero-copy-scroll .hero-summary {
    margin-top: 0.9rem;
    font-size: 0.95rem;
  }

  .hero-slide-copy {
    max-width: 24rem;
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .hero-slide-list li {
    font-size: 0.86rem;
    gap: 0.5rem;
  }

  .hero-video-meta {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .hero-video-meta p {
    font-size: 0.76rem;
  }

  #scrub-time {
    font-size: 0.92rem;
  }

  .intro-section {
    padding: 1.65rem 0 1rem;
  }

  .intro-card {
    padding: 1.05rem;
    border-radius: 1.35rem;
  }

  .hero-summary {
    margin: 1.15rem 0 1.5rem;
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
    min-height: 3.35rem;
  }

  .hero-stats strong {
    font-size: 1.7rem;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 11vw, 2.9rem);
  }

  .service-copy h3 {
    font-size: 1.72rem;
  }

  .service-copy p {
    font-size: 0.94rem;
  }

  .service-visual strong {
    font-size: 1.12rem;
  }

  .closing-cta p {
    font-size: 1rem;
  }

  .contact-card,
  .regions-card {
    padding: 1rem;
  }

  .region-map {
    min-height: 11rem;
  }

  .region-dot {
    gap: 0.3rem;
    font-size: 0.75rem;
  }

  .dot-south-asia {
    right: 3%;
    top: 38%;
  }

  .site-footer {
    padding: 1.2rem;
  }

  .footer-bottom {
    gap: 0.75rem;
  }

  .footer-bottom div {
    gap: 0.7rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    width: calc(100vw - 0.8rem);
    gap: 0.5rem;
  }

  .brand {
    gap: 0.42rem;
    max-width: calc(100% - 2.7rem);
  }

  .brand-logo {
    height: 1.95rem;
  }

  .brand-wordmark {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .menu-button {
    width: 2.55rem;
    height: 2.55rem;
  }
}

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

  .button,
  .header-cta,
  .timeline-fill {
    transition: none;
  }
}
