:root {
  --bg: #f4f3ef;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #60605c;
  --line: #d8d5cc;
  --charcoal: #1d1d1b;
  --orange: #ff5b1f;
  --green: #b8d936;
  --cyan: #5bcad6;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 222px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.site-nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
}

.header-cta,
.button-primary {
  background: var(--orange);
  color: var(--paper);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.82) 0%, rgba(15, 15, 14, 0.58) 38%, rgba(15, 15, 14, 0.08) 72%),
    linear-gradient(0deg, rgba(15, 15, 14, 0.56), rgba(15, 15, 14, 0.02) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-top: 76px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-content > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro,
.visual-services,
.services,
.approach,
.sectors {
  border-bottom: 1px solid var(--line);
}

.clients {
  border-bottom: 1px solid var(--line);
}

.intro,
.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-row div {
  min-height: 92px;
  padding: 18px;
  background: var(--paper);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--orange);
  font-size: 13px;
}

.metric-row span {
  margin-top: 16px;
  color: var(--ink);
  font-weight: 700;
}

.visual-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.visual-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-card div {
  padding: 24px;
}

.visual-card h3 {
  font-size: 24px;
}

.visual-card p:not(.eyebrow) {
  color: var(--muted);
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.service-card span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

.service-card p,
.process-item p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.process-item {
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.process-item span {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.sector-list span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.5);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #ffffff;
}

.client-logo img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}
.client-logo-wide img {
  max-width: 180px;
  max-height: 72px;
}

.contact-panel {
  padding: 40px;
  background: var(--charcoal);
  color: var(--paper);
}

.contact-panel h2 {
  max-width: 650px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-self: end;
}

.contact-actions a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 34px max(22px, calc((100vw - var(--max)) / 2)) 48px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin: 14px 0 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-logo {
    width: 156px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 71px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--paper);
  }

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

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

  .header-cta {
    display: none;
  }

  .intro,
  .visual-services,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 820px;
    align-items: end;
  }

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

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 44px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .metric-row,
  .service-grid,
  .process,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
