:root {
  color-scheme: light;
  --ink: #0b0d0d;
  --ink-soft: #343a38;
  --paper: #f5f5f1;
  --white: #ffffff;
  --line: #d4d8d3;
  --acid: #c8ff3d;
  --cyan: #3cd4d6;
  --coral: #ff6f4e;
  --muted: #68706d;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 245, 241, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  font-weight: 800;
}

.wordmark span {
  font-family: "Archivo Black", Arial Black, sans-serif;
  font-size: 28px;
}

.wordmark small {
  font-size: 14px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

nav a,
.footer-links a,
.text-link {
  border-bottom: 1px solid transparent;
}

nav a:hover,
.footer-links a:hover,
.text-link:hover {
  border-color: currentColor;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 34px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  object-fit: cover;
  object-position: center 52%;
  animation: hero-entry 1100ms ease both;
}

.hero-overlay {
  background: rgba(4, 7, 7, 0.56);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 150px 0 150px;
}

.eyebrow,
.section-index {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light,
.section-index.light {
  color: var(--acid);
}

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

h1,
h2,
.footer-brand {
  font-family: "Archivo Black", Arial Black, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: 52px;
  line-height: 1.02;
}

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

p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
}

.button-ghost {
  color: var(--white);
  background: rgba(11, 13, 13, 0.38);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-proof {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(11, 13, 13, 0.66);
}

.hero-proof div {
  min-height: 96px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.hero-proof span {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.section-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.section-pad {
  padding: 106px 0;
}

.positioning {
  background: var(--white);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 170px 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.positioning-copy p {
  margin-bottom: 28px;
  font-size: 20px;
}

.industry-list,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-list span,
.service-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.work {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 820px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
}

.filter-control {
  display: grid;
  grid-template-columns: repeat(4, minmax(62px, 1fr));
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  overflow: hidden;
}

.filter-control button {
  min-width: 62px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.filter-control button:last-child {
  border-right: 0;
}

.filter-control button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.project {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.project-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9ddda;
}

.project img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project:hover img {
  transform: scale(1.035);
}

.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.project-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-caption strong {
  max-width: 230px;
  text-align: right;
  font-size: 15px;
  line-height: 1.35;
}

.project[hidden] {
  display: none;
}

.text-link {
  display: block;
  width: fit-content;
  margin: 30px 0 0 auto;
  padding-bottom: 4px;
  font-weight: 800;
}

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

.services h2,
.services h3 {
  color: var(--white);
}

.services .section-heading > p,
.services .service-row > p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-row {
  display: grid;
  grid-template-columns: 72px 0.72fr 1.1fr 0.7fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.service-number {
  color: var(--acid);
  font-size: 14px;
  font-weight: 800;
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-tags {
  justify-content: flex-end;
}

.service-tags span {
  color: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.24);
}

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

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

.process-grid article {
  min-height: 250px;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.process-grid span {
  display: block;
  margin-bottom: 62px;
  font-size: 13px;
  font-weight: 800;
}

.process-grid p {
  margin-bottom: 0;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.about-copy {
  padding-top: 40px;
  border-top: 1px solid var(--ink);
}

.about-heading h2 {
  max-width: 650px;
}

.about-copy p {
  font-size: 18px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-signature img {
  width: 112px;
  height: 72px;
  object-fit: contain;
}

.about-signature a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  background: var(--acid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.contact h2 {
  font-size: 62px;
}

.contact-copy > p:first-child {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 19px;
}

.contact-note {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer {
  padding: 64px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 58px;
}

.footer-brand {
  font-size: 54px;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-entry {
  from { opacity: 0.45; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .positioning-grid {
    grid-template-columns: 140px 1fr;
  }

  .positioning-copy {
    grid-column: 2;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
  }

  .service-row {
    grid-template-columns: 56px 0.8fr 1.2fr;
  }

  .service-tags {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact h2 {
    font-size: 48px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 9px 16px;
  }

  .wordmark span {
    font-size: 24px;
  }

  .wordmark small,
  nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
  }

  .hero {
    min-height: calc(100svh - 24px);
  }

  .hero-inner,
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    padding: 122px 0 226px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    min-height: 62px;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .hero-proof strong {
    margin: 0;
    font-size: 16px;
  }

  .section-pad {
    padding: 76px 0;
  }

  .positioning-grid,
  .section-heading,
  .process-grid,
  .about-layout,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .positioning-grid,
  .section-heading,
  .contact-grid {
    gap: 28px;
  }

  .positioning-copy {
    grid-column: auto;
  }

  .section-heading {
    align-items: start;
  }

  .filter-control {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }

  .project-media {
    aspect-ratio: 4 / 5;
  }

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

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

  .process-grid article {
    min-height: 0;
  }

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

  .about-copy {
    padding-top: 28px;
  }

  .contact h2 {
    font-size: 42px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-brand {
    font-size: 42px;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-inner {
    padding-bottom: 222px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 12px;
  }

  .project-caption {
    min-height: 78px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
