:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5e625f;
  --paper: #f6f4ee;
  --cream: #fbfaf5;
  --line: #d9d5c9;
  --cyan: #19c4d8;
  --green: #7ce26b;
  --coral: #ff654f;
  --violet: #7665ff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  mix-blend-mode: difference;
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-links {
  gap: clamp(16px, 3vw, 38px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  background: #080909;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .3) 48%, rgba(0, 0, 0, .72)),
    linear-gradient(0deg, rgba(0, 0, 0, .74), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 94vh;
  padding: 120px clamp(18px, 4vw, 54px) 42px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1220px;
  margin: 16px 0 34px;
  font-size: clamp(54px, 10.6vw, 164px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .84;
}

.hero-lower {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.hero-lower p {
  max-width: 600px;
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-light {
  background: #fff;
  color: #111;
}

.button-dark {
  background: #111;
  color: #fff;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--cyan);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 22s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  font-size: clamp(22px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.marquee span::after {
  content: "/";
  margin-left: 28px;
  color: rgba(0, 0, 0, .35);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.section-pad {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 4vw, 54px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(0, 1fr);
  gap: 26px;
  background: var(--cream);
}

.intro-copy p {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(34px, 6.4vw, 96px);
  font-weight: 900;
  line-height: .95;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-heading h2,
.proof h2,
.footer h2 {
  max-width: 860px;
  margin: 10px 0 0;
  font-size: clamp(38px, 6.2vw, 92px);
  font-weight: 900;
  line-height: .92;
}

.text-link {
  border-bottom: 2px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.project {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
}

.project-large {
  grid-row: span 2;
}

.project img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.project-large img {
  height: 680px;
}

.project-body {
  padding: 24px;
}

.project-body span,
.service-row span,
.process-grid span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project h3,
.service-row h3 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 900;
  line-height: .95;
}

.project p,
.service-row p,
.process-grid p,
.footer-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.project-text {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  background: #111;
  color: #fff;
}

.project-text p {
  color: rgba(255, 255, 255, .74);
}

.project-text ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .14);
}

.project-text li {
  padding: 18px 24px;
  background: #111;
  font-weight: 800;
}

.services {
  background: var(--ink);
  color: #fff;
}

.service-list {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, .9fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.service-row p {
  color: rgba(255, 255, 255, .68);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: stretch;
  background: var(--green);
}

.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.metrics {
  display: grid;
  gap: 16px;
}

.metrics div {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .28);
}

.metrics strong {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: .9;
}

.metrics span {
  max-width: 230px;
  font-weight: 800;
  text-transform: uppercase;
}

.process {
  background: var(--cream);
}

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

.process-grid article {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-grid span {
  display: block;
  margin-bottom: 110px;
  color: var(--coral);
  font-size: 38px;
}

.process-grid p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.15;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 54px) 44px;
  background: var(--violet);
  color: #111;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    min-height: 880px;
  }

  .hero-lower,
  .section-heading,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro,
  .project-grid,
  .proof,
  .footer {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project img,
  .project-large img {
    height: 420px;
  }

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

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

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

  .proof-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(48px, 17vw, 86px);
  }

  .hero-lower p {
    font-size: 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .project img,
  .project-large img {
    height: 300px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .process-grid span {
    margin-bottom: 70px;
  }
}
