@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/_vinext_fonts/manrope-76eca2803f7f/manrope-81401990.woff2") format("woff2");
}

:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #ffffff;
  --panel: #f6f7f8;
  --line: #e4e7ec;
  --deep: #1e2d62;
  --accent: #d8ff63;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope, "Manrope"), Arial, sans-serif;
  margin: 0;
}

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

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0 6vw;
  min-height: 88px;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.75rem;
  letter-spacing: 0.18em;
}

.brand-mark {
  align-items: center;
  background: var(--deep);
  border-radius: 0.55rem;
  color: var(--white);
  display: inline-flex;
  font-size: 0.72rem;
  height: 2.1rem;
  justify-content: center;
  letter-spacing: 0;
  width: 2.1rem;
}

nav {
  align-items: center;
  display: flex;
  font-size: 0.8rem;
  font-weight: 650;
  gap: 2rem;
}

nav a,
.text-action,
.project-copy a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero {
  min-height: 560px;
  padding: 5rem 8vw;
}

.hero h1 {
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0;
  max-width: 18ch;
}

.hero h1 span {
  color: var(--deep);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.text-action {
  font-size: 0.86rem;
  font-weight: 650;
}

.project {
  align-items: center;
  background: var(--panel);
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.7fr 1.2fr;
  min-height: 410px;
  padding: 5.5rem 7vw;
}

.project-title h2 {
  color: var(--deep);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 0;
}

.project-copy p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 42rem;
}

.project-copy a {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 750;
  gap: 1rem;
}

.contact {
  background: var(--deep);
  color: var(--white);
  padding: 4rem 7vw;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0;
}

.contact h2 a {
  border-bottom: 0.06em solid currentColor;
}

footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.67);
  display: grid;
  font-size: 0.8rem;
  gap: 1.4rem;
  grid-template-columns: auto auto 1fr auto;
  line-height: 1.5;
  padding: 2.1rem 4vw;
}

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

.copyright {
  text-align: right;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .site-header {
    margin: 0 1.25rem;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    max-width: 12ch;
  }

  .project {
    gap: 2.5rem;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 4.5rem 1.5rem;
  }

  .project-title h2 {
    font-size: 4rem;
  }

  .contact {
    padding: 4rem 1.5rem;
  }

  .contact h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    overflow-wrap: anywhere;
  }

  footer {
    align-items: start;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
  }

  .copyright {
    margin-top: 1rem;
    text-align: left;
  }
}

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