:root {
  --stone: #c6c8d2;
  --stone-light: #e4e5eb;
  --ivory: #f7f4f0;
  --paper: #eee9e4;
  --white: #fff;
  --charcoal: #24282d;
  --ink: #1d2227;
  --muted: #66666a;
  --navy: #30459c;
  --navy-dark: #24357c;
  --terracotta: #e12d36;
  --terracotta-bright: #ee4650;
  --line: rgba(36, 40, 45, 0.16);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: min(1320px, calc(100vw - 80px));
  --shadow: 0 24px 70px rgba(17, 22, 27, 0.16);
  --header-height: 86px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.utility-bar {
  position: relative;
  z-index: 32;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-bar__links a {
  transition: color 180ms ease;
}

.utility-bar__links a:hover {
  color: var(--white);
}

.utility-bar__links span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 38px;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  border-bottom-color: var(--line);
  background: rgba(247, 244, 240, 0.9);
  box-shadow: 0 10px 36px rgba(31, 35, 39, 0.08);
  color: var(--charcoal);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.brand__mark {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.04em;
}

.brand__name {
  max-width: 132px;
  padding-left: 12px;
  border-left: 1px solid currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand__logo {
  box-shadow: 0 0 0 1px var(--line);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.primary-navigation > a {
  position: relative;
  padding-block: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-group {
  position: relative;
}

.nav-group__toggle {
  display: inline-flex;
  padding: 12px 0;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-group__toggle span {
  font-size: 14px;
  transition: transform 180ms ease;
}

.nav-group.is-open .nav-group__toggle span {
  transform: rotate(180deg);
}

.nav-group__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -28px;
  width: 252px;
  padding: 14px;
  border-top: 4px solid var(--terracotta);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(17, 22, 27, 0.2);
  color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s 180ms;
}

.nav-group.is-open .nav-group__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-group__menu a {
  display: block;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
}

.nav-group__menu a:last-child {
  border-bottom: 0;
}

.nav-group__menu a:hover,
.nav-group__menu a:focus-visible {
  background: var(--paper);
  color: var(--navy);
}

.primary-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.primary-navigation > a:not(.nav-cta):hover::after,
.primary-navigation > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px !important;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled .nav-cta {
  border-color: var(--charcoal);
}

.nav-cta:hover {
  border-color: var(--terracotta) !important;
  background: var(--terracotta);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -4;
  overflow: hidden;
}

.hero__media img {
  transform: scale(1.045) translate3d(0, var(--hero-shift, 0), 0);
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 80ms linear;
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(17, 22, 27, 0.91) 0%, rgba(17, 22, 27, 0.66) 42%, rgba(17, 22, 27, 0.08) 74%),
    linear-gradient(0deg, rgba(17, 22, 27, 0.55) 0%, transparent 42%),
    linear-gradient(120deg, rgba(11, 79, 108, 0.16), rgba(201, 107, 60, 0.12));
}

.hero__grid {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.23) 1px, transparent 1px);
  background-position: center;
  background-size: min(11vw, 160px) min(11vw, 160px);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 78%);
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-height) + 122px);
  padding-bottom: 110px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hero__content {
  width: min(850px, 74vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.74);
}

.hero__eyebrow {
  opacity: 0;
  animation: rise-in 700ms 120ms ease forwards;
}

.hero__eyebrow::before {
  background: var(--terracotta);
}

.hero__eyebrow span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero h1,
.section-heading h2,
.fleet h2,
.tanzania-feature h2,
.quote h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 32px;
  opacity: 0;
  font-size: clamp(58px, 7.3vw, 118px);
  animation: rise-in 850ms 210ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

h1 em,
h2 em {
  color: var(--stone-light);
  font-weight: 400;
}

.hero__lede {
  max-width: 650px;
  margin-bottom: 40px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
  animation: rise-in 700ms 340ms ease forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: rise-in 700ms 430ms ease forwards;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--terracotta);
  color: var(--white);
}

.button--primary:hover {
  background: #8f3f25;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover,
.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal);
}

.button--dark {
  background: var(--charcoal);
  color: var(--white);
}

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

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.hero__signature {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: 270px;
  padding: 28px 0 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: fade-in 800ms 650ms ease forwards;
}

.hero__signature span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__signature p {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.2;
}

.hero__location {
  position: absolute;
  top: 48%;
  right: -78px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__location i {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--terracotta);
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 172px;
  height: 86px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(36, 40, 45, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  height: 100%;
  background: var(--terracotta);
  content: "";
  animation: scroll-line 1.8s infinite ease-in-out;
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-strip__inner {
  display: grid;
  min-height: 108px;
  align-items: center;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.intro-strip p {
  display: flex;
  min-height: 48px;
  margin: 0;
  padding: 0 28px;
  align-items: center;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-strip p:first-child {
  padding-left: 0;
  border-left: 0;
}

.intro-strip__lead::before {
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 6px rgba(201, 107, 60, 0.12);
  content: "";
}

.section {
  padding: clamp(110px, 11vw, 180px) 0;
}

.section-heading h2,
.fleet h2,
.tanzania-feature h2,
.quote h2 {
  font-size: clamp(50px, 6.4vw, 92px);
}

.section-heading h2 em,
.quote h2 em {
  color: var(--navy);
}

.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  position: absolute;
  top: 110px;
  right: -10vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  content: "";
}

.about__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  column-gap: clamp(70px, 9vw, 150px);
  row-gap: 72px;
}

.about__copy {
  padding-top: 54px;
}

.about__copy p {
  max-width: 590px;
  color: var(--muted);
}

.about__copy .lead-copy {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  padding: 10px 0 8px;
  align-items: center;
  gap: 52px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 64px;
  color: var(--terracotta);
}

.text-link--light {
  color: var(--white);
}

.about__statement {
  position: relative;
  min-height: 310px;
  padding: 48px;
  overflow: hidden;
  background: var(--stone);
  color: var(--charcoal);
}

.about__statement-number {
  position: absolute;
  right: -26px;
  bottom: -54px;
  opacity: 0.13;
  font-family: var(--serif);
  font-size: clamp(150px, 18vw, 280px);
  line-height: 1;
}

.about__statement p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.25;
}

.about__details {
  border-top: 1px solid var(--line);
}

.about__details > div {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms ease, color 220ms ease;
}

.about__details > div::before {
  width: 20px;
  height: 1px;
  margin-right: 18px;
  background: var(--terracotta);
  content: "";
  transition: width 220ms ease;
}

.about__details > div:hover {
  padding-left: 8px;
  color: var(--navy);
}

.about__details > div:hover::before {
  width: 34px;
}

.about__details p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.services__header,
.process__header {
  display: grid;
  margin-bottom: clamp(62px, 7vw, 100px);
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 80px;
}

.services__header > p,
.process__header > p {
  max-width: 470px;
  margin-bottom: 32px;
  color: var(--muted);
}

.services__grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: clamp(30px, 3.3vw, 50px);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card__top {
  display: flex;
  margin-bottom: auto;
  justify-content: flex-end;
  color: var(--terracotta);
}

.service-card__top i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover .service-card__top i {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(45deg);
}

.service-card h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card__tag {
  width: fit-content;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card--accent {
  background: var(--terracotta);
  color: var(--white);
}

.service-card--accent:hover {
  background: #8f3f25;
}

.service-card--accent p,
.service-card--accent .service-card__top {
  color: rgba(255, 255, 255, 0.74);
}

.service-card--accent .service-card__top i {
  border-color: rgba(255, 255, 255, 0.35);
}

.service-card--accent a {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet {
  display: grid;
  min-height: 900px;
  background: var(--charcoal);
  color: var(--white);
  grid-template-columns: 1.05fr 0.95fr;
}

.fleet__media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.fleet__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(17, 22, 27, 0.7));
  content: "";
}

.fleet__media picture,
.fleet__media img {
  width: 100%;
  height: 100%;
}

.fleet__media img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet:hover .fleet__media img {
  transform: scale(1.025);
}

.fleet__media-label {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet__content {
  display: flex;
  padding: clamp(80px, 8vw, 130px) clamp(50px, 7vw, 110px);
  flex-direction: column;
  justify-content: center;
}

.fleet h2 em {
  color: var(--stone);
}

.fleet__content > div > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.62);
}

.fleet-list {
  position: relative;
  margin: 38px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fleet-list::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 107, 60, 0.68) 8%, rgba(201, 107, 60, 0.68) 92%, transparent);
  content: "";
}

.fleet-list li {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 62px;
  padding-left: 52px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: padding-left 220ms ease, color 220ms ease;
}

.fleet-list li::before {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--terracotta);
  background: var(--charcoal);
  box-shadow: 0 0 0 5px var(--charcoal), 0 0 0 6px rgba(201, 107, 60, 0.28);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.fleet-list li:hover {
  padding-left: 60px;
  color: var(--stone-light);
}

.fleet-list li:hover::before {
  background: var(--terracotta);
  box-shadow: 0 0 0 5px var(--charcoal), 0 0 0 7px rgba(201, 107, 60, 0.4);
  transform: translateY(-50%) rotate(135deg);
}

.fleet-list strong {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet__content .button {
  align-self: flex-start;
}

.process {
  position: relative;
  overflow: hidden;
}

.process::after {
  position: absolute;
  right: -4vw;
  bottom: -9vw;
  color: rgba(11, 79, 108, 0.045);
  content: "04";
  font-family: var(--serif);
  font-size: 34vw;
  line-height: 0.8;
  pointer-events: none;
}

.process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process__steps::before {
  position: absolute;
  top: 37px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.process__steps li {
  position: relative;
  padding: 118px clamp(22px, 3vw, 46px) 0 0;
}

.process-medallion {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(11, 79, 108, 0.42);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 7px var(--ivory), 0 0 0 8px rgba(11, 79, 108, 0.16);
  color: var(--navy);
  transition: border-color 260ms ease, box-shadow 260ms ease, color 260ms ease, transform 260ms ease;
}

.process-medallion::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 3px solid var(--ivory);
  background: var(--terracotta);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.process-medallion i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(11, 79, 108, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 183, 177, 0.32), transparent 66%);
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.process__steps li:hover .process-medallion {
  border-color: var(--navy);
  box-shadow: 0 0 0 7px var(--ivory), 0 0 0 8px var(--terracotta), 0 13px 28px rgba(11, 79, 108, 0.14);
  color: var(--terracotta);
  transform: translateY(-4px);
}

.process__steps h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.process__steps p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tanzania-feature {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  isolation: isolate;
}

.tanzania-feature__media,
.tanzania-feature__media img,
.tanzania-feature__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tanzania-feature__media {
  z-index: -2;
}

.tanzania-feature__media img {
  object-fit: cover;
  object-position: center;
}

.tanzania-feature__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.92) 0%, rgba(7, 31, 42, 0.7) 48%, rgba(7, 31, 42, 0.08) 83%),
    linear-gradient(0deg, rgba(7, 31, 42, 0.4), transparent 50%);
}

.tanzania-feature__inner {
  padding-block: 110px;
}

.tanzania-feature__inner > * {
  max-width: 760px;
}

.tanzania-feature h2 em {
  color: var(--stone-light);
}

.tanzania-feature__inner > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.quote {
  padding: clamp(110px, 11vw, 170px) 0;
  background: var(--stone);
}

.quote__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.quote h2 {
  font-size: clamp(54px, 6.4vw, 96px);
}

.quote__intro > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(36, 40, 45, 0.72);
}

.quote__contact {
  display: grid;
  margin-top: 60px;
  border-top: 1px solid rgba(36, 40, 45, 0.2);
  border-left: 1px solid rgba(36, 40, 45, 0.2);
  grid-template-columns: repeat(2, 1fr);
}

.quote__contact > div {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid rgba(36, 40, 45, 0.2);
  border-bottom: 1px solid rgba(36, 40, 45, 0.2);
}

.quote__contact span {
  display: block;
  margin-bottom: 13px;
  color: rgba(36, 40, 45, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote__contact a,
.quote__contact p,
.quote__contact address {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
}

.quote__contact a:not(.is-unavailable):hover {
  color: var(--navy);
}

.whatsapp-link.is-unavailable {
  color: rgba(36, 40, 45, 0.5);
  cursor: not-allowed;
}

.quote-form {
  padding: clamp(34px, 4.5vw, 68px);
  background: var(--ivory);
  box-shadow: 0 34px 90px rgba(50, 36, 32, 0.14);
}

.form-row {
  margin-bottom: 30px;
}

.form-row--split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field label span {
  color: var(--terracotta);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(36, 40, 45, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--charcoal);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 48px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%), linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position: calc(100% - 14px) 21px, calc(100% - 9px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 112px;
  padding: 12px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 1px 0 var(--navy);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #9e3f30;
  box-shadow: 0 1px 0 #9e3f30;
}

.field__error {
  display: block;
  min-height: 16px;
  padding-top: 5px;
  color: #8c3025;
  font-size: 11px;
}

.quote-form > .field {
  margin-bottom: 34px;
}

.quote-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quote-form__footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.form-status {
  min-height: 20px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.noscript-note {
  margin-bottom: 32px;
  padding: 16px 18px;
  border-left: 3px solid var(--terracotta);
  background: var(--paper);
  color: var(--charcoal);
  font-size: 13px;
}

.noscript-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--charcoal);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  padding-bottom: 70px;
  align-items: end;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
}

.brand--footer .brand__mark {
  font-size: 42px;
}

.brand__logo--footer {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
}

.brand--footer .brand__name {
  display: none;
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.footer-email {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 30px);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-email:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.site-footer__bottom {
  display: grid;
  padding-top: 24px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.7;
  text-transform: uppercase;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 36px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.76);
}

.photo-credit {
  text-transform: none;
}

.photo-credit a:hover {
  color: var(--terracotta);
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__grid .reveal:nth-child(2),
.process__steps .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.services__grid .reveal:nth-child(3),
.process__steps .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.services__grid .reveal:nth-child(4),
.process__steps .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.services__grid .reveal:nth-child(5) {
  transition-delay: 360ms;
}

.services__grid .reveal:nth-child(6) {
  transition-delay: 450ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to { opacity: 1; }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(200%); }
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 56px, 1080px);
  }

  .primary-navigation {
    gap: 18px;
  }

  .primary-navigation > a {
    font-size: 9px;
  }

  .hero__signature {
    width: 225px;
  }

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

  .fleet {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .quote__grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
    gap: 60px;
  }

  .site-footer__top {
    grid-template-columns: 0.8fr 1fr;
  }

  .footer-email {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 44px, 820px);
    --header-height: 76px;
  }

  .utility-bar__inner > p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    padding: 120px 44px 60px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    background: var(--charcoal);
    color: var(--white);
    visibility: hidden;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 360ms;
  }

  .menu-open .primary-navigation {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-navigation > a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-navigation > a::after {
    display: none;
  }

  .primary-navigation .nav-cta {
    width: auto;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .site-header.is-scrolled .primary-navigation .nav-cta {
    border-color: rgba(255, 255, 255, 0.4);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    color: var(--white);
  }

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

  .no-js .site-header {
    height: auto;
  }

  .no-js .site-header__inner {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .no-js .primary-navigation {
    position: static;
    width: 100%;
    padding: 0;
    flex-flow: row wrap;
    gap: 8px 20px;
    transform: none;
    background: transparent;
    visibility: visible;
  }

  .no-js .primary-navigation > a {
    width: auto;
    padding: 7px 0;
    border: 0;
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .no-js .primary-navigation .nav-cta {
    display: none;
  }

  .hero__content {
    width: 100%;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 106px);
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(55px, 10vw, 85px);
  }

  .hero__signature {
    display: none;
  }

  .hero__location {
    display: none;
  }

  .intro-strip__inner {
    padding-block: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip p,
  .intro-strip p:first-child {
    min-height: 48px;
    padding: 0 16px;
    border-left: 1px solid var(--line);
  }

  .intro-strip p:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about__copy {
    padding-top: 0;
  }

  .about__statement {
    min-height: 270px;
  }

  .services__header,
  .process__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services__header > p,
  .process__header > p {
    margin-bottom: 0;
  }

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

  .fleet__media {
    min-height: 620px;
  }

  .fleet__content {
    padding: 100px var(--container-padding, 44px);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .process__steps::before {
    display: none;
  }

  .process__steps li {
    padding-top: 112px;
    border-top: 1px solid var(--line);
  }

  .process-medallion {
    top: 22px;
  }

  .quote__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .photo-credit {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 34px);
  }

  .utility-bar {
    letter-spacing: 0.11em;
  }

  .utility-bar__links {
    gap: 10px;
  }

  .utility-bar__links p {
    display: none;
  }

  .utility-bar__links span {
    display: none;
  }

  .brand__mark {
    font-size: 24px;
  }

  .brand__name {
    max-width: 82px;
    font-size: 8px;
  }

  .hero {
    min-height: 740px;
  }

  .hero__media img {
    object-position: 63% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(17, 22, 27, 0.89), rgba(17, 22, 27, 0.36)),
      linear-gradient(0deg, rgba(17, 22, 27, 0.74), transparent 60%);
  }

  .hero__inner {
    min-height: 740px;
    padding-top: 150px;
    padding-bottom: 104px;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(48px, 15vw, 70px);
    line-height: 0.98;
  }

  .hero__lede {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__eyebrow {
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.15em;
  }

  .hero__eyebrow::before {
    width: 24px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .scroll-cue {
    width: 150px;
    height: 72px;
  }

  .intro-strip__inner {
    grid-template-columns: 1fr;
  }

  .intro-strip p,
  .intro-strip p:first-child,
  .intro-strip p:nth-child(odd) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intro-strip p:first-child {
    border-top: 0;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading h2,
  .fleet h2,
  .tanzania-feature h2,
  .quote h2 {
    font-size: clamp(48px, 13vw, 66px);
  }

  .about__statement {
    min-height: 240px;
    padding: 34px;
  }

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

  .service-card {
    min-height: 370px;
    padding: 34px;
  }

  .fleet__media {
    min-height: 460px;
  }

  .fleet__content {
    padding: 88px 22px;
  }

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

  .process__steps li {
    padding-right: 0;
  }

  .tanzania-feature {
    min-height: 720px;
  }

  .tanzania-feature__overlay {
    background: linear-gradient(90deg, rgba(7, 31, 42, 0.92), rgba(7, 31, 42, 0.42)), linear-gradient(0deg, rgba(7, 31, 42, 0.66), transparent 70%);
  }

  .quote {
    padding: 90px 0;
  }

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

  .quote-form {
    width: calc(100% + 34px);
    margin-left: -17px;
    padding: 38px 24px;
  }

  .form-row--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quote-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form__footer .button {
    width: 100%;
  }

  .site-footer__top {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-email {
    grid-column: auto;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .photo-credit {
    grid-column: auto;
    grid-row: auto;
  }
}

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

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

  .hero__media img {
    transform: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .scroll-cue,
  .hero__actions,
  .quote-form {
    display: none !important;
  }

  .hero,
  .fleet,
  .tanzania-feature {
    min-height: auto;
    padding: 60px 0;
    background: var(--white);
    color: var(--charcoal);
  }

  .hero__media,
  .hero__veil,
  .hero__grid,
  .fleet__media,
  .tanzania-feature__media,
  .tanzania-feature__overlay {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 0;
  }

  .hero h1,
  .hero__lede,
  .fleet h2 em,
  .tanzania-feature h2 em {
    color: var(--charcoal);
  }
}

/* Multi-page editorial system */

.operations-grid .service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
}

.operations-grid .service-card__top span {
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operations-grid .service-card > a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operations-grid .service-card > a span {
  display: inline-block;
  margin-left: 9px;
  transition: transform 180ms ease;
}

.operations-grid .service-card:hover > a span {
  transform: translateX(5px);
}

.breadcrumbs {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  isolation: isolate;
}

.page-hero__media,
.page-hero__media img,
.page-hero__overlay,
.page-hero__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__media {
  z-index: -3;
}

.page-hero__media img {
  object-fit: cover;
}

.page-hero__overlay {
  z-index: -1;
  background: rgba(14, 17, 25, 0.68);
}

.page-hero__inner {
  display: flex;
  min-height: 760px;
  padding-top: calc(var(--header-height) + 116px);
  padding-bottom: 90px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.page-hero h1 {
  max-width: 850px;
  margin: 15px 0 26px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 105px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.page-hero__inner > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero__placeholder {
  z-index: -2;
  display: grid;
  padding: 16vw 8vw 8vw;
  align-items: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.16);
  grid-template-columns: auto 1fr auto;
  gap: 40px;
}

.page-hero__placeholder > span:first-child {
  font-family: var(--serif);
  font-size: min(24vw, 300px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.page-hero__placeholder i {
  height: 1px;
  background: currentColor;
}

.page-hero__placeholder > span:last-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero--placeholder .page-hero__overlay {
  background: rgba(15, 22, 51, 0.32);
}

.operation-overview__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.operation-overview__copy {
  padding-top: 44px;
}

.operation-overview__copy > p:last-child {
  margin-top: 34px;
  padding: 22px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  color: var(--muted);
}

.capability-section {
  padding-top: 0;
}

.capability-section__header {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1fr 1fr;
}

.capability-section__header h2,
.operation-gallery__heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.capability-section__header h2 em,
.operation-gallery__heading h2 em {
  color: var(--navy);
  font-weight: 400;
}

.capability-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.capability-card {
  min-height: 300px;
  padding: 44px 42px 38px;
  border-right: 1px solid var(--line);
}

.capability-card:first-child {
  border-left: 1px solid var(--line);
}

.capability-card > span {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 80px;
  transform: rotate(45deg);
  background: var(--terracotta);
}

.capability-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.operation-gallery {
  padding: 120px 0;
  background: var(--paper);
}

.operation-gallery__heading {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
}

.operation-gallery__heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.operation-gallery__grid {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  align-items: stretch;
  grid-auto-rows: 240px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.operation-gallery__item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone-light);
  grid-column: span 4;
}

.operation-gallery__item--1 {
  grid-column: span 7;
  grid-row: span 2;
}

.operation-gallery__item--2 {
  grid-column: span 5;
}

.operation-gallery__item--3 {
  grid-column: span 5;
}

.operation-gallery__item picture,
.operation-gallery__item img {
  width: 100%;
  height: 100%;
}

.operation-gallery__item img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.operation-gallery__item:hover img {
  transform: scale(1.025);
}

.operation-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  background: rgba(23, 26, 31, 0.82);
  color: var(--white);
  font-size: 12px;
}

.branded-placeholder {
  display: grid;
  min-height: 410px;
  padding: 70px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  grid-template-columns: 180px 1fr;
  gap: 70px;
}

.branded-placeholder img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.branded-placeholder h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.branded-placeholder p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.operation-cta {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
}

.operation-cta__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr auto;
  gap: 60px;
}

.operation-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.operation-cta__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.button--white {
  background: var(--white);
  color: var(--navy-dark);
}

.button--white:hover {
  background: var(--terracotta);
  color: var(--white);
}

.inner-hero,
.job-detail-hero {
  padding: calc(var(--header-height) + 150px) 0 110px;
  background: var(--navy-dark);
  color: var(--white);
}

.inner-hero__inner,
.job-detail-hero__inner {
  max-width: 950px;
  margin-inline: auto;
}

.inner-hero h1,
.job-detail-hero h1 {
  margin: 16px 0 30px;
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.inner-hero h1 em {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.inner-hero__inner > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.careers-list__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.55fr) minmax(500px, 1.45fr);
  gap: clamp(60px, 9vw, 130px);
}

.job-card {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.job-card:last-child {
  border-bottom: 1px solid var(--line);
}

.job-card__meta,
.job-detail-hero__meta {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.job-card h3 a:hover {
  color: var(--navy);
}

.job-card > p {
  max-width: 720px;
  color: var(--muted);
}

.job-card__footer {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card__footer a {
  color: var(--navy);
}

.empty-state {
  padding: 70px;
  border-top: 6px solid var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.empty-state > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 22px;
}

.empty-state h3 {
  margin: 38px 0 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.job-detail-hero h1 {
  max-width: 1000px;
}

.job-detail-hero__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.job-detail__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.5fr) minmax(500px, 1.5fr);
  gap: clamp(70px, 10vw, 150px);
}

.job-detail__aside {
  position: sticky;
  top: 130px;
  padding: 28px;
  border-top: 4px solid var(--terracotta);
  background: var(--paper);
}

.job-detail__aside > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.job-detail__content section {
  padding: 0 0 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.job-detail__content h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.job-detail__content p,
.job-detail__content li {
  color: var(--muted);
}

.job-detail__content ul {
  padding: 0;
  list-style: none;
}

.job-detail__content li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
}

.job-detail__content li::before {
  position: absolute;
  top: 21px;
  left: 3px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--terracotta);
  content: "";
}

.job-detail__notice {
  padding: 40px !important;
  border: 0 !important;
  background: var(--navy);
  color: var(--white);
}

.job-detail__notice p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.error-page {
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 150px);
}

.error-page__inner {
  max-width: 760px;
}

.error-page h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.site-footer__operations {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 28px;
}

.site-footer__operations .footer-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.site-footer__operations a {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 14px;
}

.site-footer__operations a:hover {
  color: var(--terracotta);
}

.site-footer__top > div:last-child > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--serif);
  font-size: 17px;
}

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

/* CMS */

.admin-body {
  min-height: 100vh;
  background: #f2f3f7;
  color: #20242c;
  font-size: 15px;
}

.admin-body button,
.admin-body input,
.admin-body select,
.admin-body textarea {
  font-size: 16px;
}

.admin-body--auth {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--navy-dark);
}

.admin-auth {
  width: min(620px, calc(100% - 32px));
  padding: 60px 0;
}

.admin-auth__brand {
  display: block;
  width: 92px;
  margin: 0 auto 30px;
}

.admin-auth__brand img {
  border-radius: 50%;
}

.admin-auth__panel {
  padding: 48px;
  border-top: 6px solid var(--terracotta);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.admin-auth__panel--wide {
  width: min(760px, calc(100vw - 32px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.admin-auth__panel h1 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.admin-auth__panel > p:not(.admin-kicker) {
  color: #666b76;
}

.admin-auth__back {
  display: inline-block;
  margin-top: 26px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.admin-kicker {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar {
  position: fixed;
  z-index: 60;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 270px;
  padding: 26px 22px;
  flex-direction: column;
  background: var(--navy-dark);
  color: var(--white);
}

.admin-sidebar__brand {
  display: flex;
  padding-bottom: 24px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.1;
}

.admin-sidebar__brand img {
  border-radius: 50%;
}

.admin-sidebar nav {
  display: grid;
  margin-top: 34px;
  gap: 5px;
}

.admin-sidebar nav a {
  padding: 13px 14px;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.is-active {
  border-left-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.admin-sidebar__footer {
  display: grid;
  margin-top: auto;
  gap: 12px;
  font-size: 12px;
}

.admin-sidebar__footer a,
.admin-sidebar__footer button {
  color: rgba(255, 255, 255, 0.72);
}

.admin-sidebar__footer button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.admin-shell {
  min-height: 100vh;
  margin-left: 270px;
}

.admin-topbar {
  display: flex;
  min-height: 70px;
  padding: 0 4vw;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #dadde6;
  background: var(--white);
}

.admin-topbar p {
  margin: 0;
  color: #717784;
  font-size: 12px;
}

.admin-menu-toggle {
  display: none;
}

.admin-content {
  width: min(1180px, calc(100% - 8vw));
  margin-inline: auto;
  padding: 56px 0 100px;
}

.admin-page-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.admin-page-heading h1 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.admin-page-heading p:last-child {
  max-width: 680px;
  margin: 0;
  color: #6b707c;
}

.button--admin {
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

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

.button--admin:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.admin-stat-grid {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admin-stat-grid article {
  display: flex;
  min-height: 190px;
  padding: 24px;
  flex-direction: column;
  border-top: 4px solid var(--navy);
  background: var(--white);
}

.admin-stat-grid article > span {
  color: #717784;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  margin: 14px 0;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.admin-stat-grid a {
  margin-top: auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.admin-panel {
  margin-bottom: 28px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(25, 31, 48, 0.05);
}

.admin-panel--form {
  border-top: 4px solid var(--navy);
}

.admin-panel--narrow {
  max-width: 720px;
}

.admin-panel__heading {
  display: flex;
  margin-bottom: 26px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-panel__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.admin-panel__heading > span,
.admin-panel__heading > a {
  color: #717784;
  font-size: 12px;
}

.admin-alert {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-left: 4px solid var(--navy);
  background: #e9edf9;
  color: #28345d;
  font-weight: 700;
}

.admin-alert--error {
  border-left-color: #b8202b;
  background: #fff0f1;
  color: #8b1821;
}

.admin-alert--success {
  border-left-color: #267453;
  background: #eaf7f0;
  color: #18563c;
}

.admin-alert--notice {
  border-left-color: #a06900;
  background: #fff7df;
  color: #694a0b;
}

.admin-form {
  display: grid;
  gap: 22px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: #373c47;
  font-size: 13px;
  font-weight: 800;
}

.admin-form label > span,
.admin-form label > small {
  color: #777d89;
  font-size: 11px;
  font-weight: 400;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.placement-form select,
.placement-form input[type="range"] {
  width: 100%;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.placement-form select {
  padding: 12px 13px;
  border: 1px solid #cfd3dc;
  border-radius: 0;
  background: var(--white);
  color: #20242c;
}

.admin-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.placement-form select:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(48, 69, 156, 0.16);
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.admin-form__footer {
  display: flex;
  padding-top: 24px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid #e0e2e8;
  gap: 30px;
}

.admin-form__footer label {
  min-width: 220px;
}

.admin-form--inline,
.admin-form--upload {
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
}

.admin-form--upload label:nth-child(4) {
  grid-column: 2;
}

.field-error {
  color: #a51d28 !important;
  font-weight: 700 !important;
}

.danger-zone {
  display: flex;
  margin-top: 40px;
  padding: 26px 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #efc2c5;
  background: #fff7f7;
  gap: 30px;
}

.danger-zone h2 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.danger-zone p {
  margin: 0;
  color: #727681;
  font-size: 13px;
}

.danger-zone button,
.admin-table button,
.media-card button,
.placement-form button {
  padding: 9px 13px;
  border: 1px solid #b8202b;
  background: transparent;
  color: #a51d28;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.placement-form button {
  border-color: var(--navy);
  color: var(--navy);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 12px 14px;
  border-bottom: 2px solid #d8dbe3;
  color: #737986;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-table td {
  padding: 17px 14px;
  border-bottom: 1px solid #e2e4ea;
  vertical-align: middle;
}

.admin-table td > small {
  display: block;
  margin-top: 4px;
  color: #7c818c;
}

.admin-table td > a {
  color: var(--navy);
  font-weight: 700;
}

.admin-table tr.is-archived {
  opacity: 0.58;
}

.status {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid #cfd3dc;
  color: #626875;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status--published,
.status--active {
  border-color: #9bd1b8;
  color: #1c6546;
}

.status--draft {
  border-color: #aab9e9;
  color: var(--navy);
}

.status--closed,
.status--archived {
  border-color: #d2d4da;
  color: #717681;
}

.admin-empty {
  padding: 38px;
  border: 1px dashed #c7cbd5;
  color: #727782;
  text-align: center;
}

.media-library {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  border: 1px solid #dde0e7;
}

.media-card.is-archived {
  opacity: 0.58;
}

.media-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.media-card > div {
  padding: 18px;
}

.media-card h3 {
  margin: 14px 0 7px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

.media-card p {
  color: #777d88;
  font-size: 11px;
}

.placement-groups {
  display: grid;
  gap: 4px;
}

.placement-slot {
  display: grid;
  padding: 26px 0;
  border-top: 1px solid #e0e2e8;
  grid-template-columns: 240px 1fr;
  gap: 28px;
}

.placement-slot h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.placement-slot > div > p {
  color: #7a808c;
  font-size: 12px;
}

.placement-form {
  display: grid;
  padding: 18px;
  border: 1px solid #e0e2e8;
  grid-template-columns: minmax(230px, 1fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr) auto;
  align-items: end;
  gap: 18px;
}

.placement-form + .placement-form {
  margin-top: 12px;
  grid-column: 2;
}

.placement-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.placement-form label span {
  color: #858a95;
  font-size: 9px;
  font-weight: 400;
}

.preflight-list {
  display: grid;
  margin: 30px 0;
  gap: 8px;
}

.preflight-item {
  display: grid;
  padding: 12px 14px;
  align-items: center;
  background: #f3f4f7;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.preflight-item > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #b8202b;
  color: var(--white);
  font-weight: 800;
}

.preflight-item.is-ok > span {
  background: #267453;
}

.preflight-item p {
  margin: 2px 0 0;
  color: #797e88;
  font-size: 11px;
}

@media (max-width: 1120px) {
  .nav-group__toggle,
  .primary-navigation > a {
    font-size: 9px;
  }

  .operation-cta__inner {
    grid-template-columns: 1fr 1fr;
  }

  .operation-cta__inner .button {
    justify-self: start;
  }

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

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

@media (max-width: 900px) {
  .nav-group {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-group__toggle {
    width: 100%;
    padding: 14px 0;
    justify-content: space-between;
    color: var(--white);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-group__menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: var(--white);
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: max-height 260ms ease, padding 260ms ease;
  }

  .nav-group.is-open .nav-group__menu {
    max-height: 420px;
    padding-bottom: 16px;
  }

  .nav-group__menu a {
    padding: 9px 0 9px 18px;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--sans);
    font-size: 14px;
  }

  .nav-group__menu a:hover,
  .nav-group__menu a:focus-visible {
    background: transparent;
    color: var(--white);
  }

  .no-js .nav-group__toggle {
    display: none;
  }

  .no-js .nav-group__menu {
    display: flex;
    max-height: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .no-js .nav-group__menu a {
    width: auto;
    padding: 7px 0;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .operation-overview__grid,
  .capability-section__header,
  .operation-gallery__heading,
  .careers-list__layout,
  .job-detail__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .operation-overview__copy {
    padding-top: 0;
  }

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

  .capability-card,
  .capability-card:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .capability-card > span {
    margin-bottom: 40px;
  }

  .operation-gallery__grid {
    grid-auto-rows: 300px;
    grid-template-columns: repeat(2, 1fr);
  }

  .operation-gallery__item,
  .operation-gallery__item--1,
  .operation-gallery__item--2,
  .operation-gallery__item--3 {
    grid-column: auto;
    grid-row: auto;
  }

  .operation-gallery__item:first-child {
    grid-column: 1 / -1;
  }

  .operation-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .job-detail__aside {
    position: static;
  }

  .site-footer__top {
    align-items: start;
  }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 220ms ease;
  }

  .admin-nav-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-nav-open::before {
    position: fixed;
    z-index: 55;
    inset: 0;
    background: rgba(17, 21, 30, 0.58);
    content: "";
  }

  .admin-shell {
    margin-left: 0;
  }

  .admin-topbar {
    justify-content: space-between;
  }

  .admin-menu-toggle {
    display: block;
    position: relative;
    z-index: 70;
    padding: 9px 13px;
    border: 1px solid var(--navy);
    background: transparent;
    color: var(--navy);
  }

  .admin-nav-open .admin-menu-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    border-color: var(--white);
    background: var(--white);
  }

  .admin-form--inline,
  .admin-form--upload,
  .placement-slot {
    grid-template-columns: 1fr;
  }

  .placement-form + .placement-form {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .brand__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand__name {
    display: none;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 700px;
  }

  .page-hero__inner {
    padding-top: calc(var(--header-height) + 88px);
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .page-hero__placeholder {
    display: flex;
    padding: 0 24px 30px;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-hero__placeholder i {
    display: none;
  }

  .page-hero__placeholder > span:first-child {
    font-size: 35vw;
  }

  .operation-gallery,
  .operation-cta {
    padding-block: 78px;
  }

  .operation-gallery__grid {
    grid-auto-rows: 270px;
    grid-template-columns: 1fr;
  }

  .operation-gallery__item:first-child {
    grid-column: auto;
  }

  .branded-placeholder {
    min-height: 480px;
    padding: 42px 28px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .inner-hero,
  .job-detail-hero {
    padding: calc(var(--header-height) + 110px) 0 80px;
  }

  .inner-hero h1,
  .job-detail-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .empty-state {
    padding: 42px 28px;
  }

  .job-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-detail__notice {
    padding: 28px !important;
  }

  .site-footer__operations {
    grid-template-columns: 1fr;
  }

  .admin-auth__panel {
    padding: 32px 24px;
  }

  .admin-content {
    width: calc(100% - 28px);
    padding-top: 34px;
  }

  .admin-page-heading,
  .admin-panel__heading,
  .admin-form__footer,
  .danger-zone {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-page-heading {
    display: flex;
  }

  .admin-stat-grid,
  .admin-form__grid,
  .media-library,
  .placement-form {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 22px 18px;
  }

  .admin-topbar p {
    display: none;
  }
}
