:root {
  --paper: #f0f6f8;
  --soft: #d9e0e3;
  --white: #ffffff;
  --black: #0c1016;
  --ink: #1e242c;
  --muted: #9da6ab;
  --line: rgba(12, 16, 22, 0.1);
  --dark-line: rgba(240, 246, 248, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

#work,
#studio,
#contact {
  scroll-margin-top: 96px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--paper);
  transition: opacity 650ms ease, visibility 650ms ease, transform 650ms ease;
}

.loader span {
  font-size: 5.5rem;
  font-weight: 800;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 48px;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 3.1rem;
  font-weight: 650;
  line-height: 0.82;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.chat-pill,
.menu-pill {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 999px;
  padding: 5px;
  background: var(--soft);
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 420ms cubic-bezier(.22,.68,0,1);
}

.chat-pill:hover,
.menu-pill:hover {
  transform: scale(1.07);
}

.chat-pill span,
.menu-pill span {
  padding-left: 40px;
}

.chat-pill i,
.menu-pill i {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
}

.chat-pill i::before {
  content: "";
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.chat-pill i::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 15px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  background: var(--paper);
}

.menu-pill {
  background: var(--black);
  color: var(--paper);
}

.menu-pill span {
  padding-right: 4px;
}

.menu-pill i {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-pill b {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 260ms ease, width 260ms ease, height 260ms ease, border-radius 260ms ease;
}

.menu-pill b + b {
  margin-left: 7px;
}

.menu-popover {
  position: fixed;
  top: 112px;
  right: 48px;
  z-index: 210;
  display: grid;
  width: 360px;
  gap: 4px;
  padding: 32px 24px;
  border-radius: 26px;
  background: var(--soft);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) scale(0.96);
  transform-origin: top right;
  transition: opacity 230ms ease, transform 230ms ease;
}

body.menu-open .menu-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-popover a {
  display: block;
  border-radius: 18px;
  padding: 8px 24px 12px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease;
}

.menu-popover a:hover {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding-top: 130px;
}

.hero-word {
  position: absolute;
  top: 300px;
  left: 285px;
  margin: 0;
  color: var(--black);
  font-size: 26rem;
  font-weight: 850;
  line-height: 0.75;
  white-space: nowrap;
}

.hero-render {
  position: absolute;
  z-index: 2;
  top: 265px;
  left: 50%;
  width: 310px;
  transform: translateX(calc(-24% + var(--float-x, 0px))) translateY(var(--float-y, 0px)) rotate(3deg);
  filter: drop-shadow(0 34px 34px rgba(12, 16, 22, 0.18));
  will-change: transform;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: 415px;
  top: 650px;
  margin: 0;
  color: var(--black);
  font-size: 3.25rem;
  font-weight: 850;
  line-height: 1;
}

.scroll-word {
  position: absolute;
  left: 48px;
  bottom: 110px;
  color: var(--muted);
  font-size: 1.75rem;
  font-weight: 800;
}

.section-shell {
  padding: 96px 80px 80px;
}

.section-kicker {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 800;
}

.section-title {
  max-width: 1220px;
  margin: 0 0 72px;
  color: var(--black);
  font-size: 4.55rem;
  font-weight: 850;
  line-height: 1;
}

.section-title .muted-word,
.case-copy .muted-word {
  color: var(--muted);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border-radius: 14px;
  background: var(--soft);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22,.68,0,1);
}

.project-card span {
  position: absolute;
  left: 32px;
  bottom: 30px;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 850;
  line-height: 1;
}

.project-card:hover img {
  transform: scale(1.08);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background: var(--black);
  opacity: 0;
}

.page-transition img {
  position: fixed;
  object-fit: cover;
  border-radius: 14px;
  transform-origin: center;
}

.services {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 40px;
}

.service-list {
  position: relative;
  display: block;
  padding-bottom: 260px;
}

.service-card {
  position: sticky;
  top: 118px;
  display: grid;
  min-height: 560px;
  align-content: space-between;
  margin-top: 140px;
  padding: 68px 64px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--black);
  color: var(--paper);
  box-shadow: 0 -1px 0 rgba(240, 246, 248, 0.08), 0 24px 60px rgba(12, 16, 22, 0.08);
  transition: transform 420ms cubic-bezier(.22,.68,0,1), background 420ms ease;
}

.service-card:first-child {
  margin-top: 0;
  z-index: 1;
}

.service-card:nth-child(2) {
  background: #23282f;
  z-index: 2;
  top: 128px;
}

.service-card:nth-child(3) {
  background: #4f5861;
  z-index: 3;
  top: 138px;
}

.service-card:nth-child(4) {
  background: #0f141b;
  z-index: 4;
  top: 148px;
}

.service-card:hover {
  transform: translateY(-12px);
}

.service-heading {
  display: grid;
  gap: 72px;
}

.service-card h3 {
  margin: 0;
  font-size: 6rem;
  font-weight: 620;
  line-height: 1;
}

.service-card h3 span {
  display: block;
}

.service-card h3 span + span {
  color: rgba(240, 246, 248, 0.6);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 24px;
  background: rgba(6, 11, 18, 0.22);
  color: var(--paper);
  font-size: 1rem;
  font-weight: 750;
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover .service-tags span {
  background: rgba(240, 246, 248, 0.08);
}

.service-tags span:hover {
  transform: translateY(-3px);
}

.service-card p {
  position: relative;
  max-width: 820px;
  margin: 0;
  padding-left: 46px;
  color: var(--paper);
  font-size: 1.55rem;
  font-weight: 620;
  line-height: 1.18;
}

.service-card p i,
.social-row i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
}

.service-card p i::before,
.service-card p i::after,
.social-row i::before,
.social-row i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.service-card p i::after,
.social-row i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card p i {
  color: rgba(240, 246, 248, 0.76);
  animation: starSpin 7s linear infinite;
}

@keyframes starSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-block {
  position: relative;
  z-index: 5;
  min-height: 1240px;
  overflow: visible;
  padding: 92px 80px 80px;
  background: var(--paper);
  color: var(--black);
}

.compact-footer {
  min-height: 800px;
  padding-top: 70px;
}

.compact-footer .footer-stage {
  margin-top: 0;
}

.contact-top {
  position: absolute;
  inset: 0 0 auto;
  min-height: 370px;
}

.contact-block h2 {
  position: absolute;
  left: 170px;
  top: 0;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-size: 8.9rem;
  font-weight: 850;
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.contact-chair {
  position: absolute;
  z-index: 2;
  top: -4px;
  right: 70px;
  width: 620px;
  pointer-events: none;
  filter: drop-shadow(0 30px 32px rgba(12, 16, 22, 0.14));
  transform: translate(var(--float-x, 0px), var(--float-y, 0px)) rotate(1deg);
}

.cta-actions {
  position: absolute;
  left: 170px;
  top: 188px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.chat-pill.dark {
  background: var(--black);
  color: var(--paper);
}

.chat-pill.dark i {
  background: var(--ink);
}

.chat-pill.dark.alt {
  background: var(--soft);
  color: var(--black);
}

.chat-pill.dark.alt i {
  background: var(--paper);
}

.footer-stage {
  position: relative;
  z-index: 5;
  min-height: 1400px;
  margin-top: 370px;
}

.footer-word {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--black);
  font-size: 29rem;
  font-weight: 850;
  line-height: 0.72;
  white-space: nowrap;
}

.footer-elem {
  position: absolute;
  z-index: 4;
  top: 210px;
  left: 0;
  width: 100%;
  pointer-events: none;
  transform: translate(var(--float-x, 0px), var(--float-y, 0px));
  filter: drop-shadow(0 28px 34px rgba(12, 16, 22, 0.22));
}

.footer-panel {
  position: absolute;
  z-index: auto;
  left: 0;
  right: 0;
  top: 350px;
  display: flex;
  min-height: 880px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 520px 40px 72px;
  color: var(--paper);
  text-align: center;
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0 0 28px 28px;
  background: var(--black);
}

.footer-panel h3 {
  position: relative;
  z-index: 7;
  margin: 0 0 6px;
  font-size: 5rem;
  font-weight: 430;
  line-height: 1;
}

.footer-panel p {
  position: relative;
  z-index: 7;
  margin: 0 0 42px;
  color: rgba(240, 246, 248, 0.62);
  font-size: 2rem;
  font-weight: 650;
}

.social-row {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.social-row a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.25rem;
  font-weight: 850;
  transition: transform 260ms cubic-bezier(.22,.68,0,1), background 260ms ease;
}

.social-row a:hover {
  transform: translateY(-5px) scale(1.06);
  background: #303944;
}

.social-row i {
  position: relative;
  display: block;
  color: rgba(240, 246, 248, 0.32);
  animation: starSpin 8s linear infinite;
}

.footer-nav {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  top: 1228px;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 40px 30px;
  border-radius: 0 0 28px 28px;
  background: var(--ink);
}

.footer-nav a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  padding: 5px 5px 5px 46px;
  background: var(--paper);
  color: var(--black);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 260ms cubic-bezier(.22,.68,0,1), background 260ms ease;
}

.footer-nav a:last-child {
  margin-left: auto;
  background: var(--black);
  color: var(--paper);
}

.footer-nav a:hover {
  transform: translateY(-5px);
}

.footer-nav b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 500;
  transition: transform 260ms ease;
}

.footer-nav a:last-child b {
  background: var(--ink);
}

.footer-nav a:hover b {
  transform: translateX(3px);
}

.footer-nav a:last-child:hover b {
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 36px;
  align-items: center;
  padding: 36px 48px;
  background: var(--black);
  color: var(--paper);
}

.site-footer .logo {
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0;
  color: rgba(240, 246, 248, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer > a:last-child {
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-page {
  background: var(--black);
  color: var(--paper);
}

.case-page .site-header .logo {
  color: var(--paper);
}

.case-page .menu-pill {
  background: var(--ink);
}

.case-page .menu-pill i {
  background: var(--black);
}

.case-page .menu-popover {
  color: var(--ink);
}

.case-hero {
  min-height: 900px;
  padding: 144px 48px 80px;
  background: var(--black);
}

.case-cover {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--ink);
}

.case-cover img {
  width: 100%;
  height: 615px;
  object-fit: cover;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}

.case-tabs button {
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--dark-line);
  padding: 20px 28px;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.2rem;
  font-weight: 800;
}

.case-tabs button:last-child {
  border-right: 0;
  background: #242b34;
}

.case-content {
  padding: 120px 80px 80px;
  background: var(--black);
}

.case-eyebrow {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
}

.case-copy {
  max-width: 1220px;
  margin: 0 0 76px;
  color: var(--paper);
  font-size: 4.45rem;
  font-weight: 850;
  line-height: 1;
}

.case-body {
  max-width: 1220px;
  margin: 0 0 70px;
  color: rgba(240, 246, 248, 0.62);
  font-size: 2rem;
  font-weight: 760;
  line-height: 1.3;
}

.case-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  padding: 5px 5px 5px 42px;
  background: var(--paper);
  color: var(--black);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-button i {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
}

.case-button i::before {
  content: "↗";
  font-size: 1.3rem;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 110px;
}

.case-gallery img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.next-project-wrapper {
  position: relative;
  min-height: 200vh;
  padding-bottom: 100vh;
  overflow: visible;
  background: var(--ink);
  color: var(--paper);
}

.next-project-cap {
  position: relative;
  z-index: 2;
  height: 128px;
  border-radius: 0 0 28px 28px;
  background: var(--black);
}

.next-project {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: stretch;
  padding: 128px 80px 48px;
}

.next-project-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--black);
  color: var(--paper);
}

.next-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.72) saturate(0.92);
  transition: transform 850ms cubic-bezier(.22,.68,0,1), filter 850ms ease;
}

.next-project-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.82) saturate(1);
}

.next-project-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 66%;
  background: linear-gradient(to top, rgba(12, 16, 22, 0.72), rgba(12, 16, 22, 0));
}

.next-copy {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 66px;
  display: grid;
  gap: 4px;
}

.next-copy small {
  color: rgba(240, 246, 248, 0.74);
  font-size: 1.55rem;
  font-weight: 500;
}

.next-copy strong {
  color: var(--paper);
  font-size: 3.9rem;
  font-weight: 850;
  line-height: 0.92;
}

.next-percent {
  position: absolute;
  right: 32px;
  bottom: 66px;
  z-index: 2;
  color: var(--paper);
  font-size: 3.9rem;
  font-weight: 850;
  line-height: 1;
}

.next-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 32px;
  background: #50555a;
}

.next-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--paper);
  transition: width 120ms linear;
}

.next-view {
  position: absolute;
  right: 16px;
  bottom: 28px;
  z-index: 4;
  display: none;
  min-height: 58px;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  padding: 5px 5px 5px 42px;
  background: var(--soft);
  color: var(--black);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 260ms cubic-bezier(.22,.68,0,1);
}

.next-view b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 500;
}

.next-project-tail {
  display: none;
}

.case-footer {
  position: relative;
  overflow: hidden;
  padding: 128px 80px 80px;
  background: var(--paper);
  color: var(--black);
}

.case-footer-word {
  display: block;
  width: 100%;
  color: var(--black);
  font-size: 29rem;
  font-weight: 850;
  line-height: 0.68;
  white-space: nowrap;
}

.case-footer-elem {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -15%;
  transform: translate(var(--float-x, 0px), var(--float-y, 0px));
  filter: drop-shadow(0 28px 34px rgba(12, 16, 22, 0.22));
}

.case-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 545px;
  margin-top: -20%;
  align-content: end;
  justify-items: center;
  padding: 0 40px 48px;
  border-radius: 28px;
  background: var(--black);
  color: var(--paper);
  text-align: center;
}

.case-footer-main h2 {
  margin: 0 0 8px;
  font-size: 5rem;
  font-weight: 430;
  line-height: 1;
}

.case-footer-main p {
  margin: 0 0 52px;
  color: rgba(240, 246, 248, 0.62);
  font-size: 2rem;
  font-weight: 650;
}

.case-footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
  padding: 40px 30px;
  border-radius: 0 0 28px 28px;
  background: var(--ink);
}

.case-footer-nav > div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.case-footer-nav a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  padding: 5px 5px 5px 46px;
  background: var(--paper);
  color: var(--black);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 260ms cubic-bezier(.22,.68,0,1), background 260ms ease;
}

.case-footer-nav > div:last-child a {
  background: var(--black);
  color: var(--paper);
}

.case-footer-nav a:hover {
  transform: translateY(-5px);
}

.case-footer-nav b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 500;
  transition: transform 260ms ease;
}

.case-footer-nav > div:last-child b {
  background: var(--ink);
}

.case-footer-nav a:hover b {
  transform: translateX(3px);
}

.case-footer-nav a[href="#top"]:hover b {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1180px) {
  .hero-word {
    left: 180px;
    font-size: 20rem;
  }

  .hero-copy {
    left: 250px;
  }

  .section-title,
  .case-copy {
    font-size: 3.6rem;
  }

  .service-row h3 {
    font-size: 3.6rem;
  }
}

@media (max-width: 820px) {
  #work,
  #studio,
  #contact {
    scroll-margin-top: 84px;
  }

  .site-header {
    align-items: flex-start;
    padding: 24px 16px;
  }

  .logo {
    font-size: 2rem;
  }

  .chat-pill {
    display: none;
  }

  .menu-pill {
    min-height: 40px;
    gap: 12px;
    padding: 4px;
    font-size: 0.9rem;
  }

  .menu-pill span {
    padding-left: 24px;
    padding-right: 4px;
  }

  .menu-pill i {
    width: 32px;
    height: 32px;
  }

  .menu-pill b {
    width: 5px;
    height: 5px;
  }

  .menu-popover {
    top: 80px;
    left: 16px;
    right: 16px;
    width: auto;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .menu-popover a {
    padding: 8px 24px 10px;
    font-size: 2rem;
  }

  .loader span {
    font-size: 3rem;
  }

  .hero {
    min-height: 440px;
    padding-top: 90px;
  }

  .hero-word {
    top: 180px;
    left: 110px;
    font-size: 8.6rem;
  }

  .hero-render {
    top: 195px;
    left: 315px;
    width: 92px;
  }

  .hero-copy {
    left: 110px;
    top: 305px;
    font-size: 1.5rem;
  }

  .scroll-word {
    left: 16px;
    bottom: 86px;
    font-size: 1.15rem;
  }

  .section-shell {
    padding: 64px 16px;
  }

  .section-kicker {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .section-title {
    margin-bottom: 60px;
    font-size: 2rem;
    line-height: 0.96;
  }

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

  .project-card {
    min-height: 200px;
    border-radius: 14px;
  }

  .project-card span {
    left: 20px;
    bottom: 20px;
    font-size: 1.8rem;
  }

  .services {
    padding-top: 76px;
    padding-bottom: 70px;
  }

  .service-list {
    padding-bottom: 0;
    gap: 18px;
  }

  .service-card {
    position: relative;
    top: auto;
    min-height: 440px;
    margin-top: 0;
    padding: 36px 24px;
    border-radius: 28px;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    top: auto;
  }

  .service-heading {
    gap: 42px;
  }

  .service-card h3 {
    font-size: 3.15rem;
  }

  .service-tags {
    gap: 8px;
  }

  .service-tags span {
    min-height: 32px;
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .service-card p {
    padding-left: 38px;
    font-size: 1.02rem;
    overflow-wrap: break-word;
  }

  .service-card p i {
    width: 26px;
    height: 26px;
  }

  .contact-block {
    min-height: 1040px;
    padding: 70px 16px 34px;
    overflow: hidden;
  }

  .contact-top {
    min-height: 360px;
  }

  .contact-block h2 {
    left: 16px;
    top: 8px;
    max-width: 280px;
    font-size: 4.8rem;
  }

  .contact-chair {
    top: 108px;
    right: -160px;
    width: 520px;
  }

  .cta-actions {
    left: 16px;
    top: 260px;
    display: grid;
    width: calc(100% - 32px);
    gap: 12px;
  }

  .cta-actions .chat-pill {
    display: inline-flex;
    width: 100%;
  }

  .footer-stage {
    min-height: 650px;
    margin-top: 360px;
  }

  .footer-word {
    top: 0;
    left: -14px;
    font-size: 10.8rem;
  }

  .footer-elem {
    top: 116px;
    left: -170px;
    width: 820px;
    max-width: none;
  }

  .footer-panel {
    top: 228px;
    min-height: 310px;
    padding: 46px 20px 34px;
    border-radius: 0 0 22px 22px;
  }

  .footer-panel h3 {
    margin-top: 46px;
    font-size: 2.55rem;
  }

  .footer-panel p {
    margin-bottom: 58px;
    font-size: 1.2rem;
  }

  .social-row {
    gap: 14px;
  }

  .social-row a {
    width: 44px;
    height: 44px;
  }

  .footer-nav {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .footer-nav a,
  .footer-nav a:last-child {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .case-hero {
    min-height: auto;
    padding: 96px 16px 54px;
  }

  .case-cover img {
    height: 390px;
  }

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

  .case-tabs button {
    min-height: 58px;
  }

  .case-content {
    padding: 60px 16px;
  }

  .case-eyebrow {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .case-copy {
    margin-bottom: 42px;
    font-size: 2.4rem;
    line-height: 1;
  }

  .case-body {
    margin-bottom: 46px;
    font-size: 1.35rem;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
  }

  .case-gallery img {
    min-height: 220px;
  }

  .next-project-wrapper {
    min-height: auto;
    padding-bottom: 0;
  }

  .next-project-cap,
  .next-project-tail {
    display: none;
  }

  .next-project {
    position: relative;
    height: 100svh;
    min-height: 720px;
    padding: 0;
  }

  .next-project-card {
    border-radius: 0;
  }

  .next-project-card img {
    transform: scale(1.01);
  }

  .next-copy {
    left: 32px;
    right: 32px;
    bottom: 96px;
  }

  .next-copy small {
    font-size: 1.55rem;
  }

  .next-copy strong {
    font-size: 3.1rem;
  }

  .next-percent,
  .next-progress {
    display: none;
  }

  .next-view {
    display: inline-flex;
    right: 32px;
    bottom: 28px;
    min-height: 58px;
    gap: 16px;
    padding-left: 28px;
    font-size: 0.95rem;
  }

  .case-footer {
    padding: 64px 16px 34px;
  }

  .case-footer-word {
    margin-left: -14px;
    font-size: 10.8rem;
  }

  .case-footer-elem {
    left: -170px;
    width: 820px;
    max-width: none;
    margin-top: -18%;
  }

  .case-footer-main {
    min-height: 330px;
    margin-top: -28%;
    padding: 0 20px 34px;
    border-radius: 22px;
  }

  .case-footer-main h2 {
    max-width: 100%;
    font-size: 2.55rem;
  }

  .case-footer-main p {
    margin-bottom: 48px;
    font-size: 1.1rem;
  }

  .case-footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .case-footer-nav > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-footer-nav a {
    width: 100%;
    justify-content: space-between;
  }
}
