:root {
  --ink: #0a0a0a;
  --muted: rgba(10, 10, 10, 0.55);
  --quiet: rgba(10, 10, 10, 0.42);
  --line: #d5d9e2;
  --soft-line: rgba(10, 10, 10, 0.12);
  --white: #ffffff;
  --sans: Inter, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

.site-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-shell {
  width: 100%;
  max-width: 1280px;
  height: 64px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.site-nav a {
  padding: 6px 12px;
  border-radius: 999px;
}

.site-nav a,
.header-cta,
.control,
.inline-link,
.site-footer a {
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  background: rgba(10, 10, 10, 0.05);
}

.header-cta {
  justify-self: end;
  min-height: 36px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.header-cta:hover,
.control-primary:hover {
  background: #292929;
}

.menu-toggle {
  display: none;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
}

.hero {
  padding-top: 84px;
}

.hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
}

.hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero h1 {
  margin-top: 32px;
  font-size: 60px;
  line-height: 1;
}

.hero-lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.625;
}

.hero-actions,
.small-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  justify-content: center;
  margin-top: 36px;
}

.control {
  min-height: 44px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

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

.control-secondary {
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.15);
  background: transparent;
}

.control-secondary:hover {
  background: rgba(10, 10, 10, 0.05);
}

.control-small {
  min-height: 36px;
  padding: 8px 16px;
}

.hero-media {
  margin: 80px 0 0;
  width: min(84vw, 1280px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 1210 / 470;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.hero-media figcaption {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--quiet);
  font-size: 11px;
  line-height: 16px;
}

.section {
  padding-top: 120px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.section-heading h2,
.closing h2 {
  margin-top: 16px;
  font-size: 48px;
  line-height: 1;
}

.section-copy {
  max-width: 568px;
  padding-top: 36px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.625;
}

.section-copy p {
  margin: 0;
}

.section-copy p + p {
  margin-top: 20px;
}

.inline-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.inline-link:hover,
.site-footer a:hover {
  opacity: 0.55;
}

.focus-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.focus-grid h3,
.capability-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
}

.focus-grid p,
.capability-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.625;
}

.capability-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.capability-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.capability-grid article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.small-actions {
  margin-top: 32px;
  flex-wrap: wrap;
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: end;
}

.projects-heading > p {
  max-width: 448px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.625;
}

.project-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  min-width: 0;
}

.project-media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f9f8f6;
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card > a:first-child:hover img {
  transform: scale(1.015);
}

.project-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.project-card h3 {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 1px;
}

.project-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.625;
}

.project-card .project-status {
  color: var(--quiet);
  font-size: 13px;
  line-height: 20px;
}

.project-card .inline-link {
  margin-top: 20px;
}

.closing {
  margin-top: 120px;
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  border-top: 1px solid var(--line);
}

.closing-copy {
  max-width: 568px;
  padding-top: 36px;
}

.closing-copy p {
  max-width: 448px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.625;
}

.closing-copy .control {
  margin-top: 32px;
}

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

.footer-main {
  min-height: 180px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-main > div > p {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 20px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
  line-height: 20px;
}

.footer-legal {
  padding-top: 20px;
  padding-bottom: 64px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(213, 217, 226, 0.65);
  color: var(--quiet);
  font-size: 12px;
  line-height: 20px;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 1099px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--soft-line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
  }

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

  .section-split,
  .projects-heading,
  .closing {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-copy,
  .closing-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .focus-grid {
    gap: 24px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

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

@media (max-width: 639px) {
  .site-container,
  .header-shell {
    padding-inline: 16px;
  }

  .brand-logo {
    width: 136px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: stretch;
    flex-direction: column;
  }

  .control {
    width: 100%;
  }

  .hero-media {
    margin-top: 64px;
  }

  .hero-media > img {
    aspect-ratio: 4 / 5;
    object-position: 52% center;
    border-radius: 12px;
  }

  .hero-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .section {
    padding-top: 96px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .focus-grid,
  .capability-grid,
  .project-grid {
    margin-top: 64px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .capability-grid article > span {
    margin-bottom: 28px;
  }

  .small-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-media img {
    aspect-ratio: 3 / 2;
  }

  .closing {
    margin-top: 96px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer-main {
    min-height: 240px;
    flex-direction: column;
  }

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

  .footer-legal {
    padding-bottom: 48px;
    flex-direction: column;
    gap: 10px;
  }
}

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

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