@font-face {
  font-family: "Mona Sans";
  src: url("https://fonts.gstatic.com/s/monasans/v4/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Mona Sans";
  src: url("https://fonts.gstatic.com/s/monasans/v4/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9Y41P6zHtY.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  /* core navy — from the logo */
  --navy: #1e2a40;
  --navy-deep: #161f30;
  --navy-soft: #2c3a54;

  /* neutrals — the bulk of the site */
  --bg: #f2f3f5;
  --bg-alt: #e2e2e0;
  --ink: #16202e;
  --soft-ink: #3a4658;
  --muted: #5e6878;
  --line: rgba(30, 42, 64, 0.12);
  --card: rgba(255, 255, 255, 0.52);
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.94);

  /* accent — one, used sparingly (kept as --red for compatibility) */
  --red: #e04a2b;

  /* footer/nav — matches the logo background */
  --footer: #121a2c;
  --footer-muted: rgba(255, 255, 255, 0.6);
  --white: #ffffff;
  --hero-base: var(--navy-deep);
  --hero-overlay: linear-gradient(90deg, rgba(20, 17, 15, 0.78), rgba(20, 17, 15, 0.15) 60%);
  --inverse-muted: rgba(255, 255, 255, 0.78);

  --page-pad: clamp(20px, 2.5vw, 32px);
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Mona Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

main,
section,
article,
div,
nav,
form,
p,
h1,
h2,
h3 {
  min-width: 0;
}

p,
a,
button,
label {
  overflow-wrap: break-word;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

@keyframes navFadeDown {
  from {
    opacity: 0;
    translate: 0 -18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

body.animations-ready [data-reveal] {
  opacity: 0;
  translate: 0 var(--reveal-y, 34px);
  transition:
    opacity 900ms var(--reveal-ease),
    translate 900ms var(--reveal-ease),
    scale 1100ms var(--reveal-ease),
    clip-path 1100ms var(--reveal-ease),
    filter 900ms var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale, clip-path;
}

body.animations-ready [data-reveal="fade"] {
  --reveal-y: 0;
}

body.animations-ready [data-reveal="card"] {
  --reveal-y: 36px;
}

body.animations-ready [data-reveal="image"] {
  --reveal-y: 0;
  scale: 1.075;
  clip-path: inset(0 0 18% 0 round 8px);
  filter: saturate(0.92);
}

body.animations-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

body.animations-ready [data-reveal="image"].is-visible {
  scale: 1;
  clip-path: inset(0 0 0 0 round 0);
  filter: saturate(1);
}

html.reduce-motion {
  scroll-behavior: auto;
}

html.reduce-motion .floating-nav {
  opacity: 1;
  translate: 0 0;
  animation: none;
}

html.reduce-motion body.animations-ready [data-reveal],
html.reduce-motion body.animations-ready [data-reveal="image"] {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  clip-path: none;
  filter: none;
  transition: none;
}

.floating-nav {
  position: fixed;
  z-index: 60;
  top: 24px;
  left: 50%;
  width: min(330px, calc(100vw - 48px));
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--footer);
  border-radius: 10px;
  transform: translateX(-50%);
  opacity: 0;
  translate: 0 -18px;
  animation: navFadeDown 720ms var(--reveal-ease) 120ms forwards;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  max-width: none;
  transform: scale(1.62);
  transform-origin: center;
}

.menu-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: var(--white);
  border-radius: 9px;
  transition: transform 520ms var(--reveal-ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 70;
  top: 24px;
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  padding: 16px;
  display: grid;
  gap: 26px;
  background: var(--footer);
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(0.98);
  transition:
    opacity 820ms var(--reveal-ease),
    transform 820ms var(--reveal-ease);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

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

.menu-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
}

.menu-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 7px;
  background: var(--footer);
}

.menu-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close span {
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  display: block;
  background: var(--white);
  border-radius: 999px;
}

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

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

.menu-panel-body {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(140px, 1fr) 228px;
  gap: 54px;
  align-items: start;
}

.menu-links {
  display: grid;
  gap: 20px;
  align-content: start;
}

.menu-panel a {
  color: var(--footer-muted);
  font-size: 18px;
  font-weight: 400;
  transition: color 240ms ease;
}

.menu-panel a:hover {
  color: var(--white);
}

.menu-panel a[aria-current="page"] {
  color: var(--white);
}

.menu-links a[aria-current="page"] {
  position: relative;
}

.menu-links a[aria-current="page"]::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
  border-radius: 50%;
}

.menu-feature {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.menu-feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.menu-feature img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.menu-feature:hover img {
  transform: scale(1.05);
}

.menu-feature span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 15px;
  color: var(--white);
  font-weight: 600;
}

.section-pad {
  padding: clamp(86px, 10vw, 142px) var(--page-pad);
}

.about {
  padding-top: clamp(90px, 8vw, 120px);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 710px;
  overflow: hidden;
  background: var(--hero-base);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(188px, 23vh, 238px);
  left: clamp(38px, 2.3vw, 46px);
  width: min(265px, calc(100vw - 76px));
}

.hero-copy p {
  max-width: 265px;
  margin: 0 0 38px;
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 700;
  line-height: 1.32;
  color: var(--white);
}

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

.hero-title {
  position: absolute;
  z-index: 2;
  left: clamp(600px, 41vw, 790px);
  right: clamp(22px, 2.2vw, 42px);
  bottom: clamp(30px, 3.6vw, 42px);
  width: auto;
  text-align: left;
}

.hero-title h1 {
  margin: 0;
  font-size: clamp(150px, 19vw, 360px);
  font-weight: 600;
  line-height: 0.74;
}

.hero-title p {
  margin: 14px 0 0;
  padding-top: 14px;
  max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--inverse-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
}

.pill-button {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 21px 5px 5px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(30, 42, 64, 0.1);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.pill-button:hover {
  background: var(--surface-strong);
  border-color: rgba(30, 42, 64, 0.18);
}

.pill-button.red {
  background: var(--white);
  color: var(--navy);
}

.pill-button.light {
  background: var(--white);
  color: var(--navy);
}

.icon-circle {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0;
}

.icon-circle::before,
.icon-circle::after {
  content: "\2192";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-circle::after {
  transform: translateX(-115%);
}

.pill-button:hover .icon-circle::before,
.pill-button:focus-visible .icon-circle::before,
.pill-button:active .icon-circle::before {
  transform: translateX(115%);
}

.pill-button:hover .icon-circle::after,
.pill-button:focus-visible .icon-circle::after,
.pill-button:active .icon-circle::after {
  transform: translateX(0);
}

.icon-circle.white {
  background: var(--navy);
  color: var(--white);
}

.intro-grid {
  max-width: 1368px;
  min-height: clamp(330px, 25vw, 370px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(560px, 680px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0;
  color: transparent;
}

.intro-statement {
  margin: 0;
  font-size: clamp(34px, 2.65vw, 40px);
  line-height: 1.05;
}

.about-grid {
  max-width: 1368px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 500px) minmax(360px, 1fr);
  gap: clamp(72px, 9.8vw, 188px);
  align-items: start;
  padding-top: 58px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: 18px;
  isolation: isolate;
}

.about-card {
  min-height: 0;
  aspect-ratio: 1.25;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64));
  z-index: 1;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.about-card img {
  min-height: 0;
  object-position: 50% 50%;
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-card span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.image-card b {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.about-card b {
  right: 24px;
  bottom: 24px;
  position: absolute;
  overflow: hidden;
  font-size: 0;
}

.about-card b::before,
.about-card b::after {
  content: "\2197";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 31px;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card b::after {
  transform: translate(-115%, 115%);
}

.about-card:hover b::before,
.about-card:focus-visible b::before {
  transform: translate(115%, -115%);
}

.about-card:hover b::after,
.about-card:focus-visible b::after {
  transform: translate(0, 0);
}

.about-copy {
  max-width: 500px;
}

.about-copy p {
  margin: 0 0 34px;
  font-size: clamp(20px, 1.75vw, 24px);
  line-height: 1.22;
}

.section-split {
  min-height: clamp(300px, 34vw, 430px);
  display: grid;
  grid-template-columns: 1fr minmax(360px, 34%);
  gap: 36px;
  align-items: center;
}

.display-title {
  margin: 0;
  color: var(--muted);
  font-size: clamp(58px, 7.1vw, 100px);
  font-weight: 400;
  line-height: 0.98;
}

.section-split p {
  margin: 0;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.25;
}

.work {
  background: var(--bg-alt);
  padding-top: clamp(108px, 9vw, 132px);
  padding-bottom: 0;
}

.work .section-split,
.work-list {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.work .section-split {
  min-height: clamp(260px, 26vw, 334px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 400px);
  align-items: start;
}

.work .display-title {
  padding-left: 36px;
  color: var(--ink);
  font-size: clamp(60px, 4.6vw, 74px);
  line-height: 1;
}

.work .section-split p {
  max-width: 500px;
  color: var(--ink);
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.35;
}

.work-list {
  margin-top: 0;
}

.work-row {
  min-height: clamp(156px, 9vw, 172px);
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(170px, 25%) 1fr 74px;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.work-row:first-child {
  border-top: 1px solid var(--line);
}

.work-row:hover {
  background: rgba(255, 255, 255, 0.38);
}

.work-row span {
  font-size: 18px;
  line-height: 1.35;
  transition: color 180ms ease;
}

.work-row span:last-child {
  justify-self: end;
}

.work-list.no-dates .work-row {
  grid-template-columns: minmax(190px, 24%) minmax(0, 1fr) clamp(104px, 9vw, 132px);
  column-gap: clamp(14px, 1.8vw, 26px);
}

.work-list.no-dates .work-row:first-child {
  border-top: 0;
}

.work-list.no-dates .work-row:last-child {
  border-bottom: 0;
}

.work-list.no-dates .work-row span:first-child {
  justify-self: start;
}

.work-list.no-dates .work-row strong {
  justify-self: start;
}

.work-row-copy {
  display: grid;
  gap: 10px;
  justify-self: start;
}

.work-row-copy small {
  max-width: 520px;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 180ms ease;
}

.work-preview {
  width: clamp(104px, 9vw, 132px);
  aspect-ratio: 1.72;
  object-fit: cover;
  opacity: 0;
  transform: translateX(-12px) scale(0.96);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-list.no-dates .work-row:hover,
.work-list.no-dates .work-row:focus-visible {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.work-list.no-dates .work-row:hover span,
.work-list.no-dates .work-row:hover strong,
.work-list.no-dates .work-row:hover small,
.work-list.no-dates .work-row:focus-visible span,
.work-list.no-dates .work-row:focus-visible strong,
.work-list.no-dates .work-row:focus-visible small {
  color: var(--white);
}

.work-list.no-dates .work-row:hover .work-preview,
.work-list.no-dates .work-row:focus-visible .work-preview {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.work-more {
  width: min(1440px, 100%);
  min-height: 86px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
}

.work-more .work-more-icon {
  width: 36px;
  height: 36px;
  background: var(--navy-deep);
  color: var(--white);
}

.work-more:hover .work-more-icon::before,
.work-more:focus-visible .work-more-icon::before,
.work-more:active .work-more-icon::before {
  transform: translateX(115%);
}

.work-more:hover .work-more-icon::after,
.work-more:focus-visible .work-more-icon::after,
.work-more:active .work-more-icon::after {
  transform: translateX(0);
}

.work-row strong {
  justify-self: center;
  color: var(--soft-ink);
  font-size: clamp(58px, 5.2vw, 86px);
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease;
}

.services {
  width: min(1366px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(96px, 7vw, 124px);
  padding-right: 0;
  padding-left: 0;
}

.services > .display-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 4.05vw, 64px);
  line-height: 1;
}

.services-grid {
  margin-top: clamp(70px, 5.2vw, 84px);
  display: grid;
  grid-template-columns: 400px minmax(0, 666px);
  gap: clamp(150px, 16.8vw, 318px);
  align-items: start;
}

.guidance-card {
  min-height: 400px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-soft);
  border-radius: 8px;
}

.guidance-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.guidance-card h3 {
  max-width: 300px;
  margin: 0 0 22px;
  font-size: clamp(33px, 2.75vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.guidance-card p {
  margin: 0 0 28px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.45;
}

.services .guidance-card {
  width: 400px;
  min-height: 0;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--surface-soft);
  border-radius: 8px;
}

.services .guidance-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.services .guidance-card h3 {
  max-width: 250px;
  margin: 0 0 22px;
  font-size: clamp(30px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.18;
}

.services .guidance-card p {
  margin: 0 0 28px;
  max-width: 316px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.45;
}

.what-we-do {
  max-width: 649px;
  padding-top: 6px;
}

.eyebrow {
  position: relative;
  top: 24px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.services .large-copy {
  margin: 0;
  max-width: 649px;
  font-size: clamp(29px, 2vw, 31px);
  line-height: 1.35;
  text-indent: 0;
}

.services .tag-cloud {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 8px;
}

.services .tag-cloud span {
  min-height: 51px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30, 42, 64, 0.07);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.services .tag-cloud span:nth-child(4n + 1) {
  opacity: 1;
}

.home-deliverables {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(100px, 7vw, 126px) 0 clamp(92px, 6.6vw, 118px);
}

.home-deliverables .section-split {
  min-height: clamp(220px, 20vw, 286px);
}

.home-deliverables .display-title {
  color: var(--ink);
  font-size: clamp(58px, 4.8vw, 74px);
  line-height: 1.125;
}

.home-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-deliverables-grid article {
  min-height: 286px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto minmax(92px, auto);
  border-radius: 8px;
  background: var(--surface-soft);
}

.home-deliverables-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.home-deliverables-grid h3 {
  margin: 0 0 18px;
  align-self: end;
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.home-deliverables-grid p {
  margin: 0;
  min-height: 92px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.45;
}

.wide-image {
  height: clamp(410px, 48.5vw, 650px);
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-interior-image img {
  object-position: center 72%;
}

.process {
  width: min(1368px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(108px, 7.2vw, 132px) 0 clamp(104px, 7vw, 132px);
}

.process .display-title {
  color: var(--ink);
  font-size: clamp(58px, 4.8vw, 74px);
  line-height: 1.125;
}

.process-lead {
  margin: clamp(74px, 4.3vw, 80px) 0 clamp(108px, 6vw, 116px);
  max-width: 1368px;
  font-size: clamp(40px, 2.95vw, 47px);
  line-height: 1.33;
  text-align: left;
  text-indent: clamp(170px, 11vw, 214px);
}

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

.process-grid article {
  min-height: 360px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 112px;
  font-size: 32px;
  line-height: 1.35;
}

.process-grid h3 {
  position: relative;
  margin: 0 0 26px;
  padding-left: 24px;
  font-size: 19px;
}

.process-grid h3::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
}

.process-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.45;
}

.trust-section.section-pad {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(108px, 7.2vw, 132px) 0 clamp(102px, 7vw, 130px);
}

.trust-section .display-title {
  color: var(--ink);
  font-size: clamp(58px, 4.8vw, 74px);
  line-height: 1.125;
}

.trust-section .section-split {
  min-height: clamp(220px, 20vw, 286px);
}

.trust-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  min-height: 286px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto minmax(92px, auto);
  border-radius: 8px;
  background: var(--surface-soft);
}

.trust-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-card h3 {
  margin: 0 0 18px;
  align-self: end;
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.trust-card p {
  margin: 0;
  min-height: 92px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.45;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.center-heading .display-title {
  color: var(--muted);
}

.center-heading p {
  margin: 20px 0 34px;
  font-size: 19px;
  line-height: 1.4;
}

.center-heading .pill-button {
  margin: 0 auto;
}

.insights.section-pad {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(108px, 6.3vw, 120px) 0 clamp(104px, 7vw, 132px);
}

.insights .center-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.insights .center-heading .display-title {
  color: var(--ink);
  font-size: clamp(58px, 4.8vw, 74px);
  line-height: 1.125;
}

.insights .center-heading p {
  max-width: 690px;
  margin: 22px auto 28px;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.5;
}

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

.article-card {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  transition: border-bottom-color 0.24s ease;
}

.article-card:hover,
.article-card:focus-visible {
  border-bottom-color: var(--ink);
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  border-radius: 8px;
}

.article-title {
  display: block;
  max-width: calc(100% - 48px);
  margin-top: 22px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.article-card small {
  display: block;
  margin-top: 18px;
  color: var(--soft-ink);
  font-size: 15px;
}

.article-card b {
  position: absolute;
  right: 8px;
  bottom: 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
}

.article-card b::before,
.article-card b::after {
  content: "\2197";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-card b::after {
  transform: translate(-115%, 115%);
}

.article-card:hover b::before,
.article-card:focus-visible b::before {
  transform: translate(115%, -115%);
}

.article-card:hover b::after,
.article-card:focus-visible b::after {
  transform: translate(0, 0);
}

.insights .article-grid {
  width: 100%;
  margin: 0 auto;
}

.insights .article-card {
  padding-bottom: 17px;
}

.insights .article-card img {
  aspect-ratio: 1.45;
}

.insights .article-title {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.36;
}

.insights .article-card small {
  margin-top: 15px;
  font-size: 14px;
}

.insights .article-card b {
  right: 24px;
  bottom: 44px;
  line-height: 1;
}

.insights .article-card b::before,
.insights .article-card b::after {
  font-size: 40px;
}

.faq {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(108px, 6.3vw, 120px) 0 clamp(118px, 7vw, 132px);
  display: grid;
  grid-template-columns: 460px minmax(0, 808px);
  gap: 100px;
  align-items: start;
}

.guidance-card.compact {
  min-height: 0;
  padding: 46px 42px;
  justify-content: flex-start;
  background: var(--card);
}

.faq .guidance-card h3 {
  max-width: none;
  font-size: 32px;
  line-height: 1.14;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(30, 42, 64, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

summary {
  min-height: 67px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 30px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

details[open] .faq-answer {
  height: auto;
  opacity: 1;
}

details.is-closing .faq-answer {
  opacity: 0;
}

details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--soft-ink);
  line-height: 1.5;
}

.prefooter {
  min-height: 620px;
  padding-top: 112px;
  padding-bottom: 100px;
  display: grid;
  place-items: center;
  text-align: center;
}

.note-card {
  width: min(480px, 88vw);
  padding: 24px 24px 30px;
  margin-bottom: 78px;
  background: var(--card);
  border-radius: 10px;
  text-align: left;
  transform: rotate(-4deg);
  box-shadow: none;
}

.note-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
}

.note-card p {
  margin: 0 0 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.prefooter .display-title {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(58px, 4.8vw, 74px);
  line-height: 1.125;
}

.prefooter-lead {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.prefooter .pill-button {
  min-width: 190px;
  margin-top: 36px;
}

.footer {
  padding: 80px 20px 0;
  background: var(--footer);
  color: var(--white);
}

.footer-top,
.footer-main,
.footer-bottom {
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.footer-top {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-main {
  padding: 50px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 912px) 24px 252px 252px;
  column-gap: 0;
  row-gap: 60px;
  align-items: start;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
  max-width: none;
}

.footer-brand h2 {
  margin: 0 0 60px;
  color: var(--bg);
  font-size: clamp(58px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.125;
}

.footer-brand a {
  color: var(--footer-muted);
  font-size: 32px;
  line-height: 1.35;
}

.footer nav,
.newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-main nav:first-of-type {
  grid-column: 3;
}

.footer-main nav:nth-of-type(2) {
  grid-column: 4;
}

.newsletter {
  grid-column: 3 / 5;
  width: min(500px, 100%);
}

.footer nav p,
.newsletter label {
  margin: 0 0 12px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.footer a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible,
.footer a:active {
  text-decoration-color: currentColor;
}

.footer a[aria-current="page"] {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.58);
}

.newsletter p {
  max-width: 500px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.55;
}

.newsletter .newsletter-status {
  min-height: 20px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.newsletter .newsletter-status:empty {
  display: none;
}

.newsletter .newsletter-status[data-status="success"] {
  color: #9fe0b7;
}

.newsletter .newsletter-status[data-status="error"] {
  color: #ffb4a8;
}

.newsletter div {
  position: relative;
  width: 100%;
}

.newsletter input {
  width: 100%;
  height: 60px;
  padding: 10px 68px 10px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: 0;
}

.newsletter input:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.newsletter button {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  transform: translateY(-50%);
  cursor: pointer;
}

.newsletter button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.newsletter button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter .newsletter-field {
  position: relative;
  width: 100%;
}

.newsletter .newsletter-field input {
  padding-right: 68px;
}

.newsletter .newsletter-submit {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 42px;
  height: 42px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: #111;
  transform: translateY(-50%);
}

.newsletter .newsletter-submit:hover,
.newsletter .newsletter-submit:focus-visible,
.newsletter .newsletter-submit:active {
  background: #f2f2f2;
}

.newsletter .newsletter-submit:hover::before,
.newsletter .newsletter-submit:focus-visible::before,
.newsletter .newsletter-submit:active::before {
  transform: translateX(115%);
}

.newsletter .newsletter-submit:hover::after,
.newsletter .newsletter-submit:focus-visible::after,
.newsletter .newsletter-submit:active::after {
  transform: translateX(0);
}

.footer-bottom {
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-legal-links {
  grid-column: 1 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  grid-column: 3;
  justify-self: end;
  text-align: right;
}

.footer-credit {
  justify-self: end;
  text-align: right;
}

.inner-page .page-hero {
  min-height: clamp(620px, 72vh, 760px);
  padding: 150px var(--page-pad) 56px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.privacy-page .page-hero {
  min-height: auto;
  padding-top: clamp(132px, 14vw, 188px);
}

.page-kicker {
  margin: 0 0 26px;
  color: #555;
  font-size: 15px;
  font-weight: 600;
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #555;
  font-size: clamp(62px, 8vw, 124px);
  font-weight: 400;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.page-hero > p {
  margin: 0;
  max-width: 100%;
  color: #333;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.32;
  overflow-wrap: break-word;
}

.page-hero .pill-button {
  align-self: end;
  justify-self: start;
}

.projects-page .projects-hero {
  min-height: clamp(680px, 82vh, 860px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  padding-bottom: clamp(64px, 6vw, 86px);
}

.projects-hero-title {
  align-self: end;
}

.projects-page .projects-hero h1 {
  max-width: 900px;
  color: #555;
  font-size: clamp(86px, 10.8vw, 168px);
  line-height: 0.9;
}

.projects-hero-side {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
  align-self: end;
  justify-items: start;
}

.projects-hero-side > p {
  margin: 0;
  max-width: 430px;
  color: #161616;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.24;
}

.project-start-card {
  width: min(410px, 100%);
  padding: 16px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.035);
}

.project-start-card img {
  width: 76px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
}

.project-start-card span {
  display: block;
  margin-bottom: 14px;
  color: #333;
  font-weight: 600;
}

.project-start-card .pill-button {
  min-height: 46px;
  padding-right: 18px;
  font-size: 15px;
}

.project-start-card .icon-circle {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.projects-index {
  padding-top: 0;
  padding-bottom: clamp(96px, 10vw, 142px);
}

.project-index-list {
  margin-top: 0;
}

.projects-page .project-index-list .work-row {
  min-height: clamp(160px, 14vw, 190px);
  grid-template-columns: minmax(220px, 25vw) 1fr 110px;
}

.projects-page .project-index-list .work-row strong {
  color: #2f2f2f;
  font-size: clamp(62px, 7.25vw, 106px);
}

.projects-page .project-index-list .work-row span {
  color: #262626;
}

.projects-page .project-index-list .work-row:hover {
  background: rgba(255, 255, 255, 0.48);
}

.projects-page .prefooter {
  border-top: 1px solid var(--line);
}

.page-intro-split {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(52px, 8vw, 118px);
  align-items: start;
}

.split-image {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 8px;
}

.stacked-copy {
  display: grid;
  gap: 1px;
}

.stacked-copy article {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.stacked-copy span {
  color: #555;
  font-weight: 600;
}

.stacked-copy p {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
}

.metric-band {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.metric-band article {
  min-height: 320px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 8px;
}

.metric-band strong {
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 400;
  line-height: 1;
}

.metric-band span {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
}

.metric-band p {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.section-split.tight {
  min-height: 220px;
}

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

.award-list article {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.7fr) 90px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.award-list strong {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
}

.award-list span,
.award-list b {
  color: #555;
  font-size: 17px;
  font-weight: 500;
}

.award-list b {
  justify-self: end;
}

.team-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-grid article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border-radius: 8px;
}

.team-grid strong {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  font-weight: 600;
}

.team-grid span {
  display: block;
  margin-top: 8px;
  color: #555;
}

.service-stack {
  display: grid;
  gap: 0;
}

.service-stack article {
  min-height: 220px;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 120px 0.8fr 160px 1fr;
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.service-stack article:first-child {
  border-top: 1px solid var(--line);
}

.service-stack span {
  color: #777;
  font-size: 22px;
}

.service-stack h2 {
  margin: 0;
  color: #333;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.service-stack p {
  margin: 0;
  color: #4b4b4b;
  line-height: 1.45;
}

.page-work-list {
  margin-top: 0;
}

.featured-article {
  padding-bottom: 0;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 1fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 8px;
}

.featured-card span {
  display: block;
  margin-bottom: 26px;
  color: #555;
}

.featured-card h2 {
  margin: 0 0 34px;
  color: #333;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  line-height: 1.04;
}

.featured-card b {
  color: var(--red);
  font-size: 18px;
}

.page-insights {
  padding-top: 82px;
}

.positions-section {
  padding-top: 0;
}

.positions-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.positions-list article {
  min-height: 172px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 140px 160px auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.positions-list h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 400;
}

.positions-list p {
  max-width: 650px;
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.positions-list span {
  color: #555;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
}

.contact-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 8px;
}

.contact-card img {
  width: 88px;
  height: 88px;
  margin-bottom: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 400;
}

.contact-card p,
.contact-card a {
  color: #555;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #555;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-page {
  background: #f0f0f0;
}

.contact-page .contact-hero {
  position: relative;
  width: min(calc(100% - 64px), 1368px);
  min-height: 760px;
  margin: 0 auto;
  padding: 150px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.436fr) minmax(0, 0.564fr);
  gap: 70px 72px;
  align-items: start;
  border-bottom: 0;
}

.contact-page .contact-hero-title {
  grid-column: 1 / -1;
}

.contact-page .contact-hero > * {
  min-width: 0;
}

.contact-page .contact-hero h1 {
  max-width: none;
  color: #101010;
  font-size: clamp(78px, 6.9vw, 100px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.contact-socials {
  position: absolute;
  top: 312px;
  left: 0;
  display: grid;
  gap: 12px;
}

.contact-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 42, 64, 0.14);
  border-radius: 14px;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(30, 42, 64, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-socials a svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-socials a svg * {
  vector-effect: non-scaling-stroke;
}

.contact-socials a[aria-label="Instagram"] svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.contact-socials a[aria-label="WhatsApp"] svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
  transform: none;
}

.contact-socials a[aria-label="WhatsApp"] svg * {
  vector-effect: none;
}

.contact-socials a:hover {
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(30, 42, 64, 0.16);
  transform: translateY(-3px);
}

.contact-socials a[aria-label="Instagram"]:hover {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 24%, transparent 25%),
    radial-gradient(circle at 20% 20%, #fa7e1e 0 22%, transparent 23%),
    linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
}

.contact-socials a[aria-label="WhatsApp"]:hover {
  background: #25d366;
}

.contact-socials a:focus-visible,
.contact-methods a:focus-visible,
.contact-page .contact-form a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.contact-intro {
  grid-column: 1;
  max-width: 470px;
  margin-left: clamp(96px, 9.4vw, 130px);
}

.contact-intro > p {
  margin: 0;
  color: #202020;
  font-size: clamp(20px, 1.3vw, 21px);
  line-height: 1.27;
  overflow-wrap: break-word;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-person img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 10%;
}

.contact-person strong {
  display: block;
  color: #151515;
  font-size: 20px;
  font-weight: 600;
}

.contact-person span {
  display: block;
  margin-top: 6px;
  color: #6f6f6f;
  font-size: 16px;
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-page .contact-methods {
  display: grid;
}

.contact-methods a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #202020;
  font-size: 17px;
  font-weight: 600;
}

.contact-methods a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-methods a:hover {
  color: var(--red);
}

.contact-page .contact-form {
  grid-column: 2;
  min-width: 0;
  gap: 16px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-page .form-field {
  display: grid;
  gap: 8px;
}

.contact-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-page .contact-form label {
  display: block;
  color: #313131;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
  width: 100%;
  color: #1c1c1c;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 8px;
  outline: 0;
  box-shadow: none;
}

.contact-page .contact-form input,
.contact-page .contact-form select {
  height: 66px;
  padding: 0 24px;
}

.contact-page .contact-form select {
  appearance: none;
  padding-right: 50px;
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 27px) 50%,
    calc(100% - 20px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-page .contact-form textarea {
  min-height: 150px;
  padding: 24px;
}

.contact-page .contact-form input:focus-visible,
.contact-page .contact-form textarea:focus-visible,
.contact-page .contact-form select:focus-visible {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.16);
}

.contact-page .contact-form .form-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: #545454;
  font-size: 15px;
  line-height: 1.4;
}

.contact-page .contact-form .form-status:empty {
  display: none;
}

.contact-page .contact-form .form-status[data-status="success"] {
  color: #12623b;
}

.contact-page .contact-form .form-status[data-status="error"] {
  color: #9c2f24;
}

.contact-page .contact-form .form-privacy {
  margin: -2px 0 0;
  color: #646464;
  font-size: 13px;
  line-height: 1.45;
}

.contact-page .contact-form .form-privacy a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: #7c7c7c;
  opacity: 1;
}

.contact-page .contact-form button {
  width: 100%;
  height: 76px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #303030;
  border: 0;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-page .contact-form button:hover {
  background: #191919;
  transform: translateY(-2px);
}

.contact-page .contact-form button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.contact-page .contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (min-width: 1440px) {
  .contact-intro {
    width: 500px;
    max-width: none;
  }
}

.contact-page .contact-prefooter {
  min-height: 560px;
  padding-top: 112px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-page .contact-prefooter .note-card {
  width: min(500px, calc(100vw - 44px));
  margin: 0 0 56px;
  padding: 28px 28px 30px;
}

.contact-page .contact-prefooter .note-card img {
  width: 50px;
  height: 50px;
  padding: 8px;
  background: #f2f2f2;
  border-radius: 50%;
}

.contact-page .contact-prefooter .display-title {
  max-width: 820px;
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(58px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.125;
  text-align: center;
}

.contact-page .contact-prefooter .pill-button {
  margin-top: 36px;
}

.contact-page .footer {
  min-height: 812px;
  padding: 80px 20px 28px;
  display: flex;
  flex-direction: column;
}

.contact-page .footer-main {
  flex: 1;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1fr) 220px 224px;
  column-gap: 24px;
}

.contact-page .footer-brand,
.contact-page .newsletter {
  display: none;
}

.contact-page .footer-main nav:first-of-type {
  grid-column: 2;
}

.contact-page .footer-main nav:nth-of-type(2) {
  grid-column: 3;
}

.contact-page .footer nav {
  gap: 14px;
}

.contact-page .footer nav p {
  margin-bottom: 18px;
}

.contact-page .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.contact-page .footer-credit {
  justify-self: end;
}

.journal-page {
  background: #f0f0f0;
}

.journal-page .journal-hero {
  width: min(100%, 1440px);
  min-height: 364px;
  margin: 0 auto;
  padding: 160px 36px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 0;
  align-items: start;
  border-bottom: 0;
}

.journal-page .journal-hero h1 {
  max-width: 880px;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: clamp(58px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1.125;
}

.journal-page .journal-hero > p {
  max-width: 400px;
  margin: 0;
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  line-height: 1.35;
}

.journal-featured {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 36px 20px;
}

.journal-featured-card {
  position: relative;
  min-height: 540px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
}

.journal-featured-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 280px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.72) 100%);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 11%, #000 100%);
  -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 11%, #000 100%);
  pointer-events: none;
}

.journal-featured-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 520ms ease;
}

.journal-page .journal-featured-card img[data-reveal="image"],
.journal-page .journal-featured-card img[data-reveal="image"].is-visible {
  filter: brightness(0.82) saturate(0.96) !important;
  transition: transform 520ms ease !important;
}

.journal-featured-card:hover img {
  transform: scale(1.025);
}

.journal-badge {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 32px;
  min-height: 43px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.journal-featured-copy {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 32px;
  width: min(500px, calc(100% - 64px));
  display: grid;
  gap: 12px;
  color: #fff;
}

.journal-featured-copy p {
  margin: 0;
  padding-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.journal-featured-copy h2 {
  margin: 0;
  max-width: 500px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
}

.journal-featured-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.journal-featured-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.journal-featured-arrow::before,
.journal-featured-arrow::after {
  content: "\2192";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-featured-arrow::after {
  transform: translateX(-120%);
}

.journal-featured-card:hover .journal-featured-arrow::before,
.journal-featured-card:focus-visible .journal-featured-arrow::before {
  transform: translateX(120%);
}

.journal-featured-card:hover .journal-featured-arrow::after,
.journal-featured-card:focus-visible .journal-featured-arrow::after {
  transform: translateX(0);
}

.journal-list {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 36px 132px;
}

.journal-list-head {
  margin-bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.journal-list-head h2 {
  margin: 0;
  color: #101010;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.journal-filter {
  min-height: 38px;
  padding: 0 14px;
  color: #202020;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.journal-filter:hover,
.journal-filter:focus-visible,
.journal-filter[aria-pressed="true"] {
  color: #fff;
  background: #242424;
  border-color: #242424;
}

.journal-filter:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.journal-page .article-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 20px;
}

.journal-page .article-card[hidden] {
  display: none;
}

.journal-page .article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.journal-page .article-card img {
  aspect-ratio: 1.45;
  border-radius: 8px;
}

.journal-page .article-card-meta {
  margin: 18px 54px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.journal-page .article-card-meta span:first-child {
  color: #111;
}

.journal-page .article-title {
  margin-top: 10px;
  color: #050505;
  font-size: 20px;
  line-height: 1.34;
}

.journal-page .article-excerpt {
  max-width: calc(100% - 52px);
  margin: 12px 0 0;
  color: #555;
  flex: 1;
  font-size: 15px;
  line-height: 1.48;
}

.journal-page .article-card-cta {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: #111;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.journal-page .article-card small {
  margin-top: 18px;
  color: #444;
  font-size: 14px;
}

.journal-page .article-card b {
  right: 26px;
  bottom: 16px;
  color: #111;
  font-size: 0;
}

.journal-page .article-card b::before,
.journal-page .article-card b::after {
  font-size: 41px;
}

.journal-page .journal-prefooter {
  min-height: 560px;
  padding-top: 112px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.journal-page .journal-prefooter .pill-button {
  margin-top: 36px;
}

.journal-page .footer {
  min-height: 812px;
  padding: 80px 20px 28px;
  display: flex;
  flex-direction: column;
}

.journal-page .footer-main {
  flex: 1;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1fr) 220px 224px;
  column-gap: 24px;
}

.journal-page .footer-main nav:first-of-type {
  grid-column: 2;
}

.journal-page .footer-main nav:nth-of-type(2) {
  grid-column: 3;
}

.journal-page .footer nav {
  gap: 14px;
}

.journal-page .footer nav p {
  margin-bottom: 18px;
}

.journal-page .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.journal-page .footer-credit {
  justify-self: end;
}

.service-page {
  background: #f0f0f0;
}

.service-page .services-hero {
  position: relative;
  width: min(1366px, calc(100% - 64px));
  min-height: 490px;
  margin: 0 auto;
  padding: 164px 0 78px;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  border-bottom: 0;
}

.services-title-block {
  max-width: 820px;
  transform: translateY(-20px);
}

.services-title-block .page-kicker {
  margin-bottom: 32px;
  color: #222;
}

.service-page .services-hero h1 {
  max-width: 820px;
  color: #3d3d3d;
  font-size: clamp(54px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.08;
}

.services-hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.76);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.services-hero-stats {
  max-width: 660px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.services-hero-stats article {
  min-height: 96px;
  padding: 18px;
  display: grid;
  align-content: end;
  background: rgba(255, 255, 255, 0.42);
}

.services-hero-stats strong {
  color: #111;
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 0.95;
}

.services-hero-stats span {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}

.services-project-card {
  width: fit-content;
  display: grid;
  grid-template-columns: 58px max-content;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  transform: translateY(52px);
}

.services-project-card img {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.services-project-card span {
  color: #2e2e2e;
  font-size: 13px;
  line-height: 1.2;
}

.services-project-card strong {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #191919;
  font-size: 20px;
  font-weight: 400;
}

.services-project-card b {
  font-size: 26px;
  font-weight: 400;
}

.services-showcase {
  width: min(1366px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 48px;
  display: block;
}

.service-card {
  --stack-progress: 0;
  position: sticky;
  top: 118px;
  min-height: 700px;
  padding: 32px;
  overflow: hidden;
  border-radius: 18px;
  background: #222;
  color: #fff;
  transform: translate3d(0, calc(var(--stack-progress) * -10px), 0) scale(calc(1 - (var(--stack-progress) * 0.025)));
  transform-origin: center top;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card:nth-child(1) {
  z-index: 1;
}

.service-card:nth-child(2) {
  z-index: 2;
}

.service-card:nth-child(3) {
  z-index: 3;
}

.service-card:nth-child(4) {
  z-index: 4;
}

.service-card:nth-child(5) {
  z-index: 5;
}

.service-card:not(:last-child) {
  margin-bottom: 36px;
}

.service-card .service-index {
  position: absolute;
  top: 46px;
  right: 28px;
  color: #fff;
  font-size: clamp(68px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.9;
}

.service-card .service-index,
.service-card .service-category,
.service-card h2,
.service-card .service-copy,
.service-card .service-card-details,
.service-card img {
  opacity: var(--stack-content-opacity, 1);
  transition: opacity 180ms ease;
}

.service-category {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.service-card h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(76px, 7.1vw, 106px);
  font-weight: 400;
  line-height: 0.96;
}

.service-copy {
  position: absolute;
  left: 32px;
  bottom: 184px;
  max-width: 535px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.service-card-details {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card-details p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

.service-card-details span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.service-card img {
  position: absolute;
  right: 44px;
  bottom: 36px;
  width: 300px;
  height: 395px;
  object-fit: cover;
  border-radius: 8px;
  transform: rotate(6deg);
}

.service-card:nth-child(2) img,
.service-card:nth-child(4) img {
  width: 330px;
  height: 380px;
  transform: rotate(6deg);
}

.service-card:nth-child(2) img {
  width: 360px;
  height: 360px;
  object-fit: contain;
}

.service-card:nth-child(4) img {
  width: 300px;
  height: 300px;
}

.service-card:nth-child(3) img {
  width: 330px;
  height: 362px;
}

.service-card:nth-child(1) img {
  width: 340px;
  height: 340px;
  object-fit: contain;
}

.service-card:nth-child(5) img {
  width: 322px;
  height: 338px;
}

.service-process,
.service-deliverables {
  width: min(1366px, calc(100% - 64px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid var(--line);
}

.service-process {
  padding-top: clamp(92px, 7.5vw, 122px);
  padding-bottom: clamp(94px, 7.8vw, 128px);
}

.service-deliverables {
  padding-top: clamp(94px, 7.2vw, 116px);
  padding-bottom: clamp(96px, 7.5vw, 126px);
}

.service-process-head,
.service-deliverables-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.service-process-head .page-kicker,
.service-deliverables-head .page-kicker {
  margin: 0;
}

.service-process-head h2,
.service-deliverables-head h2 {
  max-width: 760px;
  margin: 0;
  color: #111;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.06;
}

.service-process-list,
.service-deliverables-grid {
  margin-top: clamp(56px, 6vw, 84px);
  display: grid;
  gap: clamp(22px, 2.5vw, 38px);
}

.service-process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-process-list article,
.service-deliverables-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-process-list span,
.service-deliverables-grid span {
  display: block;
  margin-bottom: 58px;
  color: #777;
  font-size: 15px;
}

.service-process-list h3 {
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.service-process-list p,
.service-deliverables-grid p {
  max-width: 360px;
  margin: 0;
  color: #565656;
  font-size: 17px;
  line-height: 1.5;
}

.service-deliverables-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-deliverables-grid strong {
  display: block;
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.service-faq {
  border-top: 1px solid var(--line);
}

.service-page .services-prefooter {
  min-height: 560px;
  padding-top: 112px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.service-page .services-prefooter .note-card {
  width: min(480px, calc(100vw - 44px));
  margin: 64px 0 56px;
  padding: 32px;
}

.service-page .services-prefooter .note-card img {
  width: 50px;
  height: 50px;
  padding: 8px;
  background: #f2f2f2;
  border-radius: 50%;
}

.service-page .services-prefooter .display-title {
  max-width: 820px;
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(58px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.125;
  text-align: center;
}

.service-page .services-prefooter .pill-button {
  margin-top: 36px;
}

.service-page .footer {
  min-height: 812px;
  padding: 80px 20px 28px;
  display: flex;
  flex-direction: column;
}

.service-page .footer-main {
  flex: 1;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1fr) 220px 224px;
  column-gap: 24px;
}

.service-page .footer-main nav:first-of-type {
  grid-column: 2;
}

.service-page .footer-main nav:nth-of-type(2) {
  grid-column: 3;
}

.service-page .footer nav {
  gap: 14px;
}

.service-page .footer nav p {
  margin-bottom: 18px;
}

.service-page .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.service-page .footer-credit {
  justify-self: end;
}

.studio-page .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.studio-page .footer-credit {
  justify-self: end;
}

.studio-page .footer {
  min-height: 812px;
  padding: 80px 20px 28px;
  display: flex;
  flex-direction: column;
}

.studio-page .footer-main {
  flex: 1;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1fr) 220px 224px;
  column-gap: 24px;
}

.studio-page .footer-main nav:first-of-type {
  grid-column: 2;
}

.studio-page .footer-main nav:nth-of-type(2) {
  grid-column: 3;
}

.studio-page .footer nav {
  gap: 14px;
}

.studio-page .footer nav p {
  margin-bottom: 18px;
}

.projects-page .projects-hero {
  width: min(1366px, calc(100% - 64px));
  max-width: 1366px;
  min-height: 510px;
  margin: 0 auto;
  padding: 147px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 887px) minmax(300px, 1fr);
  gap: 20px;
  align-items: end;
  border-bottom: 0;
}

.projects-hero-title {
  align-self: end;
  padding-bottom: 119px;
}

.projects-page .projects-hero .page-kicker {
  margin-bottom: 34px;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.projects-page .projects-hero h1 {
  max-width: 780px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 90px;
  line-height: 1.125;
  letter-spacing: 0;
}

.projects-hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.projects-hero-stats {
  max-width: 460px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.projects-hero-stats article {
  min-height: 98px;
  padding: 18px;
  display: grid;
  align-content: end;
  background: rgba(255, 255, 255, 0.42);
}

.projects-hero-stats strong {
  color: #111;
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 0.95;
}

.projects-hero-stats span {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}

.projects-hero-side {
  align-self: end;
  justify-self: start;
  padding-bottom: 118px;
}

.project-start-card {
  width: auto;
  min-width: 315px;
  padding: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.project-start-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

.project-start-card > div > span {
  display: block;
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.project-start-card .pill-button span:not(.icon-circle) {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.project-start-card .pill-button {
  min-height: 0;
  padding: 0;
  gap: 12px;
  background: transparent;
  border: 0;
  color: rgba(0, 0, 0, 0.9);
  border-radius: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.project-start-card .icon-circle {
  order: 2;
  width: 22px;
  height: 22px;
  display: inline-grid;
  background: transparent;
  color: #111;
  font-size: 0;
  overflow: hidden;
}

.project-start-card .pill-button .icon-circle {
  font-size: 0;
}

.project-start-card .icon-circle::before,
.project-start-card .icon-circle::after {
  content: "\2192";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-start-card .icon-circle::after {
  transform: translate(-115%, 115%) rotate(-45deg);
}

.project-start-card .pill-button:hover span:not(.icon-circle),
.project-start-card .pill-button:focus-visible span:not(.icon-circle),
.project-start-card .pill-button:active span:not(.icon-circle) {
  text-decoration-color: currentColor;
}

.project-start-card .pill-button:hover .icon-circle::before,
.project-start-card .pill-button:focus-visible .icon-circle::before,
.project-start-card .pill-button:active .icon-circle::before {
  transform: translate(115%, -115%) rotate(-45deg);
}

.project-start-card .pill-button:hover .icon-circle::after,
.project-start-card .pill-button:focus-visible .icon-circle::after,
.project-start-card .pill-button:active .icon-circle::after {
  transform: translate(0, 0) rotate(-45deg);
}

.projects-index {
  min-height: 0;
  width: min(1366px, calc(100% - 64px));
  margin: 0 auto;
  padding: 3px 0 88px;
  background: transparent;
}

.project-filter-bar {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.project-filter {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #232323;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.project-filter:hover,
.project-filter:focus-visible,
.project-filter[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 44px;
  align-items: stretch;
}

.project-card {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
}

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

.project-load-more-wrap {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.project-load-more-wrap[hidden] {
  display: none;
}

.project-card.is-featured {
  grid-column: auto;
}

.project-card-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #dedede;
}

.project-card-media img {
  width: 100%;
  aspect-ratio: 1.15;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.001);
  transition: transform 520ms ease, filter 520ms ease;
}

.project-card:hover .project-card-media img,
.project-card:focus-visible .project-card-media img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.project-card-meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px 18px;
  color: #232323;
  font-size: 15px;
}

.project-card-meta strong,
.project-card-meta span,
.project-card-meta em {
  font: inherit;
}

.project-card-meta strong {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.project-card-meta span,
.project-card-meta em {
  justify-self: end;
}

.project-card-meta em {
  grid-column: 2;
  color: #333;
  font-style: normal;
}

.project-card-meta p {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 7px 0 0;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.45;
}

.project-card-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-card-tags b {
  padding: 7px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  color: #424242;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.project-card::after {
  content: "View case study";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-card:hover::after,
.project-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.projects-method {
  width: min(1366px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(92px, 7.5vw, 122px) 0 clamp(94px, 7.8vw, 128px);
  border-top: 1px solid var(--line);
}

.projects-method-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.projects-method-head .page-kicker {
  margin: 0;
}

.projects-method-head h2 {
  max-width: 760px;
  margin: 0;
  color: #111;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.06;
}

.projects-method-list {
  margin-top: clamp(56px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 38px);
}

.projects-method-list article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.projects-method-list span {
  display: block;
  margin-bottom: 58px;
  color: #777;
  font-size: 15px;
}

.projects-method-list h3 {
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.projects-method-list p {
  max-width: 360px;
  margin: 0;
  color: #565656;
  font-size: 17px;
  line-height: 1.5;
}

.projects-page .prefooter {
  min-height: 560px;
  padding: 112px 20px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.projects-page .prefooter .note-card {
  width: min(480px, calc(100vw - 44px));
  margin: 72px 0 48px;
  padding: 32px;
}

.projects-page .prefooter .note-card img {
  width: 50px;
  height: 50px;
  padding: 8px;
  background: #f2f2f2;
  border-radius: 50%;
}

.projects-page .prefooter .display-title {
  display: block;
  max-width: 820px;
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(58px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.125;
  text-align: center;
}

.projects-page .prefooter .pill-button {
  margin-top: 36px;
}

.projects-page .footer {
  min-height: 812px;
  padding: 80px 20px 28px;
  display: flex;
  flex-direction: column;
}

.projects-page .footer-main {
  flex: 1;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1fr) 220px 224px;
  column-gap: 24px;
}

.projects-page .footer-main nav:first-of-type {
  grid-column: 2;
}

.projects-page .footer-main nav:nth-of-type(2) {
  grid-column: 3;
}

.projects-page .footer nav {
  gap: 14px;
}

.projects-page .footer nav p {
  margin-bottom: 18px;
}

.projects-page .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.projects-page .footer-credit {
  justify-self: end;
}

.project-page .project-hero {
  position: relative;
  isolation: isolate;
  height: 100vh;
  min-height: 760px;
  padding: 120px var(--page-pad) 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.project-page .project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.28));
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.project-back-link {
  position: absolute;
  top: clamp(122px, 15vh, 156px);
  left: max(32px, calc((100vw - 1440px) / 2));
  z-index: 2;
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.project-back-link:hover,
.project-back-link:focus-visible {
  background: #fff;
  transform: translateX(-3px);
}

.project-hero-title {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 26px;
  place-items: center;
}

.project-page .project-hero h1 {
  max-width: min(820px, calc(100vw - 48px));
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 500;
  line-height: 1.125;
  text-align: center;
  overflow-wrap: normal;
  text-wrap: balance;
}

.project-hero-context {
  max-width: min(820px, calc(100vw - 48px));
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.project-hero-context span {
  min-height: 38px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.project-hero-bottom {
  position: absolute;
  right: max(32px, calc((100vw - 1440px) / 2));
  bottom: 38px;
  left: max(32px, calc((100vw - 1440px) / 2));
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.project-page .project-detail {
  width: min(1368px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(118px, 9.2vw, 142px) 0 clamp(96px, 8vw, 128px);
  display: grid;
  grid-template-columns: minmax(210px, 350px) minmax(0, 1fr);
  column-gap: clamp(72px, 8.4vw, 120px);
  row-gap: 0;
  align-items: start;
}

.project-page .project-main-image {
  display: none;
}

.project-page .project-story {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(112px, 9.4vw, 136px);
  color: rgba(0, 0, 0, 0.9);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
}

.project-page .project-story h2 {
  display: none;
}

.project-page .project-story p {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.project-page .project-story p + p::before {
  content: " ";
}

.project-page .project-meta-grid {
  grid-column: 1;
  grid-row: 2;
  position: sticky;
  top: 116px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border: 0;
}

.project-page .project-meta-grid article {
  padding: 0;
  border: 0;
}

.project-page .project-meta-grid article > span {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.project-page .project-meta-grid strong {
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.project-page .project-live-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.project-page .project-live-link > span:first-child {
  display: inline;
  margin: 0;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.project-page .project-live-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-grid;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  color: currentColor;
}

.project-page .project-live-arrow::before,
.project-page .project-live-arrow::after {
  content: "\2197";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-page .project-live-arrow::after {
  transform: translate(-115%, 115%);
}

.project-page .project-live-link:hover > span:first-child,
.project-page .project-live-link:focus-visible > span:first-child,
.project-page .project-live-link:active > span:first-child {
  text-decoration-color: currentColor;
}

.project-page .project-live-link:hover .project-live-arrow::before,
.project-page .project-live-link:focus-visible .project-live-arrow::before,
.project-page .project-live-link:active .project-live-arrow::before {
  transform: translate(115%, -115%);
}

.project-page .project-live-link:hover .project-live-arrow::after,
.project-page .project-live-link:focus-visible .project-live-arrow::after,
.project-page .project-live-link:active .project-live-arrow::after {
  transform: translate(0, 0);
}

.project-page .project-image-pair {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.project-case-content {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: clamp(42px, 5vw, 72px);
}

.project-case-content .project-image-pair {
  grid-column: auto;
  grid-row: auto;
}

.project-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-case-grid article,
.project-outcome-grid article,
.project-scope-block,
.project-decisions-block {
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.project-case-grid span,
.project-outcome-grid span,
.project-decisions-block span {
  display: block;
  margin-bottom: 20px;
  color: #6c6c6c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-case-grid p,
.project-outcome-grid p,
.project-decisions-block p {
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.48;
}

.project-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-outcome-grid strong {
  display: block;
  margin: 0 0 18px;
  color: #151515;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.project-scope-block h2,
.project-decisions-block h2 {
  margin: 0 0 28px;
  color: #151515;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.project-scope-block ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.project-scope-block li {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #202020;
  font-size: 15px;
  font-weight: 600;
}

.project-decisions-block > div {
  display: grid;
  gap: 1px;
}

.project-decisions-block article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}

.project-decisions-block article:last-child {
  padding-bottom: 0;
}

.project-decisions-block span {
  margin: 0;
  color: var(--red);
}

.project-page .project-image-pair img {
  width: 100%;
  aspect-ratio: 1.19;
  object-fit: cover;
  border-radius: 8px;
}

.project-page .project-image-pair.website-screens img {
  aspect-ratio: 1.6;
}

.project-switcher {
  width: min(1368px, calc(100vw - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-switcher a {
  min-height: 128px;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #151515;
  transition: background 180ms ease;
}

.project-switcher a + a {
  align-items: flex-end;
  border-left: 1px solid var(--line);
  text-align: right;
}

.project-switcher a:hover,
.project-switcher a:focus-visible {
  background: rgba(0, 0, 0, 0.04);
}

.project-switcher span {
  color: #6c6c6c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-switcher strong {
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.project-page .related-work {
  width: min(1368px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(108px, 9vw, 136px) 0 clamp(112px, 9vw, 142px);
  background: transparent;
  border-top: 1px solid var(--line);
}

.project-page .related-work .display-title {
  margin: 0 0 64px;
  color: #333;
  font-size: clamp(58px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.125;
  text-align: center;
}

.project-page .related-work .page-work-list {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-page .related-project-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 8px;
}

.project-page .related-project-card .project-card-meta {
  margin-top: 18px;
  font-size: 15px;
}

.project-page .related-project-card .project-card-meta strong {
  font-size: 20px;
  font-weight: 500;
}

.legal-body {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
}

.legal-overview {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-overview.section-pad {
  padding-top: clamp(44px, 4vw, 64px);
  padding-bottom: clamp(36px, 3vw, 48px);
}

.legal-body.section-pad {
  padding-top: clamp(24px, 2.5vw, 36px);
}

.legal-effective-date {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
}

.legal-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-topics a {
  padding: 10px 14px;
  color: #333;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.legal-topics a:hover {
  border-color: #b6b6b6;
}

.legal-body article {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
}

.legal-body p {
  margin: 0 0 18px;
  color: #555;
  font-size: 19px;
  line-height: 1.55;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body ul {
  margin: 18px 0 0;
  padding-left: 24px;
  color: #555;
  font-size: 19px;
  line-height: 1.55;
}

.legal-body li + li {
  margin-top: 10px;
}

.legal-body a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.project-detail {
  padding-top: 56px;
}

.project-main-image,
.article-hero-image {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 8px;
}

.project-main-image {
  aspect-ratio: 1.72;
}

.project-meta-grid {
  margin: 36px 0 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.project-meta-grid article:last-child {
  border-right: 0;
}

.project-meta-grid span {
  display: block;
  margin-bottom: 18px;
  color: #777;
}

.project-meta-grid strong {
  font-size: 22px;
  font-weight: 500;
}

.project-story {
  max-width: 950px;
  margin: 0 auto 96px;
}

.project-story h2 {
  margin: 0 0 34px;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
}

.project-story p {
  margin: 0 0 24px;
  color: #333;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
}

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

.project-image-pair img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 8px;
}

.related-work {
  padding-top: 0;
}

.related-work .display-title {
  margin-bottom: 54px;
}

.article-detail {
  padding-top: 56px;
}

.article-hero-image {
  aspect-ratio: 1.55;
}

.article-body {
  max-width: 900px;
  margin: 84px auto 0;
}

.article-body article {
  margin-bottom: 72px;
}

.article-body h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
}

.article-body p {
  margin: 0 0 22px;
  color: #333;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.48;
}

.compact-heading {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .about {
    padding-top: 82px;
  }

  .hero-title {
    left: 34vw;
    right: 24px;
    width: auto;
  }

  .intro-grid,
  .about-grid,
  .section-split,
  .services-grid,
  .faq,
  .inner-page .page-hero,
  .page-intro-split,
  .featured-card,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-row: auto;
    max-width: none;
  }

  .footer-main nav:first-of-type,
  .footer-main nav:nth-of-type(2) {
    grid-column: auto;
  }

  .newsletter {
    grid-column: auto;
    width: 100%;
  }

  .intro-grid {
    min-height: 360px;
    align-items: end;
    padding-bottom: 58px;
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .section-split {
    min-height: 240px;
  }

  .work .section-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work .display-title {
    padding-left: 0;
  }

  .services {
    width: min(760px, calc(100% - 48px));
    padding-top: 96px;
  }

  .services > .display-title {
    font-size: clamp(50px, 8vw, 62px);
  }

  .services-grid {
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services .guidance-card {
    width: min(400px, 100%);
  }

  .what-we-do,
  .services .large-copy {
    max-width: 720px;
  }

  .what-we-do {
    display: block;
  }

  .services .large-copy {
    text-indent: 0;
  }

  .services .large-copy br {
    display: none;
  }

  .services .tag-cloud {
    justify-content: flex-start;
  }

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

  .home-deliverables {
    width: min(760px, calc(100% - 48px));
  }

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

  .faq {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .insights.section-pad {
    width: min(760px, calc(100% - 48px));
  }

  .trust-section.section-pad {
    width: min(760px, calc(100% - 48px));
  }

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

  .process {
    width: min(760px, calc(100% - 48px));
    padding-top: 96px;
  }

  .process-lead {
    margin-top: 54px;
    margin-bottom: 80px;
    font-size: clamp(34px, 5.6vw, 44px);
    text-indent: 0;
  }

  .process-lead br {
    display: none;
  }

  .metric-band,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-stack article,
  .positions-list article {
    grid-template-columns: 1fr;
  }

  .project-meta-grid,
  .project-image-pair {
    grid-template-columns: 1fr 1fr;
  }

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

}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .floating-nav {
    top: 14px;
    left: 14px;
    right: auto;
    width: min(362px, calc(100vw - 28px));
    height: 56px;
    transform: none;
  }

  .menu-panel {
    top: 14px;
    left: 14px;
    right: auto;
    width: min(362px, calc(100vw - 28px));
    transform: translateY(-10px) scale(0.98);
  }

  .menu-panel.open {
    transform: translateY(0) scale(1);
  }

  .menu-panel-body {
    grid-template-columns: 1fr 1fr;
    gap: 26px 34px;
  }

  .menu-feature {
    grid-column: 1 / -1;
  }

  .menu-feature,
  .menu-feature img {
    height: 156px;
    min-height: 156px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    top: 118px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .hero-copy p {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .pill-button {
    max-width: 100%;
    flex: 0 1 auto;
    justify-content: flex-start;
    min-height: 50px;
    padding-right: 18px;
  }

  .hero-actions .icon-circle {
    width: 38px;
    height: 38px;
  }

  .hero-title {
    right: 16px;
    bottom: 28px;
    left: 16px;
    width: auto;
    text-align: center;
  }

  .hero-title h1 {
    font-size: clamp(58px, 19vw, 78px);
    line-height: 0.84;
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: nowrap;
  }

  .hero-title p {
    width: 100%;
    max-width: min(340px, calc(100vw - 36px));
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: break-word;
  }

  .intro-statement,
  .large-copy {
    font-size: 34px;
  }

  .process {
    width: calc(100% - 36px);
    padding-top: 76px;
  }

  .process .display-title {
    font-size: clamp(50px, 14vw, 62px);
  }

  .process-lead {
    font-size: 34px;
    line-height: 1.2;
  }

  .about {
    padding-top: 68px;
  }

  .intro-grid {
    min-height: 320px;
    padding-bottom: 44px;
  }

  .about-grid {
    padding-top: 42px;
  }

  .inner-page .page-hero {
    width: 100%;
    max-width: 100vw;
    min-height: 620px;
    padding: 120px 18px 42px;
    gap: 34px;
    overflow: hidden;
  }

  .inner-page .page-hero > * {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .inner-page .page-hero > .pill-button {
    width: fit-content;
  }

  .projects-page .projects-hero {
    min-height: 670px;
    padding-bottom: 50px;
  }

  .page-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: 42px;
    white-space: normal;
  }

  .projects-page .projects-hero h1 {
    font-size: clamp(52px, 14vw, 60px);
  }

  .page-hero > p {
    max-width: calc(100vw - 36px);
    font-size: 17px;
    white-space: normal;
  }

  .projects-hero-side {
    gap: 28px;
  }

  .projects-hero-side > p {
    font-size: 18px;
  }

  .project-start-card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .project-start-card img {
    width: 64px;
    height: 78px;
  }

  .page-intro-split,
  .metric-band,
  .team-grid,
  .project-meta-grid,
  .project-image-pair {
    grid-template-columns: 1fr;
  }

  .stacked-copy article {
    grid-template-columns: 1fr;
  }

  .award-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .award-list b {
    justify-self: start;
  }

  .display-title {
    font-size: clamp(52px, 16vw, 74px);
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .work-list {
    margin-left: 0;
    margin-right: 0;
  }

  .work-row {
    min-height: 132px;
    padding: 22px 0;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .work-row strong {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: start;
    font-size: clamp(46px, 15vw, 72px);
  }

  .work-row span:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .work-row span:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .work-list.no-dates .work-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-list.no-dates .work-row span:first-child {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .work-row-copy {
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
  }

  .work-row-copy small {
    max-width: none;
    font-size: 15px;
  }

  .work-list.no-dates .work-preview {
    display: none;
  }

  .work-more {
    min-height: 74px;
    padding: 0;
    justify-content: flex-start;
  }

  .projects-page .project-index-list .work-row {
    min-height: 146px;
    grid-template-columns: 1fr auto;
  }

  .projects-page .project-index-list .work-row strong {
    font-size: clamp(42px, 13vw, 56px);
    overflow-wrap: anywhere;
  }

  .guidance-card {
    padding: 30px;
  }

  .services {
    width: calc(100% - 36px);
    padding-top: 76px;
  }

  .services-grid {
    margin-top: 42px;
    gap: 34px;
  }

  .services .guidance-card {
    min-height: auto;
    padding: 32px;
  }

  .services .guidance-card h3 {
    font-size: 32px;
  }

  .services .large-copy {
    font-size: 30px;
    line-height: 1.22;
  }

  .tag-cloud,
  .services .tag-cloud {
    justify-content: flex-start;
  }

  .tag-cloud span,
  .services .tag-cloud span {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .wide-image {
    height: 360px;
  }

  .home-deliverables {
    width: calc(100% - 36px);
    padding-top: 76px;
  }

  .home-deliverables .section-split {
    min-height: 0;
    gap: 28px;
    margin-bottom: 38px;
  }

  .home-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .home-deliverables-grid article {
    min-height: 0;
    grid-template-rows: auto;
  }

  .home-deliverables-grid h3 {
    margin-top: 58px;
  }

  .home-deliverables-grid p {
    min-height: 0;
  }

  .trust-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .faq {
    width: calc(100% - 36px);
    padding-top: 82px;
  }

  .faq .guidance-card h3 {
    font-size: 32px;
  }

  .insights.section-pad {
    width: calc(100% - 36px);
  }

  .insights .center-heading {
    margin-bottom: 44px;
  }

  .insights .center-heading p {
    font-size: 17px;
  }

  .trust-section.section-pad {
    width: calc(100% - 36px);
  }

  .trust-grid {
    margin-top: 0;
  }

  .trust-card {
    min-height: 0;
    grid-template-rows: auto;
  }

  .trust-card h3 {
    margin-top: 58px;
  }

  .trust-card p {
    min-height: 0;
  }

  .featured-card h2,
  .project-story h2 {
    font-size: 42px;
  }

  .project-meta-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-meta-grid article:last-child {
    border-bottom: 0;
  }

  .footer-main {
    padding-top: 52px;
  }

  .footer-brand h2 {
    margin-bottom: 34px;
  }

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

  .footer-bottom p,
  .footer-bottom a,
  .footer-legal-links {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .contact-page .contact-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 108px;
  }

  .contact-page .contact-hero-title,
  .contact-intro,
  .contact-page .contact-form {
    grid-column: 1;
  }

  .contact-intro {
    max-width: 560px;
    margin-left: 0;
  }

  .contact-socials {
    position: static;
    display: flex;
    margin-top: -20px;
  }

  .contact-page .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .contact-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }

  .journal-page .journal-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journal-page .journal-hero > p {
    max-width: 620px;
  }

  .journal-featured-card,
  .journal-featured-card img {
    min-height: 520px;
    height: 520px;
  }

  .journal-page .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .journal-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .journal-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }

  .service-page .services-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .services-hero-copy,
  .services-hero-stats {
    max-width: 640px;
  }

  .services-project-card {
    order: 2;
    transform: none;
  }

  .services-title-block {
    order: 1;
    transform: none;
  }

  .services-showcase {
    width: 100%;
    padding-bottom: 48px;
  }

  .service-card:not(:last-child) {
    margin-bottom: 32px;
  }

  .service-card {
    top: 118px;
    min-height: 720px;
  }

  .service-card h2 {
    max-width: calc(100% - 120px);
    font-size: clamp(54px, 8vw, 78px);
  }

  .service-card img {
    width: 260px;
    height: 300px;
  }

  .service-copy,
  .service-card-details {
    max-width: calc(100% - 360px);
  }

  .service-card-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-process,
  .service-deliverables,
  .service-faq {
    width: calc(100% - 60px);
  }

  .service-process-head,
  .service-process-list,
  .service-deliverables-head {
    grid-template-columns: 1fr;
  }

  .service-process-list,
  .service-deliverables-grid {
    gap: 42px;
  }

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

  .service-process-list span,
  .service-deliverables-grid span {
    margin-bottom: 34px;
  }

  .service-page .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .service-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .service-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-hero {
    width: 100vw;
    max-width: 100vw;
    padding: 148px 16px 92px;
    gap: 0;
    overflow: hidden;
  }

  .contact-page .contact-hero > * {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .contact-page .contact-hero h1 {
    max-width: none;
    font-size: 42px;
    line-height: 1;
  }

  .contact-page .contact-socials {
    width: auto;
    max-width: none;
    margin: 58px 0 44px;
    gap: 12px;
  }

  .contact-page .contact-socials a {
    width: 48px;
    height: 48px;
  }

  .contact-intro {
    max-width: calc(100vw - 32px);
  }

  .contact-intro > p {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-bottom: 0;
    font-size: 21px;
    line-height: 1.28;
    overflow-wrap: break-word;
  }

  .contact-person {
    gap: 16px;
  }

  .contact-person img {
    width: 60px;
    height: 60px;
  }

  .contact-person strong {
    font-size: 20px;
  }

  .contact-methods {
    margin-top: 24px;
  }

  .contact-methods a {
    font-size: 16px;
  }

  .contact-page .contact-form {
    margin-top: 48px;
    gap: 16px;
  }

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

  .contact-page .contact-form input,
  .contact-page .contact-form select {
    height: 66px;
    padding: 0 24px;
  }

  .contact-page .contact-form textarea {
    min-height: 146px;
    padding: 24px;
  }

  .contact-page .contact-form button {
    height: 74px;
    font-size: 21px;
  }

  .contact-page .contact-prefooter {
    min-height: 560px;
    padding: 64px 16px 88px;
  }

  .contact-page .contact-prefooter .display-title {
    max-width: 100%;
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
  }

  .contact-page .footer {
    min-height: 1120px;
    padding: 80px 20px 28px;
  }

  .contact-page .footer-top {
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-page .footer-top p {
    font-size: 14px;
    white-space: nowrap;
  }

  .contact-page .footer-top p:last-child {
    justify-self: end;
    text-align: right;
  }

  .contact-page .footer-main {
    padding: 208px 0 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .contact-page .footer nav p {
    margin-bottom: 18px;
  }

  .contact-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-page .footer-credit {
    justify-self: start;
  }

  .journal-page .floating-nav {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
    height: 68px;
    padding: 0 22px;
    transform: none;
  }

  .journal-page .brand-mark {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .journal-page .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .journal-page .brand-mark::after {
    content: "Aluvik";
    color: #101010;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
  }

  .journal-page .menu-panel {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
  }

  .journal-page .journal-hero {
    width: 100%;
    max-width: none;
    min-height: 401px;
    padding: 166px 16px 58px;
    gap: 30px;
    overflow: visible;
  }

  .journal-page .journal-hero > * {
    width: 100%;
    max-width: none;
  }

  .journal-page .journal-hero h1 {
    max-width: none;
    font-size: 38px;
    line-height: 1.05;
  }

  .journal-page .journal-hero > p {
    max-width: none;
    font-size: 21px;
    line-height: 1.28;
  }

  .journal-featured {
    padding: 0 16px 48px;
  }

  .journal-featured-card,
  .journal-featured-card img {
    min-height: 420px;
    height: 420px;
  }

  .journal-featured-card img {
    object-position: 50% 40%;
  }

  .journal-badge {
    top: 30px;
    left: 32px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 18px;
  }

  .journal-featured-copy {
    left: 24px;
    bottom: 28px;
    width: calc(100% - 48px);
  }

  .journal-featured-copy p {
    margin-bottom: 10px;
    gap: 8px 16px;
    font-size: 14px;
  }

  .journal-featured-copy h2 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.32;
  }

  .journal-featured-copy strong {
    font-size: 17px;
  }

  .journal-list {
    padding: 0 16px 72px;
  }

  .journal-list-head {
    margin-bottom: 28px;
    display: grid;
    gap: 18px;
  }

  .journal-filters {
    justify-content: flex-start;
  }

  .journal-page .article-grid {
    gap: 48px;
  }

  .journal-page .article-card {
    padding-bottom: 18px;
  }

  .journal-page .article-card img {
    aspect-ratio: 1.45;
  }

  .journal-page .article-title {
    max-width: calc(100% - 48px);
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.35;
  }

  .journal-page .article-card-meta {
    margin-top: 18px;
  }

  .journal-page .article-excerpt {
    max-width: calc(100% - 48px);
  }

  .journal-page .article-card small {
    margin-top: 16px;
    font-size: 14px;
  }

  .journal-page .article-card b {
    right: 26px;
    bottom: 16px;
    font-size: 0;
  }

  .journal-page .article-card b::before,
  .journal-page .article-card b::after {
    font-size: 38px;
  }

  .journal-page .journal-prefooter {
    min-height: 560px;
    padding: 64px 16px 88px;
  }

  .journal-page .journal-prefooter .display-title {
    max-width: calc(100vw - 32px);
    font-size: 48px;
    line-height: 1.12;
  }

  .journal-page .journal-prefooter .pill-button {
    margin-top: 36px;
  }

  .journal-page .footer {
    min-height: 1120px;
    padding: 80px 20px 28px;
  }

  .journal-page .footer-top {
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .journal-page .footer-top p {
    font-size: 14px;
    white-space: nowrap;
  }

  .journal-page .footer-top p:last-child {
    justify-self: end;
    text-align: right;
  }

  .journal-page .footer-main {
    padding: 208px 0 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .journal-page .footer nav p {
    margin-bottom: 18px;
  }

  .journal-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .journal-page .footer-credit {
    justify-self: start;
  }

  .service-page .floating-nav {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
    height: 68px;
    padding: 0 22px;
    transform: none;
  }

  .service-page .brand-mark {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .service-page .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .service-page .brand-mark::after {
    content: "Aluvik";
    color: #101010;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
  }

  .service-page .menu-panel {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
  }

  .service-page .services-hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 467px;
    padding: 164px 16px 48px;
    gap: 60px;
    overflow: hidden;
  }

  .service-page .services-hero > * {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .services-title-block .page-kicker {
    margin-bottom: 30px;
    color: #222;
    font-size: 14px;
  }

  .service-page .services-hero h1 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 40px;
    line-height: 1.02;
    white-space: normal;
  }

  .services-hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .services-hero-stats {
    max-width: none;
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .services-hero-stats article {
    min-height: 78px;
    padding: 16px;
  }

  .services-project-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .services-project-card strong {
    font-size: 21px;
  }

  .services-showcase {
    padding: 0 18px 48px;
  }

  .service-card:not(:last-child) {
    margin-bottom: 26px;
  }

  .service-card {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 28px 20px 20px;
    border-radius: 8px;
    transform: none !important;
    transition: none;
  }

  .service-card .service-index {
    position: static;
    display: block;
    margin-bottom: 28px;
    font-size: 45px;
    line-height: 1;
  }

  .service-category {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .service-card h2 {
    max-width: none;
    margin-bottom: 28px;
    font-size: 37px;
    line-height: 1.03;
  }

  .service-copy {
    position: static;
    max-width: none;
    font-size: 17px;
    line-height: 1.36;
  }

  .service-card-details {
    position: static;
    max-width: none;
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-details p {
    font-size: 14px;
  }

  .service-card img,
  .service-card:nth-child(2) img,
  .service-card:nth-child(3) img,
  .service-card:nth-child(4) img,
  .service-card:nth-child(5) img {
    position: static;
    width: 100%;
    height: 230px;
    margin-top: 28px;
    border-radius: 8px;
    transform: none;
  }

  .service-card:nth-child(1) img {
    object-position: 50% 35%;
  }

  .service-card:nth-child(2) img,
  .service-card:nth-child(4) img,
  .service-card:nth-child(5) img {
    object-position: 50% 50%;
  }

  .service-process,
  .service-deliverables,
  .service-faq {
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-process,
  .service-deliverables {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .service-process-head,
  .service-process-list,
  .service-deliverables-head,
  .service-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .service-process-head h2,
  .service-deliverables-head h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .service-process-list,
  .service-deliverables-grid {
    margin-top: 48px;
    gap: 34px;
  }

  .service-process-list article,
  .service-deliverables-grid article {
    padding-top: 22px;
  }

  .service-process-list span,
  .service-deliverables-grid span {
    margin-bottom: 30px;
  }

  .service-process-list h3,
  .service-deliverables-grid strong {
    font-size: 20px;
  }

  .service-process-list p,
  .service-deliverables-grid p {
    max-width: none;
    font-size: 16px;
  }

  .service-faq {
    padding-top: 72px;
    padding-bottom: 82px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-page .services-prefooter {
    min-height: 560px;
    padding: 64px 16px 88px;
  }

  .service-page .services-prefooter .display-title {
    max-width: 100%;
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
  }

  .service-page .footer {
    min-height: 1120px;
    padding: 80px 20px 28px;
  }

  .service-page .footer-top {
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .service-page .footer-top p {
    font-size: 14px;
    white-space: nowrap;
  }

  .service-page .footer-top p:last-child {
    justify-self: end;
    text-align: right;
  }

  .service-page .footer-main {
    padding: 208px 0 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .service-page .footer nav p {
    margin-bottom: 18px;
  }

  .service-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-page .footer-credit {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .studio-page .floating-nav {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
    height: 68px;
    padding: 0 22px;
    transform: none;
  }

  .studio-page .brand-mark {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .studio-page .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .studio-page .brand-mark::after {
    content: "Aluvik";
    color: #101010;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
  }

  .studio-page .menu-panel {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
  }

  .studio-page .prefooter {
    min-height: 620px;
    padding: 64px 16px 80px;
  }

  .studio-page .prefooter .note-card {
    width: calc(100vw - 32px);
    margin-bottom: 64px;
    padding: 32px;
  }

  .studio-page .footer {
    min-height: 1120px;
    padding: 80px 20px 28px;
  }

  .studio-page .footer-top {
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .studio-page .footer-top p {
    font-size: 14px;
    white-space: nowrap;
  }

  .studio-page .footer-top p:last-child {
    justify-self: end;
    text-align: right;
  }

  .studio-page .footer-main {
    padding: 208px 0 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .studio-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .studio-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }

  .studio-page .footer nav p {
    margin-bottom: 18px;
  }

  .studio-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .studio-page .footer-credit {
    justify-self: start;
  }
}

@media (max-width: 1024px) {
  .projects-page .projects-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 150px 30px 44px;
    gap: 32px;
  }

  .projects-hero-title {
    padding-bottom: 0;
  }

  .projects-page .projects-hero h1 {
    max-width: 640px;
    font-size: clamp(56px, 10vw, 86px);
  }

  .projects-hero-copy {
    max-width: 560px;
  }

  .projects-hero-stats {
    max-width: 460px;
  }

  .projects-hero-side {
    padding-bottom: 0;
  }

  .projects-index {
    min-height: 0;
    padding: 0 30px 70px;
  }

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

  .project-card.is-featured {
    grid-column: auto;
  }

  .projects-method {
    width: calc(100% - 60px);
  }

  .projects-method-head,
  .projects-method-list {
    grid-template-columns: 1fr;
  }

  .projects-method-list {
    gap: 42px;
  }

  .projects-method-list span {
    margin-bottom: 34px;
  }

  .projects-page .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .projects-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .projects-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .projects-page .floating-nav {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
    height: 68px;
    padding: 0 22px;
    transform: none;
  }

  .projects-page .brand-mark {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .projects-page .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .projects-page .brand-mark::after {
    content: "Aluvik";
    color: #101010;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
  }

  .projects-page .menu-panel {
    top: 24px;
    left: 30px;
    width: calc(100vw - 60px);
  }

  .projects-page .projects-hero {
    width: 100vw;
    max-width: 100vw;
    padding: 126px 16px 42px;
    gap: 24px;
    overflow: hidden;
  }

  .projects-page .projects-hero > * {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .projects-page .projects-hero .page-kicker {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .projects-page .projects-hero h1 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 42px;
    line-height: 1.01;
    white-space: normal;
  }

  .projects-hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.3;
    overflow-wrap: break-word;
  }

  .projects-hero-stats {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .projects-hero-stats article {
    min-height: 78px;
    padding: 16px;
  }

  .project-start-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .project-start-card img {
    width: 58px;
    height: 58px;
  }

  .project-start-card span {
    font-size: 12px;
  }

  .project-start-card .pill-button {
    max-width: 100%;
    font-size: 18px;
  }

  .projects-index {
    min-height: 0;
    padding: 0 16px 62px;
  }

  .project-filter-bar {
    margin-bottom: 28px;
    gap: 8px;
  }

  .project-filter {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }

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

  .project-card.is-featured {
    grid-column: auto;
  }

  .project-card-media img {
    aspect-ratio: 1.16;
  }

  .project-card-meta {
    margin-top: 18px;
    gap: 10px 14px;
    font-size: 14px;
  }

  .project-card-meta strong,
  .project-card-meta em {
    justify-self: start;
    grid-column: 1 / -1;
  }

  .project-card-meta p {
    font-size: 14px;
  }

  .project-card::after {
    display: none;
  }

  .projects-method {
    width: auto;
    padding: 72px 16px 82px;
  }

  .projects-method-head h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .projects-method-list {
    margin-top: 48px;
    gap: 34px;
  }

  .projects-method-list article {
    padding-top: 22px;
  }

  .projects-method-list span {
    margin-bottom: 30px;
  }

  .projects-method-list h3 {
    font-size: 20px;
  }

  .projects-method-list p {
    max-width: none;
    font-size: 16px;
  }

  .projects-page .prefooter {
    min-height: 560px;
    padding: 64px 16px 84px;
  }

  .projects-page .prefooter .display-title {
    margin: 0;
    font-size: clamp(44px, 14vw, 62px);
    line-height: 1.12;
  }

  .projects-page .prefooter .pill-button {
    margin: 0;
  }

  .projects-page .footer {
    min-height: 1120px;
    padding: 80px 20px 28px;
  }

  .projects-page .footer-top {
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .projects-page .footer-top p {
    font-size: 14px;
    white-space: nowrap;
  }

  .projects-page .footer-top p:last-child {
    justify-self: end;
    text-align: right;
  }

  .projects-page .footer-main {
    padding: 208px 0 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .projects-page .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .projects-page .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }

  .projects-page .footer nav p {
    margin-bottom: 18px;
  }

  .projects-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .projects-page .footer-credit {
    justify-self: start;
  }
}

body.contact-page .footer,
body.journal-page .footer,
body.service-page .footer,
body.studio-page .footer,
body.projects-page .footer {
  min-height: 0;
  padding: 80px 20px 0;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}

body.contact-page .footer-top,
body.journal-page .footer-top,
body.service-page .footer-top,
body.studio-page .footer-top,
body.projects-page .footer-top {
  padding-bottom: 24px;
  display: flex;
  grid-template-columns: none;
  gap: 0;
  justify-content: space-between;
}

body.contact-page .footer-top p,
body.journal-page .footer-top p,
body.service-page .footer-top p,
body.studio-page .footer-top p,
body.projects-page .footer-top p {
  font-size: 14px;
  white-space: normal;
}

body.contact-page .footer-top p:last-child,
body.journal-page .footer-top p:last-child,
body.service-page .footer-top p:last-child,
body.studio-page .footer-top p:last-child,
body.projects-page .footer-top p:last-child {
  justify-self: auto;
  text-align: left;
}

body.contact-page .footer-main,
body.journal-page .footer-main,
body.service-page .footer-main,
body.studio-page .footer-main,
body.projects-page .footer-main {
  flex: initial;
  padding: 50px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 912px) 24px 252px 252px;
  column-gap: 0;
  row-gap: 60px;
  align-items: start;
}

body.contact-page .footer-brand,
body.journal-page .footer-brand,
body.service-page .footer-brand,
body.studio-page .footer-brand,
body.projects-page .footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
  max-width: none;
  display: block;
}

body.contact-page .newsletter,
body.journal-page .newsletter,
body.service-page .newsletter,
body.studio-page .newsletter,
body.projects-page .newsletter {
  grid-column: 3 / 5;
  width: min(500px, 100%);
  display: flex;
}

body.contact-page .footer-main nav:first-of-type,
body.journal-page .footer-main nav:first-of-type,
body.service-page .footer-main nav:first-of-type,
body.studio-page .footer-main nav:first-of-type,
body.projects-page .footer-main nav:first-of-type {
  grid-column: 3;
}

body.contact-page .footer-main nav:nth-of-type(2),
body.journal-page .footer-main nav:nth-of-type(2),
body.service-page .footer-main nav:nth-of-type(2),
body.studio-page .footer-main nav:nth-of-type(2),
body.projects-page .footer-main nav:nth-of-type(2) {
  grid-column: 4;
}

body.contact-page .footer nav,
body.journal-page .footer nav,
body.service-page .footer nav,
body.studio-page .footer nav,
body.projects-page .footer nav {
  gap: 8px;
}

body.contact-page .footer nav p,
body.journal-page .footer nav p,
body.service-page .footer nav p,
body.studio-page .footer nav p,
body.projects-page .footer nav p {
  margin-bottom: 12px;
}

body.contact-page .footer-bottom,
body.journal-page .footer-bottom,
body.service-page .footer-bottom,
body.studio-page .footer-bottom,
body.projects-page .footer-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.contact-page .footer-credit,
body.journal-page .footer-credit,
body.service-page .footer-credit,
body.studio-page .footer-credit,
body.projects-page .footer-credit {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1024px) {
  body.contact-page .footer-main,
  body.journal-page .footer-main,
  body.service-page .footer-main,
  body.studio-page .footer-main,
  body.projects-page .footer-main {
    grid-template-columns: 1fr;
  }

  body.contact-page .footer-brand,
  body.journal-page .footer-brand,
  body.service-page .footer-brand,
  body.studio-page .footer-brand,
  body.projects-page .footer-brand {
    grid-row: auto;
    max-width: none;
  }

  body.contact-page .footer-main nav:first-of-type,
  body.contact-page .footer-main nav:nth-of-type(2),
  body.journal-page .footer-main nav:first-of-type,
  body.journal-page .footer-main nav:nth-of-type(2),
  body.service-page .footer-main nav:first-of-type,
  body.service-page .footer-main nav:nth-of-type(2),
  body.studio-page .footer-main nav:first-of-type,
  body.studio-page .footer-main nav:nth-of-type(2),
  body.projects-page .footer-main nav:first-of-type,
  body.projects-page .footer-main nav:nth-of-type(2) {
    grid-column: auto;
  }

  body.contact-page .newsletter,
  body.journal-page .newsletter,
  body.service-page .newsletter,
  body.studio-page .newsletter,
  body.projects-page .newsletter {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  body.contact-page .footer,
  body.journal-page .footer,
  body.service-page .footer,
  body.studio-page .footer,
  body.projects-page .footer {
    min-height: 0;
    padding: 80px 20px 0;
  }

  body.contact-page .footer-top,
  body.journal-page .footer-top,
  body.service-page .footer-top,
  body.studio-page .footer-top,
  body.projects-page .footer-top {
    padding-bottom: 24px;
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  body.contact-page .footer-main,
  body.journal-page .footer-main,
  body.service-page .footer-main,
  body.studio-page .footer-main,
  body.projects-page .footer-main {
    padding: 52px 0 50px;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 60px;
  }

  body.contact-page .footer-brand h2,
  body.journal-page .footer-brand h2,
  body.service-page .footer-brand h2,
  body.studio-page .footer-brand h2,
  body.projects-page .footer-brand h2 {
    margin-bottom: 34px;
  }

  body.contact-page .footer-bottom,
  body.journal-page .footer-bottom,
  body.service-page .footer-bottom,
  body.studio-page .footer-bottom,
  body.projects-page .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.contact-page .footer-bottom p,
  body.contact-page .footer-bottom a,
  body.journal-page .footer-bottom p,
  body.journal-page .footer-bottom a,
  body.service-page .footer-bottom p,
  body.service-page .footer-bottom a,
  body.studio-page .footer-bottom p,
  body.studio-page .footer-bottom a,
  body.projects-page .footer-bottom p,
  body.projects-page .footer-bottom a {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

.article-page main {
  display: block;
}

.article-page .article-detail {
  padding-top: clamp(24px, 2.4vw, 36px);
}

.article-page .page-hero {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 40vh, 400px);
  margin: 0;
  padding: clamp(144px, 17vh, 176px) max(36px, calc((100vw - 816px) / 2)) 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f2f2f2;
  border-bottom: 0;
}

.article-page .article-back-link {
  position: absolute;
  top: clamp(92px, 11vh, 112px);
  left: max(36px, calc((100vw - 816px) / 2));
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: #111;
  transition: background 180ms ease, transform 180ms ease;
}

.article-page .article-back-link::before,
.article-page .article-back-link::after {
  content: "\2190";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-page .article-back-link::after {
  transform: translateX(115%);
}

.article-page .article-back-link:hover,
.article-page .article-back-link:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.article-page .article-back-link:hover::before,
.article-page .article-back-link:focus-visible::before {
  transform: translateX(-115%);
}

.article-page .article-back-link:hover::after,
.article-page .article-back-link:focus-visible::after {
  transform: translateX(0);
}

.article-page .page-kicker {
  margin: 0 0 30px;
  color: #303030;
  font-size: 15px;
  font-weight: 600;
}

.article-page .article-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.article-page .article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-page .article-meta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.article-page .page-hero h1 {
  max-width: 640px;
  color: #050505;
  font-size: clamp(44px, 3.25vw, 62px);
  line-height: 1.08;
}

.article-page .page-hero > p {
  display: none;
}

.article-page .article-body {
  width: min(calc(100% - 72px), 816px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0 18px;
}

.article-page .article-body article {
  margin-bottom: 30px;
}

.article-page .article-body article:last-child {
  margin-bottom: 0;
}

.article-page .article-body h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(29px, 1.85vw, 36px);
  font-weight: 400;
  line-height: 1.14;
}

.article-page .article-body p {
  margin: 0 0 22px;
  color: #1f2930;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.45;
}

.article-page .article-body p:last-child {
  margin-bottom: 0;
}

.article-page .article-body .article-intro {
  margin-bottom: 30px;
}

.article-page .page-insights {
  grid-column: 1 / -1;
  width: min(calc(100% - 72px), 1440px);
  margin: 0 auto;
  padding: 124px 0 126px;
  border-top: 1px solid var(--line);
}

.article-page .page-insights .center-heading {
  max-width: none;
  margin: 0 auto 64px;
  text-align: center;
}

.article-page .page-insights .display-title {
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(68px, 5.3vw, 84px);
  font-weight: 400;
  line-height: 1;
}

.article-page .page-insights .article-grid {
  gap: 20px;
}

.article-page .page-insights .article-card {
  padding-bottom: 18px;
}

.article-page .page-insights .article-card img {
  aspect-ratio: 1.45;
  border-radius: 8px;
}

.article-page .page-insights .article-title {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.34;
}

.article-page .page-insights .article-card small {
  margin-top: 18px;
  font-size: 14px;
}

.article-page .prefooter {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .article-page .page-hero {
    width: 100%;
    min-height: auto;
    padding: 112px 36px 56px;
    gap: 28px;
  }

  .article-page .article-back-link {
    top: 56px;
    left: 36px;
    bottom: auto;
  }

  .article-page .article-body {
    width: calc(100% - 36px);
  }

  .article-page .page-insights {
    width: calc(100% - 36px);
    padding: 104px 0 112px;
  }
}

@media (max-width: 720px) {
  .article-page .page-hero {
    max-width: none;
    padding: 96px 16px 58px;
    gap: 24px;
    overflow: visible;
  }

  .article-page .page-hero > * {
    max-width: none;
  }

  .article-page .article-back-link {
    width: 40px;
    height: 40px;
    top: 28px;
    left: 16px;
    bottom: auto;
  }

  .article-page .page-kicker {
    margin-bottom: 22px;
  }

  .article-page .article-meta {
    gap: 14px;
  }

  .article-page .page-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.06;
  }

  .article-page .article-body {
    width: calc(100% - 32px);
    padding-bottom: 18px;
  }

  .article-page .article-body article {
    margin-bottom: 34px;
  }

  .article-page .article-body p {
    font-size: 17px;
    line-height: 1.5;
  }

  .article-page .page-insights {
    width: calc(100% - 32px);
    padding: 76px 0 82px;
  }

  .article-page .page-insights .center-heading {
    margin-bottom: 42px;
  }

  .article-page .page-insights .display-title {
    font-size: clamp(48px, 14vw, 64px);
  }

  .article-page .page-insights .article-grid {
    gap: 48px;
  }
}

.studio-page .prefooter {
  min-height: 560px;
  padding-top: 72px;
  padding-bottom: 78px;
}

@media (max-width: 1024px) {
  .project-page .project-hero {
    min-height: 720px;
  }

  .project-back-link {
    left: 30px;
  }

  .project-page .project-detail {
    width: calc(100vw - 60px);
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    column-gap: 42px;
  }

  .project-hero-bottom {
    right: 30px;
    left: 30px;
  }

  .project-page .project-story {
    width: 100%;
    font-size: clamp(32px, 5vw, 40px);
  }

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

  .project-page .related-work {
    width: calc(100vw - 60px);
  }

  .project-switcher {
    width: calc(100vw - 60px);
  }

  .project-page .related-work .page-work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .project-page .project-hero {
    height: 100svh;
    min-height: 640px;
    padding: 96px 18px 28px;
  }

  .project-back-link {
    top: 88px;
    left: 18px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .project-hero-title {
    gap: 18px;
  }

  .project-page .project-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(36px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .project-hero-context {
    max-width: calc(100vw - 36px);
    gap: 8px;
  }

  .project-hero-context span {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .project-hero-bottom {
    right: 18px;
    bottom: 24px;
    left: 18px;
    font-size: 13px;
  }

  .project-page .project-detail {
    width: calc(100vw - 36px);
    padding-top: 76px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .project-page .project-story {
    width: 100%;
    margin-bottom: 72px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .project-page .project-meta-grid {
    grid-column: 1;
    grid-row: 2;
    position: static;
    margin-bottom: 0;
    gap: 26px;
  }

  .project-page .project-image-pair {
    grid-column: 1;
    grid-row: 3;
  }

  .project-case-content {
    grid-column: 1;
    grid-row: 3;
    gap: 36px;
  }

  .project-page .project-case-content .project-image-pair {
    grid-column: auto;
    grid-row: auto;
  }

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

  .project-case-grid article,
  .project-outcome-grid article,
  .project-scope-block,
  .project-decisions-block {
    padding: 22px;
  }

  .project-scope-block li {
    width: 100%;
    min-height: 40px;
  }

  .project-decisions-block article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-page .project-image-pair img {
    aspect-ratio: 1.05;
  }

  .project-switcher {
    width: calc(100vw - 36px);
    grid-template-columns: 1fr;
  }

  .project-switcher a {
    min-height: 104px;
    padding: 24px 0;
  }

  .project-switcher a + a {
    align-items: flex-start;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .project-page .related-work {
    width: calc(100vw - 36px);
    padding: 86px 0 92px;
  }

  .project-page .related-work .display-title {
    margin-bottom: 42px;
    font-size: clamp(48px, 14vw, 64px);
  }

  .project-page .related-work .page-work-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Studio final direction */

.studio-final-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 80px));
  padding: 150px var(--page-pad) 54px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.studio-final-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22, 31, 48, 0.18), rgba(22, 31, 48, 0.7)),
    linear-gradient(90deg, rgba(22, 31, 48, 0.72), rgba(22, 31, 48, 0.16) 68%);
}

.studio-final-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.studio-final-hero-copy {
  width: min(1368px, 100%);
  margin: 0 auto;
}

.studio-final-hero .page-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.studio-final-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 500;
  line-height: 0.86;
}

.studio-final-hero-copy > p:not(.page-kicker) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.4vw, 24px);
  font-weight: 600;
  line-height: 1.35;
}

.studio-final-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.studio-final-link {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.studio-final-link:hover,
.studio-final-link:focus-visible {
  text-decoration-color: currentColor;
}

.studio-final-manifesto {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(92px, 8vw, 132px) 0 clamp(80px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(36px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
}

.studio-final-manifesto .page-kicker,
.studio-final-copy .page-kicker,
.studio-final-method-head .page-kicker {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
}

.studio-final-manifesto h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.02;
}

.studio-final-manifesto > p:not(.page-kicker) {
  grid-column: 2;
  max-width: 720px;
  margin: -38px 0 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
}

.studio-final-split {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(92px, 8vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.studio-final-image {
  margin: 0;
}

.studio-final-image img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 8px;
}

.studio-final-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.studio-final-copy h2 {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 70px);
  font-weight: 400;
  line-height: 1.04;
}

.studio-final-list {
  margin-top: clamp(46px, 4.6vw, 68px);
  border-top: 1px solid var(--line);
}

.studio-final-list article {
  min-height: 106px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.studio-final-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.studio-final-list p {
  max-width: 590px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
}

.studio-final-method {
  padding: clamp(92px, 8vw, 126px) var(--page-pad);
  background: var(--bg-alt);
}

.studio-final-method-head,
.studio-final-method-grid {
  width: min(1368px, 100%);
  margin: 0 auto;
}

.studio-final-method-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
}

.studio-final-method-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 74px);
  font-weight: 400;
  line-height: 1.02;
}

.studio-final-method-grid {
  margin-top: clamp(64px, 6vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.studio-final-method-grid article {
  min-height: 230px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(30, 42, 64, 0.08);
  border-radius: 8px;
}

.studio-final-method-grid span {
  color: var(--ink);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.studio-final-method-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.5;
}

.studio-final-method-grid small {
  padding-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  border-top: 1px solid rgba(30, 42, 64, 0.1);
}

.studio-final-band {
  position: relative;
  min-height: clamp(560px, 58vw, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.studio-final-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 31, 48, 0.06), rgba(22, 31, 48, 0.66));
}

.studio-final-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.studio-final-band div {
  width: min(1368px, calc(100% - 64px));
  margin: 0 auto;
  padding-bottom: clamp(44px, 5vw, 76px);
}

.studio-final-band span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.studio-final-band p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

@media (max-width: 1024px) {
  .studio-final-hero {
    min-height: 720px;
    padding-top: 138px;
  }

  .studio-final-manifesto,
  .studio-final-split,
  .studio-final-method-head {
    grid-template-columns: 1fr;
  }

  .studio-final-manifesto > p:not(.page-kicker) {
    grid-column: auto;
    margin-top: 0;
  }

  .studio-final-image img {
    aspect-ratio: 1.35;
  }

  .studio-final-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .studio-final-hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 690px;
    padding: 132px 16px 42px;
    overflow: hidden;
  }

  .studio-final-hero h1 {
    font-size: clamp(56px, 18vw, 86px);
    max-width: 100%;
  }

  .studio-final-hero-copy > p:not(.page-kicker) {
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

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

  .studio-final-manifesto,
  .studio-final-split {
    width: calc(100% - 32px);
  }

  .studio-final-method {
    padding-right: 16px;
    padding-left: 16px;
  }

  .studio-final-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .studio-final-method-grid article {
    min-height: 220px;
    padding: 24px;
  }

  .studio-final-band {
    min-height: 620px;
  }

  .studio-final-band div {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  .studio-final-band p {
    font-size: clamp(32px, 10vw, 46px);
  }
}

/* Canonical footer layout, matching the homepage on every page. */

body[class] .footer {
  min-height: 0;
  padding: 80px 20px 0;
  display: block;
  background: var(--footer);
  color: var(--white);
}

body[class] .footer-top,
body[class] .footer-main,
body[class] .footer-bottom {
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

body[class] .footer-top {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body[class] .footer-top p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
  white-space: normal;
}

body[class] .footer-top p:last-child {
  justify-self: auto;
  text-align: left;
}

body[class] .footer-main {
  flex: initial;
  padding: 50px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 912px) 24px 252px 252px;
  column-gap: 0;
  row-gap: 60px;
  align-items: start;
}

body[class] .footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
  max-width: none;
  display: block;
}

body[class] .footer-brand h2 {
  margin: 0 0 60px;
  color: var(--bg);
  font-size: clamp(58px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.125;
}

body[class] .footer-brand a {
  color: var(--footer-muted);
  font-size: 32px;
  line-height: 1.35;
}

body[class] .footer nav,
body[class] .newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

body[class] .footer-main nav:first-of-type {
  grid-column: 3;
}

body[class] .footer-main nav:nth-of-type(2) {
  grid-column: 4;
}

body[class] .newsletter {
  grid-column: 3 / 5;
  width: min(500px, 100%);
}

body[class] .footer nav p,
body[class] .newsletter label {
  margin: 0 0 12px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

body[class] .footer nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

body[class] .newsletter p {
  max-width: 500px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.55;
}

body[class] .footer-bottom {
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

body[class] .footer-bottom p {
  margin: 0;
  grid-column: 3;
  justify-self: end;
  text-align: right;
}

body[class] .footer-bottom a {
  grid-column: auto;
  justify-self: start;
  text-align: left;
}

body[class] .footer-credit {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1024px) {
  body[class] .footer-main {
    grid-template-columns: 1fr;
  }

  body[class] .footer-brand {
    grid-row: auto;
    max-width: none;
  }

  body[class] .footer-main nav:first-of-type,
  body[class] .footer-main nav:nth-of-type(2) {
    grid-column: auto;
  }

  body[class] .newsletter {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  body[class] .footer {
    min-height: 0;
    padding: 80px 20px 0;
  }

  body[class] .footer-top {
    padding-bottom: 24px;
    display: flex;
    gap: 0;
  }

  body[class] .footer-main {
    padding: 52px 0 50px;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 60px;
  }

  body[class] .footer-brand h2 {
    margin-bottom: 34px;
  }

  body[class] .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[class] .footer-bottom p,
  body[class] .footer-bottom a {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

body[class] .brand-mark::after {
  color: var(--white);
}

.floating-nav {
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  will-change: transform, opacity;
}

.floating-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(-100% - 32px));
}

body.menu-open .floating-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .floating-nav.is-hidden {
    transform: translateY(calc(-100% - 28px));
  }

  body.menu-open .floating-nav {
    transform: none;
  }
}

/* Site-wide mobile polish. Keep this block last so it can normalize older page rules. */
@media (max-width: 720px) {
  :root {
    --page-pad: 16px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  main,
  section,
  article,
  aside,
  header,
  footer,
  nav,
  div {
    min-width: 0;
  }

  .floating-nav,
  .journal-page .floating-nav,
  .projects-page .floating-nav,
  .service-page .floating-nav,
  .studio-page .floating-nav {
    top: max(14px, env(safe-area-inset-top));
    right: auto;
    left: 14px;
    width: min(362px, calc(100% - 28px));
    height: 56px;
    padding: 0 18px;
    animation: none !important;
    opacity: 1 !important;
    transform: none;
    translate: 0 0 !important;
  }

  .floating-nav .brand-mark,
  .journal-page .brand-mark,
  .projects-page .brand-mark,
  .service-page .brand-mark,
  .studio-page .brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    gap: 0;
    place-items: center;
  }

  .floating-nav .brand-mark::after,
  .journal-page .brand-mark::after,
  .projects-page .brand-mark::after,
  .service-page .brand-mark::after,
  .studio-page .brand-mark::after {
    content: none !important;
  }

  .floating-nav .brand-mark img,
  .journal-page .brand-mark img,
  .projects-page .brand-mark img,
  .service-page .brand-mark img,
  .studio-page .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .floating-nav.is-hidden {
    transform: translateY(calc(-100% - 28px));
  }

  body.menu-open .floating-nav {
    transform: none;
  }

  .menu-panel,
  .journal-page .menu-panel,
  .projects-page .menu-panel,
  .service-page .menu-panel,
  .studio-page .menu-panel {
    top: max(14px, env(safe-area-inset-top));
    right: auto;
    left: 14px;
    width: min(362px, calc(100% - 28px));
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .menu-panel-body {
    gap: 22px 28px;
  }

  .menu-panel a {
    font-size: 17px;
    line-height: 1.25;
  }

  .pill-button {
    max-width: 100%;
    min-height: 50px;
    padding-right: 18px;
    white-space: normal;
  }

  .pill-button span:not(.icon-circle) {
    min-width: 0;
  }

  .icon-circle {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: 100svh;
    min-height: 680px;
  }

  .hero-copy {
    top: 108px;
  }

  .hero-title {
    right: 14px;
    bottom: 26px;
    left: 14px;
  }

  .hero-title h1 {
    font-size: clamp(60px, 19vw, 76px);
  }

  .section-pad {
    padding: 74px 16px;
  }

  .display-title,
  .work .display-title,
  .home-deliverables .display-title,
  .process .display-title {
    font-size: clamp(42px, 13.5vw, 62px);
    line-height: 1.06;
  }

  .intro-statement,
  .large-copy,
  .services .large-copy,
  .process-lead {
    font-size: clamp(28px, 8.8vw, 34px);
    line-height: 1.18;
  }

  .about,
  .services,
  .process,
  .home-deliverables,
  .faq,
  .insights.section-pad,
  .trust-section.section-pad {
    width: calc(100% - 32px);
    padding-top: 70px;
    padding-right: 0;
    padding-left: 0;
  }

  .about-grid,
  .services-grid,
  .process-grid,
  .home-deliverables-grid,
  .trust-grid,
  .article-grid {
    gap: 22px;
  }

  .wide-image {
    height: auto;
    min-height: 320px;
    aspect-ratio: 1.08;
  }

  .wide-image img {
    height: 100%;
  }

  body:not(.article-page).inner-page .page-hero,
  .contact-page .contact-hero,
  .journal-page .journal-hero,
  .service-page .services-hero,
  .projects-page .projects-hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 112px 16px 52px;
    gap: 26px;
    overflow: visible;
  }

  body:not(.article-page).inner-page .page-hero > *,
  .contact-page .contact-hero > *,
  .journal-page .journal-hero > *,
  .service-page .services-hero > *,
  .projects-page .projects-hero > * {
    width: 100%;
    max-width: 100%;
  }

  .page-hero h1,
  .contact-page .contact-hero h1,
  .journal-page .journal-hero h1,
  .service-page .services-hero h1,
  .projects-page .projects-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 46px);
    line-height: 1.04;
  }

  .journal-page .journal-hero h1,
  .service-page .services-hero h1 {
    font-size: clamp(35px, 10.4vw, 40px);
    line-height: 1.06;
  }

  .page-hero > p,
  .journal-page .journal-hero > p,
  .services-hero-copy,
  .projects-hero-copy,
  .contact-intro > p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.4;
  }

  .contact-page .contact-hero {
    padding-bottom: 62px;
  }

  .contact-page .contact-socials {
    margin: 28px 0 26px;
  }

  .contact-page .contact-form {
    margin-top: 34px;
    gap: 14px;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select {
    height: 58px;
    padding: 0 18px;
  }

  .contact-page .contact-form textarea {
    min-height: 132px;
    padding: 18px;
  }

  .contact-page .contact-form button {
    height: 62px;
    font-size: 18px;
  }

  .journal-list,
  .projects-index {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .journal-list-head {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .journal-list-head h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .journal-filters,
  .project-filter-bar,
  .legal-topics {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .journal-filters::-webkit-scrollbar,
  .project-filter-bar::-webkit-scrollbar,
  .legal-topics::-webkit-scrollbar {
    display: none;
  }

  .journal-filter,
  .project-filter,
  .legal-topics a {
    flex: 0 0 auto;
  }

  .journal-page .article-card,
  .project-card {
    min-height: 0;
  }

  .journal-page .article-card img,
  .article-page .page-insights .article-card img,
  .project-card-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.32;
    object-fit: cover;
  }

  .journal-page .article-excerpt,
  .journal-page .article-title,
  .project-card-meta p {
    max-width: 100%;
  }

  .services-showcase,
  .service-process,
  .service-deliverables,
  .service-faq,
  .projects-method,
  .studio-final-method,
  .studio-final-manifesto,
  .studio-final-split {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-card {
    border-radius: 8px;
  }

  .service-card img,
  .service-card:nth-child(2) img,
  .service-card:nth-child(3) img,
  .service-card:nth-child(4) img,
  .service-card:nth-child(5) img {
    height: auto;
    aspect-ratio: 1.22;
  }

  .studio-final-hero {
    width: 100%;
    max-width: 100%;
    min-height: 620px;
    padding: 112px 16px 44px;
    overflow: hidden;
  }

  .studio-final-hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 14.5vw, 62px);
    line-height: 0.96;
  }

  .studio-final-hero-copy > p:not(.page-kicker) {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.42;
  }

  .studio-final-actions {
    gap: 12px;
  }

  .studio-final-band {
    min-height: 520px;
  }

  .article-page .page-hero {
    min-height: auto;
    padding: 92px 16px 48px;
    gap: 20px;
  }

  .article-page .article-back-link {
    top: 26px;
  }

  .article-page .page-hero h1 {
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 1.08;
  }

  .article-page .article-body,
  .article-page .page-insights,
  .legal-overview,
  .legal-body {
    width: calc(100% - 32px);
  }

  .article-page .article-body p,
  .legal-body p,
  .legal-body ul {
    font-size: 16px;
    line-height: 1.55;
  }

  .article-page .page-insights {
    padding: 66px 0 72px;
  }

  .project-page .project-hero {
    height: auto;
    min-height: 620px;
    padding: 104px 16px 34px;
  }

  .project-back-link {
    top: 82px;
    left: 16px;
  }

  .project-page .project-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.5vw, 56px);
    line-height: 1.05;
  }

  .project-hero-context {
    max-width: 100%;
  }

  .project-hero-bottom {
    right: 16px;
    bottom: 24px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .project-page .project-detail {
    width: calc(100% - 32px);
    padding: 68px 0 78px;
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .project-page .project-story {
    margin-bottom: 64px;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.22;
  }

  .project-page .project-meta-grid {
    position: static;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .prefooter,
  .contact-page .contact-prefooter,
  .journal-page .journal-prefooter,
  .service-page .services-prefooter,
  .projects-page .prefooter,
  .studio-page .prefooter {
    min-height: auto;
    padding: 60px 16px 72px;
  }

  .prefooter .display-title,
  .contact-page .contact-prefooter .display-title,
  .journal-page .journal-prefooter .display-title,
  .service-page .services-prefooter .display-title,
  .projects-page .prefooter .display-title {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.1;
  }

  .footer,
  body[class] .footer {
    min-height: 0;
    padding: 64px 18px 0;
  }

  .footer-top,
  body[class] .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 22px;
  }

  .footer-top p,
  body[class] .footer-top p {
    white-space: normal;
  }

  .footer-top p:last-child,
  body[class] .footer-top p:last-child {
    justify-self: start;
    text-align: left;
  }

  .footer-main,
  body[class] .footer-main {
    padding: 40px 0 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 30px;
  }

  .footer-brand,
  body[class] .footer-brand,
  body[class] .newsletter {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-main nav:first-of-type,
  body[class] .footer-main nav:first-of-type {
    grid-column: 1;
  }

  .footer-main nav:nth-of-type(2),
  body[class] .footer-main nav:nth-of-type(2) {
    grid-column: 2;
  }

  .footer nav,
  body[class] .footer nav,
  .newsletter,
  body[class] .newsletter {
    gap: 6px;
  }

  .footer nav p,
  body[class] .footer nav p,
  .newsletter label,
  body[class] .newsletter label {
    margin-bottom: 8px;
  }

  .footer nav a,
  body[class] .footer nav a {
    font-size: 15px;
    line-height: 1.45;
  }

  .newsletter p,
  body[class] .newsletter p {
    margin-bottom: 20px;
  }

  .footer-brand h2,
  body[class] .footer-brand h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 12vw, 52px);
  }

  .footer-brand a,
  body[class] .footer-brand a {
    font-size: clamp(22px, 7vw, 28px);
    overflow-wrap: anywhere;
  }

  .footer-bottom,
  body[class] .footer-bottom {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom p,
  .footer-bottom a,
  .footer-legal-links,
  body[class] .footer-bottom p,
  body[class] .footer-bottom a,
  body[class] .footer-legal-links,
  body[class] .footer-credit {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero-title h1 {
    font-size: clamp(54px, 18.2vw, 70px);
  }

  .hero-copy p {
    max-width: 300px;
  }

  .page-hero h1,
  .contact-page .contact-hero h1,
  .journal-page .journal-hero h1,
  .service-page .services-hero h1,
  .projects-page .projects-hero h1 {
    font-size: clamp(34px, 10.7vw, 42px);
  }

  .journal-page .journal-hero h1,
  .service-page .services-hero h1 {
    font-size: clamp(33px, 9.8vw, 38px);
  }

  .studio-final-hero h1 {
    font-size: clamp(44px, 13.5vw, 56px);
  }
}

/* Final mobile refinement pass. */
@media (max-width: 720px) {
  main :where(h1, h2, h3, p, li, summary, label),
  .article-title,
  .project-card-meta strong,
  .project-card-meta em,
  .project-card-meta p,
  .footer-brand a {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-title {
    bottom: max(52px, env(safe-area-inset-bottom));
  }

  .hero-title h1 {
    font-size: clamp(58px, 18vw, 72px);
    line-height: 0.86;
  }

  .hero-title p {
    max-width: min(320px, 100%);
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.22;
  }

  .projects-page .projects-hero,
  .service-page .services-hero {
    padding-top: 112px;
    padding-bottom: 38px;
  }

  .projects-hero-copy,
  .services-hero-copy {
    margin-top: 22px;
  }

  .projects-hero-stats,
  .services-hero-stats {
    margin-top: 22px;
    gap: 0;
  }

  .projects-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .projects-hero-stats article,
  .services-hero-stats article {
    min-height: 0;
    padding: 14px 10px;
  }

  .projects-hero-stats strong,
  .services-hero-stats strong {
    margin-bottom: 6px;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1;
  }

  .projects-hero-stats span,
  .services-hero-stats span {
    font-size: 12px;
    line-height: 1.22;
  }

  .project-start-card,
  .services-project-card {
    margin-top: 22px;
    padding: 12px;
    gap: 12px;
  }

  .project-start-card img,
  .services-project-card img {
    width: 52px;
    height: 52px;
  }

  .project-start-card span,
  .services-project-card span {
    margin-bottom: 8px;
  }

  .project-start-card .pill-button,
  .services-project-card .pill-button {
    min-height: 42px;
    font-size: 16px;
  }

  .contact-page .contact-hero {
    padding-top: 112px;
  }

  .contact-page .contact-socials {
    margin: 24px 0;
  }

  .contact-page .contact-form {
    margin-top: 28px;
  }

  .article-page .page-hero {
    padding-top: 116px;
    padding-bottom: 38px;
  }

  .article-page .article-meta {
    gap: 12px 18px;
  }
}

@media (max-width: 380px) {
  .services-hero-stats span {
    font-size: 11px;
  }

  .hero-title {
    bottom: max(46px, env(safe-area-inset-bottom));
  }
}

/* Mobile-only client request refinements. */
@media (max-width: 720px) {
  .floating-nav,
  .journal-page .floating-nav,
  .projects-page .floating-nav,
  .service-page .floating-nav,
  .studio-page .floating-nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .floating-nav.is-hidden {
    transform: translateX(-50%) translateY(calc(-100% - 28px));
  }

  body.menu-open .floating-nav {
    transform: translateX(-50%);
  }

  .menu-panel,
  .journal-page .menu-panel,
  .projects-page .menu-panel,
  .service-page .menu-panel,
  .studio-page .menu-panel {
    left: 50%;
    right: auto;
    transform: translate(-50%, -12px) scale(0.98);
  }

  .menu-panel.open {
    transform: translate(-50%, 0) scale(1);
  }

  .hero-copy {
    left: 50%;
    right: auto;
    width: min(340px, calc(100% - 36px));
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-copy p,
  .services-hero-copy,
  .projects-hero-copy,
  .intro-statement,
  .about-copy,
  .about-copy p,
  .project-page .project-story {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-actions,
  .intro-grid,
  .about-copy,
  .section-split,
  .center-heading,
  .services .large-copy,
  .service-card,
  .project-card-meta,
  .project-page .project-meta-grid,
  .project-case-grid article,
  .project-outcome-grid article,
  .project-scope-block,
  .project-decisions-block,
  .prefooter {
    text-align: center;
  }

  .hero-actions,
  .intro-grid,
  .about-grid,
  .section-split,
  .center-heading,
  .about-copy,
  .project-hero-context,
  .project-card-tags,
  .tag-cloud {
    justify-content: center;
    justify-items: center;
  }

  .about,
  .faq,
  .home-deliverables,
  .insights.section-pad,
  .process,
  .services,
  .trust-section.section-pad {
    margin-right: auto;
    margin-left: auto;
  }

  .intro-grid,
  .about-grid,
  .about-card,
  .about-copy {
    width: 100%;
  }

  .about-copy {
    display: grid;
  }

  .hero-actions .pill-button,
  .about-copy .pill-button,
  .prefooter .pill-button {
    justify-content: center;
  }

  .image-card,
  .wide-image,
  .service-card img,
  .project-card-media img,
  .project-page .project-image-pair img {
    margin-right: auto;
    margin-left: auto;
    object-position: center top;
  }

  .article-page .page-hero {
    padding-top: 132px;
  }

  .article-page .article-back-link {
    top: 82px;
    left: 16px;
    z-index: 2;
  }

  .service-page .services-hero-stats article {
    min-height: 98px;
    padding: 13px 8px 12px;
    align-content: center;
    justify-items: center;
    grid-template-rows: 38px minmax(32px, auto);
    text-align: center;
  }

  .service-page .services-hero-stats strong {
    align-self: end;
    margin-bottom: 0;
    line-height: 1;
  }

  .service-page .services-hero-stats span {
    width: min(96px, 100%);
    min-height: 32px;
    margin-top: 4px;
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
  }

  .service-page .service-card:nth-child(2) img,
  .service-page .service-card:nth-child(3) img,
  .service-page .service-card:nth-child(4) img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    object-fit: contain;
    object-position: center;
  }

  .footer-bottom,
  body[class] .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .footer-bottom a,
  .footer-legal-links,
  body[class] .footer-bottom a,
  body[class] .footer-legal-links {
    justify-self: start;
    text-align: left;
  }

  .footer-legal-links,
  body[class] .footer-legal-links {
    gap: 8px 16px;
  }

  .footer-bottom p,
  body[class] .footer-bottom p {
    grid-column: auto;
    justify-self: start;
    text-align: left;
    font-size: 0;
  }

  .footer-bottom p::after,
  body[class] .footer-bottom p::after {
    content: "\00a9 2026 Aluvik";
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .service-page .service-card:nth-child(2) img {
    content: url("assets/aluvik/aluvik-web-product-design-card.webp?v=1");
  }

  .projects-page .project-card-media img {
    aspect-ratio: 430 / 932;
  }

  .projects-page .project-card[href="project-lumaderma.html"] .project-card-media img {
    content: url("assets/lumaderma/lumaderma-hero-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-vitalacare.html"] .project-card-media img {
    content: url("assets/vitalacare/vitalacare-hero-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-grexa.html"] .project-card-media img {
    content: url("assets/grexa/grexa-hero-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-dentacare.html"] .project-card-media img {
    content: url("assets/dentacare/dentacare-hero-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-interias.html"] .project-card-media img {
    content: url("assets/interias/interias-hero-clean-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-modu.html"] .project-card-media img {
    content: url("assets/modu/modu-wide-home-mobile.webp?v=3");
  }

  .projects-page .project-card[href="project-advocacy.html"] .project-card-media img {
    content: url("assets/advocacy/advocacy-hero-mobile.webp?v=3");
  }

  .project-page .project-image-pair.website-screens img {
    aspect-ratio: 430 / 932;
  }

  .project-lumaderma-page .project-hero-bg {
    content: url("assets/lumaderma/lumaderma-hero-mobile.webp?v=3");
  }

  .project-lumaderma-page .website-screens img:nth-child(1) {
    content: url("assets/lumaderma/lumaderma-about-page-mobile.webp?v=3");
  }

  .project-lumaderma-page .website-screens img:nth-child(2) {
    content: url("assets/lumaderma/lumaderma-services-page-mobile.webp?v=3");
  }

  .project-lumaderma-page .website-screens img:nth-child(3) {
    content: url("assets/lumaderma/lumaderma-book-page-mobile.webp?v=3");
  }

  .project-lumaderma-page .website-screens img:nth-child(4) {
    content: url("assets/lumaderma/lumaderma-hero-mobile.webp?v=3");
  }

  .project-vitalacare-page .project-hero-bg {
    content: url("assets/vitalacare/vitalacare-hero-mobile.webp?v=3");
  }

  .project-vitalacare-page .website-screens img:nth-child(1) {
    content: url("assets/vitalacare/vitalacare-features-section-mobile.webp?v=3");
  }

  .project-vitalacare-page .website-screens img:nth-child(2) {
    content: url("assets/vitalacare/vitalacare-services-page-mobile.webp?v=3");
  }

  .project-vitalacare-page .website-screens img:nth-child(3) {
    content: url("assets/vitalacare/vitalacare-doctors-page-mobile.webp?v=3");
  }

  .project-vitalacare-page .website-screens img:nth-child(4) {
    content: url("assets/vitalacare/vitalacare-appointment-page-mobile.webp?v=3");
  }

  .project-grexa-page .project-hero-bg {
    content: url("assets/grexa/grexa-hero-mobile.webp?v=3");
  }

  .project-grexa-page .website-screens img:nth-child(1) {
    content: url("assets/grexa/grexa-about-page-mobile.webp?v=3");
  }

  .project-grexa-page .website-screens img:nth-child(2) {
    content: url("assets/grexa/grexa-services-page-mobile.webp?v=3");
  }

  .project-grexa-page .website-screens img:nth-child(3) {
    content: url("assets/grexa/grexa-projects-page-mobile.webp?v=3");
  }

  .project-grexa-page .website-screens img:nth-child(4) {
    content: url("assets/grexa/grexa-contact-page-mobile.webp?v=3");
  }

  .project-dentacare-page .project-hero-bg {
    content: url("assets/dentacare/dentacare-hero-mobile.webp?v=3");
  }

  .project-dentacare-page .website-screens img:nth-child(1) {
    content: url("assets/dentacare/dentacare-about-section-mobile.webp?v=3");
  }

  .project-dentacare-page .website-screens img:nth-child(2) {
    content: url("assets/dentacare/dentacare-services-section-mobile.webp?v=3");
  }

  .project-dentacare-page .website-screens img:nth-child(3) {
    content: url("assets/dentacare/dentacare-process-section-mobile.webp?v=3");
  }

  .project-dentacare-page .website-screens img:nth-child(4) {
    content: url("assets/dentacare/dentacare-contact-page-mobile.webp?v=3");
  }

  .project-interias-page .project-hero-bg {
    content: url("assets/interias/interias-hero-clean-mobile.webp?v=3");
  }

  .project-interias-page .website-screens img:nth-child(1) {
    content: url("assets/interias/interias-about-mobile.webp?v=3");
  }

  .project-interias-page .website-screens img:nth-child(2) {
    content: url("assets/interias/interias-services-mobile.webp?v=3");
  }

  .project-interias-page .website-screens img:nth-child(3) {
    content: url("assets/interias/interias-residential-service-mobile.webp?v=3");
  }

  .project-interias-page .website-screens img:nth-child(4) {
    content: url("assets/interias/interias-contact-mobile.webp?v=3");
  }

  .project-modu-page .project-hero-bg {
    content: url("assets/modu/modu-wide-home-mobile.webp?v=3");
  }

  .project-modu-page .website-screens img:nth-child(1) {
    content: url("assets/modu/modu-about-mobile.webp?v=3");
  }

  .project-modu-page .website-screens img:nth-child(2) {
    content: url("assets/modu/modu-services-mobile.webp?v=3");
  }

  .project-modu-page .website-screens img:nth-child(3) {
    content: url("assets/modu/modu-factory-service-mobile.webp?v=3");
  }

  .project-modu-page .website-screens img:nth-child(4) {
    content: url("assets/modu/modu-contact-mobile.webp?v=3");
  }

  .project-advocacy-page .project-hero-bg {
    content: url("assets/advocacy/advocacy-hero-mobile.webp?v=3");
  }

  .project-advocacy-page .website-screens img:nth-child(1) {
    content: url("assets/advocacy/advocacy-about-page-mobile.webp?v=3");
  }

  .project-advocacy-page .website-screens img:nth-child(2) {
    content: url("assets/advocacy/advocacy-services-page-mobile.webp?v=3");
  }

  .project-advocacy-page .website-screens img:nth-child(3) {
    content: url("assets/advocacy/advocacy-litigation-page-mobile.webp?v=3");
  }

  .project-advocacy-page .website-screens img:nth-child(4) {
    content: url("assets/advocacy/advocacy-contact-page-mobile.webp?v=3");
  }
}

body.privacy-page .page-hero {
  min-height: auto;
  padding-top: clamp(132px, 14vw, 188px);
}
