@import url('./public/fonts/fonts.css');

:root {
  --mineral: #f3f5f1;
  --paper: #ffffff;
  --blue: #0a2b38;
  --blue-2: #0e5b74;
  --yellow: #f5b92f;
  --yellow-soft: #f8d477;
  --ink-muted: #52636a;
  --rule: rgba(10, 43, 56, 0.16);
  --rule-light: rgba(255, 255, 255, 0.18);
  --max: 1440px;
  --pad: clamp(1.15rem, 3vw, 3.6rem);
  --section: clamp(4.25rem, 8vw, 7.5rem);
  --radius: 18px;
  --pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--mineral);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--mineral);
  color: var(--blue);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--pill);
  background: var(--yellow);
  color: var(--blue);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 220ms var(--ease);
}

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

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

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--pad) 0;
  pointer-events: none;
}

.header-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(100%, calc(var(--max) - 1rem));
  min-height: 68px;
  margin-inline: auto;
  padding: 0.5rem 0.55rem 0.5rem 1.05rem;
  border: 1px solid rgba(10, 43, 56, 0.15);
  border-radius: var(--pill);
  background: rgba(243, 245, 241, 0.92);
  box-shadow: 0 16px 34px rgba(10, 43, 56, 0.08);
  pointer-events: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 123px;
}

.brand-lockup img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.3vw, 1.35rem);
  margin-left: auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.desktop-nav a,
.nav-trigger,
.search-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  background: transparent;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.desktop-nav a::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  content: '';
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover,
.nav-trigger:hover,
.desktop-nav a[aria-current='page'] {
  color: var(--blue-2);
}

.desktop-nav a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded='true']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-trigger {
  gap: 0.35rem;
  padding: 0;
}

.nav-chevron {
  display: inline-grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 260ms var(--ease);
}

.nav-trigger[aria-expanded='true'] .nav-chevron {
  transform: rotate(45deg);
}

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

.search-trigger {
  width: 44px;
  justify-content: center;
}

.search-glyph {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
}

.search-glyph::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.5px;
  content: '';
  background: var(--blue);
  transform: rotate(45deg);
  transform-origin: left center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.68rem 0.75rem 0.68rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 280ms var(--ease), background-color 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-dark {
  background: var(--blue);
  color: var(--paper);
}

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

.button-yellow {
  background: var(--yellow);
  color: var(--blue);
}

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

.button-small {
  min-height: 44px;
  padding-block: 0.48rem;
}

.button-arrow {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  transition: transform 280ms var(--ease), background-color 280ms var(--ease);
}

.button-yellow .button-arrow {
  background: rgba(10, 43, 56, 0.12);
}

.button:hover .button-arrow {
  background: rgba(255, 255, 255, 0.25);
  transform: translate(2px, -1px);
}

.button-yellow:hover .button-arrow {
  background: rgba(10, 43, 56, 0.18);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
}

.menu-line {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 320ms var(--ease), top 320ms var(--ease);
}

.menu-line-one { top: 17px; }
.menu-line-two { top: 25px; }

.menu-toggle[aria-expanded='true'] .menu-line-one {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-line-two {
  top: 21px;
  transform: rotate(-45deg);
}

.dropdown-layer,
.search-layer {
  width: min(100%, calc(var(--max) - 1rem));
  margin: 0.5rem auto 0;
  border: 1px solid rgba(10, 43, 56, 0.15);
  border-radius: 24px;
  background: rgba(243, 245, 241, 0.98);
  box-shadow: 0 26px 60px rgba(10, 43, 56, 0.15);
  pointer-events: auto;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dropdown-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 3rem;
  padding: 2.25rem 2.4rem 2.5rem;
}

.dropdown-lead {
  max-width: 18rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.dropdown-lead p:last-child {
  margin: 0.9rem 0 0;
}

.dropdown-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.dropdown-links a {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--mineral);
  transition: background-color 250ms var(--ease), color 250ms var(--ease), transform 250ms var(--ease);
}

.dropdown-links a:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-4px);
}

.dropdown-links strong {
  font-size: 0.96rem;
}

.dropdown-links span {
  color: var(--ink-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.dropdown-links a:hover span {
  color: var(--blue);
}

.search-inner {
  padding: 1.4rem 2.4rem 2rem;
}

.search-form label {
  display: block;
  margin-bottom: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.search-input-row {
  display: flex;
  gap: 0.75rem;
}

.search-input-row input {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--paper);
}

.form-help,
.source-note,
.search-result-summary {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.search-result-summary {
  margin-top: 0;
  color: var(--blue);
  font-weight: 800;
}

.search-results {
  margin-top: 1.6rem;
}

.search-results:empty {
  display: none;
}

.search-result-list {
  display: grid;
  gap: 0.45rem;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule);
}

.search-result span {
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.search-result strong {
  display: block;
  font-size: 0.9rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 1.3rem var(--pad) 1.5rem;
  background: var(--blue);
  color: var(--paper);
  pointer-events: auto;
  overflow-y: auto;
}

.mobile-menu-head,
.mobile-menu-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.close-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 0;
  margin: 6vh 0 auto;
  border-top: 1px solid var(--rule-light);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--rule-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.1rem, 9vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms var(--ease), padding-left 220ms var(--ease);
}

.mobile-nav a:hover {
  padding-left: 0.35rem;
  color: var(--yellow);
}

.mobile-menu-foot {
  align-items: flex-start;
  flex-direction: column;
  margin-top: 2rem;
  color: var(--yellow);
  font-size: 0.78rem;
}

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

h1,
h2,
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h1 {
  max-width: 9ch;
  margin: 1.3rem 0 1.5rem;
  font-size: clamp(4rem, 8.2vw, 8.2rem);
}

h2 {
  max-width: 10ch;
  margin: 1.1rem 0 1.35rem;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
}

h3 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7.5rem);
  min-height: calc(100dvh - 88px);
  padding-top: clamp(4.5rem, 10vw, 8.8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-intro {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.5;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 220ms var(--ease), border-color 220ms var(--ease), gap 220ms var(--ease);
}

.text-link:hover {
  gap: 0.9rem;
  border-color: var(--yellow);
  color: var(--blue-2);
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 30rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-top: 0.85rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.signal-mark {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245, 185, 47, 0.18);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.image-frame:hover img {
  transform: scale(1.025);
}

.hero-image-frame {
  aspect-ratio: 1.25 / 1;
  min-height: 440px;
}

.hero-image-frame::after,
.project-image-frame::after,
.dark-image-frame::after,
.equipment-image-frame::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, rgba(10, 43, 56, 0.04), rgba(10, 43, 56, 0.72));
  pointer-events: none;
}

.image-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  line-height: 1.4;
}

.metrics-section,
.capabilities-section,
.projects-section,
.equipment-section,
.qhse-section,
.enquiry-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.metrics-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr);
  column-gap: clamp(3rem, 10vw, 10rem);
  align-items: start;
}

.section-intro h2 {
  max-width: 7ch;
}

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

.metric {
  min-height: 140px;
  padding: 1.3rem 1rem 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.metric:nth-child(3n + 2),
.metric:nth-child(3n + 3) {
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.metric span {
  display: block;
  margin-top: 0.7rem;
  color: var(--ink-muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.source-note {
  grid-column: 2;
  margin-top: 1rem;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 11vw, 11rem);
  align-items: start;
  border-top: 1px solid var(--rule);
}

.capabilities-intro {
  position: sticky;
  top: 110px;
}

.capabilities-intro h2 {
  max-width: 7ch;
}

.capabilities-intro > p {
  max-width: 29rem;
  margin-bottom: 1.8rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.capability-list {
  border-top: 1px solid var(--rule);
}

.capability-item {
  border-bottom: 1px solid var(--rule);
}

.capability-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0.6rem 0;
  background: transparent;
  color: var(--blue);
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.capability-trigger:hover {
  color: var(--blue-2);
}

.capability-plus {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1;
  transition: transform 260ms var(--ease), background-color 260ms var(--ease);
}

.capability-trigger[aria-expanded='true'] .capability-plus {
  background: var(--yellow);
  transform: rotate(180deg);
}

.capability-detail {
  max-width: 32rem;
  padding: 0 2.4rem 1.35rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.capability-detail p {
  margin-bottom: 0.8rem;
}

.capability-detail a {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.sectors-section,
.technology-section,
.site-footer {
  background: var(--blue);
  color: var(--paper);
}

.sectors-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.sectors-copy h2 {
  max-width: 8ch;
}

.sectors-copy > p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.68);
}

.sectors-copy,
.sector-media,
.technology-copy,
.trace-system {
  min-width: 0;
}

.sector-tabs {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 2.35rem 0 3.3rem;
}

.sector-tab {
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--rule-light);
  border-radius: var(--pill);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  transition: color 240ms var(--ease), border-color 240ms var(--ease), background-color 240ms var(--ease), transform 240ms var(--ease);
}

.sector-tab:hover,
.sector-tab.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-2px);
}

.sector-detail {
  max-width: 28rem;
}

.sector-detail h3 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
}

.sector-detail > p {
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.dark-image-frame {
  aspect-ratio: 1.22 / 1;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-image-frame img {
  filter: saturate(0.8) contrast(1.04);
}

.media-corner-mark {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.projects-section {
  border-bottom: 1px solid var(--rule);
}

.project-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-heading h2 {
  max-width: 8ch;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 5.5rem);
}

.project-image-frame {
  aspect-ratio: 1.5 / 1;
}

.project-copy {
  max-width: 25rem;
}

.project-location {
  margin-bottom: 0.8rem;
  color: var(--blue-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-copy h3 {
  max-width: 7ch;
  margin-bottom: 1rem;
}

.project-description {
  margin-bottom: 1.5rem;
  color: var(--ink-muted);
}

.project-controls {
  display: flex;
  gap: 0.55rem;
  margin-top: 2.5rem;
}

.round-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  font-size: 1rem;
  transition: background-color 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.round-control:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.equipment-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 9vw, 9rem);
  align-items: start;
}

.equipment-copy h2 {
  max-width: 7ch;
}

.equipment-copy > p {
  max-width: 27rem;
  margin-bottom: 1.6rem;
  color: var(--ink-muted);
}

.equipment-showcase,
.equipment-nav,
.equipment-tab,
.equipment-image-frame {
  min-width: 0;
}

.equipment-showcase {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.2rem;
  align-items: start;
}

.equipment-nav {
  border-top: 1px solid var(--rule);
}

.equipment-tab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  width: 100%;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-muted);
  text-align: left;
  transition: color 230ms var(--ease), padding-left 230ms var(--ease);
}

.equipment-tab:hover,
.equipment-tab.is-active {
  padding-left: 0.45rem;
  color: var(--blue);
}

.equipment-tab strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.equipment-tab small {
  font-size: 0.68rem;
}

.equipment-image-frame {
  aspect-ratio: 1.26 / 1;
  min-height: 390px;
}

.equipment-image-frame img {
  object-position: center;
}

.qhse-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr);
  gap: clamp(2rem, 9vw, 9rem);
  align-items: center;
  border-top: 1px solid var(--rule);
}

.qhse-media .image-frame {
  aspect-ratio: 1.2 / 1;
}

.qhse-copy h2 {
  max-width: 8ch;
}

.qhse-copy > p {
  max-width: 29rem;
  color: var(--ink-muted);
}

.golden-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 30rem;
  margin: 2.2rem 0;
}

.golden-rules div {
  min-height: 106px;
  padding: 0.8rem;
  border: 1px solid var(--rule);
}

.golden-rules strong,
.golden-rules span {
  display: block;
}

.golden-rules strong {
  color: var(--blue-2);
  font-size: 0.66rem;
}

.golden-rules span {
  margin-top: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.technology-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 9vw, 9rem);
  align-items: center;
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.technology-copy h2 {
  max-width: 7ch;
}

.technology-copy > p {
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.68);
}

.trace-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.3rem;
}

.trace-line {
  position: absolute;
  top: 0;
  right: 5%;
  left: 5%;
  height: 1px;
  background: var(--rule-light);
}

.trace-line::after {
  display: block;
  width: 38%;
  height: 1px;
  content: '';
  background: var(--yellow);
}

.trace-step {
  position: relative;
  display: flex;
  min-height: 145px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
}

.trace-step::before {
  position: absolute;
  top: -0.25rem;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--blue);
  content: '';
}

.trace-step.is-active {
  color: var(--paper);
}

.trace-step.is-active::before {
  border-color: var(--yellow);
  background: var(--yellow);
}

.trace-step > span {
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 800;
}

.trace-step strong {
  margin-top: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.trace-step small {
  margin-top: 0.6rem;
  font-size: 0.7rem;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.enquiry-copy h2 {
  max-width: 7ch;
}

.enquiry-copy > p {
  max-width: 28rem;
  color: var(--ink-muted);
}

.direct-contact {
  display: grid;
  gap: 0.45rem;
  margin-top: 2rem;
  font-size: 0.83rem;
  font-weight: 800;
}

.direct-contact a {
  width: fit-content;
  border-bottom: 1px solid var(--blue);
}

.direct-contact a:hover {
  border-color: var(--yellow);
}

.enquiry-form {
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.72rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 9px;
  outline: 0;
  background: var(--mineral);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-2);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(14, 91, 116, 0.12);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #a33c30;
}

.field-error {
  min-height: 1em;
  color: #a33c30;
  font-size: 0.67rem;
}

.form-status {
  min-height: 1.4em;
  margin: 1rem 0 0;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  padding-top: 3.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.footer-brand img {
  width: min(185px, 58%);
  margin-bottom: 1.35rem;
}

.footer-brand p {
  max-width: 17rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.footer-column .eyebrow {
  margin-bottom: 0.75rem;
}

.footer-column a {
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}

.footer-column a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.footer-contact p {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
  border-top: 1px solid var(--rule-light);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

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

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

.reveal-delay.reveal-pending {
  transition-delay: 110ms;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 0.7rem;
    font-size: 0.7rem;
  }

  .header-frame {
    gap: 0.6rem;
  }

  .brand-lockup {
    width: 108px;
  }

  .button-small {
    padding-left: 0.95rem;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions > .search-trigger,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 5rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(4.8rem, 15vw, 7rem);
  }

  .hero-image-frame {
    aspect-ratio: 1.45 / 1;
    min-height: 0;
  }

  .metrics-section,
  .capabilities-section,
  .equipment-section,
  .qhse-section,
  .technology-shell,
  .enquiry-section {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .source-note {
    grid-column: auto;
  }

  .capabilities-intro {
    position: static;
  }

  .sectors-shell,
  .project-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .sectors-copy h2,
  .project-heading h2,
  .equipment-copy h2,
  .qhse-copy h2,
  .technology-copy h2,
  .enquiry-copy h2 {
    max-width: 9ch;
  }

  .dark-image-frame {
    min-height: 0;
  }

  .equipment-showcase {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

@media (max-width: 640px) {
  :root {
    --section: clamp(4.5rem, 17vw, 6.5rem);
  }

  body {
    font-size: 15px;
  }

  .header-frame {
    min-height: 60px;
    padding-left: 0.85rem;
  }

  .brand-lockup {
    width: 100px;
  }

  .hero {
    gap: 2.4rem;
    padding-top: 4rem;
  }

  h1 {
    max-width: 7ch;
    margin-top: 1rem;
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .hero-note {
    margin-top: 2.5rem;
  }

  .hero-image-frame {
    aspect-ratio: 0.94 / 1;
    min-height: 390px;
  }

  .hero-image-frame img {
    object-position: 58% center;
  }

  .hero-rail {
    top: 4%;
    bottom: 4%;
    width: 2.5rem;
  }

  .hero-readout {
    right: 1rem;
    bottom: 3.4rem;
    max-width: 12.5rem;
  }

  .marquee-track {
    min-height: 54px;
    gap: 2.4rem;
    font-size: 1.45rem;
  }

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

  .metric {
    min-height: 110px;
  }

  .metric:nth-child(3n + 2),
  .metric:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .metric:nth-child(odd) {
    padding-right: 0.75rem;
  }

  .metric:nth-child(even) {
    padding-left: 0.75rem;
    border-left: 1px solid var(--rule);
  }

  .metric strong {
    font-size: 3.25rem;
  }

  .capability-trigger {
    grid-template-columns: 2rem minmax(0, 1fr) 2rem;
    min-height: 74px;
    font-size: 1.72rem;
  }

  .capability-detail {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .sector-tabs {
    flex-wrap: nowrap;
    margin-right: calc(var(--pad) * -1);
    margin-left: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sector-tabs::-webkit-scrollbar {
    display: none;
  }

  .sector-tab {
    flex: 0 0 auto;
  }

  .sector-detail h3 {
    font-size: 2.8rem;
  }

  .project-image-frame {
    aspect-ratio: 1.08 / 1;
  }

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

  .equipment-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    border-top: 0;
  }

  .equipment-tab {
    display: block;
    min-height: 106px;
    padding: 0.75rem;
    border: 1px solid var(--rule);
  }

  .equipment-tab:hover,
  .equipment-tab.is-active {
    padding-left: 0.75rem;
    border-color: var(--blue);
    background: var(--yellow);
    color: var(--blue);
  }

  .equipment-tab > span,
  .equipment-tab small {
    display: block;
    margin-bottom: 0.35rem;
  }

  .equipment-tab strong {
    display: block;
    font-size: 1.35rem;
  }

  .equipment-tab small {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .equipment-image-frame {
    aspect-ratio: auto;
    height: 330px;
    min-height: 0;
  }

  .golden-rules {
    gap: 0.4rem;
  }

  .golden-rules div {
    min-height: 94px;
    padding: 0.65rem;
  }

  .golden-rules span {
    margin-top: 1.1rem;
    font-size: 1.1rem;
  }

  .trace-system {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .trace-line {
    right: 8%;
    left: 8%;
  }

  .trace-step {
    min-height: 120px;
  }

  .trace-step strong {
    font-size: 1.5rem;
  }

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

  .enquiry-form .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.4rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .dropdown-layer,
  .search-layer {
    display: none !important;
  }
}

@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;
  }

  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-track {
    animation: signal-marquee 34s linear infinite;
  }

  @keyframes signal-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

/* Multi-page route system */
.home-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: min(720px, 92svh);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--blue);
  background-image: linear-gradient(90deg, rgba(6, 31, 42, 0.94) 0%, rgba(6, 31, 42, 0.76) 45%, rgba(6, 31, 42, 0.34) 100%), url("public/images/cab0fe_a41425908fe3438aba1c8a53e367de4b-mv2_d_3872_2592_s_4_2-8ecf6a57.jpg");
  background-position: center 38%;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  right: -10vw;
  bottom: 12%;
  width: min(44vw, 640px);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-32deg);
  transform-origin: right center;
}

.home-hero-content,
.home-hero-foot {
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-hero-content {
  padding-top: clamp(5rem, 11vh, 7rem);
  padding-bottom: 3rem;
}

.home-hero .breadcrumb {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4.5rem, 9vw, 9.8rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
}

.home-hero-intro {
  max-width: 560px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.home-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.home-hero-link:hover,
.home-hero-link:focus-visible {
  color: var(--yellow);
}

.home-hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.home-intro,
.home-routes,
.home-close {
  padding-top: clamp(4rem, 7.5vw, 6.5rem);
  padding-bottom: clamp(4rem, 7.5vw, 6.5rem);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: end;
}

.home-intro h2,
.home-close h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  line-height: 0.92;
  text-wrap: balance;
}

.home-intro p {
  max-width: 500px;
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-close-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(1.1rem, 2vw, 1.7rem);
  color: var(--blue-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-close-kicker span {
  display: inline-grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.home-close-description {
  max-width: 500px;
  margin: clamp(1.35rem, 2.2vw, 2.25rem) 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-strip > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.6rem 1.4rem 1.8rem 0;
  border-right: 1px solid var(--rule);
}

.proof-strip > div:not(:first-child) {
  padding-left: 1.4rem;
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
}

.section-heading-row p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

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

.route-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rule);
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(10, 43, 56, 0.1);
  transform: translateY(-4px);
}

.route-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.route-card-body {
  display: flex;
  min-height: 160px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem;
}

.route-card-body h3,
.text-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 0.98;
}

.route-card-body p,
.text-card p {
  margin: 0.9rem 0 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.route-card-body .text-link {
  margin-top: auto;
}

.home-project {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  color: var(--paper);
  background: var(--blue);
}

.home-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.home-project h2 {
  max-width: 620px;
  margin: 0 0 1.25rem;
  color: var(--paper);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.88;
}

.home-project p {
  max-width: 430px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.home-close {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  isolation: isolate;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 84% 50%, rgba(14, 91, 116, 0.08), transparent 19rem),
    linear-gradient(90deg, transparent 0%, transparent 60%, rgba(245, 185, 47, 0.035) 100%);
}

.home-close::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: var(--pad);
  left: 51%;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, rgba(10, 43, 56, 0.28), rgba(10, 43, 56, 0));
  pointer-events: none;
}

.home-close::after {
  position: absolute;
  z-index: 0;
  top: calc(50% - 0.3rem);
  left: calc(51% - 0.3rem);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.4rem rgba(245, 185, 47, 0.16);
  content: '';
  pointer-events: none;
}

.home-close > * {
  position: relative;
  z-index: 1;
}

.home-close > a {
  justify-self: end;
}

.inner-hero {
  width: 100%;
  margin-inline: 0;
  min-height: min(560px, 58svh);
  display: flex;
  align-items: end;
  color: var(--paper);
  background-color: var(--blue);
  background-image: linear-gradient(90deg, rgba(6, 31, 42, 0.95), rgba(6, 31, 42, 0.55)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.inner-hero-content {
  width: 100%;
  padding-top: clamp(5rem, 10vw, 7.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.inner-hero h1 {
  max-width: 970px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
}

.breadcrumb {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.inner-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.page-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(4rem, 7vw, 6.75rem);
}

.page-intro {
  align-self: start;
  position: sticky;
  top: 7.5rem;
}

.page-intro h2 {
  max-width: 380px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.92;
}

.page-main {
  min-width: 0;
}

.page-main > .lede,
.lede {
  max-width: 760px;
  margin: 0 0 2.5rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.page-figure {
  min-width: 0;
  margin: 0;
}

.page-figure img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.page-figure figcaption {
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.split-feature > * {
  min-width: 0;
}

.split-feature > div > p:not(.lede),
.page-main p {
  color: var(--muted);
  line-height: 1.75;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
}

.fact-list > div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.country-footprint {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.country-footprint > p {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-list li {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.fact-list strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 0.9;
}

.fact-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.service-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.page-callout,
.page-notice {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 4px solid var(--yellow);
  background: var(--wash);
}

.page-callout h3,
.page-notice h3 {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
}

.page-callout p,
.page-notice p {
  max-width: 680px;
  margin: 0 0 1rem;
}

.process-list,
.principle-list,
.content-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.process-list > div,
.principle-list > div,
.content-row {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.process-list h3,
.principle-list h3,
.content-row h3 {
  margin: 0 0 0.45rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 0.95;
}

.process-list p,
.principle-list p,
.content-row p {
  margin: 0 0 0.75rem;
}

.content-row .text-link {
  font-size: 0.85rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.direct-contact {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.direct-contact a {
  color: var(--blue);
  font-weight: 700;
}

.job-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

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

.job-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
}

.job-card p {
  max-width: 680px;
  margin: 0.8rem 0 0;
}

.legal-document {
  max-width: 820px;
}

.legal-document h3 {
  margin: 2.7rem 0 0.7rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.legal-document p {
  margin: 0 0 1rem;
}

.legal-document .page-notice {
  margin-top: 2rem;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.project-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.project-facts div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.project-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
}

.project-facts dd {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .home-hero {
    min-height: min(680px, 92svh);
    background-position: 68% center;
    background-image: linear-gradient(90deg, rgba(6, 31, 42, 0.9), rgba(6, 31, 42, 0.57)), url("public/images/cab0fe_a41425908fe3438aba1c8a53e367de4b-mv2_d_3872_2592_s_4_2-8ecf6a57.jpg");
  }

  .page-intro {
    position: static;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-intro h2 {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 640px;
    background-position: 68% center;
  }

  .home-hero::after {
    right: -30vw;
    bottom: 24%;
    width: 80vw;
  }

  .home-hero-content {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .home-hero h1 {
    max-width: 560px;
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .home-hero-intro {
    max-width: 360px;
    font-size: 1rem;
  }

  .home-hero-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .home-intro,
  .home-project-grid,
  .home-close,
  .contact-layout,
  .project-detail-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .home-routes,
  .home-close {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .home-close {
    gap: 2rem;
  }

  .home-close::before,
  .home-close::after {
    display: none;
  }

  .home-close > a {
    justify-self: start;
  }

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

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(3),
  .proof-strip > div:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .proof-strip > div:nth-child(3) {
    padding-left: 0;
  }

  .route-grid,
  .route-grid-four {
    grid-template-columns: 1fr;
  }

  .route-card-body {
    min-height: 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .inner-hero {
    min-height: 420px;
    background-image: linear-gradient(90deg, rgba(6, 31, 42, 0.93), rgba(6, 31, 42, 0.62)), var(--hero-image);
  }

  .inner-hero h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

  .page-content {
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .home-project h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-card {
    transition: none;
  }
}

