:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f3f2ee;
  --white: #ffffff;
  --grey: #9d9d99;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(9, 9, 9, 0.2);
  --shell: min(1440px, calc(100vw - 96px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 350ms var(--ease),
    background-color 350ms ease,
    border-color 350ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line-dark);
  background: rgba(9, 9, 9, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.brand-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 13px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 300ms var(--ease);
}

.hero {
  position: relative;
  min-height: clamp(700px, 86svh, 850px);
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) 0 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-position: center;
  background-size: 80px 80px;
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 73% 48%, rgba(255, 255, 255, 0.09), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  align-items: center;
  gap: 7vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(30px, 4vh, 48px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.072em;
}

.hero-title > span {
  display: block;
}

.hero-title-accent {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
}

.hero-summary {
  display: grid;
  max-width: 720px;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-top: clamp(36px, 4.5vh, 54px);
}

.hero-summary > p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 300ms var(--ease),
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-icon {
  font-size: 17px;
  transition: transform 300ms var(--ease);
}

.button:hover .button-icon {
  transform: translate(3px, -3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition:
    color 200ms ease,
    border-color 200ms ease;
}

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

.hero-art {
  position: relative;
  width: min(29vw, 420px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit-outer {
  inset: 0;
  animation: spin 28s linear infinite;
}

.orbit-middle {
  inset: 13%;
  border-style: dashed;
  animation: spin-reverse 20s linear infinite;
}

.orbit-inner {
  inset: 28%;
  border-color: rgba(255, 255, 255, 0.7);
}

.orbit-inner::before,
.orbit-inner::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.orbit-inner::before {
  top: 50%;
  right: -52%;
  left: -52%;
  height: 1px;
}

.orbit-inner::after {
  top: -52%;
  bottom: -52%;
  left: 50%;
  width: 1px;
}

.art-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 46%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.art-cross {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 200;
}

.art-cross-one {
  top: 12%;
  right: 14%;
}

.art-cross-two {
  bottom: 14%;
  left: 12%;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot ul {
  display: flex;
  gap: clamp(28px, 4vw, 68px);
}

.hero-foot li::before {
  margin-right: 8px;
  color: var(--white);
  content: "•";
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker i {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-style: normal;
}

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

.services {
  padding: clamp(76px, 8vw, 120px) 0 clamp(72px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: clamp(52px, 6vw, 82px);
}

.section-kicker {
  padding-top: 12px;
  color: rgba(9, 9, 9, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.45);
}

.section-heading h2,
.company-copy h2,
.approach-intro h2,
.contact-heading h2 {
  font-size: clamp(45px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading h2 span {
  display: block;
  color: rgba(9, 9, 9, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

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

.service-item {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr 2fr auto;
  gap: 40px;
  align-items: start;
  padding: 32px 0 30px;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

.service-item::before {
  position: absolute;
  z-index: -1;
  inset: 0 -24px;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 450ms var(--ease);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item,
.service-item p,
.service-item .tag-list li,
.service-item .service-number {
  transition:
    color 320ms ease,
    border-color 320ms ease;
}

.service-item:hover {
  color: var(--white);
}

.service-item:hover p,
.service-item:hover .service-number {
  color: rgba(255, 255, 255, 0.58);
}

.service-item:hover .tag-list li {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-number {
  padding-top: 7px;
  color: rgba(9, 9, 9, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-main h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-main > p {
  max-width: 630px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list li {
  padding: 7px 12px;
  border: 1px solid rgba(9, 9, 9, 0.24);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 19px;
  transition:
    transform 450ms var(--ease),
    background-color 320ms ease,
    color 320ms ease;
}

.service-item:hover .service-arrow {
  transform: rotate(45deg);
  background: var(--white);
  color: var(--ink);
}

.approach {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--ink);
}

.approach-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(64px, 7vw, 96px);
}

.approach-intro h2 {
  min-width: 650px;
}

.approach-lede {
  max-width: 330px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.process-item {
  min-height: 315px;
  padding: 28px clamp(22px, 2.4vw, 40px) 0;
  border-right: 1px solid var(--line-dark);
}

.process-item:first-child {
  padding-left: 0;
}

.process-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-item h3 {
  max-width: 260px;
  margin-top: 68px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.process-item > p {
  max-width: 260px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.65;
}

.company {
  padding: clamp(80px, 8vw, 120px) 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.company-copy {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 40px;
}

.company-copy .section-kicker,
.company-copy h2,
.company-text {
  grid-column: 2;
}

.company-copy .section-kicker {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.company-copy h2 {
  max-width: 1080px;
}

.company-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: clamp(40px, 4.5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.company-text p {
  color: rgba(9, 9, 9, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 7vw, 96px);
  border-top: 1px solid var(--ink);
}

.values article {
  min-height: 170px;
  padding: 24px 32px 0;
  border-right: 1px solid var(--line-light);
}

.values article:first-child {
  padding-left: 0;
}

.values article:last-child {
  padding-right: 0;
  border-right: 0;
}

.values span {
  color: rgba(9, 9, 9, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.values h3 {
  margin-top: 38px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.values p {
  margin-top: 10px;
  color: rgba(9, 9, 9, 0.58);
  font-size: 13px;
}

.contact {
  padding: clamp(80px, 8vw, 120px) 0 clamp(70px, 7vw, 96px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(45px, 6vw, 90px);
  align-items: end;
}

.contact-heading .section-kicker {
  margin-bottom: clamp(40px, 4vw, 58px);
}

.contact-heading h2 {
  font-size: clamp(70px, 10vw, 148px);
  line-height: 0.84;
}

.contact-heading h2::first-line {
  color: var(--white);
}

.contact-action > p {
  max-width: 420px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.65;
}

.contact-button {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.025em;
  transition: padding 400ms var(--ease);
}

.contact-button:hover {
  padding-right: 0;
  padding-left: 34px;
}

.contact-button-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 21px;
  transition: transform 450ms var(--ease);
}

.contact-button:hover .contact-button-arrow {
  transform: rotate(45deg);
}

.contact-email {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition:
    color 200ms ease,
    border-color 200ms ease;
}

.contact-email:hover {
  border-color: var(--white);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-meta {
  display: flex;
  justify-self: end;
  gap: 38px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms var(--ease),
    transform 900ms var(--ease);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
  }
}

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

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1200px);
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.47fr);
    gap: 40px;
  }

  .hero-summary {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-art {
    width: min(34vw, 400px);
  }

  .approach-intro {
    grid-template-columns: 0.7fr 1.6fr;
  }

  .approach-intro h2 {
    min-width: 0;
  }

  .approach-lede {
    grid-column: 2;
  }

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

  .process-item {
    min-height: 280px;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-item:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .process-item:nth-child(3) {
    padding-left: 0;
  }

  .process-item h3 {
    margin-top: 55px;
  }

}

@media (max-width: 840px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 76px;
  }

  .brand-name {
    font-size: 13px;
  }

  .js .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

  .js .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 20px 60px;
    opacity: 0;
    background: var(--ink);
    transition:
      opacity 300ms ease,
      visibility 300ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: clamp(37px, 10vw, 60px);
    font-weight: 500;
    letter-spacing: -0.05em;
  }

  .nav-cta {
    min-height: 56px;
    margin-top: 18px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 24px;
  }

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

  .eyebrow {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(58px, 15vw, 104px);
  }

  .hero-summary {
    margin-top: 36px;
  }

  .hero-art {
    width: min(82vw, 470px);
    margin: 28px auto 58px;
    justify-self: center;
  }

  .hero-foot {
    position: relative;
    bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-foot ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 28px;
  }

  .section-heading,
  .approach-intro {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 34px;
  }

  .section-heading h2,
  .company-copy h2,
  .approach-intro h2 {
    font-size: clamp(43px, 11vw, 72px);
  }

  .service-item {
    grid-template-columns: 52px 1fr auto;
    gap: 20px;
  }

  .service-main h3 {
    font-size: clamp(31px, 6vw, 48px);
  }

  .approach-intro {
    gap: 30px;
  }

  .approach-lede {
    grid-column: auto;
  }

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

  .company-copy .section-kicker,
  .company-copy h2,
  .company-text {
    grid-column: auto;
  }

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

  .contact-heading h2 {
    font-size: clamp(68px, 16vw, 120px);
  }

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

  .footer-inner > p {
    display: none;
  }
}

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

  .site-header.is-scrolled {
    height: 64px;
  }

  .hero {
    background-size: 52px 52px;
  }

  .hero-title {
    font-size: clamp(52px, 16.5vw, 78px);
    line-height: 0.9;
  }

  .hero-title-accent {
    -webkit-text-stroke-width: 0.8px;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-art {
    width: min(84vw, 390px);
    margin-bottom: 50px;
  }

  .hero-foot {
    font-size: 8px;
  }

  .hero-foot ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services,
  .approach,
  .company {
    padding-block: 70px;
  }

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

  .service-item {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    padding: 26px 0 30px;
  }

  .service-main > p {
    font-size: 15px;
  }

  .service-arrow {
    display: none;
  }

  .tag-list {
    margin-top: 25px;
  }

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

  .process-item,
  .process-item:first-child,
  .process-item:nth-child(2),
  .process-item:nth-child(3),
  .process-item:last-child {
    min-height: 245px;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-item h3 {
    margin-top: 46px;
  }

  .company-copy .section-kicker {
    margin-bottom: 38px;
  }

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

  .values {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .values article,
  .values article:first-child,
  .values article:last-child {
    min-height: 145px;
    padding: 22px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .values h3 {
    margin-top: 30px;
  }

  .contact {
    padding-block: 72px 60px;
    background-size: 52px 52px;
  }

  .contact-inner {
    gap: 52px;
  }

  .contact-heading .section-kicker {
    margin-bottom: 36px;
  }

  .contact-heading h2 {
    font-size: clamp(60px, 18vw, 90px);
  }

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

  .footer-meta {
    width: 100%;
    justify-content: space-between;
    justify-self: start;
  }
}

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

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

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