.content-shell {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.content-shell.wide {
  width: min(100%, var(--wide-max));
}

.site-header {
  --nav-active-height: var(--nav-height);
  --nav-active-link: var(--nav-link);
  --nav-active-link-hover: var(--nav-link-hover);
  --nav-active-line: var(--nav-link-line);
  position: fixed;
  top: var(--nav-floating-top);
  right: auto;
  left: 50%;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(calc(100% - (var(--nav--spacing-outer-horizontal) * 2)), var(--nav--max-width-outer));
  min-height: var(--nav-active-height);
  padding: 0 var(--_spacing---space--3) 0 var(--_spacing---space--5);
  background: var(--nav-bg);
  border: 0;
  border-radius: var(--nav--radius);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 2.5%),
    0 0.75rem 1.75rem rgb(0 0 0 / 12%);
  backdrop-filter: var(--nav-backdrop);
  transition: none;
  transform: translateX(-50%);
}

body.nav-ready .site-header {
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

body.nav-transition-lock .site-header,
body.nav-transition-lock .brand,
body.nav-transition-lock .brand-logo,
body.nav-transition-lock .site-nav,
body.nav-transition-lock .site-nav a,
body.nav-transition-lock .header-cta {
  transition: none;
}

body.home-page:not(.nav-scrolled) .site-header {
  background:
    linear-gradient(180deg, rgb(8 9 9 / 42%) 0%, rgb(8 9 9 / 34%) 100%);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 2.5%),
    0 0.75rem 1.75rem rgb(0 0 0 / 14%);
  backdrop-filter: blur(18px) saturate(.62) brightness(.74);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(5 6 6 / 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(.16, 1, .3, 1);
  backdrop-filter: blur(2px) brightness(.74) saturate(.82);
}

body.contact-panel-open::before {
  opacity: 1;
}

body.contact-panel-open .site-header,
body.contact-panel-open main,
body.contact-panel-open .site-footer {
  filter: saturate(.82) brightness(.72);
  transition: filter 420ms cubic-bezier(.16, 1, .3, 1);
}

body.nav-scrolled .site-header {
  --nav-active-height: var(--nav-height-scrolled);
  --nav-active-link: var(--nav-link-scrolled);
  --nav-active-link-hover: var(--nav-link-hover-scrolled);
  --nav-active-line: var(--nav-link-line-scrolled);
  width: min(calc(100% - (var(--nav-inset-scrolled) * 2)), var(--nav--max-width-outer));
  color: var(--nav-link-scrolled);
  background: var(--nav-bg-scrolled);
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 16%),
    0 0.75rem 1.75rem rgb(0 0 0 / 8%);
}

.about-page .site-header {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-depth-0) 70%, var(--surface-depth-1) 30%) 0%, color-mix(in srgb, var(--surface-depth-0) 84%, var(--surface-depth-1) 16%) 100%);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 4.5%),
    0 0.75rem 2rem rgb(0 0 0 / 11%);
  backdrop-filter: none;
}

body.about-page.nav-scrolled .site-header {
  background: var(--nav-bg-scrolled);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 16%),
    0 0.75rem 2rem rgb(0 0 0 / 5%);
}

.header-actions {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.4rem, 2.6vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: var(--nav-active-height);
  padding-right: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--nav-brand);
  font-size: var(--nav-brand-size);
  font-weight: var(--nav-brand-weight);
  line-height: var(--nav-line-height);
  letter-spacing: var(--nav-brand-letter-spacing);
  text-transform: none;
  white-space: nowrap;
  background-image: none;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.brand-logo {
  width: auto;
  height: 1.28rem;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .72;
  filter: var(--brand-mark-filter);
  transition:
    opacity var(--transition-fast),
    filter var(--transition-fast),
    height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover,
.brand:focus-visible {
  opacity: .78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.5rem);
  margin-right: 0;
  color: var(--nav-active-link);
  font-size: var(--nav-brand-size);
  font-weight: var(--_typography---font--primary-regular);
  line-height: var(--nav-line-height);
  letter-spacing: var(--nav-letter-spacing);
}

.site-header .header-actions .site-nav a,
.header-cta {
  --nav-motion-x: 0px;
  --nav-motion-y: 0px;
  display: inline-flex;
  position: relative;
  min-height: var(--nav-active-height);
  align-items: center;
  padding: 0;
  color: var(--nav-active-link);
  opacity: 1;
  background-image: none;
  background-size: 0 0;
  text-decoration: none;
  font-size: var(--nav-brand-size);
  font-weight: var(--_typography---font--primary-regular);
  line-height: var(--nav-line-height);
  letter-spacing: var(--nav-letter-spacing);
  transform: none;
  will-change: auto;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast),
    transform 340ms var(--ease);
}

.site-header .header-actions .site-nav a:hover,
.site-header .header-actions .site-nav a:focus-visible,
body.nav-scrolled .site-header .header-actions .site-nav a:hover,
body.nav-scrolled .site-header .header-actions .site-nav a:focus-visible {
  color: var(--nav-active-link-hover);
}

body.nav-scrolled .brand {
  color: var(--nav-brand-scrolled);
}

body.nav-scrolled .brand-logo {
  opacity: .76;
  filter: var(--brand-mark-filter-scrolled);
}

body.nav-scrolled .site-nav {
  color: var(--nav-link-scrolled);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
  font-weight: 400;
  background-image: none;
}

.header-cta {
  margin-left: auto;
  width: auto;
  min-width: 0;
  min-height: var(--nav-cta-height);
  height: var(--nav-cta-height);
  flex: 0 0 auto;
  gap: var(--nav-cta-gap);
  padding: 0 var(--nav-cta-x);
  color: var(--nav-dark);
  background: var(--nav-cream);
  border: var(--border-width--main) solid var(--nav-cream);
  border-radius: var(--nav-cta-radius);
  font-family: var(--font-sans);
  font-size: var(--nav-cta-font-size);
  font-weight: 400;
  line-height: var(--nav-cta-line-height);
  letter-spacing: var(--nav-letter-spacing);
  overflow: hidden;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform 340ms var(--ease);
}

.header-cta::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: var(--nav-cta-icon);
  height: var(--nav-cta-icon);
  flex: 0 0 auto;
  background: currentColor;
  align-self: center;
  transform: translateY(var(--nav-cta-icon-y));
  -webkit-mask: var(--button-arrow-icon) center / contain no-repeat;
  mask: var(--button-arrow-icon) center / contain no-repeat;
}

.header-cta span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--nav-text-cream);
  background: var(--nav-dark);
  border-color: var(--nav-dark);
}

body.nav-scrolled .header-cta {
  color: var(--nav-text-cream);
  background: var(--nav-dark);
  border-color: var(--nav-dark);
}

body.nav-scrolled .header-cta:hover,
body.nav-scrolled .header-cta:focus-visible {
  color: var(--nav-dark);
  background: var(--nav-cream);
  border-color: var(--nav-dark);
}

.contact-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 120;
  width: min(38rem, calc(100vw - var(--page-x)));
  max-width: 100vw;
  color: var(--text);
  background: var(--bg);
  border-right: var(--border-width--main) solid rgb(241 241 241 / 8%);
  border-radius: 0 var(--nav--radius) var(--nav--radius) 0;
  box-shadow: 1.25rem 0 4rem rgb(0 0 0 / 42%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  visibility: hidden;
  transition:
    opacity 260ms var(--ease),
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    visibility 420ms var(--ease);
}

body.contact-panel-open {
  overflow: hidden;
}

body.contact-panel-open .contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.contact-panel-inner {
  display: grid;
  position: relative;
  min-height: 100dvh;
  padding: clamp(1.65rem, 4vw, 3rem);
  align-content: start;
  grid-template-rows: auto auto;
  gap: clamp(3rem, 8vh, 5.75rem);
}

.contact-panel-close {
  position: absolute;
  top: clamp(1.65rem, 4vw, 3rem);
  right: clamp(1.65rem, 4vw, 3rem);
  display: grid;
  width: clamp(2.6rem, 4vw, 3.15rem);
  height: clamp(2.6rem, 4vw, 3.15rem);
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: var(--border-width--main) solid color-mix(in srgb, var(--text) 32%, transparent);
  border-radius: 999rem;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.contact-panel-close:hover,
.contact-panel-close:focus-visible {
  color: var(--text);
  border-color: var(--text);
  transform: scale(.96);
}

.contact-panel-close span {
  position: absolute;
  width: .82rem;
  height: var(--border-width--main);
  background: currentColor;
}

.contact-panel-close span:first-child {
  transform: rotate(45deg);
}

.contact-panel-close span:last-child {
  transform: rotate(-45deg);
}

.contact-panel-copy {
  display: grid;
  max-width: 32rem;
  align-content: start;
  gap: var(--_spacing---space--2);
  padding-top: clamp(4.25rem, 9vh, 6.75rem);
}

.contact-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--_typography---line-height--body-height);
}

.contact-panel-copy > p:first-child {
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: var(--type-weight-ui);
  line-height: 1;
  text-transform: none;
}

.contact-panel-copy h2 {
  margin: 0;
  color: var(--heading);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-1);
  letter-spacing: var(--_typography---letter-spacing--spacing-3);
}

.contact-panel-form {
  display: grid;
  gap: var(--_spacing---space--2);
  align-self: start;
  max-height: 44rem;
  overflow: hidden;
  transition:
    max-height 260ms cubic-bezier(.16, 1, .3, 1),
    opacity 180ms var(--ease),
    transform 260ms cubic-bezier(.16, 1, .3, 1);
}

.contact-panel-form[hidden] {
  display: none;
}

.contact-panel-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--_spacing---space--2);
}

.contact-panel-form label {
  display: grid;
  gap: var(--_spacing---space--1);
  color: var(--text);
}

.contact-panel-form label > span {
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  font-size: var(--type-label);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-4);
  letter-spacing: 0;
}

.contact-panel-form input,
.contact-panel-form select,
.contact-panel-form textarea {
  width: 100%;
  min-height: 2.55rem;
  padding: 0 var(--_spacing---space--2);
  color: var(--text);
  background: color-mix(in srgb, var(--mono-palette--mono-900) 97%, var(--mono-palette--mono-100) 3%);
  border: var(--border-width--main) solid rgb(241 241 241 / 7%);
  border-radius: var(--radius--tiny);
  font: inherit;
  font-size: var(--text-sm);
  outline: 0;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.contact-panel-form textarea {
  min-height: 4.75rem;
  padding-block: var(--_spacing---space--2);
  resize: vertical;
}

.contact-panel-form input:focus,
.contact-panel-form select:focus,
.contact-panel-form textarea:focus {
  background: color-mix(in srgb, var(--mono-palette--mono-900) 92%, var(--mono-palette--mono-100) 8%);
  border-color: color-mix(in srgb, var(--text) 34%, transparent);
}

.contact-panel-wide,
.contact-panel-consent,
.contact-panel-status {
  grid-column: 1 / -1;
}

.contact-panel-source {
  display: grid;
  gap: var(--_spacing---space--1);
  margin: 0;
  padding: 0;
  color: var(--text);
  border: 0;
}

.contact-panel-source legend {
  margin: 0 0 var(--_spacing---space--1);
  padding: 0;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  font-size: var(--type-label);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-4);
}

.contact-panel-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.35rem;
  align-items: center;
}

.contact-panel-choice-grid label {
  display: inline-flex;
  min-height: 1.7rem;
  align-items: center;
  gap: .46rem;
  padding: 0;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.contact-panel-choice-grid input {
  display: grid;
  width: .72rem;
  min-height: .72rem;
  flex: 0 0 .72rem;
  margin: 0;
  padding: 0;
  appearance: none;
  place-content: center;
  background: transparent;
  border: var(--border-width--main) solid color-mix(in srgb, var(--muted) 54%, transparent);
  border-radius: var(--radius--round);
}

.contact-panel-choice-grid input::before {
  content: "";
  width: .36rem;
  height: .36rem;
  background: var(--accent);
  border-radius: var(--radius--round);
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.contact-panel-choice-grid input:checked {
  border-color: color-mix(in srgb, var(--accent) 82%, var(--text) 18%);
}

.contact-panel-choice-grid input:checked::before {
  transform: scale(1);
}

.contact-panel-choice-grid input:focus-visible {
  outline: var(--border-width--main) solid color-mix(in srgb, var(--accent) 82%, transparent);
  outline-offset: .18rem;
}

.contact-panel-choice-grid label > span {
  color: inherit;
  font-size: var(--text-xs);
  line-height: 1.2;
}

.contact-panel-choice-grid label:has(input:checked) {
  color: var(--text);
}

.contact-panel-referral-name {
  max-width: 22rem;
  margin-top: .55rem;
}

.contact-panel-referral-name[hidden] {
  display: none;
}

.contact-panel-consent {
  display: flex;
  grid-template-columns: auto 1fr;
  gap: var(--_spacing---space--2);
  align-items: center;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--_typography---line-height--body-height);
}

.contact-panel-consent input {
  width: 1.05rem;
  min-height: 1.05rem;
  accent-color: var(--mono-palette--mono-100);
}

.contact-panel-consent a {
  color: var(--text);
}

.contact-panel-submit {
  display: inline-flex;
  width: fit-content;
  min-height: var(--nav-cta-height);
  height: var(--nav-cta-height);
  align-items: center;
  justify-content: center;
  gap: var(--nav-cta-gap);
  padding: 0 var(--nav-cta-x);
  color: var(--mono-palette--mono-900);
  background: var(--mono-palette--mono-100);
  border: var(--border-width--main) solid var(--mono-palette--mono-100);
  border-radius: var(--nav-cta-radius);
  font: inherit;
  font-size: var(--nav-cta-font-size);
  font-weight: 400;
  line-height: var(--nav-cta-line-height);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
  border-color var(--transition-fast);
}

.contact-panel-social {
  display: flex;
  gap: var(--_spacing---space--2);
  align-items: center;
  margin-top: var(--_spacing---space--2);
}

.contact-panel-social a,
.contact-panel-social a:not(.brand):not(.footer-brand):not(.button) {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background-image: none;
  background-size: 0 0;
  border-radius: 999rem;
  border: 0;
  opacity: .76;
  text-decoration: none;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.contact-panel-social img {
  width: .95rem;
  height: .95rem;
  filter: invert(1) grayscale(1) brightness(.82) contrast(.86);
}

.contact-panel-social a:hover,
.contact-panel-social a:focus-visible {
  opacity: .96;
  transform: translateY(-1px);
}

.contact-panel-submit::before {
  content: "";
  display: block;
  width: var(--nav-cta-icon);
  height: var(--nav-cta-icon);
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--button-arrow-icon) center / contain no-repeat;
  mask: var(--button-arrow-icon) center / contain no-repeat;
}

.contact-panel-submit:hover,
.contact-panel-submit:focus-visible {
  color: var(--text);
  background: var(--mono-palette--mono-900);
  border-color: var(--mono-palette--mono-100);
}

.contact-panel-form.is-sending {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.75rem);
}

.contact-panel-form.is-sending .contact-panel-fields,
.contact-panel-form.is-sending .contact-panel-consent {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.45rem);
  transition:
    opacity 260ms var(--ease),
    transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.contact-panel-form.is-sending .contact-panel-submit {
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
  transition:
    opacity 180ms var(--ease),
    transform 220ms var(--ease);
}

.contact-panel-bird-flight {
  position: fixed;
  z-index: 160;
  width: clamp(7.75rem, 12vw, 11rem);
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.88) rotate(-7deg);
  transform-origin: 50% 50%;
  animation: contact-bird-flight 3200ms linear forwards;
  filter: drop-shadow(0 .65rem 1.35rem rgb(0 0 0 / 42%));
}

@keyframes contact-bird-flight {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.78) rotate(-6deg);
  }

  8% {
    opacity: .98;
  }

  35% {
    opacity: .94;
    transform: translate(calc(-50% + var(--bird-x-1)), calc(-50% + var(--bird-y-1))) scale(.96) rotate(-1deg);
  }

  70% {
    opacity: .88;
    transform: translate(calc(-50% + var(--bird-x-2)), calc(-50% + var(--bird-y-2))) scale(.92) rotate(3deg);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--bird-exit-x)), calc(-50% + var(--bird-exit-y))) scale(.76) rotate(12deg);
  }
}

.contact-panel-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.hero {
  display: grid;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: var(--layout-video-max);
  min-height: var(--hero-min-height);
  align-items: center;
  justify-content: center;
  grid-template-columns: minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-video-position-x) var(--hero-video-position-y);
}

.reveal-text {
  opacity: 0;
  transform: translateY(0.48rem);
  transition:
    opacity 460ms cubic-bezier(.22, 1, .36, 1),
    transform 460ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.about-page .reveal-text {
  transform: translateY(.85rem);
  transition-duration: 620ms;
}

.about-page .reveal-text.is-visible {
  transform: translateY(0);
}

.stats-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: var(--section-y-tight) var(--page-x) clamp(5rem, 7.2vw, 8rem);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, var(--surface-depth-1) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: var(--border-width--main) solid var(--surface-depth-line);
}

.stats-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: clamp(7rem, 11vw, 11rem);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface-depth-1) 72%, var(--surface-depth-0) 28%) 54%, var(--surface-depth-1) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  pointer-events: none;
}

.stats-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: clamp(2.15rem, 3vw, 3.7rem);
  align-items: start;
  padding-block: 0;
}

.stats-label {
  display: grid;
  grid-template-rows: auto auto;
  min-height: auto;
  align-content: start;
  gap: clamp(0.75rem, 1.1vw, 1rem);
  padding-top: var(--stats-block-y);
  padding-bottom: 0;
}

.stats-label p,
.stats-label span {
  margin: 0;
  font-weight: 400;
  line-height: var(--stats-text-line-height);
  letter-spacing: var(--stats-label-spacing);
  text-transform: none;
}

.stats-label p {
  color: var(--accent);
  font-size: var(--stats-label-size);
  transform: none;
}

.stats-label-subtitle {
  display: grid;
  max-width: 19rem;
  color: var(--type-color-caption);
  font-size: var(--stats-caption-size);
  transform: none;
}

.stats-label-subtitle span {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  border-top: var(--border-width--main) solid rgb(241 241 241 / 7%);
  border-bottom: 0;
}

.stats-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  padding-top: 0;
  padding-bottom: 0;
}

.stats-intro > div {
  max-width: 40rem;
  padding-left: var(--stats-block-x);
}

.stats-intro .eyebrow {
  margin: 0;
}

.stats-intro-label {
  display: grid;
  gap: 0.16em;
  max-width: 16rem;
  align-self: start;
  color: var(--accent);
  font-size: var(--stats-intro-label-size);
  line-height: var(--stats-text-line-height);
  letter-spacing: var(--stats-label-spacing);
  transform: none;
}

.stats-intro h1 {
  max-width: 18ch;
  margin: 0 0 clamp(0.85rem, 1.2vw, 1.25rem);
  font-size: var(--stats-intro-heading-size);
  line-height: var(--stats-intro-heading-line);
  letter-spacing: var(--stats-intro-heading-spacing);
  text-wrap: balance;
}

.stats-intro h1 span {
  display: block;
}

.stats-intro p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0;
  color: var(--type-color-copy);
  font-size: var(--text-base);
  font-weight: var(--type-weight-copy);
  line-height: var(--_typography---line-height--body-height);
}

.stats-icon-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.75rem);
  max-width: 44rem;
  margin-top: clamp(1.9rem, 2.6vw, 2.7rem);
}

.stats-icon-item {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: clamp(0.34rem, 0.48vw, 0.48rem);
  color: var(--type-color-copy-soft);
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: var(--type-weight-caption);
  line-height: 1.2;
}

.stats-icon-mark {
  width: clamp(3rem, 3.5vw, 3.85rem);
  height: clamp(3rem, 3.5vw, 3.85rem);
  display: grid;
  place-items: center;
  color: rgb(241 241 241 / 68%);
}

.stats-icon-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.stats-icon-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.68;
  filter: grayscale(1) brightness(1.32) contrast(0.88);
  transform: scale(var(--stats-icon-scale, 1));
  transform-origin: 50% 50%;
}

.stats-icon-item:nth-child(1) {
  --stats-icon-scale: 1.18;
}

.stats-icon-item:nth-child(2) {
  --stats-icon-scale: 1.02;
}

.stats-icon-item:nth-child(3) {
  --stats-icon-scale: 1.16;
}

.stats-icon-item:nth-child(4) {
  --stats-icon-scale: 0.98;
}

.stats-icon-label {
  display: block;
  max-width: 9.4rem;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
}

.stats-intro p.stats-icon-copy {
  max-width: 10.75rem;
  margin: clamp(0.06rem, 0.2vw, 0.18rem) 0 0;
  color: var(--type-color-caption);
  font-size: clamp(0.54rem, 0.58vw, 0.62rem);
  font-weight: var(--type-weight-caption);
  line-height: 1.45;
}

.stat-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: var(--stats-row-gap);
  min-height: auto;
  padding: var(--stats-block-y) var(--stats-block-x);
  background: transparent;
  border: 0;
  text-align: left;
}

.stats-label p,
.stat-value {
  align-self: start;
}

.stats-label span,
.stat-item p {
  align-self: start;
}

.stat-item + .stat-item {
  border-left: var(--border-width--main) solid rgb(241 241 241 / 8%);
}

.stat-value {
  display: flex;
  justify-content: flex-start;
}

.stat-number {
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--stats-number-size);
  font-weight: 400;
  line-height: var(--stats-number-line-height);
  letter-spacing: var(--stats-number-spacing);
  white-space: nowrap;
}

.stat-item p {
  max-width: 24ch;
  margin: 0;
  color: var(--type-color-caption);
  font-size: var(--stats-caption-size);
  font-weight: var(--type-weight-caption);
  line-height: var(--stats-text-line-height);
  letter-spacing: var(--stats-label-spacing);
  text-transform: none;
  white-space: normal;
}

.service-box-section {
  position: relative;
  display: block;
  min-height: auto;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y-compact) var(--page-x) clamp(4.25rem, 5.6vw, 6.5rem);
  perspective: none;
  transform-style: flat;
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-1) 0%, color-mix(in srgb, var(--surface-depth-1) 34%, var(--surface-depth-0) 66%) 36%, var(--surface-depth-0) 78%, color-mix(in srgb, var(--surface-depth-0) 72%, var(--surface-depth-2) 28%) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: var(--border-width--main) solid var(--surface-depth-line);
}

.stats-to-gallery-transition {
  position: relative;
  height: clamp(3rem, 4.5vw, 5rem);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.stats-to-gallery-transition::before {
  content: none;
  position: absolute;
  inset: auto;
  height: 0;
  background: none;
  pointer-events: none;
}

.service-box-section::before {
  content: none;
  position: absolute;
  inset: -14% -8% -10%;
  background: none;
  opacity: .82;
  pointer-events: none;
}

.service-box-section::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: clamp(7rem, 12vw, 12rem);
  background:
    linear-gradient(180deg, transparent 0%, var(--surface-depth-2) 74%, var(--surface-depth-2) 100%);
  filter: none;
  opacity: 1;
  pointer-events: none;
}

.index-faq-depth {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-1) 0%, color-mix(in srgb, var(--surface-depth-1) 34%, var(--surface-depth-0) 66%) 36%, var(--surface-depth-0) 78%, color-mix(in srgb, var(--surface-depth-0) 72%, var(--surface-depth-2) 28%) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: var(--border-width--main) solid var(--surface-depth-line);
}

.index-faq-depth .stats-section,
.index-faq-depth .project-gallery-section {
  background: transparent;
  border-top: 0;
}

.index-faq-depth .stats-section::after,
.index-faq-depth .project-gallery-section::before,
.index-faq-depth .project-gallery-section::after {
  content: none;
}

.index-faq-depth .stats-to-gallery-transition {
  height: clamp(3rem, 4.5vw, 5rem);
  background: transparent;
  border-top: var(--border-width--main) solid var(--surface-depth-line);
}

.service-box-kicker {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-bottom: var(--_spacing---space--1);
  color: var(--accent);
  font-size: var(--type-label);
  font-weight: 400;
  line-height: var(--_typography---line-height--body-height);
  text-align: left;
  text-transform: none;
}

.service-box-intro {
  position: relative;
  z-index: 2;
  max-width: var(--measure-4);
  margin: 0 0 clamp(1.55rem, 2.2vw, 2.3rem);
  color: var(--type-color-copy);
  font-size: var(--text-sm);
  font-weight: var(--type-weight-copy);
  line-height: var(--_typography---line-height--body-height);
  text-wrap: balance;
}

.service-box-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.service-box-shell::before {
  content: none;
  position: absolute;
  right: -6%;
  left: -6%;
  top: clamp(2rem, 4vw, 4.5rem);
  z-index: -1;
  height: clamp(18rem, 34vw, 32rem);
  background: none;
  filter: none;
  opacity: .82;
  pointer-events: none;
}

.service-box-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-grow: 0;
  flex-direction: column;
  gap: var(--service-row-gap);
  width: 100%;
  max-width: none;
  margin: 0;
  isolation: isolate;
  transform-style: flat;
}

.service-box-grid::before {
  content: none;
  position: absolute;
  inset: 18% -3% -12%;
  z-index: -2;
  background: none;
  filter: none;
  opacity: .68;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: 50% 100%;
}

.service-box-grid::after {
  content: none;
}

.service-box-row {
  display: flex;
  height: fit-content;
  gap: var(--service-row-gap);
  transform-style: flat;
  transition:
    transform .5s var(--service-ease-in-out);
}

.service-box-row:nth-child(1) {
  transform: none;
}

.service-box-row:nth-child(2) {
  transform: none;
}

.service-box-card {
  position: relative;
  display: flex;
  flex: .9 1 0;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--_spacing---space--3);
  min-height: var(--service-card-min-height);
  padding: var(--service-card-padding);
  background-color: var(--service-material-idle);
  background-image:
    linear-gradient(180deg, rgb(241 241 241 / .75%) 0%, rgb(241 241 241 / .2%) 36%, rgb(0 0 0 / 12%) 100%),
    linear-gradient(135deg, var(--service-edge-light) 0%, var(--service-glass-border) 42%, rgb(0 0 0 / 16%) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: var(--border-width--main) solid transparent;
  border-radius: var(--radius-xs);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 3.4%),
    inset 0 -1px 0 rgb(0 0 0 / 30%);
  clip-path: polygon(0 0, calc(100% - var(--service-card-cut)) 0, 100% var(--service-card-cut), 100% 100%, 0 100%);
  cursor: pointer;
  filter: none;
  overflow: hidden;
  transform-style: flat;
  transition:
    background-color .42s var(--service-ease-out),
    border-color .42s var(--service-ease-out),
    box-shadow .42s var(--service-ease-out),
    transform .42s var(--service-ease-out),
    min-height .58s var(--service-ease-in-out),
    flex .58s var(--service-ease-in-out);
  will-change: flex, transform;
}

.service-box-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgb(241 241 241 / 1.4%) 0%, transparent 30%),
    linear-gradient(315deg, rgb(241 241 241 / 1%) 0%, transparent 36%);
  opacity: .46;
  pointer-events: none;
}

.service-box-card:hover,
.service-box-card:focus-within {
  background-color: var(--service-material-hover);
  background-image:
    linear-gradient(180deg, rgb(241 241 241 / 1.35%) 0%, rgb(241 241 241 / .34%) 36%, rgb(0 0 0 / 9.5%) 100%),
    linear-gradient(135deg, rgb(241 241 241 / 9%) 0%, rgb(241 241 241 / 5.4%) 38%, rgb(0 0 0 / 13%) 100%);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 4.6%),
    inset 0 -1px 0 rgb(0 0 0 / 30%),
    0 .26rem .75rem rgb(0 0 0 / 8%);
  filter: none;
  transform: translateY(-1px);
}

.service-box-card.active {
  flex: 1.65 1 0;
  min-height: calc(var(--service-card-min-height) + var(--service-card-active-lift));
  background-color: var(--service-material-active);
  background-image:
    linear-gradient(180deg, rgb(241 241 241 / 1.25%) 0%, rgb(241 241 241 / .35%) 36%, rgb(0 0 0 / 9%) 100%),
    linear-gradient(135deg, rgb(241 241 241 / 10%) 0%, var(--service-glass-border-active) 42%, rgb(0 0 0 / 12%) 100%);
  filter: none;
  transform: none;
}

.service-box-card.active:hover,
.service-box-card.active:focus-within {
  background-image:
    linear-gradient(180deg, rgb(241 241 241 / 1.45%) 0%, rgb(241 241 241 / .38%) 36%, rgb(0 0 0 / 8.5%) 100%),
    linear-gradient(135deg, rgb(241 241 241 / 10.5%) 0%, var(--service-glass-border-active) 42%, rgb(0 0 0 / 11%) 100%);
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 4.9%),
    inset 0 -1px 0 rgb(0 0 0 / 29%),
    0 .3rem .85rem rgb(0 0 0 / 8.5%);
  transform: translateY(-0.5px);
}

.service-box-title {
  position: relative;
  z-index: 1;
  max-width: min(100%, var(--service-title-measure));
  margin: 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: var(--service-title-size);
  font-weight: var(--type-weight-ui);
  line-height: var(--service-title-line-height);
  letter-spacing: var(--service-title-letter-spacing);
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: auto;
  -webkit-font-smoothing: auto;
}

.service-box-card:nth-child(1) .service-box-title,
.service-box-card:nth-child(2) .service-box-title,
.service-box-card:nth-child(3) .service-box-title {
  max-width: 22ch;
}

.service-box-title::before,
.service-box-title::after,
.service-box-content::before,
.service-box-content::after {
  content: none;
}

.service-box-plus {
  position: absolute;
  right: var(--service-button-inset);
  bottom: var(--service-button-inset);
  display: flex;
  width: var(--control-size);
  height: var(--control-size);
  align-items: center;
  justify-content: center;
  background: var(--control-bg);
  border: var(--border-width--main) solid var(--control-border);
  border-radius: var(--radius--round);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition:
    transform .48s var(--service-ease-in-out),
    background-color .32s var(--service-ease-in-out),
    border-color .32s var(--service-ease-in-out);
}

.service-box-plus::before,
.service-box-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.64rem;
  height: var(--border-width--main);
  background: var(--control-icon);
  border-radius: var(--radius--round);
  transition:
    background-color .32s var(--service-ease-in-out),
    opacity .32s var(--service-ease-in-out),
    transform .48s var(--service-ease-in-out);
}

.service-box-plus::before {
  content: "";
  transform: translate(-50%, -50%);
}

.service-box-plus::after {
  content: "";
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-box-card:hover .service-box-plus,
.service-box-plus:focus-visible {
  background: var(--control-bg-hover);
  border-color: var(--control-border-hover);
}

.service-box-card:hover .service-box-plus::before,
.service-box-card:hover .service-box-plus::after,
.service-box-plus:focus-visible::before,
.service-box-plus:focus-visible::after {
  background-color: var(--control-icon-hover);
}

.service-box-card.active .service-box-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-box-card.active .service-box-plus::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.service-box-card.active .service-box-plus {
  background: var(--control-bg-hover);
  border-color: var(--control-border-hover);
  transform: none;
}

.service-box-content {
  position: absolute;
  right: calc(var(--service-button-size) + var(--service-button-inset) + var(--_spacing---space--3));
  bottom: var(--service-button-inset);
  left: var(--service-button-inset);
  box-sizing: border-box;
  width: auto;
  max-width: min(var(--service-copy-measure), calc(100% - var(--service-button-size) - (var(--service-button-inset) * 2) - var(--_spacing---space--3)));
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--type-color-copy-soft);
  font-size: var(--service-copy-size);
  font-weight: var(--type-weight-copy);
  line-height: var(--service-copy-line-height);
  letter-spacing: var(--service-copy-letter-spacing);
  text-wrap: pretty;
  overflow-wrap: normal;
  hyphens: auto;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
  transition:
    opacity .32s var(--service-ease-out);
  filter: none;
  transform: none;
}

.service-box-card.active .service-box-content {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 1100px) {
  .service-box-title {
    font-size: var(--service-title-size);
  }
}

@media (max-width: 768px) {
  .service-box-section {
    padding: var(--_spacing---section-space--main) var(--page-x);
  }

  .service-box-grid {
    gap: var(--service-row-gap);
  }

  .service-box-row,
  .service-box-row:first-child,
  .service-box-row:last-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--service-row-gap);
  }

  .service-box-row:first-child .service-box-card:last-child,
  .service-box-row:last-child .service-box-card:last-child {
    grid-column: auto;
  }

  .service-box-card {
    flex: initial;
    min-height: var(--service-card-min-height-mobile);
    padding: var(--service-card-padding);
  }

  .service-box-card.active {
    min-height: calc(var(--service-card-min-height-mobile) + 4rem);
  }

  .service-box-title {
    max-width: min(calc(100% - 2.75rem), var(--service-title-measure));
    font-size: var(--service-title-size);
  }

  .service-box-plus {
    width: var(--service-button-size);
    height: var(--service-button-size);
  }

  .service-box-content {
    position: static;
    width: calc(100% - var(--service-button-size) - var(--_spacing---space--3));
    max-width: none;
    padding: var(--_spacing---space--4) 0 0 0;
  }
}

@media (min-width: 48rem) {
  .service-box-row {
    height: auto;
  }
}

@media (min-width: 64rem) and (hover: hover) {
  .service-box-row:hover {
    transform: none;
  }
}

.project-gallery-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 3.25rem) 0 clamp(4rem, 5.8vw, 6.75rem);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, color-mix(in srgb, var(--surface-depth-0) 76%, var(--surface-depth-2) 24%) 58%, var(--surface-depth-2) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: 0;
}

.project-gallery-section::before {
  content: none;
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: clamp(7rem, 12vw, 13rem);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 28%) 0%, transparent 100%);
  pointer-events: none;
}

.project-gallery-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: clamp(9rem, 15vw, 16rem);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 7%) 46%, var(--surface-depth-2) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  opacity: 1;
  pointer-events: none;
}

.project-gallery-header {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - (var(--page-x) * 2)), var(--content-max));
  grid-template-columns: minmax(0, var(--measure-6));
  gap: var(--_spacing---space--2);
  align-items: start;
  margin: 0 auto clamp(1.5rem, 2.4vw, 2.5rem);
}

.project-gallery-header .eyebrow {
  margin-bottom: 0;
}

.project-gallery-header h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--heading);
  font-size: var(--type-section);
  line-height: var(--_typography---line-height--heading-height-2);
  letter-spacing: var(--_typography---letter-spacing--spacing-3);
}

.project-gallery {
  position: relative;
  z-index: 1;
}

.project-gallery-track {
  display: grid;
  grid-auto-columns: var(--gallery-card-width);
  grid-auto-flow: column;
  gap: var(--gallery-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-left: max(var(--page-x), calc((100vw - var(--content-max)) / 2));
  scroll-snap-type: x mandatory;
  padding: 0 max(var(--page-x), calc((100vw - var(--content-max)) / 2)) var(--_spacing---space--4);
  scrollbar-width: none;
}

.project-gallery-track::-webkit-scrollbar {
  display: none;
}

.project-gallery-card {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border: var(--border-width--main) solid rgb(241 241 241 / 5.5%);
  border-radius: var(--gallery-card-radius);
  background: var(--gallery-card-bg);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow:
    inset 0 1px 0 rgb(241 241 241 / 4.2%),
    0 .18rem .55rem rgb(0 0 0 / 7%);
}

.project-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(5 6 5 / 64%) 0%, rgb(5 6 5 / 18%) 36%, rgb(5 6 5 / 58%) 100%),
    linear-gradient(112deg, rgb(5 6 5 / 70%) 0%, rgb(5 6 5 / 34%) 38%, rgb(5 6 5 / 8%) 72%);
  pointer-events: none;
  transition: background var(--box-transition);
}

.project-gallery-card:hover::before,
.project-gallery-card:focus-within::before {
  background:
    linear-gradient(180deg, rgb(5 6 5 / 58%) 0%, rgb(5 6 5 / 16%) 36%, rgb(5 6 5 / 54%) 100%),
    linear-gradient(112deg, rgb(5 6 5 / 64%) 0%, rgb(5 6 5 / 30%) 38%, rgb(5 6 5 / 7%) 72%);
}

.project-gallery-card.is-open::before {
  background:
    linear-gradient(180deg, rgb(5 6 5 / 76%) 0%, rgb(5 6 5 / 46%) 44%, rgb(5 6 5 / 86%) 100%),
    linear-gradient(90deg, rgb(5 6 5 / 68%), rgb(5 6 5 / 28%) 54%, rgb(5 6 5 / 62%));
}

.project-gallery-card.is-open {
  aspect-ratio: 16 / 10;
}

.project-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.06) brightness(.82);
  transform: scale(1.006);
  transition:
    filter .72s ease,
    transform .98s cubic-bezier(.19, 1, .22, 1);
}

.project-gallery-card:hover img,
.project-gallery-card:focus-within img {
  filter: saturate(.99) contrast(1.07) brightness(.9);
  transform: scale(1.02);
}

.project-gallery-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: clamp(1rem, 1.8vw, 1.375rem);
  max-width: min(100% - clamp(2rem, 3.6vw, 2.75rem), 32ch);
}

.project-gallery-copy p {
  margin: 0 0 var(--_spacing---space--1);
  color: rgb(var(--accent-rgb) / 88%);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: var(--_typography---letter-spacing--spacing-8);
  text-transform: none;
}

.project-gallery-copy h3 {
  max-width: 17ch;
  margin: 0;
  color: var(--text);
  font-size: var(--text-md);
  font-weight: var(--type-weight-ui);
  line-height: var(--_typography---line-height--heading-height-3);
  letter-spacing: var(--_typography---letter-spacing--spacing-4);
}

.project-gallery-toggle {
  position: absolute;
  right: var(--_spacing---space--4);
  bottom: var(--_spacing---space--4);
  z-index: 4;
  display: grid;
  width: var(--control-size);
  height: var(--control-size);
  place-items: center;
  color: var(--control-icon);
  background: var(--control-bg);
  border: var(--border-width--main) solid var(--control-border);
  border-radius: var(--radius--round);
  cursor: pointer;
  font: inherit;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.project-gallery-toggle::before,
.project-gallery-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.64rem;
  height: var(--border-width--main);
  background: currentColor;
  border-radius: var(--radius--round);
  transition:
    opacity .32s var(--service-ease-in-out),
    transform .48s var(--service-ease-in-out);
}

.project-gallery-toggle::before {
  content: "";
  transform: translate(-50%, -50%);
}

.project-gallery-toggle::after {
  content: "";
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.project-gallery-toggle:hover,
.project-gallery-toggle:focus-visible {
  color: var(--control-icon-hover);
  background: var(--control-bg-hover);
  border-color: var(--control-border-hover);
  transform: scale(1.04);
}

.project-gallery-card.is-open .project-gallery-toggle {
  top: clamp(1rem, 1.8vw, 1.375rem);
  right: clamp(1rem, 1.8vw, 1.375rem);
  bottom: auto;
  background: var(--control-bg-hover);
  border-color: var(--control-border-hover);
}

.project-gallery-card.is-open .project-gallery-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.project-gallery-card.is-open .project-gallery-toggle::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.project-gallery-detail {
  position: absolute;
  top: clamp(8.75rem, 8.4vw, 10.5rem);
  right: clamp(4.5rem, 5.6vw, 6rem);
  bottom: auto;
  left: clamp(1rem, 1.8vw, 1.375rem);
  z-index: 3;
  max-width: 42ch;
  margin: 0;
  padding-top: var(--_spacing---space--3);
  color: color-mix(in srgb, var(--text) 72%, transparent);
  border-top: var(--border-width--main) solid rgb(241 241 241 / 13%);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--_typography---line-height--body-height);
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition:
    opacity .28s ease;
}

.project-gallery-card.is-open .project-gallery-detail {
  opacity: 1;
  transform: none;
}

.project-gallery-controls {
  display: flex;
  width: min(calc(100% - (var(--page-x) * 2)), var(--content-max));
  justify-content: flex-end;
  gap: var(--_spacing---space--2);
  margin: var(--_spacing---space--2) auto 0;
}

.project-gallery-arrow {
  position: relative;
  display: grid;
  width: var(--control-size-large);
  height: var(--control-size-large);
  place-items: center;
  color: var(--control-icon);
  background: var(--control-bg);
  border: var(--border-width--main) solid var(--control-border);
  border-radius: var(--radius--round);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.project-gallery-arrow::before {
  content: "";
  position: absolute;
  width: .9rem;
  height: .9rem;
  background: currentColor;
  filter: none;
  mask: center / contain no-repeat;
}

.project-gallery-arrow[data-gallery-direction="-1"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 5.5 9 12l6.5 6.5' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.project-gallery-arrow[data-gallery-direction="1"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 5.5 15 12l-6.5 6.5' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.project-gallery-arrow:hover,
.project-gallery-arrow:focus-visible {
  color: var(--control-icon-hover);
  background: var(--control-bg-hover);
  border-color: var(--control-border-hover);
  transform: translateY(-1px);
}

.section {
  padding: var(--section-y) var(--page-x);
  scroll-margin-top: calc(var(--nav-active-height) + var(--_spacing---space--5));
}

.section-heading {
  max-width: var(--measure-6);
  margin-bottom: var(--_spacing---space--5);
}

.workflow-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.25rem, 5.8vw, 6.75rem) var(--section-y);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-2) 0%, color-mix(in srgb, var(--surface-depth-2) 58%, var(--surface-depth-0) 42%) 30%, var(--surface-depth-0) 62%, var(--surface-depth-2) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: 0;
}

.workflow-section::before {
  content: none;
  position: absolute;
  inset: 0 0 auto;
  height: clamp(7rem, 12vw, 13rem);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 28%) 0%, transparent 100%);
  pointer-events: none;
}

.workflow-shell {
  position: relative;
  z-index: 1;
}

.workflow-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(4.5rem, 8vw, 9.5rem);
  align-items: start;
}

.workflow-heading {
  position: sticky;
  top: calc(var(--nav-height) + var(--_spacing---space--5));
  margin-bottom: 0;
}

.workflow-heading .eyebrow {
  color: var(--accent);
  letter-spacing: var(--_typography---letter-spacing--spacing-9);
}

.workflow-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-2);
  letter-spacing: var(--_typography---letter-spacing--spacing-3);
}

.workflow-grid {
  display: grid;
  gap: 0;
  justify-self: end;
  width: min(100%, 70rem);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--border-width--main) solid rgb(241 241 241 / 9%);
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(3.75rem, 0.12fr) minmax(12rem, 0.36fr) minmax(20rem, 0.68fr);
  column-gap: clamp(2.25rem, 4vw, 5rem);
  row-gap: var(--_spacing---space--2);
  align-items: center;
  min-height: clamp(6.75rem, 7.4vw, 8.25rem);
  padding: clamp(1.35rem, 1.9vw, 1.85rem) 0;
  border-bottom: var(--border-width--main) solid rgb(241 241 241 / 7%);
}

.workflow-step > * {
  align-self: center;
}

.workflow-index {
  color: rgb(241 241 241 / 28%);
  font-size: var(--text-xs);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-4);
  letter-spacing: var(--_typography---letter-spacing--spacing-6);
  transform: none;
}

.workflow-step-title {
  margin: 0;
  color: rgb(241 241 241 / 76%);
  font-size: var(--text-sm);
  font-weight: var(--type-weight-ui);
  line-height: var(--_typography---line-height--heading-height-4);
  letter-spacing: var(--_typography---letter-spacing--spacing-5);
  text-wrap: balance;
}

.workflow-step-text,
.footer-brand-block p {
  color: var(--type-color-copy);
}

.workflow-step-text {
  max-width: 31rem;
  margin: 0;
  font-size: var(--text-xs);
  font-weight: var(--type-weight-copy);
  line-height: var(--_typography---line-height--body-height);
  letter-spacing: var(--_typography---letter-spacing--spacing-7);
  text-wrap: pretty;
}

.about-main {
  background: var(--surface-depth-0);
}

.about-page:not(.faq-page) .about-main {
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-1) 0%, color-mix(in srgb, var(--surface-depth-1) 34%, var(--surface-depth-0) 66%) 36%, var(--surface-depth-0) 78%, color-mix(in srgb, var(--surface-depth-0) 72%, var(--surface-depth-2) 28%) 100%);
  background-size: var(--surface-depth-dither-size), auto;
}

.about-hero,
.about-montage-section {
  padding-inline: var(--page-x);
}

.about-hero {
  padding-top: calc(var(--nav-height) + var(--_spacing---section-space--large));
  padding-bottom: var(--section-y);
  background: transparent;
}

.faq-page .about-hero {
  padding-top: calc(var(--nav-height) + var(--section-y-tight));
  padding-bottom: clamp(4.75rem, 7vw, 7.5rem);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, var(--surface-depth-1) 100%);
  background-size: var(--surface-depth-dither-size), auto;
}

.faq-page .about-hero-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  min-height: 0;
}

.faq-page .about-hero-heading h1.eyebrow {
  max-width: 16rem;
  margin: 0;
  color: var(--accent);
  font-size: var(--stats-intro-label-size);
  font-weight: 400;
  line-height: var(--stats-text-line-height);
  letter-spacing: var(--stats-label-spacing);
}

.faq-page .about-hero-copy {
  max-width: 40rem;
  gap: clamp(0.85rem, 1.2vw, 1.25rem);
  padding-left: var(--stats-block-x);
}

.faq-page .about-hero-copy p:first-child {
  max-width: 18ch;
  color: var(--heading);
  font-size: var(--stats-intro-heading-size);
  line-height: var(--stats-intro-heading-line);
  font-weight: var(--_typography---font--primary-regular);
  letter-spacing: var(--stats-intro-heading-spacing);
  text-wrap: balance;
}

.faq-page .faq-hero-subcopy {
  max-width: 40rem;
  color: var(--type-color-copy);
  font-size: var(--text-base);
  font-weight: var(--type-weight-copy);
  line-height: var(--_typography---line-height--body-height);
}

.faq-page .service-box-section {
  --service-card-min-height: clamp(14rem, 14vw, 16.25rem);
  --service-card-min-height-mobile: 14rem;
  --service-card-active-lift: clamp(1rem, 1.15vw, 1.45rem);
  --service-title-size: clamp(0.9rem, 0.875rem + 0.125vw, 1rem);
  --service-copy-size: calc(var(--text-xs) * 0.94);
  --service-copy-measure: 30rem;
  padding-top: clamp(3rem, 4.8vw, 5.5rem);
}

.about-hero-shell {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.about-hero-heading {
  display: grid;
  gap: var(--_spacing---space--2);
  align-content: start;
}

.about-hero-heading .eyebrow {
  margin: 0;
  color: var(--accent);
}

.about-hero-heading h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.2rem, 1.9625rem + 1.1875vw, 3.15rem);
  font-weight: var(--_typography---font--primary-regular);
  line-height: var(--_typography---line-height--heading-height-1);
  letter-spacing: 0;
}

.about-hero-copy {
  display: grid;
  gap: var(--_spacing---space--3);
  max-width: 43rem;
}

.about-hero-copy p {
  margin: 0;
  color: color-mix(in srgb, var(--muted) 86%, var(--text) 14%);
  font-size: var(--text-base);
  font-weight: var(--_typography---font--primary-regular);
  line-height: 1.55;
  letter-spacing: 0;
  text-wrap: pretty;
}

.about-hero-copy p:first-child {
  color: color-mix(in srgb, var(--text) 82%, var(--muted) 18%);
}

.about-montage-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-top: var(--border-width--main) solid var(--surface-depth-line);
  background: transparent;
}

.about-montage-section::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(7rem, 13vw, 13rem);
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface-depth-0) 86%, var(--surface-depth-2) 14%) 62%, color-mix(in srgb, var(--surface-depth-0) 70%, var(--surface-depth-2) 30%) 100%);
}

.about-montage-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.31fr) minmax(0, 0.69fr);
  gap: clamp(2.5rem, 6vw, 7.5rem);
  align-items: start;
}

.about-montage-copy {
  position: sticky;
  top: calc(var(--nav-height) + var(--_spacing---space--7));
}

.about-montage-copy h2 {
  max-width: 13ch;
  margin-bottom: var(--_spacing---space--4);
  font-size: clamp(1.55rem, 1.4125rem + 0.6875vw, 2.1rem);
  line-height: var(--_typography---line-height--heading-height-2);
}

.about-montage-copy p:last-child {
  max-width: 31rem;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--_typography---line-height--body-height);
  text-wrap: pretty;
}

.about-montage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(4.75rem, 6.15vw, 7.25rem);
  gap: 0;
}

.about-montage-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #090a09;
  border: 0;
}

.about-montage-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 44%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 0%) 46%);
}

.about-montage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98) brightness(0.78);
}

.about-montage-item-main img {
  object-position: 50% 72%;
}

.about-montage-item-wide img {
  object-position: 50% 48%;
}

.about-montage-item-portrait img {
  object-position: 50% 36%;
}

.about-montage-item-small img {
  object-position: 50% 52%;
}

.about-montage-item-tall img {
  object-position: 50% 66%;
}

.about-montage-item figcaption {
  position: absolute;
  right: var(--_spacing---space--3);
  bottom: var(--_spacing---space--3);
  left: var(--_spacing---space--3);
  z-index: 1;
  color: color-mix(in srgb, var(--text) 86%, transparent);
  font-size: var(--type-label);
  line-height: var(--_typography---line-height--heading-height-4);
  letter-spacing: var(--_typography---letter-spacing--spacing-8);
}

.about-montage-item-main {
  grid-column: 1 / 6;
  grid-row: 1 / 7;
}

.about-montage-item-wide {
  grid-column: 6 / 13;
  grid-row: 1 / 3;
}

.about-montage-item-portrait {
  grid-column: 6 / 10;
  grid-row: 3 / 7;
}

.about-montage-item-small {
  grid-column: 10 / 13;
  grid-row: 3 / 5;
}

.about-montage-item-tall {
  grid-column: 10 / 13;
  grid-row: 5 / 7;
}

.about-work-section {
  padding: var(--section-y) var(--page-x);
  border-top: 0;
  background: var(--surface-depth-dither);
  background-size: var(--surface-depth-dither-size);
}

.about-work-shell {
  display: grid;
  grid-template-columns: minmax(15rem, 0.31fr) minmax(0, 0.69fr);
  gap: clamp(2.5rem, 6vw, 7.5rem);
  align-items: start;
}

.not-found-section {
  min-height: 100svh;
  padding: calc(var(--nav-height) + var(--_spacing---section-space--large)) var(--page-x) var(--section-y);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, var(--surface-depth-1) 100%);
  background-size: var(--surface-depth-dither-size), auto;
}

.not-found-shell {
  display: grid;
  align-content: center;
  min-height: calc(100svh - var(--nav-height) - var(--section-y));
}

.not-found-shell h1 {
  max-width: 10.5ch;
  margin: 0;
  color: var(--heading);
  font-size: var(--text-display);
  font-weight: var(--_typography---font--primary-regular);
  line-height: var(--_typography---line-height--heading-height-1);
  letter-spacing: 0;
}

.not-found-shell p:not(.eyebrow) {
  max-width: 42rem;
  margin: var(--_spacing---space--5) 0 0;
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: var(--_typography---font--primary-regular);
  line-height: var(--_typography---line-height--body-height);
}

.not-found-shell .button {
  width: fit-content;
  margin-top: var(--_spacing---space--5);
}

.about-work-heading {
  position: sticky;
  top: calc(var(--nav-height) + var(--_spacing---space--7));
}

.about-work-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.55rem, 1.4125rem + 0.6875vw, 2.1rem);
  line-height: var(--_typography---line-height--heading-height-2);
}

.about-accordion {
  border-top: var(--border-width--main) solid rgb(241 241 241 / 9%);
}

.about-accordion-item {
  border-bottom: var(--border-width--main) solid rgb(241 241 241 / 7%);
}

.about-accordion-item h3 {
  margin: 0;
}

.about-accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: clamp(3.9rem, 5vw, 5.1rem);
  align-items: center;
  gap: var(--_spacing---space--4);
  padding: 0;
  border: 0;
  color: color-mix(in srgb, var(--text) 76%, var(--surface-depth-0) 24%);
  background: transparent;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--type-weight-ui);
  line-height: var(--_typography---line-height--heading-height-4);
  letter-spacing: var(--_typography---letter-spacing--spacing-6);
  text-align: left;
  cursor: pointer;
}

.about-accordion-icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  opacity: .64;
}

.about-accordion-icon::before,
.about-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: var(--border-width--main);
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.about-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-accordion-item.is-open .about-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.about-accordion-panel {
  max-width: 44rem;
  max-height: 0;
  padding: 0;
  color: var(--type-color-copy-soft);
  font-size: var(--text-xs);
  font-weight: var(--type-weight-copy);
  line-height: var(--_typography---line-height--body-height);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.35rem);
  transition:
    max-height 520ms cubic-bezier(.22, 1, .36, 1),
    opacity 260ms ease,
    padding-bottom 520ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.about-accordion-item.is-open .about-accordion-panel {
  max-height: var(--accordion-panel-height, 20rem);
  padding-bottom: clamp(1.25rem, 2vw, 2rem);
  opacity: 1;
  transform: translateY(0);
}

.about-accordion-panel[hidden] {
  display: block;
}

.site-footer {
  padding: clamp(1.3rem, 1.75vw, 1.9rem) var(--page-x) clamp(1rem, 1.1vw, 1.15rem);
  color: var(--muted);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, color-mix(in srgb, var(--surface-depth-1) 12%, var(--surface-depth-0) 88%) 54%, var(--surface-depth-0) 100%);
  background-size: var(--surface-depth-dither-size), auto;
  border-top: 0;
}

.footer-shell {
  display: grid;
  gap: clamp(0.9rem, 1.1vw, 1.18rem);
  max-width: var(--page-max);
  margin-inline: auto;
}

.footer-system {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(7.25rem, 0.24fr) minmax(7.25rem, 0.24fr) minmax(7rem, 0.2fr);
  gap: clamp(1.55rem, 2.75vw, 3.8rem);
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-legal,
.footer-social,
.footer-bottom {
  display: flex;
}

.footer-brand-block {
  --footer-brand-logo-w: calc(var(--footer-mark-size) * 0.68);
  --footer-brand-gap: calc(var(--_spacing---space--1) * 0.88);
  max-width: 34rem;
}

.footer-brand {
  align-items: flex-start;
  gap: var(--footer-brand-gap);
  color: var(--heading);
  font-size: var(--text-sm);
  font-weight: var(--type-weight-ui);
  line-height: var(--_typography---line-height--heading-height-4);
}

.footer-brand-copy {
  display: grid;
  gap: clamp(0.45rem, 0.55vw, 0.62rem);
  min-width: 0;
}

.footer-brand-name,
.footer-brand-description {
  display: block;
}

.footer-brand-name {
  color: var(--heading);
}

.footer-brand-logo {
  width: var(--footer-brand-logo-w);
  height: calc(var(--footer-mark-size) * 0.9);
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .68;
  filter: var(--brand-mark-filter);
  transform: translateY(-0.18em);
}

.footer-brand-description {
  max-width: 42ch;
  color: var(--type-color-copy);
  font-size: clamp(0.72rem, 0.69rem + 0.06vw, 0.76rem);
  font-weight: var(--type-weight-copy);
  line-height: 1.48;
  letter-spacing: var(--_typography---letter-spacing--spacing-7);
  text-wrap: pretty;
}

.footer-links,
.footer-legal,
.footer-social {
  display: grid;
  gap: clamp(0.28rem, 0.32vw, 0.38rem);
  align-content: start;
}

.footer-label {
  margin: 0;
  padding-bottom: clamp(0.46rem, 0.55vw, 0.62rem);
  color: var(--accent);
  font-size: clamp(0.66rem, 0.64rem + 0.05vw, 0.7rem);
  font-weight: 400;
  line-height: var(--_typography---line-height--heading-height-4);
  text-transform: none;
}

.site-footer .footer-links a:not(.footer-social-link),
.site-footer .footer-link-button,
.site-footer .footer-legal a:not(.footer-social-link),
.site-footer .footer-bottom a:not(.footer-social-link) {
  width: fit-content;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: var(--_typography---font--primary-regular);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 var(--border-width--main);
  transition:
    color var(--transition-fast),
    background-size var(--link-line-transition);
}

.site-footer .footer-links a:not(.footer-social-link),
.site-footer .footer-link-button,
.site-footer .footer-legal a:not(.footer-social-link) {
  display: block;
  padding: 0;
  border: 0;
  font-size: clamp(0.64rem, 0.62rem + 0.05vw, 0.68rem);
  font-weight: var(--_typography---font--primary-regular);
  line-height: 1.46;
  text-transform: none;
  cursor: pointer;
}

.site-footer .footer-links a:not(.footer-social-link)[aria-current="page"],
.site-footer .footer-link-button[aria-current="page"],
.site-footer .footer-legal a:not(.footer-social-link)[aria-current="page"] {
  color: var(--muted);
  font-weight: var(--_typography---font--primary-regular);
  background-size: 0 var(--border-width--main);
}

.footer-link-button {
  appearance: none;
  font-family: var(--font-body);
  text-align: left;
  background-color: transparent;
}

.site-footer .footer-links a:not(.footer-social-link):hover,
.site-footer .footer-links a:not(.footer-social-link):focus-visible,
.site-footer .footer-links a:not(.footer-social-link):active,
.site-footer .footer-link-button:hover,
.site-footer .footer-link-button:focus-visible,
.site-footer .footer-link-button:active,
.site-footer .footer-legal a:not(.footer-social-link):hover,
.site-footer .footer-legal a:not(.footer-social-link):focus-visible,
.site-footer .footer-legal a:not(.footer-social-link):active,
.site-footer .footer-bottom a:not(.footer-social-link):hover,
.site-footer .footer-bottom a:not(.footer-social-link):focus-visible,
.site-footer .footer-bottom a:not(.footer-social-link):active {
  color: var(--text);
  background-size: 100% var(--border-width--main);
}

.footer-social-icons {
  display: flex;
  gap: clamp(0.9rem, 0.9vw, 1.1rem);
  align-items: center;
  margin-top: 0;
}

.footer-social .footer-social-link {
  display: grid;
  width: 1.32rem;
  height: 1.32rem;
  place-items: center;
  color: var(--muted);
  background: transparent;
  background-image: none;
  background-size: 0 0;
  border: 0;
  border-radius: 0;
  opacity: 1;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.footer-social .footer-social-link img {
  width: 0.78rem;
  height: 0.78rem;
  display: block;
  flex: 0 0 auto;
  opacity: .62;
  filter: invert(62%) sepia(0%) saturate(0%) hue-rotate(167deg) brightness(88%) contrast(88%);
  transition:
    filter var(--transition-fast),
    opacity var(--transition-fast);
}

.footer-social .footer-social-link:hover,
.footer-social .footer-social-link:focus-visible {
  color: var(--text);
  background: transparent;
  background-image: none;
  background-size: 0 0;
}

.footer-social .footer-social-link:hover img,
.footer-social .footer-social-link:focus-visible img {
  opacity: .95;
  filter: invert(92%) sepia(0%) saturate(0%) hue-rotate(167deg) brightness(98%) contrast(92%);
}

.footer-social .footer-social-link,
.footer-social .footer-social-link:hover,
.footer-social .footer-social-link:focus-visible {
  background-image: none !important;
  background-size: 0 0 !important;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 1.7rem;
  padding-top: clamp(0.75rem, 0.9vw, 0.95rem);
  border-top: var(--border-width--main) solid rgb(241 241 241 / 6%);
  color: var(--type-color-caption);
  font-size: clamp(0.67rem, 0.65rem + 0.05vw, 0.72rem);
  font-weight: var(--_typography---font--primary-regular);
  line-height: 1.45;
}

.site-footer .footer-bottom a:not(.footer-social-link) {
  color: inherit;
}

.site-footer .footer-bottom .reveal-text {
  opacity: 1;
  transform: none;
  transition: none;
}

.site-footer p {
  margin: 0;
}

.legal-main {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: calc(var(--nav-height) + var(--section-y-tight)) var(--page-x) var(--section-y);
  background:
    var(--surface-depth-dither),
    linear-gradient(180deg, var(--surface-depth-0) 0%, var(--surface-depth-1) 100%);
  background-size: var(--surface-depth-dither-size), auto;
}

.legal-hero {
  max-width: var(--reading-max);
  margin-bottom: var(--_spacing---space--7);
}

.legal-hero h1 {
  margin-bottom: var(--_spacing---space--4);
}

.legal-hero p {
  max-width: var(--measure-6);
  color: var(--muted);
  font-size: var(--text-md);
}

.legal-grid {
  display: grid;
  grid-template-columns: var(--measure-2) minmax(0, 1fr);
  gap: var(--_spacing---space--8);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--button-height) + var(--_spacing---space--8));
  display: flex;
  flex-direction: column;
  gap: var(--_spacing---space--2);
  padding-top: var(--_spacing---space--1);
}

.legal-toc a {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--accent);
}

.legal-content {
  display: grid;
  gap: var(--_spacing---space--3);
}

.legal-card {
  padding: var(--_spacing---space--5);
  background: var(--surface);
  border: var(--border-width--main) solid var(--line);
  border-left: var(--border-width--main) solid var(--color-line-strong);
  border-radius: var(--radius-xs);
}

.legal-card h2 {
  margin-bottom: var(--_spacing---space--3);
  font-size: var(--text-lg);
}

.legal-card p,
.legal-card address {
  color: var(--muted);
}

.legal-card address {
  font-style: normal;
}

@media screen and (min-width: 768px) and (max-width: 899px) {
  .site-header {
    gap: var(--_spacing---space--2);
  }

  .brand {
    gap: var(--_spacing---space--1);
    padding-right: 0;
    font-size: var(--nav-brand-size);
  }

  .site-nav {
    font-size: var(--nav-brand-size);
  }
}

@media screen and (max-width: 991px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .brand {
    padding-right: 0;
  }

  .footer-shell,
  .footer-system,
  .legal-grid,
  .about-hero-shell,
  .about-montage-shell,
  .about-work-shell,
  .workflow-shell,
  .stats-shell,
  .stats-grid,
  .stats-intro {
    grid-template-columns: 1fr;
  }

  .stats-intro {
    align-items: start;
    gap: var(--_spacing---space--4);
    padding-top: var(--_spacing---space--6);
    padding-bottom: var(--_spacing---space--4);
  }

  .stats-intro > div {
    max-width: none;
    padding-left: 0;
  }

  .stats-intro-label {
    transform: none;
  }

  .stats-intro h1 {
    max-width: 13ch;
  }

  .workflow-heading {
    position: static;
  }

  .workflow-heading h2 {
    max-width: var(--measure-6);
  }

  .workflow-grid {
    justify-self: stretch;
    width: 100%;
  }

  .about-hero {
    padding-top: calc(var(--nav-height) + var(--_spacing---section-space--main));
  }

  .about-hero-shell {
    gap: var(--_spacing---space--5);
  }

  .faq-page .about-hero-shell {
    grid-template-columns: 1fr;
  }

  .faq-page .about-hero-copy {
    max-width: none;
    padding-left: 0;
  }

  .faq-page .about-hero-copy p:first-child {
    max-width: 13ch;
  }

  .about-hero-heading,
  .about-hero-copy {
    grid-column: auto;
  }

  .about-hero-heading h1,
  .about-montage-copy h2 {
    max-width: var(--measure-5);
  }

  .about-montage-copy {
    position: static;
  }

  .about-work-heading {
    position: static;
  }

  .about-work-heading h2 {
    max-width: var(--measure-5);
  }

  .stats-grid {
    padding-top: var(--_spacing---space--4);
  }

  .stats-label {
    grid-template-rows: auto;
    min-height: auto;
    gap: var(--_spacing---space--2);
    padding-block: 0;
  }

  .stats-label-subtitle {
    transform: none;
  }

  .stat-item {
    min-height: auto;
    padding-inline: 0;
    border: 0;
  }

  .stat-item p {
    white-space: normal;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: var(--border-width--main) solid rgb(241 241 241 / 8%);
  }

  .legal-toc {
    position: static;
    flex-flow: row wrap;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-gallery-header {
    grid-template-columns: 1fr;
    gap: var(--_spacing---space--4);
    align-items: start;
  }

  .project-gallery-header h2 {
    max-width: var(--measure-6);
  }

  .project-gallery-track {
    grid-auto-columns: minmax(21rem, 72vw);
  }
}

@media screen and (max-width: 767px) {
  .site-nav {
    display: none;
  }

  .site-header {
    min-height: var(--nav-active-height);
    padding-inline: var(--_spacing---space--3);
  }

  .header-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0;
  }

  .header-cta {
    display: inline-flex;
    min-height: var(--nav-cta-height);
  }

  .contact-panel {
    width: min(38rem, calc(100vw - var(--page-x)));
    min-height: auto;
    overflow-y: auto;
  }

  .contact-panel-inner {
    min-height: 100dvh;
  }

  .contact-panel-fields {
    grid-template-columns: 1fr;
  }

  .contact-panel-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .project-gallery-section {
    padding: var(--_spacing---section-space--main) 0;
  }

  .project-gallery-track {
    grid-auto-columns: calc(100vw - (var(--page-x) * 2));
  }

  .project-gallery-card {
    aspect-ratio: 4 / 4.35;
  }

  .stats-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 24rem;
    gap: 1rem 1.2rem;
  }

  .project-gallery-copy {
    padding: var(--_spacing---space--4);
  }

  .project-gallery-detail {
    right: var(--_spacing---space--4);
    left: var(--_spacing---space--4);
    font-size: var(--text-sm);
  }

  .workflow-section {
    padding-top: calc(var(--nav-active-height) + var(--_spacing---space--5));
  }

  .about-hero {
    padding-top: calc(var(--nav-active-height) + var(--_spacing---section-space--main));
  }

  .about-montage-section {
    padding-bottom: var(--_spacing---section-space--main);
  }

  .about-work-section {
    padding-block: var(--_spacing---section-space--main);
  }

  .about-montage {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0;
  }

  .about-montage-item-main,
  .about-montage-item-wide,
  .about-montage-item-portrait,
  .about-montage-item-small,
  .about-montage-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .about-montage-item {
    aspect-ratio: 4 / 3;
  }

  .about-montage-item-main,
  .about-montage-item-tall {
    aspect-ratio: 4 / 4.8;
  }

  .workflow-step {
    grid-template-columns: minmax(2.75rem, auto) 1fr;
    gap: var(--_spacing---space--2) var(--_spacing---space--3);
    padding: var(--_spacing---space--4) 0;
  }

  .workflow-step-text {
    grid-column: 2;
  }
}

@media screen and (max-width: 479px) {
  .button {
    width: 100%;
  }

  .site-header {
    padding-inline: .75rem;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .workflow-index,
  .workflow-step-text {
    grid-column: auto;
  }

  .header-cta {
    min-height: calc(var(--nav-cta-height) - .25rem);
    gap: var(--nav-cta-gap);
    padding-inline: var(--nav-cta-x);
    font-size: var(--nav-cta-font-size);
    line-height: var(--nav-cta-line-height);
  }

  .header-cta::before {
    width: var(--nav-cta-icon);
    height: var(--nav-cta-icon);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-text {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-accordion-panel {
    transition: none;
  }

  .contact-panel-bird-flight {
    animation: none;
    opacity: .9;
    transform: translate(-50%, -50%) scale(.82);
  }

  .service-box-card,
  .service-box-plus,
  .service-box-content,
  .contact-panel-form.is-sending .contact-panel-fields,
  .contact-panel-form.is-sending .contact-panel-source,
  .contact-panel-form.is-sending .contact-panel-consent,
  .contact-panel-form.is-sending .contact-panel-submit,
  .contact-panel,
  .contact-panel-close,
  .contact-panel-social a,
  .contact-panel-submit,
  .site-header,
  .site-nav a {
    transition: none;
  }

  .project-gallery-track {
    scroll-behavior: auto;
  }

  .project-gallery-card,
  .project-gallery-card::before,
  .project-gallery-card img,
  .project-gallery-toggle,
  .project-gallery-detail,
  .project-gallery-arrow {
    transition: none;
  }
}
