:root {
  --paper: #f4f1ea;
  --paper-clean: #fbfaf7;
  --ink: #111111;
  --ink-soft: #383836;
  --muted: #6f6d67;
  --red: #eb2119;
  --red-dark: #ba1712;
  --blue: #2045d8;
  --blue-dark: #16319d;
  --sky: #dcecff;
  --line: #c9c5bc;
  --line-dark: #3b3b38;
  --white: #ffffff;
  --max: 1600px;
  --gutter: clamp(1.25rem, 2.5vw, 3.75rem);
  --section: clamp(5rem, 9vw, 9rem);
  --font-sans: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

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

.material-symbols-outlined {
  font-size: 1.25em;
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 256px 1fr auto;
  align-items: center;
  width: min(100%, var(--max));
  min-height: 92px;
  margin-inline: auto;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  min-height: 68px;
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  font-size: 2.05rem;
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand .material-symbols-outlined {
  color: var(--red);
  font-size: 2.6rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: clamp(1.9rem, 3vw, 2.9rem);
  font-size: 1rem;
  font-weight: 650;
}

.primary-nav .nav-cta {
  display: none;
}

.primary-nav a:not(.nav-cta) {
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.35rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: flex;
  justify-content: flex-end;
}

.header-action .button {
  min-width: 185px;
  min-height: 48px;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

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

.button-red,
.nav-cta {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button-red:hover,
.nav-cta:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.button-blue {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(440px, 41.65fr) minmax(620px, 58.35fr);
  width: auto;
  max-width: var(--max);
  height: 722px;
  margin-right: 0;
  margin-left: var(--gutter);
  margin-top: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4.5rem clamp(2rem, 4vw, 4.5rem) 2.5rem 1.25rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--sky);
}

.home-hero h1 {
  max-width: none;
  margin-bottom: 1.6rem;
  font-size: clamp(4.35rem, 5.15vw, 5.15rem);
  font-stretch: 100%;
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1.08;
}

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

.hero-subhead {
  max-width: 17ch;
  margin-bottom: 3.1rem;
  font-size: clamp(1.9rem, 2.65vw, 2.65rem);
  font-stretch: 100%;
  font-weight: 460;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.hero-summary {
  max-width: 45ch;
  margin-bottom: 3rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.home-hero .hero-actions .button {
  min-width: 218px;
  min-height: 60px;
}

.hero-collage {
  position: relative;
  align-self: start;
  min-width: 0;
  height: 680px;
}

.evidence-panel {
  position: absolute;
  margin: 0;
}

.evidence-panel img {
  width: 100%;
  object-fit: cover;
}

.evidence-panel figcaption,
.evidence-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 0.7rem 0.9rem 0.7rem 1.05rem;
  border-left: 1px solid var(--red);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.evidence-panel figcaption strong,
.evidence-caption strong {
  font-weight: 600;
}

.evidence-panel figcaption span,
.evidence-caption span {
  color: var(--muted);
}

.evidence-jakarta {
  inset: 0 auto auto 0;
  width: 51.9%;
}

.evidence-jakarta img {
  height: 371px;
}

.evidence-jakarta figcaption {
  min-height: 44px;
  height: 44px;
  margin-top: 18px;
}

.evidence-mexico-person {
  inset: 0 auto auto 53.1%;
  width: 28.7%;
}

.evidence-mexico-person img,
.evidence-mexico-city img {
  height: 244px;
}

.evidence-mexico-city {
  inset: 0 0 auto auto;
  width: 17.2%;
}

.evidence-mexico-caption {
  position: absolute;
  top: 263px;
  left: 53.1%;
  width: 46.9%;
  height: 70px;
}

.evidence-source-operator {
  inset: 444px auto auto 0;
  width: 26.2%;
}

.evidence-source-operator img {
  height: 241px;
}

.evidence-barcelona {
  inset: 380px auto auto 27.5%;
  width: 46.8%;
}

.evidence-barcelona img {
  height: 250px;
}

.evidence-barcelona figcaption {
  min-height: 44px;
  height: 44px;
  margin-top: 16px;
}

.evidence-lima {
  inset: 341px 0 auto auto;
  width: 24.5%;
}

.evidence-lima img {
  height: 287px;
}

.evidence-lima figcaption {
  min-height: 40px;
  height: 40px;
  margin-top: 16px;
}

.home-process {
  display: grid;
  grid-template-columns: 28.5% 71.5%;
  gap: 0;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 2.25rem 4.5rem 3rem;
}

.process-intro h2,
.statement h2,
.split-copy h2,
.contact-callout h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  font-stretch: condensed;
  font-weight: 830;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.process-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.1vw, 3.15rem);
  font-stretch: 90%;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.process-intro h2 span,
.statement h2 span,
.split-copy h2 span {
  color: var(--red);
}

.process-intro > p:last-of-type,
.split-copy > p {
  max-width: 47ch;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
}

.process-step {
  position: relative;
  min-height: 180px;
  padding: 0 clamp(1rem, 2.25vw, 2rem);
  border-left: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0;
  left: 5.15rem;
  height: 1px;
  background: var(--ink);
}

.step-number {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-size: 2.45rem;
  font-stretch: condensed;
  font-weight: 840;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-step:nth-child(n + 2) .step-number {
  color: var(--blue);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.statement {
  padding: var(--section) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--white);
}

.statement-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.statement h2 {
  max-width: 10ch;
  color: var(--white);
}

.statement h2 span {
  display: block;
  color: var(--red);
}

.statement-copy {
  align-self: end;
  padding-bottom: 0.5rem;
}

.statement-copy > p {
  max-width: 41ch;
  margin-bottom: 2rem;
  color: #c8c6c0;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.capability-list {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: var(--section) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.45fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  font-stretch: condensed;
  font-weight: 830;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.capability-row {
  display: grid;
  grid-template-columns: 4.5rem minmax(220px, 0.7fr) minmax(320px, 1.3fr) auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  min-height: 126px;
  border-top: 1px solid var(--line);
}

.capability-row:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-row > span:first-child {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.capability-row h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  font-stretch: condensed;
  letter-spacing: -0.04em;
}

.capability-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.capability-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.capability-row a:hover {
  background: var(--ink);
  color: var(--white);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(100%, var(--max));
  margin-inline: auto;
  border-block: 1px solid var(--line);
}

.split-feature > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.split-copy .quote-mark {
  margin-bottom: 3rem;
  color: var(--blue);
  font-size: 3rem;
}

.market-band {
  padding: var(--section) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--blue);
  color: var(--white);
}

.market-band-header {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 10vw, 10rem);
  margin-bottom: 4rem;
}

.market-band h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.market-band-header div:last-child {
  align-self: end;
  max-width: 44ch;
  color: #dbe3ff;
}

.market-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.market-rail div {
  min-height: 150px;
  padding: 1.2rem 1.2rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.market-rail div + div {
  padding-left: 1.2rem;
}

.market-rail div:last-child {
  border-right: 0;
}

.market-rail span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.market-rail strong {
  font-size: 1.2rem;
}

.contact-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  gap: clamp(4rem, 10vw, 10rem);
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: var(--section) var(--gutter);
}

.contact-callout h2 {
  max-width: 9ch;
}

.brief-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
  padding-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.brief-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.brief-form label > span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}

.form-submit {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.form-submit p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-submit p.is-ready {
  color: var(--blue);
}

.site-footer {
  padding: 4rem max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 5rem;
}

.footer-main h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-stretch: condensed;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.85rem 3rem;
  font-size: 0.78rem;
}

.footer-nav a:hover {
  color: var(--sky);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  color: #a5a39e;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .primary-nav {
    display: none;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header.menu-visible .primary-nav {
    position: fixed;
    inset: 69px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem var(--gutter);
    background: var(--paper);
  }

  .site-header.menu-visible .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .site-header.menu-visible .primary-nav .nav-cta {
    justify-content: center;
    margin-top: 1.5rem;
    color: var(--white);
  }

  .home-hero {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .home-hero-copy {
    min-height: 650px;
    padding-right: var(--gutter);
  }

  .home-hero h1 {
    max-width: 10ch;
  }

  .hero-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    background: var(--paper);
  }

  .evidence-panel,
  .evidence-caption {
    position: static;
    inset: auto;
    width: auto;
  }

  .evidence-panel img,
  .evidence-jakarta img,
  .evidence-mexico-person img,
  .evidence-mexico-city img,
  .evidence-source-operator img,
  .evidence-barcelona img,
  .evidence-lima img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .evidence-jakarta,
  .evidence-barcelona {
    grid-column: 1 / -1;
  }

  .evidence-jakarta img,
  .evidence-barcelona img {
    aspect-ratio: 3 / 2;
  }

  .evidence-panel figcaption,
  .evidence-caption,
  .evidence-jakarta figcaption,
  .evidence-barcelona figcaption,
  .evidence-lima figcaption {
    height: auto;
    min-height: 58px;
    margin-top: 0;
  }

  .home-process,
  .statement-inner,
  .section-heading,
  .market-band-header,
  .contact-callout {
    grid-template-columns: 1fr;
  }

  .process-steps {
    margin-top: 1rem;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature > img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 1.25rem;
    --section: 4.5rem;
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .home-hero-copy {
    min-height: auto;
    padding-block: 4.5rem;
  }

  .home-hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.6rem);
  }

  .hero-subhead {
    font-size: 1.65rem;
  }

  .process-steps,
  .market-rail {
    grid-template-columns: 1fr;
  }

  .process-step,
  .market-rail div {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step::before {
    display: none;
  }

  .market-rail div + div {
    padding-left: 0;
  }

  .step-number,
  .market-rail span {
    margin-bottom: 1rem;
  }

  .statement h2,
  .process-intro h2,
  .split-copy h2,
  .contact-callout h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .capability-row {
    grid-template-columns: 2.5rem 1fr auto;
    padding-block: 1.4rem;
  }

  .capability-row p {
    grid-column: 2 / -1;
  }

  .capability-row a {
    grid-column: 3;
    grid-row: 1;
  }

  .split-copy {
    padding: 4rem var(--gutter);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

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

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