:root {
  --ink: #050505;
  --paper: #ffffff;
  --fog: #f2f2f0;
  --fog-deep: #e8e8e5;
  --project-gray: #f6f7f8;
  --line: #d5d5d1;
  --muted: #626260;
  --cobalt: #3452ff;
  --fuchsia: #ff3366;
  --iris: #8667ff;
  --frame: min(1500px, calc(100vw - clamp(64px, 6vw, 112px)));
  --header-height: 88px;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 32px;
  font-size: clamp(3.65rem, 6.1vw, 6.7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
}

p {
  max-width: 70ch;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: var(--frame);
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: block;
  width: min(250px, 26vw);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 38px);
  font-size: clamp(0.86rem, 0.8vw, 0.94rem);
  font-weight: 700;
}

.site-nav > a:not(.nav-cta),
.nav-group > button {
  position: relative;
  padding: 12px 0;
}

.site-nav > a:not(.nav-cta)::after,
.nav-group > button::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-group:hover > button::after,
.nav-group:focus-within > button::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-group > button {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.nav-panel {
  position: absolute;
  top: 100%;
  left: -28px;
  z-index: 10;
  display: grid;
  width: 285px;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.nav-panel a {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-panel a:last-child {
  border-bottom: 0;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel,
.nav-group.is-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 23px;
  border: 2px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta,
.button-dark {
  background: var(--ink);
  color: var(--paper);
}

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

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

.button-light:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.home-hero-shell {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-rows: minmax(0, 1fr) auto;
}

.home-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--paper) url("assets/optimized/color-explosion-hero-poster-03d88131fdd7-q84.webp") 66% center / cover no-repeat;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    rgba(255, 255, 255, 0.99) 29%,
    rgba(255, 255, 255, 0.94) 42%,
    rgba(255, 255, 255, 0.72) 52%,
    rgba(255, 255, 255, 0.24) 66%,
    rgba(255, 255, 255, 0) 79%
  );
  content: "";
}

.hero-video {
  position: absolute;
  top: -6%;
  left: 12%;
  width: 108%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 360ms ease;
}

.home-hero.is-video-ready .hero-video {
  opacity: 1;
}

.home-hero.has-video-error .hero-video {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--frame);
  height: 100%;
  align-items: center;
  padding-block: 46px 50px;
}

.hero-copy {
  width: min(740px, 52vw);
  padding-right: 20px;
}

.home-hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 5.1vw, 5.65rem);
}

.location-line,
.section-kicker,
.tier-name {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.award-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.award-line strong {
  position: relative;
  display: block;
  padding: 3px 0 3px 15px;
  color: var(--ink);
  line-height: 1.2;
}

.award-line strong::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--cobalt);
  content: "";
}

.award-line span {
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
}

.award-line span::before {
  position: absolute;
  top: 0.15em;
  bottom: 0.15em;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 30px;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-block;
  padding-block: 7px;
  border-bottom: 2px solid currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.browser-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 28px 64px rgba(5, 5, 5, 0.18);
}

.browser-shot img {
  width: 100%;
  aspect-ratio: 900 / 604;
  object-fit: cover;
}

.browser-shot figcaption {
  padding: 8px 11px 9px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.browser-chrome {
  display: flex;
  height: 21px;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.browser-chrome i {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.35;
}

.proof-bar {
  padding-block: 31px;
  background: var(--ink);
  color: var(--paper);
}

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

.proof-grid div {
  min-height: 68px;
  padding: 5px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.proof-grid strong {
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

@media (min-width: 901px) and (max-width: 1360px) {
  .proof-grid {
    grid-template-columns: 1.08fr 1.15fr 0.97fr 0.8fr;
  }

  .proof-grid div {
    padding-right: 14px;
    padding-left: 14px;
  }

  .proof-grid strong {
    font-size: 0.98rem;
    letter-spacing: -0.01em;
  }

  .proof-grid span {
    font-size: 0.78rem;
  }
}

.performance-standard {
  padding-block: clamp(88px, 9vw, 132px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: start;
  gap: clamp(70px, 9vw, 135px);
}

.performance-heading {
  position: sticky;
  top: 130px;
}

.performance-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.7vw, 5.4rem);
}

.performance-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.performance-rail {
  border-top: 1px solid var(--ink);
}

.performance-rail article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 31px 0 34px;
  border-bottom: 1px solid var(--ink);
}

.performance-rail article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.performance-rail h3 {
  margin-bottom: 8px;
}

.performance-rail p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  margin: 0;
  max-width: 940px;
}

.split-heading p {
  margin: 0 0 7px;
  color: var(--muted);
}

.work-section {
  background: var(--fog);
  color: var(--ink);
}

.nonprofit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: end;
  gap: clamp(60px, 9vw, 135px);
  margin-bottom: 50px;
}

.nonprofit-heading h2 {
  margin-bottom: 0;
}

.nonprofit-heading .section-kicker {
  color: var(--muted);
}

.nonprofit-intro p {
  color: var(--muted);
}

.nonprofit-intro .text-link:hover {
  color: var(--blue);
}

.nonprofit-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.nonprofit-capabilities li {
  min-width: 0;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}

.nonprofit-capabilities li:first-child {
  padding-left: 0;
  border-left: 0;
}

.nonprofit-capabilities strong,
.nonprofit-capabilities span {
  display: block;
  font-size: 0.83rem;
}

.nonprofit-capabilities strong {
  margin-bottom: 5px;
}

.nonprofit-capabilities span {
  color: var(--muted);
  line-height: 1.45;
}

.nonprofit-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.nonprofit-project {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  aspect-ratio: 1000 / 671;
  margin: 0;
  background: #d9d9d7;
}

.nonprofit-project-wide {
  grid-column: span 3;
}

.nonprofit-project::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.nonprofit-project > a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--paper);
}

.nonprofit-project img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: filter 240ms ease;
}

.nonprofit-project:hover img,
.nonprofit-project:focus-within img {
  filter: brightness(1.06);
}

.nonprofit-project:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.nonprofit-project figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
}

.nonprofit-project figcaption strong,
.nonprofit-project figcaption span {
  display: block;
}

.nonprofit-project figcaption strong {
  margin-bottom: 1px;
  font-size: 1.02rem;
}

.nonprofit-project figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.commerce-section {
  overflow: hidden;
  background: #101412;
  color: var(--paper);
}

.commerce-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: end;
  gap: clamp(60px, 9vw, 135px);
  margin-bottom: 50px;
}

.commerce-heading h2 {
  margin-bottom: 0;
}

.commerce-heading .section-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.commerce-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.commerce-intro .text-link:hover {
  color: var(--fuchsia);
}

.commerce-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.commerce-capabilities li {
  min-width: 0;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.commerce-capabilities li:first-child {
  padding-left: 0;
  border-left: 0;
}

.commerce-capabilities strong,
.commerce-capabilities span {
  display: block;
  font-size: 0.83rem;
}

.commerce-capabilities strong {
  margin-bottom: 5px;
}

.commerce-capabilities span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.commerce-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.commerce-shot {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1000 / 671;
  margin: 0;
  background: #262b28;
}

.commerce-shot::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.commerce-shot > a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--paper);
}

.commerce-shot:focus-within {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}

.commerce-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: filter 240ms ease;
}

.commerce-shot figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
}

.commerce-shot figcaption strong,
.commerce-shot figcaption span {
  display: block;
}

.commerce-shot figcaption strong {
  margin-bottom: 1px;
  font-size: 1.02rem;
}

.commerce-shot figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.commerce-shot:hover img,
.commerce-shot:focus-within img {
  filter: brightness(1.06);
}

.specialty-section {
  overflow: hidden;
  background: var(--fog);
  color: var(--ink);
}

.specialty-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: end;
  gap: clamp(60px, 9vw, 135px);
  margin-bottom: 50px;
}

.specialty-heading h2 {
  margin-bottom: 0;
}

.specialty-heading .section-kicker {
  color: var(--muted);
}

.specialty-intro p {
  color: var(--muted);
}

.specialty-intro .text-link:hover {
  color: var(--blue);
}

.specialty-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.specialty-capabilities li {
  min-width: 0;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}

.specialty-capabilities li:first-child {
  padding-left: 0;
  border-left: 0;
}

.specialty-capabilities strong,
.specialty-capabilities span {
  display: block;
  font-size: 0.83rem;
}

.specialty-capabilities strong {
  margin-bottom: 5px;
}

.specialty-capabilities span {
  color: var(--muted);
  line-height: 1.45;
}

.specialty-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.specialty-project {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1000 / 671;
  margin: 0;
  background: #d9d9d7;
}

.specialty-project-wide {
  grid-column: auto;
}

.specialty-project::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  content: "";
  pointer-events: none;
}

.specialty-project > a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--paper);
}

.specialty-project img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: filter 240ms ease;
}

.specialty-project:hover img,
.specialty-project:focus-within img {
  filter: brightness(1.06);
}

.specialty-project:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.specialty-project figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
}

.specialty-project figcaption strong,
.specialty-project figcaption span {
  display: block;
}

.specialty-project figcaption strong {
  margin-bottom: 1px;
  font-size: 0.94rem;
}

.specialty-project figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
}

.nonprofit-project,
.specialty-project {
  box-shadow:
    0 24px 52px rgba(18, 20, 25, 0.12),
    0 8px 18px rgba(18, 20, 25, 0.06);
}

.app-development-section {
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.app-development-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
  align-items: start;
  gap: clamp(70px, 8vw, 125px);
}

.app-development-copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 4.6vw, 5.3rem);
}

.app-development-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.app-platforms h3,
.app-platforms p {
  margin: 0;
}

.app-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.app-capability-list li {
  padding: 15px 18px 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
}

.app-development-copy .button-row {
  margin-top: 34px;
}

.app-showcase {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(14px, 1.5vw, 22px);
  padding: 44px 0 0;
  isolation: isolate;
}

.app-showcase::before {
  position: absolute;
  inset: -8% -18% -18% -14%;
  z-index: -2;
  background:
    radial-gradient(circle at 67% 42%, rgba(134, 103, 255, 0.12), rgba(134, 103, 255, 0.05) 22%, transparent 52%),
    radial-gradient(circle at 48% 70%, rgba(255, 52, 189, 0.08), rgba(255, 52, 189, 0.03) 21%, transparent 49%),
    radial-gradient(ellipse at 58% 68%, rgba(218, 222, 232, 0.7), rgba(232, 234, 240, 0.34) 40%, rgba(255, 255, 255, 0) 72%);
  content: "";
  pointer-events: none;
}

.app-showcase::after {
  position: absolute;
  bottom: -4px;
  left: 12%;
  z-index: -1;
  width: 88%;
  height: 76px;
  background: radial-gradient(ellipse at center, rgba(18, 20, 25, 0.24), rgba(18, 20, 25, 0.13) 38%, rgba(18, 20, 25, 0.04) 58%, rgba(18, 20, 25, 0) 76%);
  border-radius: 50%;
  content: "";
  filter: blur(15px);
  pointer-events: none;
}

.app-device {
  position: relative;
  margin: 0;
  padding: 7px;
  background: linear-gradient(145deg, #55585d 0%, #0b0c0f 20%, #020305 78%, #4c4f54 100%);
  border: 1px solid #696c71;
  border-radius: 44px;
  line-height: 0;
  box-shadow: 0 30px 58px rgba(5, 5, 5, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: none;
}

.app-device::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 29%;
  height: 25px;
  background: #020204;
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.09);
  content: "";
  transform: translateX(-50%);
}

.app-device::after {
  position: absolute;
  top: 104px;
  left: -4px;
  width: 3px;
  height: 42px;
  background: #24262a;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 56px 0 #24262a;
  content: "";
}

.app-screen {
  overflow: hidden;
  border-radius: 36px;
  line-height: 0;
}

.app-screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.app-device-weather {
  width: min(44%, 320px);
}

.app-device-markets {
  width: min(50%, 360px);
}

.app-platforms {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(62px, 7vw, 100px);
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.app-platforms article {
  display: grid;
  min-height: 156px;
  grid-template-columns: 13px 1fr;
  align-items: center;
  gap: 28px;
  padding: 30px 38px;
  border-left: 1px solid var(--line);
}

.app-platforms article:first-child {
  padding-left: 18px;
  border-left: 0;
}

.app-platform-accent {
  width: 13px;
  height: 86px;
  background: var(--ink);
}

.app-platforms h3 {
  margin-bottom: 9px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.app-platforms p {
  max-width: 31ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.expertise-section,
.needs-section,
.related-work,
.faq-section {
  background: var(--fog);
}

.expertise-list {
  border-bottom: 1px solid var(--ink);
}

.expertise-row {
  display: grid;
  min-height: 145px;
  grid-template-columns: 32px minmax(220px, 0.75fr) minmax(320px, 1.25fr) 220px;
  align-items: center;
  gap: 32px;
  padding: 25px 0;
  border-top: 1px solid var(--ink);
}

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

.expertise-row p {
  max-width: 60ch;
  color: var(--muted);
}

.expertise-row h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
}

.expertise-mark {
  width: 20px;
  height: 44px;
  background: var(--cobalt);
  transition: width 180ms ease;
}

.mark-professional {
  background: var(--fuchsia);
}

.mark-financial {
  background: #15345f;
}

.mark-nonprofit {
  background: var(--iris);
}

.mark-institutional {
  background: var(--ink);
}

.expertise-row:hover .expertise-mark {
  width: 31px;
}

.row-action {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.building-section {
  background: #101412;
  color: var(--paper);
}

.building-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: end;
  gap: clamp(60px, 9vw, 135px);
  margin-bottom: 50px;
}

.building-heading h2 {
  margin-bottom: 0;
}

.building-heading .section-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.building-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.building-intro .text-link:hover {
  color: var(--fuchsia);
}

.building-awards {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: 28px 70px;
  margin: clamp(72px, 8vw, 120px) 0 0;
  padding: 36px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.building-awards .section-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.building-awards h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.1vw, 3.7rem);
}

.building-awards-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.building-awards ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.building-awards li {
  min-width: 0;
  padding: 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.building-awards li span,
.building-awards li strong,
.building-awards li small {
  display: block;
}

.building-awards li span {
  margin-bottom: 42px;
  color: var(--fuchsia);
  font-size: 0.77rem;
  font-weight: 700;
}

.building-awards li strong {
  margin-bottom: 9px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.building-awards li small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.45;
}

.award-sources {
  grid-column: 2;
  max-width: none;
  margin: 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  text-align: right;
}

@media (min-width: 1180px) {
  .award-sources {
    white-space: nowrap;
  }
}

.award-sources a {
  border-bottom: 1px solid currentColor;
}

.award-sources a:hover {
  color: var(--paper);
}

.building-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.building-capabilities li {
  min-width: 0;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.building-capabilities strong,
.building-capabilities span {
  display: block;
  font-size: 0.83rem;
}

.building-capabilities strong {
  margin-bottom: 5px;
}

.building-capabilities span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.building-capabilities li:first-child {
  padding-left: 0;
  border-left: 0;
}

.building-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.building-project {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1000 / 671;
  margin: 0;
  background: #262b28;
}

.building-project::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.building-project img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: filter 240ms ease;
}

.building-project > a {
  display: block;
  width: 100%;
  height: 100%;
}

.building-project:hover img,
.building-project:focus-within img {
  filter: brightness(1.06);
}

.building-project figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
}

.building-project strong,
.building-project span {
  display: block;
}

.building-project strong {
  margin-bottom: 1px;
  font-size: 1.02rem;
}

.building-project span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.building-project-featured {
  grid-row: auto;
  grid-column: auto;
}

.building-project-vue,
.building-project-arctic {
  grid-column: auto;
}

.building-project-vas,
.building-project-crossing,
.building-project-dynamic {
  grid-column: auto;
}

.approach-section {
  background: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(70px, 10vw, 150px);
}

.approach-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.approach-intro p {
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0 35px;
  border-top: 1px solid var(--ink);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--ink);
}

.process-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.regional-service-section {
  padding-block: clamp(92px, 10vw, 150px);
  background: var(--fog);
  border-block: 1px solid var(--line);
}

.regional-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: start;
  gap: clamp(70px, 10vw, 155px);
}

.regional-service-grid h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.4vw, 6.2rem);
}

.regional-service-copy > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.02rem;
}

.regional-service-copy > p:first-child {
  color: var(--ink);
  font-size: 1.2rem;
}

.regional-service-copy nav {
  margin-top: 44px;
  border-bottom: 1px solid var(--ink);
}

.regional-service-copy nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-top: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.regional-service-copy nav a::after {
  content: "\2197";
  font-size: 1.05rem;
}

.regional-service-copy nav a:hover,
.regional-service-copy nav a:focus-visible {
  color: var(--cobalt);
}

.quote-section {
  padding-block: clamp(95px, 11vw, 165px);
  background: var(--cobalt);
  color: var(--paper);
}

.quote-section:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: -9px;
}

.testimonial-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(65px, 8vw, 110px);
}

.testimonial-header .section-kicker {
  color: rgba(255, 255, 255, 0.94);
}

.testimonial-header h2 {
  max-width: 990px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 4.65rem);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-status {
  min-width: 72px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--paper);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.testimonial-controls button:hover {
  background: var(--paper);
  color: var(--ink);
}

.testimonial-controls button:focus-visible {
  outline-color: var(--paper);
}

.testimonial-stage {
  min-height: 330px;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(245px, 0.55fr);
  align-items: end;
  gap: clamp(55px, 8vw, 110px);
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-slide.is-active {
  animation: testimonial-enter 320ms ease both;
}

.testimonial-slide blockquote {
  margin: 0;
  font-size: clamp(2.25rem, 3.7vw, 4.45rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.testimonial-slide p {
  min-width: 0;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.testimonial-slide strong,
.testimonial-slide span {
  display: block;
}

.testimonial-slide span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
}

@keyframes testimonial-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 180px);
  background: var(--paper);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 90px;
}

.contact-grid h2 {
  margin: 0;
}

.contact-copy p {
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 7vw, 96px) 30px;
  background: #000;
  color: var(--paper);
}

.service-area-links,
.project-related-links {
  padding-block: 34px;
  background: var(--ink);
  color: var(--paper);
}

.project-related-links {
  background: var(--paper);
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.service-area-links .site-frame,
.project-related-links .site-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.service-area-links p,
.project-related-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-related-links p {
  color: var(--muted);
}

.service-area-links .site-frame > div,
.project-related-links .site-frame > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

.service-area-links a,
.project-related-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-related-links a {
  border-color: rgba(5, 5, 5, 0.28);
}

.service-area-links a:hover,
.service-area-links a:focus-visible,
.project-related-links a:hover,
.project-related-links a:focus-visible {
  border-color: var(--cobalt);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--cobalt);
  content: "";
}

.footer-shell {
  display: grid;
}

.footer-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
  padding-bottom: clamp(54px, 6vw, 82px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-brand {
  display: block;
  width: min(286px, 82%);
  filter: invert(1);
}

.footer-positioning {
  max-width: 23ch;
  margin: 30px 0 0;
  color: var(--paper);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.footer-inquiry {
  justify-self: end;
  width: min(100%, 620px);
}

.footer-prompt {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

.footer-email {
  display: block;
  overflow-wrap: anywhere;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-size: clamp(1.55rem, 2.45vw, 2.85rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  border-color: var(--cobalt);
  color: rgba(255, 255, 255, 0.82);
}

.footer-booking-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-booking-link:hover,
.footer-booking-link:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  border-color: var(--cobalt);
  color: var(--paper);
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 50px;
  padding-block: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(24px, 3vw, 46px);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-location {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: right;
}

.footer-location span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  line-height: 1.4;
}

/* Expertise template */
.expertise-hero {
  overflow: hidden;
  padding-block: 78px 0;
  border-bottom: 1px solid var(--line);
}

.expertise-hero-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.expertise-hero-copy h1 {
  font-size: clamp(3.7rem, 5.7vw, 6.5rem);
}

.expertise-visual {
  position: relative;
  min-height: 540px;
}

.visual-color {
  position: absolute;
  inset: 40px 0 25px 12%;
  background: var(--cobalt);
}

.expertise-visual.theme-professional .visual-color {
  background: var(--fuchsia);
}

.expertise-visual.theme-financial .visual-color {
  background: #15345f;
}

.expertise-visual.theme-nonprofit .visual-color {
  background: var(--iris);
}

.expertise-visual.theme-institutional .visual-color {
  background: var(--ink);
}

.expertise-shot {
  top: 92px;
  right: 0;
  left: 0;
  z-index: 2;
  width: 91%;
}

.visual-note {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 3;
  margin: 0;
  padding: 9px 12px;
  background: var(--paper);
  font-size: 0.74rem;
  font-weight: 700;
}

.audience-strip {
  display: grid;
  min-height: 110px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.audience-strip span {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  border-left: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.audience-strip span:first-child {
  padding-left: 0;
  border-left: 0;
}

.detail-intro {
  background: var(--paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(70px, 11vw, 170px);
}

.editorial-grid h2 {
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

.rich-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.rich-copy p {
  color: var(--muted);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.need-item {
  min-height: 245px;
  padding: 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.need-item h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.need-item p {
  margin: 0;
  color: var(--muted);
}

.capabilities-section {
  background: var(--ink);
  color: var(--paper);
}

.capabilities-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 150px);
}

.sticky-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.sticky-heading .section-kicker {
  color: rgba(255, 255, 255, 0.6);
}

.capability-item {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 1fr;
  gap: 28px;
  padding: 30px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.capability-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.capability-item h3,
.capability-item p {
  margin: 0;
}

.capability-item h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.capability-item p {
  color: rgba(255, 255, 255, 0.67);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.case-card {
  background: var(--paper);
}

.case-card img {
  width: 100%;
  aspect-ratio: 900 / 604;
  object-fit: cover;
}

.case-content {
  padding: 29px 30px 32px;
}

.case-content h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.case-content p {
  margin-bottom: 10px;
  color: var(--muted);
}

.case-content .case-type {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.standards-section {
  background: var(--paper);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
}

.standards-grid ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.standards-grid li {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 30px;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--ink);
}

.standards-grid strong,
.standards-grid span {
  display: block;
}

.standards-grid span {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 10vw, 150px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-size: 1.16rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 3px;
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 60px 26px 0;
  color: var(--muted);
}

/* Pricing */
.pricing-hero {
  padding-block: clamp(80px, 9vw, 135px);
  background: var(--fog);
  border-bottom: 1px solid var(--ink);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: 90px;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 6.7vw, 7.4rem);
}

.pricing-range {
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid var(--ink);
}

.pricing-range strong,
.pricing-range span {
  display: block;
}

.pricing-range strong {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-range span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.pricing-table-section {
  padding-block: 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(420px, 1fr) minmax(190px, 0.35fr);
  gap: 50px;
  padding-block: clamp(55px, 6vw, 82px);
  border-bottom: 1px solid var(--ink);
}

.pricing-row h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
}

.pricing-row p {
  margin-bottom: 18px;
}

.pricing-row ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 22px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-row > .text-link {
  align-self: start;
  justify-self: end;
  text-align: right;
}

.featured-tier {
  position: relative;
}

.featured-tier::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--fog);
  content: "";
}

.scope-section {
  background: var(--ink);
  color: var(--paper);
}

.scope-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
}

.scope-grid .section-kicker {
  color: rgba(255, 255, 255, 0.6);
}

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

.scope-list p {
  max-width: none;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 28px;
  margin: 0;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.scope-list span {
  color: rgba(255, 255, 255, 0.68);
}

.button svg,
.waterfall-link svg,
.project-award a svg {
  width: 20px;
  height: 20px;
  margin-left: 11px;
  flex: 0 0 auto;
}

/* Work index */
.work-index-hero {
  padding-block: clamp(90px, 10vw, 145px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.work-index-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.62fr);
  align-items: end;
  gap: clamp(60px, 8vw, 120px);
}

.work-index-intro h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(4.2rem, 7.2vw, 8rem);
}

.work-index-intro > div:last-child p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.work-filter-section {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.work-filters {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding-block: 12px;
  scrollbar-width: thin;
}

.work-filters button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.work-filters button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  background: var(--fog);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.62rem;
}

.work-filters button:hover,
.work-filters button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.work-filters button.is-active span {
  background: var(--paper);
}

.work-waterfall-section {
  padding-block: 48px 110px;
  background: var(--fog);
}

.work-waterfall {
  columns: 3 340px;
  column-gap: 18px;
}

.waterfall-project {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  background: var(--paper);
  break-inside: avoid;
  vertical-align: top;
}

.waterfall-project[hidden] {
  display: none;
}

.waterfall-image {
  overflow: hidden;
  background: #d8d8d5;
}

.waterfall-image img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: top center;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.waterfall-project-featured .waterfall-image img {
  aspect-ratio: 1 / 1.08;
}

.waterfall-project a:hover img,
.waterfall-project a:focus-visible img {
  transform: scale(1.028);
}

.waterfall-meta {
  padding: 23px 24px 26px;
}

.waterfall-meta > span:first-child {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.waterfall-meta h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.25vw, 2.55rem);
}

.waterfall-meta p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.waterfall-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
}

.waterfall-link svg {
  width: 16px;
  height: 16px;
  margin-left: 7px;
}

.filter-status {
  width: var(--frame);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.portfolio-proof-band,
.project-cta {
  padding-block: clamp(90px, 10vw, 145px);
  background: var(--ink);
  color: var(--paper);
}

.project-cta {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.portfolio-proof-band p,
.project-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.project-cta p {
  color: var(--muted);
}

.project-cta .button-light {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.project-cta .button-light:hover,
.project-cta .button-light:focus-visible {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--paper);
}

.portfolio-proof-band h2,
.project-cta h2 {
  max-width: 1000px;
  margin-bottom: 38px;
  font-size: clamp(4rem, 8vw, 8.5rem);
}

/* Individual portfolio projects */
.project-hero {
  padding-block: 28px clamp(80px, 8vw, 118px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(65px, 8vw, 110px);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-color: currentColor;
  color: var(--ink);
}

.project-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: clamp(65px, 9vw, 140px);
}

.project-title-grid h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(4.1rem, 7vw, 7.7rem);
}

.project-tagline {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.42;
}

.project-category {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.project-intro > p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.48;
}

.project-intro .button-row {
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 25px;
}

.project-intro .button {
  gap: 0;
}

.project-showcase {
  padding-block: clamp(48px, 6vw, 86px);
  background: var(--project-gray);
}

.project-browser-frame {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
}

.project-browser-frame img {
  width: 100%;
  aspect-ratio: 1.49 / 1;
  object-fit: cover;
  object-position: top center;
}

.project-showcase-gallery {
  padding-block: clamp(40px, 5vw, 76px);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.project-gallery-grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-archive-note {
  max-width: 78ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.project-gallery-card {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(5, 5, 5, 0.09);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.09);
}

.project-gallery-image {
  overflow: hidden;
  background: var(--paper);
}

.project-gallery-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.49 / 1;
  object-fit: cover;
  object-position: top center;
}

.project-gallery-card figcaption {
  padding: 14px 16px 15px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-story-grid,
.project-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(70px, 10vw, 155px);
}

.project-story-heading h2 {
  font-size: clamp(3rem, 4.7vw, 5.4rem);
}

.project-story-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.project-story-copy p:first-child {
  color: var(--ink);
  font-size: 1.28rem;
}

.project-capability-section {
  background: var(--fog);
}

.project-capability-grid > div:first-child h2 {
  font-size: clamp(2.75rem, 4.15vw, 4.8rem);
}

.project-capability-grid h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.project-capability-grid ul {
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.project-capability-grid li {
  padding: 17px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.project-performance-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.project-award {
  display: grid;
  width: var(--frame);
  grid-template-columns: 0.5fr 1.15fr 1.35fr;
  align-items: center;
  gap: 42px;
  margin: clamp(70px, 8vw, 120px) auto;
  padding: clamp(40px, 5vw, 70px);
  background: var(--cobalt);
  color: var(--paper);
}

.project-award > span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-award h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.35vw, 4rem);
}

.project-award p {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
}

.project-award a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 700;
}

.project-award a svg {
  width: 16px;
  height: 16px;
  margin-left: 7px;
}

.project-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.project-pagination a {
  min-width: 0;
  padding: clamp(38px, 5vw, 72px) max(18px, calc((100vw - var(--frame)) / 2));
  border-right: 1px solid var(--ink);
}

.project-pagination a:last-child {
  border-right: 0;
  text-align: right;
}

.project-pagination span,
.project-pagination strong {
  display: block;
}

.project-pagination span {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-pagination strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 2.2vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.project-pagination a:hover {
  background: var(--fog);
}

@media (max-width: 1120px) {
  :root {
    --frame: min(1040px, calc(100vw - 48px));
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    min-height: 670px;
    grid-template-columns: minmax(0, 0.98fr) minmax(450px, 1.02fr);
  }

  .project-wall {
    min-height: 530px;
  }

  .expertise-row {
    grid-template-columns: 28px 0.75fr 1.25fr;
  }

  .row-action {
    grid-column: 2;
    justify-self: start;
  }

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

  .pricing-row {
    grid-template-columns: minmax(230px, 0.7fr) minmax(400px, 1.3fr);
  }

  .pricing-row > .text-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .brand {
    width: 220px;
  }

  .header-inner,
  .hero-grid {
    width: var(--frame);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    background: transparent;
    border: 0;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg) translateY(3px);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 20px 24px 50px;
    background: var(--paper);
    font-size: 1.2rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > a:not(.nav-cta),
  .nav-group > button {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .site-nav > a::after,
  .nav-group > button::after {
    display: none;
  }

  .nav-group {
    position: static;
  }

  .nav-panel {
    position: static;
    display: none;
    width: auto;
    padding: 10px 18px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.is-open .nav-panel {
    display: grid;
  }

  .nav-cta {
    margin-top: 25px;
  }

  .hero-grid,
  .expertise-hero-grid,
  .pricing-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 60px 70px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .project-wall {
    min-height: 620px;
  }

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

  .proof-grid div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-grid div:nth-child(n + 3) {
    padding-top: 25px;
  }

  .split-heading,
  .nonprofit-heading,
  .commerce-heading,
  .specialty-heading,
  .app-development-grid,
  .building-heading,
  .approach-grid,
  .testimonial-header,
  .testimonial-slide,
  .contact-grid,
  .editorial-grid,
  .capabilities-layout,
  .standards-grid,
  .faq-layout,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .contact-grid {
    gap: 30px;
  }

  .commerce-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .app-development-grid {
    gap: 58px;
  }

  .app-showcase {
    width: min(720px, 100%);
    min-height: 670px;
    margin-inline: auto;
  }

  .building-heading,
  .commerce-heading,
  .nonprofit-heading,
  .specialty-heading {
    gap: 32px;
  }

  .nonprofit-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .nonprofit-capabilities li:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .nonprofit-capabilities li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .nonprofit-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nonprofit-project,
  .nonprofit-project-wide {
    grid-column: auto;
  }

  .nonprofit-project:last-child {
    grid-column: 1 / -1;
  }

  .specialty-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialty-capabilities li:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specialty-capabilities li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .specialty-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialty-project,
  .specialty-project-wide {
    grid-column: auto;
  }

  .specialty-project:last-child {
    grid-column: 1 / -1;
  }

  .building-capabilities,
  .commerce-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .building-capabilities li:nth-child(3),
  .commerce-capabilities li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .building-capabilities li:nth-child(4),
  .commerce-capabilities li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .building-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .building-project-featured {
    grid-row: auto;
    grid-column: auto;
  }

  .building-project-vue,
  .building-project-arctic,
  .building-project-vas,
  .building-project-crossing,
  .building-project-dynamic {
    grid-row: auto;
    grid-column: auto;
  }

  .approach-intro,
  .sticky-heading {
    position: static;
  }

  .testimonial-header,
  .testimonial-slide {
    gap: 40px;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .expertise-hero {
    padding-top: 62px;
  }

  .expertise-hero-grid {
    min-height: 0;
  }

  .expertise-visual {
    min-height: 510px;
  }

  .audience-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-strip span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-grid {
    gap: 55px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-row > .text-link {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --frame: calc(100vw - 36px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.8rem, 11.8vw, 3.4rem);
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .brand {
    width: 185px;
  }

  .hero-grid {
    gap: 45px;
    padding-top: 47px;
  }

  .award-line {
    flex-wrap: wrap;
    gap: 9px 12px;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .project-wall {
    min-height: 440px;
    margin-inline: 0;
  }

  .color-field {
    top: 12px;
    right: 0;
    bottom: 4px;
    left: 30px;
  }

  .shot-main {
    top: 83px;
    width: 82%;
  }

  .shot-top {
    right: 0;
    width: 50%;
  }

  .shot-bottom {
    left: 0;
    width: 54%;
  }

  .browser-shot figcaption {
    padding: 7px 9px;
    font-size: 0.64rem;
  }

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

  .proof-grid div,
  .proof-grid div:first-child,
  .proof-grid div:nth-child(3) {
    min-height: 0;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .proof-grid div:first-child {
    border-top: 0;
  }

  .section {
    padding-block: 82px;
  }

  .commerce-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-inline: 0;
  }

  .app-showcase {
    min-height: 440px;
    gap: 10px;
    padding: 24px 0 0;
  }

  .app-showcase::after {
    bottom: -2px;
    left: 7%;
    width: 90%;
    height: 42px;
    filter: blur(10px);
  }

  .app-device {
    padding: 5px;
    border-radius: 31px;
    box-shadow: 0 20px 34px rgba(5, 5, 5, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  }

  .app-device::before {
    top: 11px;
    height: 17px;
  }

  .app-device::after {
    top: 68px;
    left: -3px;
    width: 2px;
    height: 28px;
    box-shadow: 0 37px 0 #24262a;
  }

  .app-screen {
    border-radius: 25px;
  }

  .app-device-weather {
    width: 46%;
  }

  .app-device-markets {
    width: 51%;
  }

  .app-capability-list {
    grid-template-columns: 1fr;
  }

  .app-platforms {
    grid-template-columns: 1fr;
  }

  .app-platforms article,
  .app-platforms article:first-child {
    min-height: 126px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .app-platforms article:first-child {
    border-top: 0;
  }

  .app-platform-accent {
    height: 70px;
  }

  .expertise-row {
    grid-template-columns: 25px 1fr;
    gap: 10px 20px;
    padding: 28px 0;
  }

  .expertise-row p,
  .row-action {
    grid-column: 2;
  }

  .expertise-row p {
    margin-block: 5px 13px;
  }

  .building-capabilities,
  .commerce-capabilities {
    grid-template-columns: 1fr;
  }

  .building-capabilities li,
  .building-capabilities li:first-child,
  .building-capabilities li:nth-child(3),
  .commerce-capabilities li,
  .commerce-capabilities li:first-child,
  .commerce-capabilities li:nth-child(3) {
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .building-capabilities li:first-child,
  .commerce-capabilities li:first-child {
    border-top: 0;
  }

  .nonprofit-capabilities {
    grid-template-columns: 1fr;
  }

  .nonprofit-capabilities li,
  .nonprofit-capabilities li:first-child,
  .nonprofit-capabilities li:nth-child(3) {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .nonprofit-capabilities li:first-child {
    border-top: 0;
  }

  .nonprofit-gallery {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .nonprofit-project,
  .nonprofit-project-wide,
  .nonprofit-project:last-child {
    grid-column: 1;
  }

  .specialty-capabilities {
    grid-template-columns: 1fr;
  }

  .specialty-capabilities li,
  .specialty-capabilities li:first-child,
  .specialty-capabilities li:nth-child(3) {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specialty-capabilities li:first-child {
    border-top: 0;
  }

  .specialty-gallery {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .specialty-project,
  .specialty-project-wide,
  .specialty-project:last-child {
    grid-column: 1;
  }

  .nonprofit-project,
  .specialty-project {
    box-shadow:
      0 18px 38px rgba(18, 20, 25, 0.11),
      0 6px 14px rgba(18, 20, 25, 0.05);
  }

  .building-gallery {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .building-project-featured,
  .building-project-vue,
  .building-project-arctic,
  .building-project-vas,
  .building-project-crossing,
  .building-project-dynamic {
    grid-row: auto;
    grid-column: 1;
  }

  .process-list li {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .testimonial-header {
    margin-bottom: 50px;
  }

  .testimonial-slide {
    gap: 30px;
  }

  .testimonial-slide blockquote {
    font-size: clamp(2.05rem, 9.6vw, 3.15rem);
  }

  .testimonial-stage {
    min-height: 0;
  }

  .footer-lead {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inquiry {
    justify-self: start;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-location {
    text-align: left;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .expertise-hero-copy h1,
  .pricing-hero h1 {
    font-size: clamp(2.75rem, 11.5vw, 3.35rem);
  }

  .expertise-visual {
    min-height: 360px;
    margin-inline: 0;
  }

  .visual-color {
    inset: 20px 0 15px 38px;
  }

  .expertise-shot {
    top: 58px;
    left: 0;
    width: 94%;
  }

  .visual-note {
    right: 0;
    bottom: 0;
    font-size: 0.67rem;
  }

  .audience-strip {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .audience-strip span,
  .audience-strip span:nth-child(3) {
    min-height: 60px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .needs-grid {
    grid-template-columns: 1fr;
  }

  .need-item {
    min-height: 0;
    padding: 28px 25px;
  }

  .capability-item,
  .standards-grid li,
  .scope-list p {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-content {
    padding: 24px 22px 27px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .pricing-range strong {
    font-size: 3.6rem;
  }

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

@media (max-width: 1120px) {
  .performance-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  }

  .project-title-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .performance-grid,
  .work-index-intro,
  .project-title-grid,
  .project-story-grid,
  .project-capability-grid,
  .building-awards {
    grid-template-columns: 1fr;
  }

  .performance-heading {
    position: static;
  }

  .building-awards ol {
    max-width: 720px;
  }

  .award-sources {
    grid-column: 1;
    padding-left: 0;
  }

  .work-index-intro {
    align-items: start;
    gap: 38px;
  }

  .work-index-intro > div:last-child {
    max-width: 620px;
  }

  .project-title-grid,
  .project-story-grid,
  .project-capability-grid {
    gap: 42px;
  }

  .project-intro {
    max-width: 640px;
  }

  .project-award {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .performance-grid {
    gap: 48px;
  }

  .building-awards {
    gap: 34px;
    padding-top: 30px;
  }

  .building-awards ol {
    grid-template-columns: 1fr;
  }

  .building-awards li {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .building-awards li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .building-awards li span {
    margin-bottom: 12px;
  }

  .work-index-hero {
    padding-block: 68px 76px;
  }

  .work-index-intro h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  .work-filters {
    width: var(--frame);
    padding-inline: 0;
  }

  .work-waterfall-section {
    padding-top: 20px;
  }

  .work-waterfall {
    columns: 1;
  }

  .waterfall-project-featured .waterfall-image img,
  .waterfall-image img {
    aspect-ratio: 1.5 / 1;
  }

  .portfolio-proof-band h2,
  .project-cta h2 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .project-hero {
    padding-top: 20px;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .project-title-grid h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .project-tagline {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .project-showcase {
    padding-block: 28px;
  }

  .project-browser-frame {
    margin-inline: 0;
  }

  .project-gallery-grid {
    gap: 14px;
  }

  .project-gallery-grid--pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-gallery-card:first-child {
    grid-column: 1 / -1;
  }

  .project-gallery-card figcaption {
    padding: 10px 11px 11px;
    font-size: 0.66rem;
  }

  .project-award {
    width: 100%;
    margin-block: 0;
  }

  .project-pagination {
    grid-template-columns: 1fr;
  }

  .project-pagination a,
  .project-pagination a:last-child {
    padding: 36px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    text-align: left;
  }

}

@media (max-width: 1120px) {
  .hero-grid {
    min-height: 0;
  }

  .home-hero h1 {
    font-size: clamp(3.7rem, 6.1vw, 4.75rem);
  }

  .hero-copy {
    width: min(650px, 68vw);
  }

  .hero-video {
    left: 9%;
    width: 112%;
  }

  .hero-media {
    background-image: url("assets/optimized/color-explosion-hero-poster-mobile-e3bd280e9d62-q84.webp");
  }
}

@media (max-width: 900px) {
  .home-hero-shell {
    display: block;
    min-height: 0;
  }

  .home-hero {
    height: max(720px, calc(100svh - var(--header-height)));
    min-height: 720px;
  }

  .hero-grid {
    height: 100%;
    min-height: 0;
    padding-block: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    padding-right: 0;
  }

  .hero-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: 62% center;
    opacity: 0;
  }

  .home-hero.is-video-ready .hero-video {
    opacity: 0.74;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.58) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 100%);
  }

  .regional-service-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .regional-service-copy {
    max-width: 720px;
  }

  .service-area-links .site-frame,
  .project-related-links .site-frame {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .service-area-links .site-frame > div,
  .project-related-links .site-frame > div {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    padding-block: 24px;
  }

  .award-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .award-line span {
    padding-left: 0;
    white-space: normal;
  }

  .award-line span::before {
    display: none;
  }

  .award-line strong {
    max-width: 290px;
  }

  .home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 12.1vw, 3.5rem);
  }

  .hero-lede {
    margin-bottom: 23px;
    font-size: 1rem;
    line-height: 1.36;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

}

@media (min-width: 901px) and (max-height: 820px) {
  .hero-grid {
    padding-block: 26px 30px;
  }

  .award-line {
    margin-bottom: 17px;
  }

  .home-hero h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 4.4vw, 4.1rem);
  }

  .hero-lede {
    max-width: 580px;
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .proof-bar {
    padding-block: 18px;
  }

  .proof-grid div {
    min-height: 50px;
  }
}

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

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

  .hero-video {
    display: none;
  }
}

/* About page */
.about-page {
  overflow-x: hidden;
}

.about-hero {
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-hero-grid {
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(0, 1.22fr) minmax(440px, 0.78fr);
  align-items: stretch;
  gap: clamp(54px, 5vw, 82px);
}

.about-hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(90px, 10vw, 145px);
}

.about-hero-copy h1 {
  max-width: 770px;
  margin-bottom: 34px;
  font-size: clamp(4.4rem, 6.3vw, 7.25rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.about-hero-lede {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
  line-height: 1.48;
  letter-spacing: -0.022em;
}

.about-location {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

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

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

.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.about-portrait {
  position: relative;
  align-self: center;
  aspect-ratio: 1080 / 1619;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #c7b8b3;
  isolation: isolate;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
  filter: brightness(1.13) contrast(0.96) saturate(0.97);
}

.about-portrait figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  max-width: 250px;
  color: var(--paper);
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

.about-portrait figcaption strong,
.about-portrait figcaption span {
  display: block;
}

.about-portrait figcaption strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.about-portrait figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.about-tenure-band {
  padding-block: clamp(42px, 4.5vw, 68px);
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-tenure-band p {
  max-width: 760px;
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.about-foundation {
  padding-block: clamp(88px, 10vw, 145px);
  background: var(--ink);
  color: var(--paper);
}

.about-foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  align-items: start;
  gap: clamp(60px, 9vw, 145px);
}

.about-foundation h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 5.7vw, 6.4rem);
  font-weight: 500;
}

.about-foundation p {
  max-width: 540px;
  margin: 0;
  padding-left: 44px;
  border-left: 2px solid var(--cobalt);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 1.45vw, 1.48rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.about-technical {
  padding-block: clamp(105px, 12vw, 175px);
  background: var(--paper);
}

.about-technical-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(65px, 9vw, 145px);
}

.about-technical-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  padding-left: 30px;
  border-left: 2px solid var(--cobalt);
}

.about-technical-heading h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(3.3rem, 5vw, 5.7rem);
  font-weight: 500;
}

.about-capability-list {
  border-top: 1px solid var(--line);
}

.about-capability-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4vw, 70px);
  padding-block: clamp(30px, 3vw, 43px);
  border-bottom: 1px solid var(--line);
}

.about-capability-list article::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.about-capability-list article:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-capability-list article:hover h3 {
  color: var(--cobalt);
}

.about-capability-list h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.45vw, 2.75rem);
  font-weight: 500;
  line-height: 1.02;
  transition: color 180ms ease;
}

.about-capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.56;
}

.about-story {
  padding-block: clamp(105px, 12vw, 175px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: clamp(65px, 10vw, 160px);
}

.about-story-grid h2 {
  max-width: 790px;
  margin: 0;
  padding-left: 30px;
  border-left: 2px solid var(--cobalt);
  font-size: clamp(3.5rem, 5.3vw, 6rem);
  font-weight: 500;
}

.about-story-grid p {
  margin-bottom: 24px;
  font-size: clamp(1.06rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.about-story-grid p:last-child {
  margin-bottom: 0;
}

.about-years {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: clamp(65px, 8vw, 115px);
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-years strong {
  font-size: clamp(5.2rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.about-years span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.35;
}

.about-working-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-working-rail li {
  display: flex;
  min-height: 118px;
  align-items: center;
  padding: 30px;
  border-right: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-working-rail li:first-child {
  padding-left: 0;
}

.about-working-rail li:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-industries {
  padding-block: clamp(95px, 10vw, 145px);
  background: var(--fog);
}

.about-industries-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(70px, 10vw, 160px);
}

.about-industries h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 4.3vw, 5rem);
  font-weight: 500;
}

.about-industries nav {
  border-top: 1px solid var(--line);
}

.about-industries nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.28;
  transition: color 160ms ease, padding-left 180ms ease;
}

.about-industries nav a:hover,
.about-industries nav a:focus-visible {
  padding-left: 12px;
  color: var(--cobalt);
}

.about-contact {
  padding-block: clamp(66px, 7vw, 100px);
  background: var(--cobalt);
  color: var(--paper);
}

.about-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr) auto;
  align-items: center;
  gap: clamp(45px, 6vw, 95px);
}

.about-contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  font-weight: 500;
}

.about-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
}

.about-contact .button {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .about-hero-grid {
    min-height: 680px;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
    gap: 48px;
  }

  .about-portrait {
    min-height: 0;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.8rem, 6.2vw, 5.3rem);
  }

  .about-technical-grid {
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 55px;
  }

  .about-capability-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-working-rail li {
    padding-inline: 22px;
  }
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-foundation-grid,
  .about-technical-grid,
  .about-story-grid,
  .about-industries-grid,
  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 0;
  }

  .about-hero-copy {
    padding-block: 82px;
  }

  .about-portrait {
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 680px;
  }

  .about-foundation-grid,
  .about-story-grid,
  .about-industries-grid {
    gap: 55px;
  }

  .about-foundation p {
    padding-top: 30px;
    padding-left: 0;
    border-top: 2px solid var(--cobalt);
    border-left: 0;
  }

  .about-technical-heading {
    position: static;
    padding-bottom: 38px;
  }

  .about-working-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-working-rail li,
  .about-working-rail li:first-child,
  .about-working-rail li:last-child {
    min-height: 100px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-working-rail li:nth-child(2n) {
    border-right: 0;
  }

  .about-contact-grid {
    justify-items: start;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .about-hero-copy {
    padding-block: 65px;
  }

  .about-hero-copy h1 {
    margin-bottom: 26px;
    font-size: clamp(3.1rem, 15vw, 4.3rem);
  }

  .about-hero-lede {
    font-size: 1.06rem;
  }

  .about-portrait {
    min-height: 535px;
  }

  .about-portrait img {
    object-position: 50% 22%;
  }

  .about-portrait figcaption {
    right: 18px;
    bottom: 20px;
    max-width: 190px;
  }

  .about-portrait figcaption span {
    font-size: 0.72rem;
  }

  .about-tenure-band p {
    padding-left: 20px;
    font-size: 1.55rem;
  }

  .about-foundation h2,
  .about-technical-heading h2,
  .about-story-grid h2,
  .about-industries h2,
  .about-contact h2 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .about-technical-heading,
  .about-story-grid h2 {
    padding-left: 20px;
  }

  .about-capability-list article {
    gap: 13px;
    padding-block: 28px;
  }

  .about-capability-list h3 {
    font-size: 1.75rem;
  }

  .about-years {
    align-items: flex-end;
    gap: 22px;
  }

  .about-years strong {
    font-size: 5.5rem;
  }

  .about-years span {
    font-size: 0.86rem;
  }

  .about-working-rail {
    grid-template-columns: 1fr;
  }

  .about-working-rail li,
  .about-working-rail li:first-child,
  .about-working-rail li:last-child,
  .about-working-rail li:nth-child(2n) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-contact .button {
    white-space: normal;
  }
}

/* Consultation booking preview */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.booking-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 7.5vw, 118px);
  background:
    linear-gradient(115deg, rgba(52, 82, 255, 0.055), transparent 32%),
    var(--fog);
}

.booking-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - var(--frame)) / 2 + min(37vw, 560px));
  width: 1px;
  background: rgba(5, 5, 5, 0.12);
  content: "";
}

.booking-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.74fr) minmax(600px, 1.26fr);
  align-items: start;
  gap: clamp(72px, 8vw, 132px);
}

.booking-intro {
  position: sticky;
  top: calc(var(--header-height) + 52px);
  padding-top: 9px;
}

.booking-eyebrow,
.booking-panel-kicker,
.booking-step-heading > p {
  margin-bottom: 23px;
  color: var(--cobalt);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.booking-intro h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 5.9vw, 6.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.072em;
}

.booking-lede {
  max-width: 510px;
  margin-bottom: clamp(50px, 6vw, 84px);
  color: #30302f;
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: -0.022em;
}

.booking-facts {
  display: grid;
  max-width: 550px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--ink);
}

.booking-facts div {
  padding: 17px 16px 0 0;
  border-right: 1px solid var(--line);
}

.booking-facts div + div {
  padding-left: 16px;
}

.booking-facts div:last-child {
  border-right: 0;
}

.booking-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.booking-facts dd {
  margin: 0;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.32;
}

.booking-panel {
  min-width: 0;
  padding: clamp(30px, 3.5vw, 52px);
  background: var(--paper);
  border-top: 4px solid var(--ink);
  box-shadow:
    0 38px 90px rgba(18, 20, 25, 0.12),
    0 12px 28px rgba(18, 20, 25, 0.06);
}

.booking-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.booking-panel-kicker {
  margin-bottom: 10px;
}

.booking-panel-header h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3vw, 3.5rem);
  font-weight: 500;
}

.booking-prototype-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-prototype-label span {
  width: 8px;
  height: 8px;
  background: var(--cobalt);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(52, 82, 255, 0.12);
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(30px, 3.5vw, 48px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.booking-progress li {
  position: relative;
  padding: 15px 8px 14px 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-progress li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.booking-progress li.is-current,
.booking-progress li.is-complete {
  color: var(--ink);
}

.booking-progress li.is-current::after,
.booking-progress li.is-complete::after {
  transform: scaleX(1);
}

.booking-progress span {
  margin-right: 8px;
  color: inherit;
  font-variant-numeric: tabular-nums;
}

.booking-step {
  min-height: 558px;
  padding-top: clamp(34px, 4vw, 52px);
}

.booking-step[hidden] {
  display: none;
}

.booking-step.is-active {
  animation: booking-step-in 260ms ease both;
}

@keyframes booking-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-step legend {
  margin-bottom: 18px;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.booking-choice {
  position: relative;
  display: grid;
  min-height: 105px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 19px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.booking-choice:hover,
.booking-choice:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
}

.booking-choice input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--cobalt);
}

.booking-choice strong,
.booking-choice small {
  display: block;
}

.booking-choice strong {
  font-size: 0.88rem;
  line-height: 1.3;
}

.booking-choice small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.38;
}

.booking-choice:hover small,
.booking-choice:has(input:checked) small {
  color: rgba(255, 255, 255, 0.64);
}

.booking-choice-solicitation {
  grid-column: 1 / -1;
  min-height: 84px;
}

.booking-boundary,
.booking-rejection,
.booking-security-note {
  margin-top: 22px;
  padding: 17px 18px;
  border-left: 3px solid var(--cobalt);
  background: var(--fog);
}

.booking-rejection {
  border-color: #c52727;
  background: #fff1f1;
}

.booking-boundary strong,
.booking-rejection strong,
.booking-security-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
}

.booking-boundary p,
.booking-rejection p,
.booking-security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.48;
}

.booking-confirmation,
.booking-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 21px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.booking-confirmation[hidden] {
  display: none;
}

.booking-confirmation input,
.booking-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
}

.booking-actions-end {
  justify-content: flex-end;
}

.booking-actions .button:disabled {
  background: #d1d1ce;
  border-color: #d1d1ce;
  color: #777774;
  cursor: not-allowed;
}

.booking-text-button,
.booking-icon-button {
  appearance: none;
  padding: 0 0 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-text-button:hover,
.booking-text-button:focus-visible {
  color: var(--cobalt);
}

.booking-step-heading {
  position: relative;
  padding-right: 130px;
}

.booking-step-heading > p {
  margin-bottom: 9px;
}

.booking-step-heading h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.5rem);
  font-weight: 500;
}

.booking-step-heading > span {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.booking-availability-notice {
  margin-top: 36px;
  padding: 22px 23px;
  background: #f4f4f1;
  border-left: 3px solid var(--cobalt);
}

.booking-availability-notice[hidden] {
  display: none;
}

.booking-availability-notice.is-error {
  background: #fff1f1;
  border-left-color: #c52727;
}

.booking-availability-notice.is-connected {
  border-left-color: var(--ink);
}

.booking-availability-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.booking-availability-notice p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.booking-availability-notice .booking-text-button {
  margin-top: 15px;
}

.booking-calendar-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
}

.booking-calendar-header[hidden],
.booking-time-fieldset[hidden] {
  display: none;
}

.booking-calendar-header p {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
}

.booking-icon-button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.booking-icon-button:hover,
.booking-icon-button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(var(--booking-date-columns, 5), minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.booking-date-grid button {
  appearance: none;
  min-height: 105px;
  padding: 13px 7px;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.booking-date-grid button:hover,
.booking-date-grid button.is-selected {
  background: var(--cobalt);
  color: var(--paper);
}

.booking-date-grid span,
.booking-date-grid strong,
.booking-date-grid small {
  display: block;
}

.booking-date-grid span {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-date-grid strong {
  margin-block: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.booking-date-grid small {
  font-size: 0.65rem;
}

.booking-time-fieldset {
  margin-top: 30px !important;
}

.booking-time-fieldset legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.booking-time-grid button {
  min-height: 52px;
  padding: 10px;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-time-grid button:hover:not(:disabled),
.booking-time-grid button.is-selected {
  background: var(--ink);
  color: var(--paper);
}

.booking-time-grid button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.booking-details {
  margin-top: 34px;
}

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 24px;
}

.booking-details label > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-details label > span small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 400;
}

.booking-details input,
.booking-details textarea {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.booking-details textarea {
  min-height: 112px;
  padding: 12px;
  border: 1px solid var(--ink);
  resize: vertical;
}

.booking-details input:focus,
.booking-details textarea:focus {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

.booking-summary-field {
  display: block;
  margin-top: 25px;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-consent {
  margin-top: 21px;
}

.booking-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.booking-review div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-review dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.booking-review dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.booking-complete {
  display: flex;
  min-height: 558px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 8%;
}

.booking-complete[hidden] {
  display: none;
}

.booking-complete-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 32px;
  background: var(--cobalt);
  color: var(--paper);
  font-size: 1.8rem;
}

.booking-complete > p:first-of-type {
  margin-bottom: 12px;
  color: var(--cobalt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-complete h3 {
  max-width: 660px;
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  font-weight: 500;
}

.booking-complete-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-complete .booking-text-button {
  margin-top: 18px;
}

.akdh-turnstile-container {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  width: min(360px, calc(100vw - 44px));
}

@media (max-width: 1180px) {
  .booking-layout {
    grid-template-columns: minmax(300px, 0.68fr) minmax(540px, 1.32fr);
    gap: 58px;
  }

  .booking-section::before {
    left: 37%;
  }

  .booking-intro h1 {
    font-size: clamp(3.6rem, 5.4vw, 5.2rem);
  }

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

  .booking-choice-solicitation {
    grid-column: 1;
  }
}

@media (max-width: 900px) {
  .booking-section::before {
    display: none;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    gap: 62px;
  }

  .booking-intro {
    position: static;
  }

  .booking-intro h1 {
    max-width: 780px;
    font-size: clamp(4.2rem, 9vw, 6rem);
  }

  .booking-lede {
    max-width: 680px;
    margin-bottom: 48px;
  }

  .booking-panel {
    width: 100%;
  }

  .booking-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-choice-solicitation {
    grid-column: 1 / -1;
  }

}

@media (max-width: 640px) {
  .booking-section {
    padding-block: 54px 70px;
  }

  .booking-layout {
    gap: 48px;
  }

  .booking-intro h1 {
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 16vw, 4.5rem);
  }

  .booking-lede {
    font-size: 1.03rem;
  }

  .booking-facts {
    grid-template-columns: 1fr;
  }

  .booking-facts div,
  .booking-facts div + div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-facts dt {
    margin: 0;
  }

  .booking-panel {
    margin-inline: -9px;
    width: calc(100% + 18px);
    padding: 27px 20px 31px;
  }

  .booking-panel-header {
    display: block;
  }

  .booking-panel-header h2 {
    font-size: 2.35rem;
  }

  .booking-prototype-label {
    margin-top: 16px;
  }

  .booking-progress li {
    padding-right: 4px;
    font-size: 0.62rem;
  }

  .booking-progress li span {
    display: block;
    margin: 0 0 2px;
  }

  .booking-step {
    min-height: 0;
  }

  .booking-choice-grid,
  .booking-field-grid,
  .booking-review {
    grid-template-columns: 1fr;
  }

  .booking-choice-solicitation {
    grid-column: 1;
  }

  .booking-step-heading {
    padding-right: 0;
  }

  .booking-step-heading > span {
    position: static;
    display: block;
    margin-top: 12px;
  }

  .booking-date-grid button {
    min-height: 92px;
    padding-inline: 3px;
  }

  .booking-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .booking-actions .button {
    width: 100%;
  }

  .booking-text-button {
    align-self: flex-start;
  }

  .booking-complete {
    min-height: 480px;
    padding-right: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .booking-step.is-active {
    animation: none;
  }
}

body { margin: 0; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.akdh-fallback { padding-block: 120px; min-height: 60vh; }
.akdh-fallback h1 { max-width: 900px; }
.akdh-turnstile-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100000; background: white; box-shadow: 0 8px 40px #0002; padding: 12px; max-width: calc(100vw - 32px); }
.booking-panel [hidden] { display: none !important; }
.booking-error { color: #a31220; font-weight: 600; }
