:root {
  --paper: #f3f0e9;
  --paper-deep: #e7e1d7;
  --ink: #1d272a;
  --forest: #26363c;
  --forest-soft: #354950;
  --accent: #a84f3a;
  --white: #fcfbf7;
  --muted: #5c6762;
  --line: rgba(20, 33, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --serif: Charter, "Bitstream Charter", "Sitka Text", Georgia, "Times New Roman", serif;
  --shell: min(1200px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 84px;
}

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

body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

svg {
  display: block;
}

:where(a, button):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

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

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-block;
  text-decoration: none;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.site-nav > .nav-cta {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a > span,
.mobile-nav-kicker,
.mobile-nav-meta,
.nav-cta svg {
  display: none;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  padding: 162px 0 0;
}

.hero-top {
  display: flex;
  margin-bottom: 58px;
  align-items: center;
  justify-content: space-between;
}

.eyebrow,
.section-index {
  margin: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-domain {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-soft);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(168, 79, 58, 0.14);
}

.hero-domain {
  color: var(--muted);
}

.hero-main {
  display: grid;
  padding-bottom: 76px;
  align-items: end;
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, 0.65fr);
  gap: clamp(60px, 10vw, 150px);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.2vw, 108px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.052em;
}

.hero-aside {
  padding-bottom: 6px;
}

.hero-aside > p {
  margin: 0;
  color: #42504a;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button svg,
.inline-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg,
.inline-link:hover svg,
.inline-link:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-soft);
}

.text-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.proof-rail {
  display: grid;
  min-height: 160px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.proof-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  box-shadow: inset 0 3px 0 var(--accent);
}

.proof-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.proof-item strong {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.proof-item strong small {
  font-size: 16px;
}

.proof-item > span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section {
  padding: 122px 0;
}

.services-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 7vw, 104px);
}

.section-index {
  color: var(--muted);
}

.services-intro .section-index {
  margin: 0 0 26px;
}

.services-intro h2,
.results-heading h2,
.engage-copy h2,
.about-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.services-intro h2 {
  max-width: 520px;
}

.services-intro > p:last-child {
  max-width: 410px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.engage-copy > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
}

.service-number {
  margin: 7px 0 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.service-copy > p:not(.service-capabilities) {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-capabilities {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.015em;
}

.results {
  padding: 118px 0;
  background: var(--forest);
  color: var(--white);
}

.results-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 54px;
}

.section-index-light {
  color: rgba(255, 255, 255, 0.66);
}

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

.result-row {
  display: grid;
  padding: 35px 0;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 0.65fr 1.25fr 0.7fr;
  gap: 34px;
}

.result-row > strong {
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.result-row > strong small {
  font-size: 17px;
}

.result-row h3 {
  max-width: 450px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.result-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
}

.engage {
  border-bottom: 1px solid var(--line);
}

.engage-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.engage-copy .section-index {
  margin-bottom: 30px;
}

.engage-copy h2 {
  max-width: 500px;
}

.engage-copy > p:last-child {
  max-width: 430px;
  margin-top: 28px;
}

.engagement-list {
  border-top: 1px solid var(--ink);
}

.engagement-list article {
  display: grid;
  padding: 28px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.engagement-list small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.engagement-list h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.engagement-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.about {
  background: var(--paper-deep);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(72px, 9vw, 120px);
}

.about-portrait {
  position: relative;
  margin: 0;
}

.about-portrait::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 44%;
  border-right: 1px solid rgba(168, 79, 58, 0.5);
  border-bottom: 1px solid rgba(168, 79, 58, 0.5);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  object-fit: cover;
}

.about-heading .section-index {
  margin-bottom: 30px;
}

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

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

.about-copy > p {
  margin: 0 0 20px;
  color: #46534d;
  font-size: 14px;
  line-height: 1.8;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.about-copy .stack-line {
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.contact {
  position: relative;
  padding: 118px 0 124px;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.contact::after {
  position: absolute;
  top: -310px;
  right: -80px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.015);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .section-index {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.contact h2 {
  font-size: clamp(62px, 8vw, 108px);
}

.contact-inner > p:not(.section-index) {
  max-width: 560px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 45px 0 26px;
  background: var(--forest);
  color: var(--white);
}

.footer-inner {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-brand {
  display: block;
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  padding-top: 11px;
  gap: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e2a18f;
}

.copyright {
  margin: 38px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  grid-column: 1 / -1;
}

.error-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.error-page .site-header {
  border-color: var(--line);
  background: rgba(244, 241, 232, 0.94);
  backdrop-filter: blur(14px);
}

.error-main {
  display: grid;
  flex: 1;
  padding: 152px 0 88px;
  align-items: center;
}

.error-content {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: center;
}

.error-content .eyebrow {
  margin-bottom: 28px;
}

.error-code {
  position: absolute;
  top: 50%;
  right: 0;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(180px, 21vw, 310px);
  line-height: 0.7;
  letter-spacing: -0.08em;
  opacity: 0.07;
  transform: translateY(-48%);
  pointer-events: none;
}

.error-content h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.error-content > p:not(.eyebrow, .error-code) {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.error-content .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 34px;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 38px, 790px);
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    min-height: 44px;
    padding: 8px 0 8px 10px;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    transition: color 180ms ease;
  }

  .brand {
    position: relative;
    z-index: 102;
  }

  .menu-open .site-header {
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--forest);
    color: var(--white);
    backdrop-filter: none;
  }

  .menu-open .brand-copy span {
    color: rgba(255, 255, 255, 0.58);
  }

  .menu-open .menu-button {
    color: var(--white);
  }

  .menu-label {
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .menu-lines {
    position: relative;
    display: block;
    width: 24px;
    height: 16px;
  }

  .menu-lines i {
    position: absolute;
    right: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-lines i:first-child {
    top: 4px;
  }

  .menu-lines i:last-child {
    bottom: 4px;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:last-child {
    bottom: 7px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    width: 100%;
    min-height: 100dvh;
    padding: 108px max(24px, env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--forest);
    color: var(--white);
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    transform: translateY(-14px);
    pointer-events: none;
    transition:
      opacity 190ms ease,
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 240ms;
  }

  .site-nav::after {
    position: absolute;
    right: -250px;
    bottom: -285px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    box-shadow:
      0 0 0 76px rgba(255, 255, 255, 0.018),
      0 0 0 152px rgba(255, 255, 255, 0.012);
    pointer-events: none;
  }

  .site-nav > * {
    position: relative;
    z-index: 1;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-nav-kicker {
    display: flex;
    margin: 0 0 17px;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.13em;
  }

  .mobile-nav-kicker::before {
    width: 24px;
    height: 1px;
    background: #d27b63;
    content: "";
  }

  .nav-links {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: grid;
    padding: 14px 0 15px;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    grid-template-columns: 34px minmax(0, 1fr) auto;
    font-family: var(--serif);
    font-size: clamp(34px, 8.2vw, 48px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
    opacity: 0;
    transform: translateY(12px);
    transition:
      color 180ms ease,
      opacity 300ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links a::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: rgba(255, 255, 255, 0.32);
    content: "→";
    font-family: var(--sans);
    font-size: 17px;
    transform: translateX(0);
    transition:
      color 180ms ease,
      transform 180ms ease;
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    color: #d27b63;
    transform: translateX(5px);
  }

  .nav-links a > span {
    display: inline;
    color: #d27b63;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.08em;
  }

  .site-nav.is-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .nav-links a:nth-child(1) {
    transition-delay: 80ms;
  }

  .site-nav.is-open .nav-links a:nth-child(2) {
    transition-delay: 115ms;
  }

  .site-nav.is-open .nav-links a:nth-child(3) {
    transition-delay: 150ms;
  }

  .site-nav.is-open .nav-links a:nth-child(4) {
    transition-delay: 185ms;
  }

  .site-nav > .nav-cta {
    display: flex;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: var(--white);
    color: var(--forest);
    font-family: var(--sans);
    font-size: 13px;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition:
      background-color 180ms ease,
      color 180ms ease,
      opacity 300ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav > .nav-cta svg {
    display: block;
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .site-nav > .nav-cta:hover,
  .site-nav > .nav-cta:focus-visible {
    background: #d27b63;
    color: #172327;
  }

  .site-nav.is-open > .nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 220ms;
  }

  .mobile-nav-meta {
    display: flex;
    margin-top: auto;
    padding-top: 28px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 300ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-meta p {
    max-width: 180px;
    margin: 0;
  }

  .mobile-nav-meta a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-decoration: none;
  }

  .site-nav.is-open .mobile-nav-meta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 255ms;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-aside {
    max-width: 590px;
  }

  .proof-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item {
    min-height: 150px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services-intro {
    max-width: 680px;
  }

  .services-intro h2 {
    max-width: 650px;
  }

  .services-intro > p:last-child {
    max-width: 520px;
  }

  .service-copy h3 {
    max-width: 620px;
  }

  .results-heading {
    grid-template-columns: 0.35fr 1.1fr;
  }

  .result-row {
    grid-template-columns: 0.65fr 1.2fr 0.7fr;
  }

  .result-row p {
    margin: 0;
    grid-column: auto;
  }

  .engage-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .about-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .about-portrait {
    width: min(100%, 460px);
  }

  .about-copy {
    margin-top: 42px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-top {
    margin-bottom: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(54px, 16.5vw, 76px);
  }

  .hero-main {
    padding-bottom: 56px;
  }

  .hero-aside > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .button-primary {
    width: 100%;
  }

  .error-main {
    padding: 126px 0 70px;
  }

  .error-content {
    min-height: 420px;
  }

  .error-code {
    top: 18%;
    font-size: 150px;
    transform: none;
  }

  .error-content h1 {
    max-width: 520px;
    font-size: 58px;
  }

  .error-content .button {
    width: 100%;
  }

  .proof-rail {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 124px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item strong {
    font-size: 50px;
  }

  .section {
    padding: 86px 0;
  }

  .results-heading {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-intro h2,
  .results-heading h2,
  .engage-copy h2,
  .about-heading h2 {
    font-size: 44px;
  }

  .services-layout {
    gap: 46px;
  }

  .services-intro .section-index {
    margin-bottom: 20px;
  }

  .services-intro > p:last-child {
    margin-top: 24px;
    font-size: 14px;
  }

  .service-row {
    padding: 28px 0 30px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .service-number {
    margin-top: 5px;
  }

  .service-copy h3 {
    font-size: 29px;
  }

  .service-copy > p:not(.service-capabilities) {
    font-size: 13px;
  }

  .service-capabilities {
    margin-top: 18px;
  }

  .results {
    padding: 86px 0;
  }

  .result-row {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .result-row > strong,
  .result-row h3,
  .result-row p {
    grid-column: 1;
  }

  .result-row > strong {
    font-size: 58px;
  }

  .engage-layout,
  .about-layout {
    gap: 48px;
  }

  .about-portrait {
    width: 100%;
  }

  .about-portrait::after {
    right: -8px;
    bottom: -8px;
  }

  .engagement-list article {
    grid-template-columns: 1fr auto;
  }

  .engagement-list small {
    grid-column: auto;
  }

  .about-copy .about-lead {
    font-size: 23px;
  }

  .contact {
    padding: 86px 0 92px;
  }

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

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-dark {
    width: 100%;
    padding-inline: 13px;
    gap: 12px;
    font-size: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    padding-top: 0;
    flex-wrap: wrap;
  }

  .copyright {
    margin-top: 8px;
    grid-column: auto;
  }
}

@media (max-width: 1020px) and (max-height: 700px) {
  .site-nav {
    padding-top: 88px;
  }

  .mobile-nav-kicker {
    margin-bottom: 8px;
  }

  .nav-links a {
    padding: 10px 0 11px;
    font-size: 31px;
  }

  .site-nav > .nav-cta {
    min-height: 48px;
    margin-top: 16px;
  }

  .mobile-nav-meta {
    padding-top: 18px;
  }
}

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

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

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