:root {
  --ink: #172025;
  --muted: #5e6a70;
  --line: #dfe5e2;
  --paper: #f7f5ef;
  --white: #ffffff;
  --forest: #0d3f3d;
  --teal: #167b78;
  --copper: #b66a31;
  --gold: #dfb44d;
  --shadow: 0 18px 45px rgba(23, 32, 37, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

.brand-name,
.brand-meta {
  display: block;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: #344147;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: #eef4f1;
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(-6px);
}

.nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0e1d1f;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 17, 19, 0.88), rgba(7, 17, 19, 0.55) 46%, rgba(7, 17, 19, 0.14));
  content: "";
}

.hero-content {
  width: min(820px, 100%);
  padding: clamp(48px, 9vw, 116px) clamp(20px, 6vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

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

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

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-band {
  background: var(--paper);
}

.split,
.contact-layout,
.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p,
.capabilities p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 32, 37, 0.06);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.service-card:nth-child(2n) .service-icon {
  background: var(--copper);
}

.service-card p,
.process p,
.capability-list span {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.process article {
  padding-top: 24px;
  border-top: 2px solid var(--forest);
}

.process span {
  display: block;
  margin-bottom: 20px;
  color: var(--copper);
  font-weight: 900;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list div,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-list div {
  padding: 20px;
}

.capability-list strong,
.capability-list span {
  display: block;
}

.contact-panel {
  padding: 26px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 17, 19, 0.5), rgba(7, 17, 19, 0.86));
  }

  .hero-content {
    padding-top: 120px;
  }

  .split,
  .contact-layout,
  .capability-layout,
  .service-grid,
  .process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-name {
    max-width: 190px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.2rem);
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

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

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
