:root {
  --ink: #101113;
  --carbon: #17191d;
  --steel: #25282e;
  --muted: #686d75;
  --line: #d9dadd;
  --paper: #f5f5f3;
  --white: #ffffff;
  --gold: #c0a15a;
  --gold-bright: #d8bb70;
  --silver: #c9cdd2;
  --shadow: 0 22px 70px rgba(10, 11, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.service-bar {
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.service-bar a {
  color: var(--gold-bright);
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 17, 19, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: block;
  width: 180px;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 750;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(192, 161, 90, 0.16), transparent 34%),
    linear-gradient(125deg, #0d0e10 0%, #191b20 58%, #111214 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 205, 210, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-rule {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 5px;
  background: var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 90px;
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #8b6a2d;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  font-weight: 880;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--gold-bright);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #d7d9dc;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--gold {
  color: var(--ink);
  background: var(--gold-bright);
}

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

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 0;
  margin: 31px 0 0;
  color: #b9bdc2;
  font-size: 0.84rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-list li::before {
  width: 5px;
  height: 5px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.hero-panel {
  padding: 34px 34px 28px;
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin-bottom: 22px;
  color: #aeb2b8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capability {
  display: grid;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 44px 1fr;
}

.capability span {
  color: var(--gold-bright);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.8rem;
}

.capability strong {
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.panel-note {
  margin: 25px 0 0;
  color: #bdc0c5;
  font-size: 0.84rem;
}

.proof-strip {
  color: var(--white);
  background: #24272c;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.proof-grid strong {
  color: var(--gold-bright);
  font-size: 1rem;
}

.proof-grid span {
  margin-top: 3px;
  color: #b9bdc3;
  font-size: 0.88rem;
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 55px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
}

.section-heading--compact {
  align-items: center;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 38px;
  background: var(--white);
}

.service-card--featured {
  color: var(--white);
  background: var(--ink);
}

.card-number {
  display: block;
  margin-bottom: 35px;
  color: #967436;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card--featured .card-number {
  color: var(--gold-bright);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.service-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card--featured p {
  color: #c8cbd0;
}

.service-card a {
  display: inline-block;
  margin-top: 25px;
  color: var(--gold-bright);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.equipment {
  color: var(--white);
  background: var(--ink);
}

.equipment-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.equipment-intro {
  position: sticky;
  top: 150px;
}

.equipment-intro h2 {
  margin-bottom: 24px;
}

.equipment-intro > p:not(.eyebrow) {
  max-width: 480px;
  color: #b9bdc3;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.equipment-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.equipment-list > div {
  display: grid;
  padding: 23px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: #e4e5e7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 720;
  grid-template-columns: 58px 1fr;
}

.equipment-list span {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.industries {
  background: var(--paper);
}

.industry-grid {
  display: grid;
  border-top: 1px solid #cfd1d4;
  border-left: 1px solid #cfd1d4;
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid div {
  display: flex;
  min-height: 125px;
  align-items: end;
  padding: 24px;
  border-right: 1px solid #cfd1d4;
  border-bottom: 1px solid #cfd1d4;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.96rem;
  font-weight: 780;
}

.industry-grid div:last-child {
  color: var(--white);
  background: var(--steel);
}

.about {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(192, 161, 90, 0.1), transparent 25%),
    #23262b;
}

.about::before {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(192, 161, 90, 0.18);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
}

.about-lead {
  margin-bottom: 44px;
  color: #d0d2d5;
  font-size: 1.2rem;
}

.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.people div {
  padding: 24px;
  background: #1b1d21;
}

.people strong,
.people span {
  display: block;
}

.people strong {
  color: var(--gold-bright);
}

.people span {
  margin-top: 4px;
  color: #aeb2b7;
  font-size: 0.82rem;
}

.contact {
  padding-block: 105px;
  border-top: 6px solid var(--gold);
  background: var(--white);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact-grid > div:first-child > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  border-top: 1px solid var(--ink);
}

.contact-link {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-link strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.contact-link:hover strong {
  color: #8b6a2d;
}

.contact-link--primary strong {
  color: #8b6a2d;
}

.contact-details {
  display: grid;
  gap: 14px;
  padding-top: 22px;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-details strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner span {
  margin-top: 4px;
  color: #aeb2b8;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
  color: #8d9299;
  font-size: 0.78rem;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .primary-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 1fr 320px;
    gap: 45px;
  }

  .section-heading,
  .equipment-grid,
  .about-grid,
  .contact-grid {
    gap: 52px;
  }

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

@media (max-width: 800px) {
  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: 160px;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 14px 20px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 35px rgba(10, 11, 13, 0.12);
    flex-direction: column;
    gap: 0;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #e7e8e9;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    padding: 13px 16px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 80px;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .proof-grid > div,
  .proof-grid > div:last-child {
    min-height: 95px;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading,
  .equipment-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .equipment-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .service-bar__inner span {
    display: none;
  }

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

  .brand {
    width: 145px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .hero-grid {
    min-height: auto;
    padding-block: 68px;
  }

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

  .trust-list {
    flex-direction: column;
  }

  .hero-panel {
    padding: 28px 24px 23px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

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

  .service-card {
    min-height: auto;
    padding: 31px 25px;
  }

  .card-number {
    margin-bottom: 24px;
  }

  .equipment-grid,
  .about-grid,
  .contact-grid {
    gap: 44px;
  }

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

  .industry-grid div {
    min-height: 92px;
  }

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

  .footer-inner {
    align-items: flex-start;
    padding-block: 34px;
    flex-direction: column;
    gap: 24px;
  }
}

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

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