:root {
  --ivory: #fbf9ef;
  --ink: #050505;
  --muted: #5b574c;
  --soft: #e9e4d7;
  --line: #d8d1c3;
  --orange: #ff7422;
  --indigo: #4030be;
  --coffee: #785f47;
  --white: #ffffff;
  --body: "Inter Tight", Arial, sans-serif;
  --heading: "Parkinsans", "Inter Tight", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: .25;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(255, 116, 34, .07), transparent 18rem),
    radial-gradient(circle at 90% 30%, rgba(64, 48, 190, .07), transparent 22rem),
    linear-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .018) 1px, transparent 1px);
  background-size: auto, auto, 5px 5px, 5px 5px;
}

.container {
  width: calc(100% - 48px);
  max-width: 1380px;
  margin-inline: auto;
}

.section-pad {
  padding: 120px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: rgba(251, 249, 239, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.brand-word {
  font-family: var(--heading);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 34px;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 18px;
  height: 28px;
  background: var(--orange);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.brand-mark span {
  position: absolute;
  left: 4px;
  width: 5px;
  height: 30px;
  background: currentColor;
  transform-origin: bottom;
}

.brand-mark span:nth-child(1) {
  transform: rotate(-45deg);
}

.brand-mark span:nth-child(2) {
  transform: rotate(-20deg);
}

.brand-mark span:nth-child(3) {
  transform: rotate(22deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 180px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

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

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

.button-track {
  display: flex;
  flex-direction: column;
  height: 50px;
  transition: transform .45s var(--ease);
}

.button-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  padding-inline: 24px;
}

.button-track span:nth-child(2) {
  transform: none;
}

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

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

.menu-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  gap: 8px;
  width: 44px;
  height: 44px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.menu-toggle:hover span:nth-child(1),
.menu-toggle:hover span:nth-child(4) {
  transform: scale(1.6);
}

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mega-panel {
  min-height: 100%;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform .72s var(--ease), visibility .72s var(--ease);
}

body.nav-open .mega-menu {
  pointer-events: auto;
  visibility: visible;
}

body.nav-open .mega-panel {
  transform: translateY(0);
}

.mega-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.menu-close {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  padding: 14px 24px;
  text-transform: uppercase;
  cursor: pointer;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-top: 70px;
}

.mega-grid div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.mega-grid p,
.footer-contact span {
  margin: 0 0 12px;
  color: #c3c3c3;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 700;
}

.mega-grid a {
  font-family: var(--heading);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.08;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.mega-grid a:hover {
  color: var(--orange);
  transform: translateX(8px);
}

.mega-grid span {
  color: #c3c3c3;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 28px;
  width: calc(100% - 32px);
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-title {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  font-family: var(--heading);
  font-size: 7rem;
  font-weight: 700;
  line-height: .98;
}

.hero-title > span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .26em;
  overflow: hidden;
}

.hero-title .word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%) rotateX(55deg);
  transform-origin: 50% 100%;
  animation: titleIn .9s var(--ease) forwards;
  animation-delay: calc(var(--i) * 20ms);
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.hero-button {
  min-width: 242px;
}

.hero-marquee {
  position: absolute;
  left: 50%;
  top: 470px;
  z-index: 1;
  width: 1900px;
  height: 380px;
  transform: translateX(-50%);
  overflow: visible;
}

.hero-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: heroOrbit 42s linear infinite;
}

.hero-marquee:hover .hero-track {
  animation-play-state: paused;
}

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

.polaroid {
  width: 350px;
  padding: 14px 14px 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(42, 34, 16, .14);
  transform: rotate(var(--r));
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-16px);
  box-shadow: 0 30px 70px rgba(42, 34, 16, .22);
}

.polaroid img {
  aspect-ratio: 1.42;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.polaroid h2 {
  margin: 18px 0 0;
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: center;
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 750px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: 620px;
  transform: translateX(-50%);
  text-align: center;
}

.hero-copy.reveal {
  transform: translate(-50%, 44px);
}

.hero-copy.reveal.is-visible {
  transform: translate(-50%, 0);
}

.hero-copy p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.burst {
  position: relative;
  width: 76px;
  height: 76px;
  animation: spin 18s linear infinite;
}

.burst span {
  position: absolute;
  left: calc(50% - 6px);
  top: 0;
  width: 12px;
  height: 36px;
  border-radius: 10px 10px 1px 1px;
  background: var(--orange);
  transform-origin: 50% 38px;
}

.burst span:nth-child(1) { transform: rotate(0deg); }
.burst span:nth-child(2) { transform: rotate(45deg); }
.burst span:nth-child(3) { transform: rotate(90deg); }
.burst span:nth-child(4) { transform: rotate(135deg); }
.burst span:nth-child(5) { transform: rotate(180deg); }
.burst span:nth-child(6) { transform: rotate(225deg); }
.burst span:nth-child(7) { transform: rotate(270deg); }
.burst span:nth-child(8) { transform: rotate(315deg); }

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

.about {
  padding-top: 80px;
}

.about-grid,
.work-top,
.services-head,
.method-grid,
.split-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--coffee);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.section-title {
  margin: 0;
  font-family: var(--heading);
  font-size: 3.55rem;
  font-weight: 650;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.author-strip {
  display: flex;
  align-items: center;
  margin-top: 44px;
}

.author-strip img,
.avatars img,
.client-stack img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  margin-left: -14px;
}

.author-strip img:first-child,
.avatars img:first-child,
.client-stack img:first-child {
  margin-left: 0;
}

.author-plus {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-left: -14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--ivory);
  font-size: 2rem;
  font-weight: 700;
}

.about-right {
  display: grid;
  gap: 28px;
}

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

.pill-list span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.34);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 92px;
  border-block: 1px solid var(--line);
}

.stat {
  display: grid;
  gap: 12px;
  padding: 46px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  font-family: var(--heading);
  font-size: 6rem;
  line-height: .92;
}

.stat span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.image-collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
  align-items: end;
  margin-top: 92px;
}

.image-collage img,
.feature-image,
.method-media > img,
.team-wide {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.collage-large { aspect-ratio: 1.25; }
.collage-small { aspect-ratio: .82; }
.collage-tall { aspect-ratio: .7; }

.work {
  position: relative;
  overflow: hidden;
}

.work-top {
  align-items: end;
  margin-bottom: 58px;
}

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

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 124px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.work-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}

.work-row:hover {
  color: var(--white);
}

.work-row:hover::before {
  transform: scaleY(1);
}

.work-marquee {
  display: flex;
  gap: 32px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding-right: 24px;
  white-space: nowrap;
  font-family: var(--heading);
  font-size: 3.2rem;
  font-weight: 650;
  line-height: 1;
  transition: transform .55s var(--ease);
}

.work-marquee span {
  flex: 0 0 auto;
}

.work-row:hover .work-marquee {
  animation: workMove 8s linear infinite;
}

@keyframes workMove {
  to { transform: translateX(-28%); }
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 320px;
}

.work-tags span {
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
}

.work-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  pointer-events: none;
  width: 260px;
  height: 190px;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-5deg) scale(.86);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.work-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-5deg) scale(1);
}

.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--orange);
  transform: scale(0);
  transition: transform .55s var(--ease);
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.7);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card span {
  color: var(--orange);
  font-weight: 800;
}

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

.service-card h3 {
  margin: 54px 0 16px;
  font-family: var(--heading);
  font-size: 1.65rem;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card:hover p {
  color: rgba(255,255,255,.76);
}

.service-icon {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.service-card:hover .service-icon {
  color: var(--ink);
  background: var(--white);
}

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

.method .lead {
  color: #c3c3c3;
}

.method-copy {
  display: grid;
  align-content: center;
  gap: 26px;
}

.method-copy .button {
  justify-self: start;
  border-color: var(--white);
}

.method-media {
  position: relative;
}

.method-media > img {
  aspect-ratio: 1.05;
}

.rating-card,
.experience-card {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 22px 50px rgba(0,0,0,.2);
}

.rating-card {
  left: -30px;
  top: 34px;
}

.experience-card {
  right: -18px;
  bottom: 38px;
  text-align: center;
}

.rating-card strong,
.experience-card strong,
.dark-card strong {
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 1;
}

.avatars,
.client-stack {
  display: flex;
  align-items: center;
}

.split-feature {
  align-items: center;
}

.feature-image {
  aspect-ratio: .9;
}

.feature-stack {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-line {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.feature-line img {
  aspect-ratio: 1.15;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.feature-line h3,
.solution-card h3 {
  margin: 0 0 8px;
  font-family: var(--heading);
  font-size: 1.45rem;
}

.feature-line p,
.solution-card p {
  margin: 0;
  color: var(--muted);
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 90px;
}

.solution-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.28);
}

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

.solution-card a {
  align-self: end;
  font-weight: 800;
  text-transform: uppercase;
}

.dark-card {
  justify-items: center;
  align-content: center;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.dark-card span {
  color: #c3c3c3;
  font-weight: 700;
}

.testimonial {
  overflow: hidden;
}

.testimonial-shell {
  position: relative;
  min-height: 650px;
}

.testimonial-slides {
  position: relative;
  min-height: 560px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 64px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(50px) scale(.98);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-slide > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-content {
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.testimonial-content h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: 3.15rem;
  line-height: 1.08;
}

.testimonial-content p {
  margin: 0;
  color: var(--muted);
}

.testimonial-content blockquote {
  margin: 60px 0 0;
  font-family: var(--heading);
  font-size: 1.65rem;
  line-height: 1.32;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author strong {
  font-family: var(--heading);
  font-size: 1.25rem;
}

.testimonial-author span {
  color: var(--muted);
}

.testimonial-controls {
  position: absolute;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 12px;
}

.testimonial-controls button {
  width: 66px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease);
}

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

.testimonial-thumbs {
  position: absolute;
  left: 34%;
  bottom: 0;
  display: flex;
  gap: 12px;
}

.testimonial-thumbs img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(1);
  opacity: .55;
}

.team {
  padding-bottom: 0;
  overflow: hidden;
}

.team-top {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.team-top .lead {
  max-width: 720px;
}

.team-wide {
  width: min(100%, 960px);
  aspect-ratio: 2.7;
  margin-top: 22px;
}

.team-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  margin-top: 64px;
}

.team-marquee {
  display: flex;
  gap: 42px;
  width: max-content;
  font-family: var(--heading);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: .95;
  white-space: nowrap;
  animation: teamText 18s linear infinite;
}

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

.floating-people {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.person {
  position: absolute;
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  animation: float 7s var(--ease) infinite alternate;
}

.person-one {
  transform: rotate(-10deg) translate(-250px, 20px);
}

.person-two {
  transform: rotate(7deg) translate(80px, -80px);
  animation-delay: -2s;
}

.person-three {
  transform: rotate(15deg) translate(300px, 90px);
  animation-delay: -4s;
}

@keyframes float {
  from { margin-top: -18px; }
  to { margin-top: 24px; }
}

.footer {
  padding: 96px 0 36px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .9fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-contact {
  display: grid;
  gap: 34px;
}

.footer-contact a:not(.brand) {
  display: block;
  margin-top: 6px;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 600;
}

.footer-socials {
  display: grid;
  gap: 14px;
}

.footer-socials a {
  display: grid;
  height: 54px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-family: var(--heading);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 54px;
}

.footer-socials span {
  grid-column: 1;
  grid-row: 1;
  transition: transform .45s var(--ease);
}

.footer-socials span:nth-child(2) {
  color: var(--orange);
  transform: translateY(110%);
}

.footer-socials a:hover span:first-child {
  transform: translateY(-110%);
}

.footer-socials a:hover span:nth-child(2) {
  transform: translateY(0);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 34px;
  color: #c3c3c3;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 82px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #c3c3c3;
}

.footer-bottom p {
  margin: 0;
}

.footer-word {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin-top: 54px;
}

.footer-burst {
  flex: 0 0 auto;
}

.footer-word strong {
  font-family: var(--heading);
  font-size: 11rem;
  line-height: .8;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(44px);
  transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
}

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

.magnetic {
  will-change: transform;
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: 5.6rem;
  }

  .section-title {
    font-size: 2.9rem;
  }

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

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

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .container {
    width: calc(100% - 32px);
    max-width: 760px;
  }

  .site-header {
    padding: 18px 16px;
  }

  .brand-word {
    font-size: 1.8rem;
  }

  .header-actions .button {
    display: none;
  }

  .mega-grid,
  .about-grid,
  .work-top,
  .services-head,
  .method-grid,
  .split-feature,
  .testimonial-slide {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 4.25rem;
  }

  .hero-marquee {
    top: 390px;
  }

  .polaroid {
    width: 285px;
  }

  .hero-copy {
    top: 650px;
  }

  .image-collage {
    grid-template-columns: 1fr 1fr;
  }

  .collage-large {
    grid-column: 1 / -1;
  }

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

  .work-tags {
    justify-content: flex-start;
    min-width: 0;
  }

  .testimonial-shell,
  .testimonial-slides,
  .testimonial-slide > img {
    min-height: 0;
  }

  .testimonial-slide {
    position: static;
    display: none;
  }

  .testimonial-slide.is-active {
    display: grid;
  }

  .testimonial-slide > img {
    height: 420px;
  }

  .testimonial-controls,
  .testimonial-thumbs {
    position: static;
    margin-top: 24px;
  }

  .team-marquee {
    font-size: 4.2rem;
  }

  .person {
    width: 190px;
  }

  .footer-word strong {
    font-size: 7rem;
  }
}

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

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: 830px;
    padding-top: 62px;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .hero-title > span {
    width: 100%;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    overflow: visible;
  }

  .hero-marquee {
    top: 330px;
    width: 1200px;
  }

  .hero-track {
    gap: 22px;
  }

  .polaroid {
    width: 238px;
    padding: 10px 10px 20px;
  }

  .polaroid h2 {
    font-size: 1rem;
  }

  .hero-copy {
    top: 590px;
    width: calc(100% - 28px);
    max-width: 300px;
  }

  .hero-copy p {
    font-size: .92rem;
  }

  .burst {
    width: 58px;
    height: 58px;
  }

  .burst span {
    left: calc(50% - 5px);
    width: 10px;
    height: 28px;
    transform-origin: 50% 29px;
  }

  .section-title,
  .testimonial-content h2 {
    font-size: 1.55rem;
    line-height: 1.14;
    max-width: 330px;
  }

  .stats-grid,
  .image-collage,
  .service-grid,
  .cards-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat {
    padding: 30px 16px;
  }

  .stat strong {
    font-size: 4.2rem;
  }

  .work-marquee {
    font-size: 2.2rem;
  }

  .method-copy .button {
    justify-self: stretch;
  }

  .rating-card,
  .experience-card {
    position: static;
    margin-top: 12px;
  }

  .feature-line {
    grid-template-columns: 96px 1fr;
  }

  .testimonial-content blockquote {
    margin-top: 28px;
    font-size: 1.18rem;
  }

  .testimonial-author {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .team-wide {
    aspect-ratio: 1.6;
  }

  .team-stage {
    min-height: 380px;
  }

  .team-marquee {
    font-size: 3rem;
  }

  .person {
    width: 135px;
  }

  .person-one {
    transform: rotate(-10deg) translate(-100px, 10px);
  }

  .person-two {
    transform: rotate(7deg) translate(10px, -80px);
  }

  .person-three {
    transform: rotate(15deg) translate(100px, 70px);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-word {
    align-items: center;
    gap: 18px;
  }

  .footer-word strong {
    font-size: 4.6rem;
  }
}

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