:root {
  --navy-950: #08192c;
  --navy-900: #102a47;
  --navy-800: #173858;
  --green-800: #176042;
  --green-700: #267653;
  --green-100: #e1eee7;
  --sand-100: #f5f3ee;
  --sand-200: #ebe7de;
  --white: #ffffff;
  --ink: #182432;
  --muted: #5b6771;
  --line: #d8d9d4;
  --danger: #a43c35;
  --shadow: 0 24px 60px rgba(8, 25, 44, 0.18);
  --shell: min(1240px, calc(100vw - 64px));
  --section: clamp(5rem, 8vw, 8.5rem);
  --transition: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-100);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

h3 {
  line-height: 1.2;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #61b68d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

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

.section-kicker,
.eyebrow {
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #9ccbb3;
}

.utility-bar {
  position: relative;
  z-index: 1002;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-950);
}

.utility-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-message {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.utility-message strong {
  color: var(--white);
  font-weight: 700;
}

.utility-message span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.utility-links {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.utility-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background var(--transition);
}

.utility-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.utility-links small {
  color: #8fc4a9;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-links span {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 42, 71, 0.1);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(8, 25, 44, 0.1);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  width: 190px;
  height: 54px;
  flex: 0 0 auto;
}

.brand-wordmark,
.brand-scroll-mark {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  transform: translateY(-50%);
  transition: opacity 280ms ease;
}

.brand-wordmark {
  width: 190px;
  height: auto;
  opacity: 1;
}

.brand-scroll-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  opacity: 0;
}

.site-header.is-brand-swapped .brand-wordmark {
  opacity: 0;
}

.site-header.is-brand-swapped .brand-scroll-mark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav > a {
  position: relative;
  padding-block: 12px;
  color: #344452;
  font-size: 1rem;
  font-weight: 700;
}

.desktop-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

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

.header-cta {
  min-height: 46px;
  padding: 0 19px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition);
}

.header-cta:hover {
  background: var(--green-700);
}

.header-cta .contact-icon,
.button .contact-icon,
.text-link .contact-icon,
.footer-contact .contact-icon {
  margin-left: 8px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.contact-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: -0.3em;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-content: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  background: var(--navy-900);
}

.menu-backdrop,
.contact-backdrop,
.privacy-backdrop {
  position: fixed;
  z-index: 1500;
  inset: 0;
  background: rgba(4, 14, 25, 0.62);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-backdrop.is-open,
.contact-backdrop.is-open,
.privacy-backdrop.is-open {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 1600;
  top: 0;
  right: 0;
  width: min(88vw, 420px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--sand-100);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: none;
  visibility: visible;
}

.mobile-menu-head {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.mobile-menu-head img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.menu-close,
.contact-close,
.privacy-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-right: -10px;
  padding: 0;
  color: var(--navy-900);
  font-size: 1.75rem;
  line-height: 1;
}

.menu-close span {
  font-size: inherit;
  font-weight: 300;
  line-height: 1;
}

.mobile-menu nav {
  padding-block: 34px;
}

.mobile-menu nav a,
.mobile-menu nav button {
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  text-align: left;
}

.mobile-menu nav a.is-active {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--green-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100dvh - 36px));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 21, 37, 0.98) 0%, rgba(7, 21, 37, 0.9) 34%, rgba(7, 21, 37, 0.36) 65%, rgba(7, 21, 37, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 16, 29, 0.76) 0%, transparent 37%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-block: 78px 150px;
}

.hero-copy {
  max-width: 720px;
}

.hero-brand-mark {
  width: 70px;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: #9bcbb3;
}

.hero h1 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(3.25rem, 6.2vw, 6.1rem);
}

.hero-lead {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

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

.button-primary:hover {
  background: #31855f;
}

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

.button-ghost:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.button-secondary {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--navy-900);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy-900);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 25, 44, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.proof-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-grid p {
  height: 40px;
  display: flex;
  align-items: center;
  padding-inline: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.intro {
  background: var(--sand-100);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 2.85fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.intro-copy h2 {
  max-width: 760px;
  color: var(--navy-900);
  font-size: clamp(2.4rem, 4.6vw, 4.7rem);
}

.intro-copy > p {
  max-width: 650px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-note {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 820px;
  margin-top: clamp(42px, 5vw, 68px);
  padding-top: 24px;
  border-top: 1px solid rgba(39, 126, 89, 0.5);
  color: var(--muted);
  font-size: 1rem;
}

.intro-note-label {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.intro-note > p:last-child {
  max-width: 570px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.section-heading h2 {
  max-width: 740px;
  margin-top: 18px;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.section-heading > p {
  padding-bottom: 8px;
  color: var(--muted);
}

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

.service-row {
  min-height: 148px;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  max-width: 330px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
}

.service-row p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.94rem;
}

.industries {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 760px;
}

.industry-image-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy-950);
}

.industry-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 17, 29, 0.83), rgba(5, 17, 29, 0.04) 58%);
}

.industry-image-wrap > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.industry-image-wrap > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform: scale(1.01);
}

.industry-image-caption {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 5vw, 80px);
  bottom: clamp(36px, 5vw, 76px);
  left: clamp(30px, 5vw, 80px);
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 40px;
  align-items: start;
  color: var(--white);
}

.industry-image-caption span {
  color: #a4d0b9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.industry-image-caption p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.industry-panel {
  display: grid;
  align-items: center;
  padding: clamp(52px, 7vw, 110px);
  color: var(--white);
  background: var(--green-800);
}

.industry-panel h2 {
  max-width: 560px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.industry-panel .section-kicker {
  color: #b6dbc7;
}

.industry-list {
  margin-top: 44px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.industry-list li {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.93rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 38px;
  padding: 0 0 8px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover {
  color: #a4d0b9;
  border-color: #a4d0b9;
}

.why {
  color: var(--white);
  background: var(--navy-950);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
}

.why-content h2 {
  max-width: 710px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.why-lead {
  max-width: 710px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.why-points {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-points article {
  padding-block: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.why-points h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.why-points p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
}

.why-figure {
  position: relative;
  margin: 0;
}

.why-figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--green-700);
  border-right: 3px solid var(--green-700);
}

.why-figure img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: 53% center;
}

.why-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: var(--white);
  background: rgba(8, 25, 44, 0.86);
  border-left: 4px solid var(--green-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.approach {
  background: var(--sand-100);
}

.approach-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.6fr;
  gap: 80px;
  margin-bottom: 72px;
}

.approach-heading h2 {
  max-width: 760px;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 76px);
  list-style: none;
}

.approach-steps li {
  min-width: 0;
}

.step-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.approach-steps .step-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  padding: 14px;
  color: var(--green-700);
  background: rgba(38, 123, 87, 0.1);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-steps .step-number {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.approach-steps .step-number::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(16, 42, 71, 0.18);
}

.approach-steps h3 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.68rem;
  font-weight: 500;
}

.approach-steps p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(60px, 7vw, 96px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-800);
}

.cta-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: clamp(470px, 42vw, 680px);
  background: linear-gradient(180deg, rgba(8, 25, 44, 0.08), rgba(8, 25, 44, 0.36));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -9vw;
  width: clamp(520px, 46vw, 780px);
  aspect-ratio: 1;
  background: url("assets/images/highland-safety-mark.jpg") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.075;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 780px;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
}

.cta-actions {
  width: 100%;
  max-width: 370px;
  margin-left: auto;
}

.cta-action-intro {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-action-label {
  color: #a9d4bf;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-action-copy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cta-actions .button {
  width: 100%;
  justify-content: space-between;
  margin-top: 26px;
}

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

.button-light:hover {
  background: var(--sand-200);
}

.direct-call {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.cta-actions .direct-call {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-actions .direct-call:hover {
  background: rgba(255, 255, 255, 0.11);
}

.direct-call small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

.direct-call span {
  margin-top: 3px;
  font-weight: 700;
}

.cta-actions .direct-call span {
  margin-top: 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.cta-actions .direct-call small {
  color: #a9d4bf;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  padding-bottom: 70px;
}

.footer-logo-panel {
  width: clamp(144px, 14.4vw, 180px);
  margin-bottom: 30px;
}

.footer-brand > p {
  max-width: 490px;
  font-size: 0.9rem;
}

.footer-contact {
  margin-top: 28px;
  padding: 0 0 8px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition), border-color var(--transition);
}

.footer-contact:hover {
  color: #a4d0b9;
  border-color: #a4d0b9;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-nav h2 {
  margin-bottom: 20px;
  color: #8ebca6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav button,
.footer-nav span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

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

.contact-panel,
.privacy-panel {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: min(620px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--sand-100);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 330ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 330ms;
}

.contact-panel.is-open,
.privacy-panel.is-open {
  transform: none;
  visibility: visible;
  transition-delay: 0s;
}

.contact-panel-head,
.privacy-panel-head {
  min-height: 72px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  color: var(--white);
  background: var(--navy-950);
}

.panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-close,
.privacy-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-right: -10px;
  padding: 0;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
}

.contact-close span,
.privacy-close span {
  font-size: inherit;
  font-weight: 300;
  line-height: 1;
}

.contact-panel-body,
.privacy-panel-body {
  min-height: 0;
  padding: 40px 36px 50px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.privacy-backdrop {
  z-index: 2100;
}

.privacy-panel {
  z-index: 2200;
}

.privacy-panel-intro h2 {
  margin-top: 12px;
  color: var(--navy-900);
  font-size: clamp(3rem, 6vw, 4.6rem);
}

.privacy-panel .privacy-panel-content {
  margin-top: 42px;
}

.privacy-panel .privacy-panel-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.privacy-panel .privacy-panel-content p,
.privacy-panel .privacy-panel-content li {
  font-size: 0.94rem;
}

.contact-intro h2 {
  margin-top: 12px;
  color: var(--navy-900);
  font-size: clamp(2.7rem, 7vw, 4.5rem);
}

#contact-title:focus,
#privacy-panel-title:focus,
.form-success h3:focus {
  outline: 0;
}

.contact-intro > p:last-child {
  margin-top: 16px;
  color: var(--muted);
}

.direct-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.direct-options > * {
  min-width: 0;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px;
  border-left: 1px solid var(--line);
}

.direct-options > *:last-child {
  border-right: 1px solid var(--line);
}

.direct-options small {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.direct-options span {
  margin-top: 6px;
  overflow: hidden;
  color: var(--navy-900);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form {
  margin-top: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 700;
}

.optional {
  color: #7d858b;
  font-size: 0.65rem;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9ccc8;
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(38, 118, 83, 0.14);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-help {
  display: block;
  margin-top: 5px;
  color: #737d84;
  font-size: 0.68rem;
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 4px;
  color: var(--danger);
  font-size: 0.69rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  color: #75302b;
  background: #f5e5e3;
  border-left: 3px solid var(--danger);
  font-size: 0.78rem;
}

.form-status:not(:empty) {
  display: block;
}

.submit-button {
  width: 100%;
}

.button .submit-loading {
  display: none;
}

.contact-form.is-submitting .submit-label {
  display: none;
}

.contact-form.is-submitting .submit-loading {
  display: inline;
}

.contact-form.is-submitting .submit-button {
  cursor: wait;
  opacity: 0.74;
}

.form-privacy {
  margin-top: 13px;
  color: #737d84;
  font-size: 0.66rem;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  margin-top: 46px;
  padding: 48px 34px;
  text-align: center;
  background: var(--green-100);
  border-top: 4px solid var(--green-700);
}

.success-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 1.4rem;
}

.form-success h3 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.form-success p {
  margin: 12px auto 24px;
  color: var(--muted);
}

.mobile-action-bar {
  display: none;
}

.config-missing {
  cursor: default !important;
  opacity: 0.72;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.privacy-main {
  min-height: 70vh;
  padding-block: var(--section);
  background: var(--sand-100);
}

.privacy-wrap {
  max-width: 820px;
}

.privacy-wrap h1 {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.privacy-updated {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-content {
  margin-top: 58px;
}

.privacy-content h2 {
  margin-top: 42px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.privacy-content p,
.privacy-content li {
  margin-top: 13px;
  color: var(--muted);
}

.privacy-content ul {
  padding-left: 20px;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 44px, 1000px);
  }

  .utility-links .config-phone,
  .utility-links .config-email {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  .intro-grid {
    grid-template-columns: 0.65fr 1.7fr;
  }

  .why-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --section: 5.2rem;
  }

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

  .utility-bar {
    display: none;
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    width: 168px;
    height: 48px;
  }

  .brand-wordmark {
    width: 168px;
  }

  .brand-scroll-mark {
    width: 42px;
    height: 42px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 630px;
    padding-block: 80px 140px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 21, 37, 0.97) 0%, rgba(7, 21, 37, 0.81) 56%, rgba(7, 21, 37, 0.35) 100%),
      linear-gradient(0deg, rgba(5, 16, 29, 0.86) 0%, transparent 45%);
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 16px;
  }

  .proof-grid p {
    height: 36px;
    border: 0;
  }

  .proof-grid p:last-child {
    border: 0;
  }

  .intro-grid,
  .section-heading,
  .why-grid,
  .approach-heading,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 28px;
  }

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

  .section-heading,
  .approach-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .service-row {
    grid-template-columns: 0.9fr 1.15fr;
    gap: 28px;
    padding-block: 24px;
  }

  .service-row p {
    grid-column: auto;
  }

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

  .industry-image-wrap {
    min-height: 520px;
  }

  .industry-panel {
    padding: 78px var(--shell-side, 32px);
  }

  .industry-panel-inner {
    width: var(--shell);
    margin-inline: auto;
  }

  .why-grid {
    gap: 76px;
  }

  .why-figure {
    max-width: 550px;
  }

  .why-figure img {
    aspect-ratio: 0.9;
    object-position: center 45%;
  }

  .cta-inner {
    gap: 42px;
  }

  .cta-band::before {
    inset: auto 0 0;
    width: 100%;
    height: 52%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .cta-band::after {
    top: auto;
    right: -170px;
    bottom: -200px;
    width: 560px;
    transform: none;
  }

  .cta-actions {
    max-width: 520px;
    margin-left: 0;
  }

  .footer-grid {
    gap: 58px;
  }

  .contact-panel,
  .privacy-panel {
    width: min(680px, 100vw);
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 36px);
    --section: 4.5rem;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .brand {
    width: 142px;
    height: 44px;
  }

  .brand-wordmark {
    width: 142px;
  }

  .brand-scroll-mark {
    width: 38px;
    height: 38px;
  }

  .header-inner {
    height: 68px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 71% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 21, 37, 0.96) 0%, rgba(7, 21, 37, 0.83) 66%, rgba(7, 21, 37, 0.52) 100%),
      linear-gradient(0deg, rgba(5, 16, 29, 0.91) 0%, transparent 52%);
  }

  .hero-inner {
    min-height: 640px;
    align-items: flex-start;
    padding-block: 82px 170px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.7rem, 12.5vw, 3.75rem);
  }

  .hero-brand-mark {
    width: 50px;
    margin-bottom: 14px;
  }

  .hero-lead {
    max-width: 390px;
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    backdrop-filter: none;
  }

  .proof-grid {
    min-height: 112px;
    padding-block: 12px;
  }

  .proof-grid p {
    min-height: 42px;
    height: auto;
    padding-inline: 7px 12px;
    font-size: 0.78rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .industry-panel h2,
  .why-content h2,
  .approach-heading h2,
  .cta-inner h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .intro-copy > p,
  .why-lead {
    font-size: 0.96rem;
  }

  .intro-note {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
    padding-top: 20px;
  }

  .intro-note > p:last-child {
    font-size: 1rem;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding-block: 25px;
  }

  .service-row h3 {
    font-size: 1.45rem;
  }

  .service-row p {
    font-size: 0.87rem;
  }

  .industry-image-wrap {
    min-height: 440px;
  }

  .industry-image-wrap > picture > img {
    object-position: 74% center;
  }

  .industry-image-caption {
    right: 24px;
    bottom: 26px;
    left: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .industry-image-caption p {
    max-width: 380px;
  }

  .industry-panel {
    padding-block: 68px;
    padding-inline: 0;
  }

  .industry-list {
    margin-top: 34px;
  }

  .industry-list li {
    min-height: 58px;
    font-size: 0.83rem;
  }

  .why-grid {
    gap: 60px;
  }

  .why-points {
    margin-top: 42px;
  }

  .why-figure::before {
    top: -10px;
    right: -10px;
    width: 76px;
    height: 76px;
  }

  .why-figure img {
    aspect-ratio: 0.79;
  }

  .approach-heading {
    margin-bottom: 48px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .approach-steps li,
  .approach-steps li:last-child {
    min-height: 0;
    padding: 0 0 32px;
    border: 0;
    border-bottom: 1px solid rgba(16, 42, 71, 0.14);
  }

  .approach-steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .step-marker {
    margin-bottom: 22px;
  }

  .cta-actions {
    width: 100%;
    max-width: none;
  }

  .cta-band::after {
    right: -190px;
    width: 520px;
    opacity: 0.055;
  }

  .cta-band::before {
    height: 58%;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .contact-backdrop,
  .privacy-backdrop {
    display: none;
  }

  .contact-panel-head,
  .privacy-panel-head {
    min-height: 64px;
    padding-inline: 20px;
  }

  .contact-panel-body,
  .privacy-panel-body {
    padding: 30px 20px calc(48px + env(safe-area-inset-bottom));
  }

  .contact-intro h2 {
    font-size: 3.35rem;
  }

  .direct-options {
    grid-template-columns: 1fr;
  }

  .direct-options > *,
  .direct-options > *:last-child {
    min-height: 72px;
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .direct-options > *:last-child {
    border-bottom: 0;
  }

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

  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(68px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: var(--navy-950);
    box-shadow: 0 -10px 30px rgba(8, 25, 44, 0.18);
    transform: translateY(110%);
    transition: transform var(--transition);
  }

  .mobile-action-bar.is-visible {
    transform: none;
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-height: 50px;
    display: grid;
    place-content: center;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
  }

  .mobile-action-bar a {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .mobile-action-bar button {
    color: var(--white);
    background: var(--green-700);
  }

  .mobile-action-bar .config-missing {
    display: none;
  }

  .mobile-action-bar .config-missing + button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 370px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .brand {
    width: 128px;
  }

  .brand-wordmark {
    width: 128px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-inner {
    padding-top: 62px;
  }

  .proof-grid p {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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