:root {
  --black: #000000;
  --red: #F20C25;
  --white: #EFEFEF;
  --white-soft: #f7f4ef;
  --gray: #bfbfbf;
  --dark-gray: #111111;
  --line-dark: rgba(239, 239, 239, 0.16);
  --line-light: rgba(0, 0, 0, 0.13);
  --radius: clamp(22px, 3vw, 44px);
  --font-title: 'Roboto Condensed', Impact, sans-serif;
  --font-body: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button, a {
  cursor: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: .05;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 1px),
    radial-gradient(circle at 70% 10%, rgba(255,255,255,.1), transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,.1), transparent 1px);
  background-size: 5px 5px, 7px 7px, 11px 11px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 10000;
  background: var(--red);
  transform-origin: left center;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 12, 37, .72);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
}

.cursor-ring.is-hover {
  width: 76px;
  height: 76px;
  background: rgba(242, 12, 37, .13);
  border-color: rgba(242, 12, 37, .2);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
}

.loader__inner {
  width: min(86vw, 900px);
  text-align: center;
}

.loader__label,
.loader__small {
  display: inline-block;
  font-size: clamp(.72rem, 1.3vw, 1rem);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-weight: 800;
}

.loader__word {
  font-family: var(--font-title);
  font-size: clamp(4rem, 18vw, 16rem);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.08em;
  margin: .12em 0;
}

.loader__line {
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
  margin: 24px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(239, 239, 239, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(20px);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.site-header.on-light {
  color: var(--black);
  background: rgba(239, 239, 239, .74);
  border-color: rgba(0, 0, 0, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.brand__text {
  font-size: .94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.site-nav a {
  opacity: .78;
  transition: opacity .25s ease, color .25s ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--red);
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 18px;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .3s ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(100px, 10vw, 160px) clamp(18px, 4vw, 72px);
}

.section[data-theme="light"] {
  color: var(--black);
  background: var(--white);
}

.section[data-theme="dark"] {
  color: var(--white);
  background: var(--black);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 900;
  color: var(--red);
}

.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.btn--primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--ghost {
  border: 1px solid rgba(239, 239, 239, .35);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--ghost-dark {
  border: 1px solid rgba(0, 0, 0, .32);
  color: var(--black);
}

.btn--ghost-dark:hover {
  background: var(--black);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--red);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .16em;
  font-weight: 900;
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(.35);
}

.hero {
  min-height: 180vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 128px;
}

.hero__grid {
  position: sticky;
  top: 0;
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: .7fr 1.8fr .9fr;
  gap: clamp(22px, 3vw, 60px);
  align-items: center;
  z-index: 3;
}

.hero__kicker {
  align-self: start;
  padding-top: 18vh;
  max-width: 260px;
  color: rgba(239, 239, 239, .72);
  font-weight: 700;
  line-height: 1.55;
}

.hero__headline {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(4.1rem, 12.7vw, 16.4rem);
  line-height: .74;
  letter-spacing: -.08em;
  text-transform: uppercase;
  text-align: center;
}

.hero__headline span {
  display: block;
  transform-origin: center center;
}

.hero__aside {
  align-self: end;
  padding-bottom: 18vh;
}

.hero__copy {
  max-width: 380px;
  color: rgba(239, 239, 239, .72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.72;
  margin: 0 0 28px;
}

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

.hero__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .8;
}

.hero__orb--one {
  width: clamp(180px, 28vw, 440px);
  height: clamp(180px, 28vw, 440px);
  background: var(--red);
  left: -8vw;
  bottom: 12vh;
}

.hero__orb--two {
  width: clamp(120px, 18vw, 260px);
  height: clamp(120px, 18vw, 260px);
  border: 2px solid rgba(239, 239, 239, .22);
  right: 10vw;
  top: 24vh;
}

.hero__type {
  position: absolute;
  left: 50%;
  bottom: -3vw;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(5px, 2vw, 34px);
  color: rgba(239, 239, 239, .035);
  font-family: var(--font-title);
  font-size: clamp(10rem, 29vw, 35rem);
  line-height: .7;
  letter-spacing: -.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: rgba(239, 239, 239, .68);
}

.manifesto {
  min-height: 130vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manifesto__top {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: clamp(24px, 6vw, 120px);
  align-items: start;
}

.manifesto__lead {
  margin: 0;
  font-size: clamp(1.8rem, 4.1vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 800;
  max-width: 1180px;
}

.manifesto__statement {
  margin-top: 12vh;
  font-family: var(--font-title);
  font-size: clamp(4.2rem, 14vw, 18rem);
  line-height: .78;
  letter-spacing: -.09em;
  text-transform: uppercase;
  max-width: 1500px;
}

.red-ball {
  display: inline-block;
  width: .54em;
  height: .54em;
  margin: 0 .01em -.03em;
  border-radius: 999px;
  background: var(--red);
  transform-origin: center center;
}

.bond {
  min-height: 420vh;
  padding-top: 0;
  padding-bottom: 0;
}

.bond__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: .9fr 1.2fr 1fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: center;
  padding: clamp(100px, 10vw, 150px) clamp(18px, 4vw, 72px);
  overflow: hidden;
}

.bond__intro h2,
.section-heading h2,
.work__header h2,
.contact__title,
.packages h2 {
  margin: 20px 0 0;
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 8vw, 10rem);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.bond__intro p,
.section-heading p {
  color: rgba(239, 239, 239, .64);
  max-width: 420px;
  line-height: 1.75;
  margin-top: 20px;
}

.section[data-theme="light"] .section-heading p {
  color: rgba(0,0,0,.62);
}

.bond__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.bond__circle {
  width: 58%;
  height: 58%;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 90px rgba(242, 12, 37, .48);
}

.bond__ring {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(239, 239, 239, .28);
  border-radius: 999px;
}

.bond__center {
  position: absolute;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 4.8rem);
  letter-spacing: -.08em;
  color: var(--white);
}

.bond__tag {
  position: absolute;
  padding: 10px 16px;
  border: 1px solid rgba(239,239,239,.22);
  border-radius: 999px;
  color: rgba(239,239,239,.72);
  background: rgba(0,0,0,.32);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.bond__tag--a { left: 2%; top: 22%; }
.bond__tag--b { right: 5%; top: 26%; }
.bond__tag--c { left: 8%; bottom: 18%; }
.bond__tag--d { right: 2%; bottom: 25%; }

.bond__chapters {
  position: relative;
  min-height: 460px;
}

.chapter {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px);
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(239,239,239,.045);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.chapter span {
  font-family: var(--font-title);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: .8;
  color: var(--red);
}

.chapter h3 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 4.1rem);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 30px 0 0;
}

.chapter p {
  color: rgba(239, 239, 239, .67);
  line-height: 1.7;
  max-width: 460px;
}

.services {
  min-height: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: clamp(24px, 6vw, 120px);
  align-items: start;
  margin-bottom: clamp(60px, 9vw, 120px);
}

.services .section-heading h2,
.process .section-heading h2 {
  color: var(--black);
}

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

.service-item {
  display: grid;
  grid-template-columns: .35fr 1.15fr 1fr .7fr;
  gap: 26px;
  align-items: start;
  padding: clamp(28px, 5vw, 66px) 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding .4s var(--ease-out), background .4s var(--ease-out);
}

.service-item:hover {
  padding-left: 22px;
  padding-right: 22px;
  background: var(--black);
  color: var(--white);
}

.service-item__number {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 7rem);
  line-height: .8;
  color: var(--red);
}

.service-item h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.3vw, 7.6rem);
  line-height: .78;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.service-item p {
  margin: 0;
  line-height: 1.72;
  color: currentColor;
  opacity: .72;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}

.service-item li::before {
  content: '•';
  color: var(--red);
  margin-right: 10px;
}

.work {
  min-height: 330vh;
  padding: 0;
  overflow: hidden;
}

.work__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 10vw, 150px) clamp(18px, 4vw, 72px);
  overflow: hidden;
}

.work__header {
  width: min(920px, 100%);
  margin-bottom: clamp(34px, 5vw, 68px);
}

.work-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.work-card {
  position: relative;
  width: min(78vw, 640px);
  min-height: 560px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239,239,239,.08), rgba(239,239,239,.02)),
    var(--dark-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-card--featured {
  width: min(82vw, 780px);
  background: var(--red);
  color: var(--white);
}

.work-card__meta {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(239,239,239,.25);
  border-radius: 999px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.work-card h3 {
  margin: auto 0 22px;
  font-family: var(--font-title);
  font-size: clamp(4rem, 9vw, 10.5rem);
  line-height: .76;
  letter-spacing: -.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.work-card p {
  max-width: 470px;
  line-height: 1.68;
  color: rgba(239,239,239,.7);
  position: relative;
  z-index: 2;
}

.work-card--featured p {
  color: rgba(255,255,255,.78);
}

.work-card__shape {
  position: absolute;
  right: -8%;
  top: 10%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(239,239,239,.18);
  opacity: .8;
}

.work-card:nth-child(2) .work-card__shape {
  background: var(--red);
  border: 0;
  filter: blur(0);
  top: auto;
  bottom: -12%;
}

.work-card:nth-child(3) .work-card__shape {
  width: 60%;
  border-radius: 40% 60% 30% 70%;
  background: rgba(242, 12, 37, .3);
}

.clients {
  display: grid;
  align-content: center;
  gap: clamp(50px, 6vw, 92px);
}

.clients__phrase {
  display: grid;
  gap: 8px;
  font-family: var(--font-title);
  font-size: clamp(4rem, 10vw, 14rem);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.clients__phrase span:last-child {
  color: var(--red);
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.metric {
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line-light);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(4rem, 8vw, 10rem);
  line-height: .8;
  letter-spacing: -.07em;
  color: var(--red);
}

.metric span {
  display: block;
  max-width: 260px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.6;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
}

.logo-cloud span {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.about {
  min-height: 140vh;
  overflow: hidden;
  display: grid;
  align-content: center;
}

.about__grid {
  display: grid;
  grid-template-columns: .7fr 1.7fr;
  gap: clamp(30px, 7vw, 130px);
  align-items: start;
}

.about__label p {
  margin: 24px 0 0;
  max-width: 310px;
  line-height: 1.72;
  color: rgba(239,239,239,.65);
}

.about__text {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(4rem, 9.5vw, 13rem);
  line-height: .77;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.about__text .word {
  display: inline-block;
  opacity: .16;
  transform: translateY(40px);
}

.about__marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--red);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.process {
  min-height: auto;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
}

.process-line {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 3px;
  overflow: hidden;
}

.process-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red);
}

.process-step {
  min-height: 420px;
  padding: clamp(22px, 3.5vw, 44px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  transition: background .35s ease, color .35s ease;
}

.process-step:hover {
  background: var(--black);
  color: var(--white);
}

.process-step span {
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 6rem);
  color: var(--red);
  line-height: .8;
}

.process-step h3 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 5.2rem);
  line-height: .78;
  letter-spacing: -.07em;
  text-transform: uppercase;
  margin: auto 0 20px;
}

.process-step p {
  color: currentColor;
  opacity: .72;
  line-height: 1.7;
}

.packages {
  min-height: auto;
}

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

.package-card {
  min-height: 520px;
  padding: clamp(26px, 3.5vw, 46px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: rgba(239,239,239,.045);
}

.package-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(242, 12, 37, .18);
  transition: transform .6s var(--ease-out), background .6s ease;
}

.package-card:hover::before {
  transform: scale(1.55);
  background: var(--red);
}

.package-card--hot {
  background: var(--red);
}

.package-card--hot::before {
  background: rgba(0,0,0,.2);
}

.package-card span,
.package-card h3,
.package-card p,
.package-card a {
  position: relative;
  z-index: 2;
}

.package-card span {
  position: absolute;
  top: 34px;
  left: 34px;
  font-family: var(--font-title);
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .8;
  opacity: .35;
}

.package-card h3 {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 4.6vw, 6rem);
  line-height: .8;
  letter-spacing: -.07em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.package-card p {
  color: rgba(239,239,239,.7);
  line-height: 1.7;
  max-width: 360px;
}

.contact {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}

.contact__title {
  color: var(--black);
  font-size: clamp(4rem, 10vw, 13rem);
  max-width: 1200px;
}

.contact__content p {
  max-width: 680px;
  color: rgba(0,0,0,.64);
  line-height: 1.75;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact__card {
  min-height: 540px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact__card::before {
  content: '';
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--red);
  right: -20%;
  top: -18%;
}

.contact__card span,
.contact__card strong,
.contact__card p {
  position: relative;
  z-index: 2;
}

.contact__card span {
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
}

.contact__card strong {
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 6vw, 7rem);
  line-height: .8;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.contact__card p {
  color: rgba(239,239,239,.68);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 72px);
  background: var(--black);
  color: rgba(239,239,239,.65);
  border-top: 1px solid var(--line-dark);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.char,
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.char-inner,
.word-inner {
  display: inline-block;
  will-change: transform;
}

@media (max-width: 1100px) {
  .hero__grid,
  .bond__sticky,
  .contact,
  .about__grid,
  .manifesto__top,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    position: relative;
    min-height: auto;
    padding-top: 70px;
    align-items: start;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__kicker,
  .hero__aside {
    padding: 0;
  }

  .hero__headline {
    text-align: left;
  }

  .bond {
    min-height: auto;
  }

  .bond__sticky,
  .work__sticky {
    position: relative;
  }

  .bond__chapters {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .chapter {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .service-item {
    grid-template-columns: .3fr 1fr;
  }

  .service-item p,
  .service-item ul {
    grid-column: 2 / -1;
  }

  .work {
    min-height: auto;
    padding: 0;
  }

  .work-track {
    width: 100%;
    flex-direction: column;
  }

  .work-card,
  .work-card--featured {
    width: 100%;
    min-height: 460px;
  }

  .process-timeline,
  .package-grid,
  .metric-grid,
  .logo-cloud {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  body {
    cursor: auto;
  }

  button, a {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand__text {
    font-size: .8rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 10px;
    right: 10px;
    min-height: calc(100vh - 82px);
    border-radius: 28px;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 30px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
  }

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

  .site-nav a {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 13vw, 6rem);
    line-height: .88;
    letter-spacing: -.07em;
    text-transform: uppercase;
    padding: 10px 0;
  }

  .nav-cta {
    border: 0;
    padding: 10px 0;
    color: var(--red);
  }

  .section {
    padding: 88px 18px;
  }

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

  .hero__headline {
    font-size: clamp(4.4rem, 24vw, 8rem);
  }

  .hero__type {
    bottom: 10vh;
    font-size: 35vw;
  }

  .hero__orb--one {
    left: -35vw;
    bottom: 18vh;
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .manifesto__statement {
    font-size: clamp(4.6rem, 25vw, 9rem);
  }

  .bond__sticky {
    padding: 88px 18px;
  }

  .bond__visual {
    order: -1;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-item p,
  .service-item ul {
    grid-column: auto;
  }

  .service-item:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    color: var(--black);
  }

  .work__sticky {
    padding: 88px 18px;
  }

  .work-card,
  .work-card--featured {
    min-height: 420px;
  }

  .clients__phrase span:last-child {
    text-align: left;
  }

  .metric-grid,
  .logo-cloud,
  .process-timeline,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2),
  .metric:last-child {
    border-right: 0;
    border-top: 0;
  }

  .logo-cloud span {
    min-height: 86px;
  }

  .process-step {
    min-height: 320px;
  }

  .package-card {
    min-height: 420px;
  }

  .contact__card {
    min-height: 390px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
