:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6f7f;
  --line: #dfe7ee;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --green: #157a55;
  --blue: #245f9c;
  --gold: #b87924;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.navCta, .primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
}

.navCta, .primary {
  color: white;
  background: var(--green);
}

.secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #f6fbf7 0%, #ffffff 46%, #eef5fb 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.heroMedia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.heroMedia img, .showcase img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.heroMedia img:first-child {
  grid-row: span 2;
  align-self: center;
}

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

.metrics article {
  padding: 28px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.metrics article:last-child { border-right: 0; }
.metrics span, .metrics em { display: block; color: var(--muted); font-style: normal; }
.metrics strong { display: block; margin: 8px 0; font-size: 28px; }

.section, .operations, .client {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.sectionHead h2, .operations h2, .client h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cards article, .opsGrid div {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cards h3 {
  font-size: 20px;
}

.cards p, .operations p, .client p, .opsGrid p {
  color: var(--muted);
  line-height: 1.65;
}

.operations {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  background: var(--soft);
}

.opsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.opsGrid span {
  color: var(--gold);
  font-weight: 800;
}

.opsGrid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 20px;
}

.client {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer strong { color: var(--ink); }

@media (max-width: 900px) {
  nav a:not(.navCta) { display: none; }
  .hero, .operations, .client { grid-template-columns: 1fr; }
  .metrics, .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .topbar { align-items: flex-start; }
  .brand strong { display: none; }
  .hero { min-height: auto; }
  .metrics, .cards, .opsGrid, .showcase { grid-template-columns: 1fr; }
  .sectionHead { display: block; }
  footer { flex-direction: column; }
}
